@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


:root {
  --bg: #0f1720;
  --surface: #16202b;
  --surface-soft: #1f2c39;
  --text: #f4f7fb;
  --muted: #b8c3d1;
  --primary: #1683ff;
  --primary-soft: #51a2ff;
  --border: #2e3e50;
  --container: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(145deg, #0d141d 0%, #122233 55%, #10263e 100%);
  color: var(--text);
  line-height: 1.6;
}


a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 32, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}

.header-left {
  flex: 1 1 auto;
  min-width: 0;
}

.header-right {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 2.45rem;
  height: 2.1rem;
  border-radius: 0.45rem;
  background: linear-gradient(130deg, var(--primary), #63b3ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.1rem;
}

.nav-list a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a.active,
.nav-list a:hover { color: var(--text); }

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switch .lang {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-switch a.lang {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0.9;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.lang-switch a.lang:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  opacity: 1;
}

.lang-switch .active {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.45);
  cursor: default;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.3rem 0.5rem;
  flex-shrink: 0;
}

.hero {
  padding: 6.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

.hero p { margin: 0 0 1.5rem; color: var(--muted); }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: #d5dfeb;
  font-size: 0.88rem;
}

.panel {
  background: rgba(22, 32, 43, 0.8);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.3rem;
}


.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(18, 33, 48, 0.58);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d5dfeb;
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-list li::before {
  content: "✓";
  color: var(--primary-soft);
  font-weight: 700;
}

.section { padding: 3.8rem 0; }

.section h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-intro {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.1rem;
}

.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin-bottom: 0; }

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card .service-image {
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin: 0.5rem 0 0.9rem;
  border: 1px solid var(--border);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button {
  display: inline-block;
  border-radius: 0.65rem;
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

form {
  display: grid;
  gap: 0.9rem;
}

label { font-weight: 600; }

input,
textarea {
  width: 100%;
  background: #0f1822;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

textarea { min-height: 140px; resize: vertical; }

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}


@media (max-width: 920px) {
  .hero-grid,
  .grid-3 { grid-template-columns: 1fr; }

  .trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .menu-toggle { display: inline-block; }

  .header-right {
    position: relative;
  }

  .nav-wrap {
    position: absolute;
    top: 72px;
    right: 0;
    width: min(100vw - 2rem, 360px);
    background: rgba(15, 23, 32, 0.98);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap.open { display: flex; }
  .nav-list { flex-direction: column; }
}

@media (max-width: 560px) {
  .trust-list { grid-template-columns: 1fr; }
}
