@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #041026;
  --navy-900: #071a3b;
  --navy-800: #0b2a5e;
  --navy-700: #123c78;
  --green-500: #53db2c;
  --green-600: #3cc11c;
  --green-700: #2c9414;
  --green-soft: #ebfbe6;
  --white: #ffffff;
  --canvas: #ffffff;
  --soft: #f4f7fb;
  --ink: #0c1b35;
  --muted: #5f6b7d;
  --line: #dbe2ec;
  --line-strong: #aab6c8;
  --accent: var(--green-500);
  --accent-ink: #286e16;
  --font-display: "Cabinet Grotesk", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, sans-serif;
  --shadow-sm: 0 8px 24px rgba(7, 26, 59, .08);
  --shadow-lg: 0 24px 70px rgba(7, 26, 59, .16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.02;
  text-wrap: balance;
}

h1 { font-size: clamp(3.1rem, 6.4vw, 5.6rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4rem); letter-spacing: -.045em; }
h3 { font-size: 1.28rem; letter-spacing: -.02em; }

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

.ico {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: currentColor;
}

.skip {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #76e957;
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { min-height: 56px; padding: 15px 24px; font-size: 1.02rem; }
.btn--sm { min-height: 42px; padding: 9px 17px; }

.btn--primary {
  color: #071a16;
  background: var(--green-500);
  box-shadow: 0 10px 30px rgba(83, 219, 44, .23);
}

.btn--primary:hover { background: #64e640; box-shadow: 0 14px 34px rgba(83, 219, 44, .3); }

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  background: rgba(6, 20, 45, .35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover { border-color: var(--white); background: rgba(6, 20, 45, .62); }

.btn--dark {
  color: var(--white);
  background: var(--navy-950);
}

.btn--dark:hover { background: var(--navy-800); }

.btn--line {
  color: var(--navy-900);
  border-color: var(--line);
  background: var(--white);
}

.btn--line:hover { border-color: var(--navy-700); }

/* Header */
.site-header,
.nav {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--white);
  background: rgba(4, 16, 38, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

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

.mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 56px;
  padding: 3px 7px;
  overflow: hidden;
  background: var(--white);
  border-radius: 11px;
}

.mark img { width: 100%; height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-left: auto;
}

.nav__links a {
  color: #dce5f4;
  font-size: .92rem;
  font-weight: 650;
  transition: color .2s ease;
}

.nav__links a:hover { color: var(--white); }
.nav__side { display: flex; align-items: center; gap: 10px; }
.btn--header { min-height: 44px; padding: 10px 17px; font-size: .9rem; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle .ico { width: 24px; height: 24px; }
.menu-toggle__close { display: none; }
.menu-open .menu-toggle__open { display: none; }
.menu-open .menu-toggle__close { display: block; }

/* Hero */
.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 36px));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__picture,
.hero__picture img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__picture img { object-fit: cover; object-position: center; }

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 16, 38, .98) 0%, rgba(4, 16, 38, .93) 28%, rgba(4, 16, 38, .45) 58%, rgba(4, 16, 38, .12) 100%),
    linear-gradient(0deg, rgba(4, 16, 38, .45), transparent 46%);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 78px 112px;
}

.hero__content { width: min(640px, 57%); }

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
}

.availability > span {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(83, 219, 44, .12);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(83, 219, 44, 0); }
}

.hero h1 em { color: var(--green-500); font-style: normal; }

