/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --navy: #0B1626;
  --navy-raised: #142236;
  --ink: #101B2D;
  --text-muted: #4B5A6E;
  --text-faint: #8B98A8;

  --bg: #F6F8FB;
  --surface: #FFFFFF;
  --tint: #EEF2F8;
  --border: #E3E8EF;

  --accent: #0EA97B;
  --accent-dark: #0B8563;
  --accent-tint: #E3F7EF;

  --on-navy: #F3F6FA;
  --on-navy-muted: #9FB0C3;
  --on-navy-border: #24344A;

  --font-display: "Manrope", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;

  --wrap: 1160px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.14;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow--on-navy { color: #5EE0B4; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn--primary { background: var(--accent); color: #06251C; }
.btn--primary:hover { background: #10C48A; }

.btn--outline-navy { border-color: var(--on-navy-border); color: var(--on-navy); background: transparent; }
.btn--outline-navy:hover { border-color: var(--on-navy); }

.btn--ghost { border-color: var(--border); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--text-faint); background: var(--tint); }

.btn--large { padding: 17px 32px; font-size: 16px; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 248, 251, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}
.logo-icon { border-radius: 8px; display: block; flex: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
}
.lang-switch:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   Full-bleed band helper
   ========================================================================== */
.band-navy {
  background: var(--navy);
  color: var(--on-navy);
}
.band-tint { background: var(--tint); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 84px 0 64px;
}
.hero-inner {
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: #FFFFFF;
  margin-bottom: 22px;
}
.hero h1 mark {
  background: none;
  color: #5EE0B4;
}
.hero .lede {
  font-size: 18px;
  color: var(--on-navy-muted);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--on-navy);
  background: var(--navy-raised);
  border: 1px solid var(--on-navy-border);
  border-radius: 999px;
  padding: 8px 14px;
}
.trust-badge svg { width: 14px; height: 14px; flex: none; color: #5EE0B4; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 34px 28px;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: none; }
.stat-figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat-figure span { color: var(--accent); }
.stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Section shared
   ========================================================================== */
.section { padding: 88px 0; }
.section-head {
  max-width: 620px;
  margin: 0 0 48px;
}
.section-head h2 { font-size: clamp(26px, 3vw, 36px); color: var(--ink); }
.section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }

/* ==========================================================================
   Services — icon grid
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(16, 27, 45, 0.16);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.service-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 0; }

/* ==========================================================================
   Promises — confident checklist, replaces us-vs-them table
   ========================================================================== */
.promise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  max-width: 900px;
}
.promise {
  display: flex;
  gap: 16px;
}
.promise-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.promise-check svg { width: 16px; height: 16px; }
.promise h3 { font-size: 16.5px; margin-bottom: 4px; color: var(--ink); }
.promise p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   Process — horizontal stepper
   ========================================================================== */
.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step { position: relative; }
.step::before {
  content: "";
  position: absolute;
  top: 19px;
  left: calc(-24px / 2 - 4px);
  width: calc(24px + 8px);
  height: 2px;
  background: var(--border);
}
.step:first-child::before { display: none; }
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 16.5px; margin-bottom: 6px; color: var(--ink); }
.step p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   Tech stack
   ========================================================================== */
.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tech-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 9px 16px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px 26px;
}
.testimonial p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}
.testimonial footer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-faint);
}

/* ==========================================================================
   Contact band (dark, bookends the hero) — simple, no form
   ========================================================================== */
.contact-band { padding: 84px 0; }
.contact-simple {
  max-width: 560px;
}
.contact-simple h2 { color: #FFFFFF; font-size: clamp(26px, 3vw, 34px); }
.contact-simple .lede { color: var(--on-navy-muted); font-size: 16px; max-width: 44ch; }
.contact-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 30px; font-size: 15px; }
.contact-list a { color: var(--on-navy); }
.contact-list a:hover { color: #5EE0B4; }
.contact-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-navy-muted);
  margin-right: 10px;
  display: inline-block;
  width: 88px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); border-top: 1px solid var(--on-navy-border); }
.footer-inner {
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--on-navy-muted);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--on-navy); }
.footer-logo { border-radius: 4px; }
.footer-region a { color: var(--on-navy-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-region a:hover { color: #5EE0B4; }

/* ==========================================================================
   Legal pages (GDPR / privacy)
   ========================================================================== */
.legal-section { padding: 64px 0 96px; display: flex; justify-content: center; }
.legal-card { max-width: 680px; width: 100%; }
.legal-card h1 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 6px; color: var(--ink); }
.legal-updated { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--text-faint); margin-bottom: 36px; }
.legal-card h2 { font-size: 17px; margin-top: 32px; margin-bottom: 10px; color: var(--ink); border-top: 1px solid var(--border); padding-top: 24px; }
.legal-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.legal-card a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-disclaimer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text-faint); font-style: italic; }

/* ==========================================================================
   Ad-hoc support page
   ========================================================================== */
.support-section { padding: 72px 0 96px; display: flex; justify-content: center; }
.support-card { max-width: 520px; width: 100%; }
.support-card h1 { font-size: clamp(28px, 3.6vw, 36px); color: var(--ink); }
.support-steps { margin: 32px 0 0; padding-top: 24px; border-top: 1px solid var(--border); counter-reset: step; }
.support-steps li { counter-increment: step; position: relative; padding-left: 32px; margin-bottom: 14px; font-size: 15px; color: var(--text-muted); }
.support-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.back-link { display: inline-block; margin-top: 32px; font-size: 14px; color: var(--text-muted); }
.back-link:hover { color: var(--accent-dark); }

.utility-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--border); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .promise-list { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .step:nth-child(3)::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stepper { grid-template-columns: 1fr; }
  .step::before { display: none; }
  .section { padding: 64px 0; }
}
