:root {
  --ink: #0b1728;
  --ink-2: #15243a;
  --paper: #f8f6f1;
  --white: #ffffff;
  --muted: #657184;
  --line: #dce1e7;
  --accent: #56d6b3;
  --accent-dark: #0c7a69;
  --warm: #f4b860;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(11, 23, 40, 0.11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(220,225,231,.7);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--accent);
  font-weight: 800;
  font-size: 21px;
}
.brand strong { display: block; font-size: 17px; letter-spacing: -.02em; }
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav > a:not(.button) {
  color: #344155;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav > a:not(.button):hover { color: var(--accent-dark); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px; height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--ink-2);
  box-shadow: 0 10px 28px rgba(11,23,40,.16);
}
.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.text-link {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}
.text-link span { color: var(--accent-dark); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  background:
    radial-gradient(circle at 90% 10%, rgba(86,214,179,.15), transparent 33%),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}
.hero-glow-one {
  width: 280px; height: 280px;
  left: -130px; top: 120px;
  background: rgba(244,184,96,.12);
}
.hero-glow-two {
  width: 210px; height: 210px;
  right: 5%; bottom: -110px;
  background: rgba(86,214,179,.16);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: 76px;
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero h1 span {
  display: block;
  color: var(--accent-dark);
}
.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #435066;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 42px;
}
.trust-line span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.trust-line span::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 21px;
  pointer-events: none;
}
.panel-label {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.flow-list { display: grid; gap: 3px; }
.flow-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.flow-item:last-child { border-bottom: 0; }
.flow-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}
.flow-item strong { display: block; font-size: 16px; }
.flow-item small { color: #abb8c8; }
.panel-note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #c4ceda;
  font-size: 13px;
}

.section { padding: 100px 0; }
.section-muted { background: var(--paper); }
.split-intro {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 70px;
}
.split-intro h2, .section-heading h2, .about-card h2, .contact-section h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.split-intro p:not(.section-kicker) {
  max-width: 790px;
  color: var(--muted);
  font-size: 20px;
}

.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8c8ca;
  box-shadow: 0 18px 46px rgba(11,23,40,.08);
}
.service-index {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 30px;
  border-radius: 999px;
  background: #e8f8f3;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
}
.service-card h3 {
  margin: 24px 0 12px;
  font-size: 23px;
  line-height: 1.24;
  letter-spacing: -.025em;
}
.service-card > p { color: var(--muted); }
.service-card ul {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.service-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  color: #455166;
  font-size: 14px;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: .7em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.dark-section {
  background: var(--ink);
  color: var(--white);
}
.solutions-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}
.section-heading.light { position: sticky; top: 120px; align-self: start; }
.section-heading.light .section-kicker { color: var(--accent); }
.section-heading.light > p:last-child { color: #aeb9c7; }
.solution-list { border-top: 1px solid rgba(255,255,255,.14); }
.solution-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.solution-row > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}
.solution-row h3 {
  margin: 0 0 7px;
  font-size: 24px;
  letter-spacing: -.025em;
}
.solution-row p { margin: 0; color: #aeb9c7; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.step {
  min-height: 290px;
  padding: 28px 24px 20px 0;
  border-right: 1px solid var(--line);
}
.step:not(:first-child) { padding-left: 24px; }
.step:last-child { border-right: 0; }
.step span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}
.step h3 {
  margin: 55px 0 12px;
  font-size: 23px;
}
.step p { color: var(--muted); font-size: 14px; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.offer-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.tag {
  display: inline-block;
  margin: 0 0 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f8f3;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}
.offer-card h3 { margin: 0 0 10px; font-size: 25px; }
.offer-card > p:last-child { color: var(--muted); }

.experience-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
.experience-panel {
  border-top: 1px solid var(--line);
}
.experience-item {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.experience-item strong { font-size: 17px; }
.experience-item p { margin: 0; color: var(--muted); }

.about-section { background: #dff6ef; }
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
.about-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.about-card .section-kicker { color: var(--accent); }
.about-copy > p { color: #344155; font-size: 18px; }
.partner-note {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: center;
  margin: 32px 0 20px;
  padding: 22px;
  border: 1px solid rgba(12,122,105,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
}
.partner-icon {
  display: grid;
  place-items: center;
  width: 64px; height: 50px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--warm);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .03em;
}
.partner-note p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.disclosure { font-size: 13px !important; color: #607068 !important; }

.contact-section {
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-section .section-kicker { color: var(--accent); }
.contact-section p { color: #b6c0cd; font-size: 18px; }
.email-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 750;
  text-decoration: none;
}
.email-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: #dce4ec;
  font-size: 13px;
  font-weight: 750;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(86,214,179,.12);
}
.contact-form .button {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}
.form-note { margin: 14px 0 0 !important; font-size: 12px !important; }

.site-footer {
  padding: 62px 0 22px;
  background: #07111f;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .brand-mark { background: var(--accent); color: var(--ink); }
.footer-brand small { color: #9da9b8; }
.footer-grid > div > p, .footer-grid a {
  display: block;
  margin: 8px 0;
  color: #9da9b8;
  font-size: 14px;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p, .footer-bottom a {
  margin: 0;
  color: #8e9aaa;
  font-size: 13px;
  text-decoration: none;
}

.legal-page {
  min-height: 72vh;
  padding: 80px 0 100px;
}
.legal-content { max-width: 820px; }
.legal-content h1 {
  margin: 0 0 10px;
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: -.05em;
}
.legal-updated { color: var(--muted); }
.legal-content h2 { margin-top: 42px; font-size: 25px; }
.legal-content p, .legal-content li { color: #4c596d; }
.legal-content a { color: var(--accent-dark); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 1000px) {
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-panel { max-width: 620px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid var(--line); }
  .solutions-grid, .experience-grid, .about-grid, .contact-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px; right: 20px; top: 68px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 10px 8px; }
  .site-nav .button { margin-top: 8px; }

  .section, .contact-section { padding: 76px 0; }
  .hero { padding: 75px 0 70px; }
  .split-intro, .solutions-grid, .experience-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .split-intro { gap: 18px; }
  .section-heading.light { position: static; }
  .experience-grid { gap: 28px; }
  .about-card { min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
}

@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero h1 { font-size: 48px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-line { display: grid; gap: 10px; }
  .hero-panel { padding: 24px; }
  .service-grid, .offer-grid, .steps { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .step, .step:not(:first-child) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
  }
  .step h3 { margin: 26px 0 8px; }
  .experience-item { grid-template-columns: 1fr; gap: 7px; }
  .partner-note { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}