.hero__lead {
  max-width: 57ch;
  margin-top: 24px;
  color: #d6e0ee;
  font-size: clamp(1.04rem, 1.65vw, 1.23rem);
  line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero__proof li { display: flex; align-items: flex-start; gap: 10px; color: #c8d5e6; font-size: .82rem; line-height: 1.35; }
.hero__proof .ico { width: 22px; height: 22px; color: var(--green-500); }
.hero__proof b { display: block; color: var(--white); font-size: .9rem; }

.hero__caption {
  position: absolute;
  right: 0;
  bottom: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
}

/* Problem picker */
.problem-section { position: relative; z-index: 3; margin-top: -62px; }

.problem-box {
  display: grid;
  grid-template-columns: .82fr 1.5fr;
  gap: 28px 40px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(12, 27, 53, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.problem-box__intro h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
.problem-box__intro > p:last-child { margin-top: 12px; color: var(--muted); }

.problem-box__choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.problem {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.problem:hover { transform: translateY(-1px); border-color: var(--green-600); }
.problem .ico { width: 23px; height: 23px; color: var(--accent-ink); }
.problem[aria-pressed="true"] { background: var(--green-soft); border-color: var(--green-600); box-shadow: inset 0 0 0 1px var(--green-600); }
.problem-box__cta { grid-column: 2; justify-self: start; }

/* General sections */
.section { padding-block: clamp(76px, 9vw, 124px); }
.section--soft { background: var(--soft); }

.section-heading { max-width: 730px; margin-bottom: 44px; }
.section-heading > p:last-child { max-width: 58ch; margin-top: 16px; color: var(--muted); font-size: 1.05rem; }

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

.service-card {
  min-height: 238px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover { transform: translateY(-4px); border-color: #b9c5d6; box-shadow: var(--shadow-sm); }
.service-card--featured { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--accent-ink);
  background: var(--green-soft);
  border-radius: 14px;
}

.service-card__icon .ico { width: 25px; height: 25px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); }
.service-card--featured p { color: #c7d5e7; }

/* Process */
.process { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(44px, 7vw, 86px); }

.process__media { position: relative; }
.process__media img { width: 100%; height: 640px; object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.process__media figcaption { margin-top: 10px; color: var(--muted); font-size: .72rem; }
.process__content > h2 { max-width: 12ch; }

.steps { display: grid; gap: 26px; margin-top: 40px; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.steps li > span { display: grid; width: 44px; height: 44px; place-items: center; color: var(--navy-950); background: var(--green-500); border-radius: 50%; font-weight: 900; }
.steps h3 { margin-bottom: 7px; }
.steps p { color: var(--muted); }

.trust-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.trust-note .ico { width: 32px; height: 32px; color: var(--accent-ink); }
.trust-note p { color: var(--muted); font-size: .9rem; }
.trust-note b { color: var(--ink); }

/* Coverage */
.coverage { color: var(--navy-950); background: var(--green-500); }
.coverage .eyebrow { color: #184e0b; }
.coverage__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(46px, 8vw, 100px); }
.coverage__lead { max-width: 56ch; margin-top: 20px; color: #183b18; font-size: 1.05rem; }
.coverage .btn { margin-top: 30px; }

.coverage__areas {
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(4, 16, 38, .12);
  border-radius: var(--radius-lg);
}

.coverage__areas h3 { margin-bottom: 18px; }
.coverage__areas > p { margin-top: 20px; color: #3c543e; font-size: .92rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags li { padding: 8px 12px; background: var(--white); border: 1px solid rgba(4, 16, 38, .1); border-radius: 999px; font-size: .85rem; font-weight: 700; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(48px, 8vw, 100px); }
.faq-layout__intro { position: sticky; top: 116px; }
.faq-layout__intro > p:not(.eyebrow) { margin-top: 18px; color: var(--muted); }
.text-link { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--accent-ink); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  padding: 24px 48px 24px 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.3;
  cursor: pointer;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 20px; display: grid; width: 32px; height: 32px; place-items: center; color: var(--navy-950); background: var(--green-soft); border-radius: 50%; font-family: var(--font-body); font-size: 1.35rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 64ch; padding: 0 50px 24px 0; color: var(--muted); }

/* Closing CTA and footer */
.final-cta { padding-block: clamp(70px, 8vw, 104px); color: var(--white); background: var(--navy-900); }
.final-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.final-cta h2 { max-width: 790px; font-size: clamp(2.3rem, 4.8vw, 4.3rem); }
.final-cta p:not(.availability) { max-width: 55ch; margin-top: 16px; color: #c8d5e6; }
.availability--light { margin-bottom: 18px; }
.final-cta__actions { display: grid; gap: 12px; }

.foot { color: #d2dceb; background: var(--navy-950); }
.foot__top { display: grid; grid-template-columns: 1.25fr 1fr 1.15fr .8fr; gap: 38px; padding-block: 58px; }
.foot__logo { display: flex; width: 150px; height: 76px; align-items: center; padding: 5px 9px; overflow: hidden; background: var(--white); border-radius: 12px; }
.foot__logo img { width: 100%; height: auto; }
.foot__brand p { max-width: 30ch; margin-top: 18px; color: #9fb0c7; }
.foot__col { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: .9rem; }
.foot__col h3 { margin-bottom: 8px; color: var(--white); font-size: 1rem; }
.foot__col a:hover { color: var(--green-500); }
.foot__col address { color: #9fb0c7; }
.foot__legal { display: flex; justify-content: space-between; gap: 22px; padding-block: 22px; color: #8496ae; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .82rem; }

.fab {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  color: #071a16;
  background: var(--green-500);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(4, 16, 38, .28);
  font-weight: 850;
}

.fab:hover { background: #64e640; }

/* Legal and error pages */
.doc { max-width: 72ch; }
.doc h1 { color: var(--ink); }
.oops__code { color: var(--accent-ink) !important; }

@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px;
    color: var(--white);
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, .1);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
  }

  .menu-open .nav__links { transform: translateY(0); visibility: visible; opacity: 1; }
  .nav__links a { padding: 16px 4px; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 1.05rem; }
  .menu-toggle { display: grid; }
  .hero__content { width: min(620px, 68%); }
  .problem-box { grid-template-columns: 1fr; }
  .problem-box__cta { grid-column: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .foot__top { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__actions { grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 68px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .nav__inner { min-height: 70px; gap: 10px; }
  .mark { width: 91px; height: 50px; }
  .nav__links { inset: 70px 0 auto; }
  .btn--header { width: 48px; min-height: 48px; padding: 0; }
  .btn--header span { display: none; }

  .hero { min-height: 760px; }
  .hero__picture img { object-position: 67% center; }
  .hero__shade {
    background:
      linear-gradient(0deg, rgba(4, 16, 38, .99) 3%, rgba(4, 16, 38, .82) 48%, rgba(4, 16, 38, .25) 100%),
      linear-gradient(90deg, rgba(4, 16, 38, .7), rgba(4, 16, 38, .04));
  }
  .hero__inner { align-items: flex-end; padding-block: 48px 92px; }
  .hero__content { width: 100%; }
  .availability { margin-bottom: 16px; }
  .hero__lead { margin-top: 18px; font-size: 1rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { grid-template-columns: 1fr; gap: 10px; margin-top: 26px; padding-top: 20px; }
  .hero__proof li { align-items: center; }
  .hero__proof b { display: inline; margin-right: 3px; }
  .hero__caption { right: 15px; bottom: 12px; }

  .problem-section { margin-top: -28px; }
  .problem-box { gap: 22px; padding: 24px 18px; border-radius: 22px; }
  .problem-box__choices { grid-template-columns: repeat(2, 1fr); }
  .problem { min-height: 54px; padding: 10px; font-size: .85rem; }
  .problem-box__cta { width: 100%; }

  .section { padding-block: 74px; }
  .section-heading { margin-bottom: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 24px; }
  .service-card__icon { margin-bottom: 22px; }

  .process { grid-template-columns: 1fr; gap: 42px; }
  .process__media img { height: auto; aspect-ratio: auto; }
  .process__content > h2 { max-width: none; }
  .steps { margin-top: 30px; }

  .coverage__grid,
  .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .coverage__areas { padding: 24px 18px; border-radius: 22px; }
  .faq-layout__intro { position: static; }
  .faq summary { padding-block: 21px; font-size: 1.05rem; }
  .faq summary::after { top: 17px; }
  .faq details p { padding-right: 0; }

  .final-cta__actions { grid-template-columns: 1fr; }
  .final-cta__actions .btn { width: 100%; }
  .foot__top { grid-template-columns: 1fr; gap: 30px; padding-block: 48px; }
  .foot__legal { flex-direction: column; gap: 6px; }

  .fab {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    justify-content: center;
    border-radius: 0;
    box-shadow: 0 -8px 30px rgba(4, 16, 38, .2);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
