:root {
  --bg: #0a0a0a;
  --surface: rgba(255,255,255,0.045);
  --surface-strong: rgba(255,255,255,0.075);
  --border: rgba(255,255,255,0.11);
  --text: #f5f5f5;
  --muted: #a1a1aa;
  --accent: #8d93ff;
  --accent-soft: rgba(141,147,255,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.page-glow {
  position: fixed;
  inset: -25% -10% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(141,147,255,0.22), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -2;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  backdrop-filter: blur(16px);
}

.brand {
  letter-spacing: 0.22em;
  font-weight: 800;
  font-size: 14px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.lang-toggle {
  justify-self: end;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}

.hero, .section, .footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero { padding: 132px 0 120px; }

.eyebrow, .kicker {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  margin-bottom: 28px;
}

h1, h2, h3, p { margin: 0; }

h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-text {
  max-width: 690px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 19px;
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--text);
  color: #050505;
  border-color: var(--text);
}

.button.secondary {
  background: var(--surface);
  color: var(--text);
}

.section { padding: 96px 0; }

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2, .split h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.muted {
  margin-top: 18px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card, .panel, .contact-form {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-strong), rgba(255,255,255,0.025));
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.22);
}

.card-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.card h3 {
  margin-top: 34px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.card p, .panel p {
  margin-top: 14px;
  color: var(--muted);
}

.statement {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0;
  text-align: center;
}

.statement p {
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.statement span {
  display: block;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
}

.process {
  display: grid;
  gap: 12px;
}

.process div {
  display: flex;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--text);
  font-size: 20px;
}

.process span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.process b { font: inherit; }

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 96px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(141,147,255,0.8);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

textarea { resize: vertical; }

.form-note {
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 42px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .split, .contact {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .hero {
    padding-top: 92px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1120px);
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero, .section, .footer {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .cards, .form-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

.card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(141,147,255,0.45);
  background: rgba(255,255,255,0.08);
}

.service-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.service-page h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  margin-bottom: 24px;
}

.service-page .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
}

.content-section {
  margin-top: 72px;
}

.content-section h2 {
  font-size: 34px;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.content-section ul {
  padding-left: 20px;
}

.back-link {
  display: inline-flex;
  margin-top: 64px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 34px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--text);
}

.site-header {
  background: rgba(10,10,10,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.88), rgba(10,10,10,0));
  pointer-events: none;
  z-index: -1;
}

.service-page {
  padding-top: 96px;
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .site-header .nav {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 13px;
    scrollbar-width: none;
  }

  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .lang-toggle {
    justify-self: end;
  }

  .service-page {
    padding-top: 76px;
  }
}


/* Full-width glass navigation */
.site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 1120px) minmax(20px, 1fr);
  align-items: center;
  gap: 0;
  background: rgba(10, 10, 10, 0.54);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 20px 80px rgba(0,0,0,0.22);
}

.site-header > .brand,
.site-header > .nav,
.site-header > .lang-toggle {
  grid-row: 1;
}

.site-header > .brand {
  grid-column: 2;
  justify-self: start;
}

.site-header > .nav {
  grid-column: 2;
  justify-self: center;
}

.site-header > .lang-toggle {
  grid-column: 2;
  justify-self: end;
}

.site-header::before {
  display: none;
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    grid-template-columns: 14px minmax(0, 1fr) 14px;
    padding: 14px 0 12px;
  }

  .site-header > .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .site-header > .lang-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header > .nav {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    margin-top: 12px;
    padding-bottom: 2px;
  }
}
