@font-face {
  font-family: "Woon Sans";
  src: url("assets/fonts/WoonSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Woon Sans";
  src: url("assets/fonts/WoonSans-SemiBold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Woon Sans";
  src: url("assets/fonts/WoonSans-Bold.woff2") format("woff2");
  font-weight: 800;
}

:root {
  --ink: #111827;
  --navy: #172036;
  --deep: #0f1728;
  --orange: #ff7347;
  --paper: #f4f7fb;
  --panel: #e9eef8;
  --line: #d9e0ec;
  --white: #fff;
  --muted: #617086;
  --page: min(1180px, calc(100% - 48px));
  --wide: calc(100% - 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Woon Sans", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 96px;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: #111827;
  border-radius: 12px;
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  height: 52px;
  left: 50%;
  padding: 0 18px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 220ms ease;
  width: min(1120px, calc(100% - 32px));
  z-index: 20;
}

.site-header.nav-hidden {
  opacity: 0;
  transform: translate(-50%, -120%);
}

.brand {
  align-items: center;
  display: flex;
}

.brand img {
  height: 29px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 46px);
  justify-content: center;
}

.nav-links a,
.contact-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-link {
  border-left: 1px solid #3a4355;
  padding-left: 24px;
}

.hero-shell {
  background: #f4f7fb;
  padding: 92px 0 54px;
}

.hero-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: none;
  width: var(--wide);
}

.hero-card,
.hero-photo {
  border-radius: 24px;
  min-height: 430px;
  overflow: hidden;
}

.hero-card {
  background: #e9eef8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

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

h1 {
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 0.94;
  margin-bottom: 20px;
  max-width: 640px;
}

.hero-sub {
  color: #354258;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.35;
  margin-bottom: 28px;
  max-width: 640px;
}

.address-bar {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 0.7fr auto;
  max-width: 690px;
}

.address-field label {
  color: #536176;
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 7px;
}

.address-field input,
.address-bar button {
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  height: 44px;
}

.address-field input {
  background: var(--white);
  color: var(--ink);
  display: block;
  font-size: 14px;
  padding: 0 18px;
  width: 100%;
}

.address-bar button,
.package-grid a,
.footer-cta a {
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 0 22px;
  white-space: nowrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.intro-strip {
  margin: 42px auto 0;
  max-width: none;
  text-align: center;
  width: var(--wide);
}

.intro-strip > p {
  color: #243145;
  font-size: 18px;
  margin-bottom: 24px;
}

.stat-row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}

.stat-row article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.stat-row strong {
  color: var(--navy);
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-row span {
  color: #536176;
  font-size: 14px;
  line-height: 1.35;
}

.solution-section,
.story-section,
.package-section,
.reviews-section,
.faq-section {
  margin: 0 auto;
  max-width: var(--page);
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2,
.proof-copy h2,
.story-row h2,
.cta-panel h2,
.faq-copy h2,
.footer-cta h2 {
  font-size: clamp(31px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}

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

.solution-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
}

.solution-card img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  width: 100%;
}

.solution-card div {
  padding: 22px;
}

.solution-card h3,
.proof-cards h3,
.package-grid h3 {
  font-size: 22px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.solution-card p,
.proof-copy p,
.proof-cards p,
.story-row p,
.package-grid p,
.faq-list p,
.review-grid p,
.footer-cta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

.dark-proof {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1.2fr;
  margin: 38px auto 72px;
  max-width: none;
  padding: clamp(36px, 5vw, 64px);
  width: var(--wide);
}

.dark-proof,
.cta-panel {
  border-radius: 24px;
}

.proof-copy p,
.proof-cards p {
  color: #bcc8da;
}

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

.proof-cards article {
  background: #202a42;
  border-radius: 18px;
  min-height: 250px;
  padding: 26px;
}

.story-section {
  display: grid;
  gap: 32px;
}

.story-row {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: 1fr 1fr;
}

.story-row.reverse img {
  grid-column: 2;
}

.story-row.reverse div {
  grid-column: 1;
  grid-row: 1;
}

.story-row img {
  aspect-ratio: 1.26 / 1;
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
}

.package-section {
  padding-top: 52px;
}

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

.package-grid article {
  background: #e9eef8;
  border-radius: 22px;
  padding: 30px;
}

.package-grid article.featured {
  background: var(--navy);
  color: var(--white);
}

.package-grid article.featured p {
  color: #c5cede;
}

.package-grid a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  height: 38px;
  margin-top: 28px;
}

.package-grid article:not(.featured) a {
  background: var(--navy);
}

.cta-panel {
  align-items: center;
  background: #e9eef8;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.85fr 1.15fr;
  margin: 38px auto;
  max-width: var(--page);
  padding: clamp(30px, 5vw, 56px);
}

.address-bar.compact {
  max-width: none;
}

.reviews-section {
  padding-bottom: 54px;
}

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

.review-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 190px;
  padding: 24px;
}

.review-grid span {
  color: #ffb000;
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.review-grid strong {
  display: block;
  font-size: 13px;
  margin-top: 20px;
}

.faq-section {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: 0.9fr 1.1fr;
  padding-top: 42px;
}

.faq-image {
  position: sticky;
  top: 92px;
}

.faq-image img {
  aspect-ratio: 1.2 / 1;
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-size: 21px;
  font-weight: 800;
  gap: 22px;
  grid-template-columns: 1fr 30px;
  line-height: 1.2;
  list-style: none;
  padding: 24px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 1;
  place-items: center;
  width: 30px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -10px 58px 24px 0;
}

.site-footer {
  background: var(--deep);
  color: var(--white);
  margin-top: 42px;
  padding: 48px 0 28px;
}

.footer-cta {
  align-items: center;
  background: #162039;
  border-radius: 20px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  margin: 0 auto 36px;
  max-width: var(--page);
  padding: 32px;
}

.footer-cta p {
  color: #d4ddec;
  max-width: 520px;
}

.footer-cta a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
}

.footer-columns {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 42px;
  max-width: var(--page);
}

.footer-columns h3 {
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-columns a {
  color: #c3cbda;
  display: block;
  font-size: 13px;
  line-height: 1.9;
}

.legal {
  color: #8993a7;
  font-size: 12px;
  margin: 0 auto;
  max-width: var(--page);
}

.floating-advice {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  bottom: 18px;
  color: var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  left: 50%;
  padding: 16px 18px 16px 22px;
  position: fixed;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 44px));
  z-index: 30;
}

.floating-advice strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.floating-advice p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}

.floating-form {
  display: grid;
  gap: 8px;
  grid-template-columns: 140px 118px auto;
}

.floating-form input,
.floating-form button {
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  height: 42px;
}

.floating-form input {
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  padding: 0 16px;
}

.floating-form button {
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 0 20px;
  white-space: nowrap;
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .dark-proof,
  .story-row,
  .cta-panel,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .story-row.reverse img,
  .story-row.reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-grid,
  .proof-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-image {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 28px, 1180px);
    --wide: var(--page);
  }

  .site-header {
    height: 50px;
    top: 12px;
  }

  .contact-link {
    font-size: 12px;
    padding-left: 16px;
  }

  .hero-shell {
    padding-top: 78px;
  }

  .hero-card,
  .hero-photo {
    border-radius: 18px;
    min-height: auto;
  }

  .hero-card {
    padding: 30px 24px;
  }

  h1 {
    font-size: 43px;
  }

  .address-bar,
  .address-bar.compact,
  .stat-row,
  .solution-grid,
  .proof-cards,
  .package-grid,
  .review-grid,
  .footer-cta,
  .footer-columns,
  .floating-advice,
  .floating-form {
    grid-template-columns: 1fr;
  }

  .floating-advice {
    align-items: stretch;
    bottom: 12px;
    gap: 12px;
    padding: 14px;
    width: calc(100% - 24px);
  }

  .floating-form input,
  .floating-form button {
    width: 100%;
  }

  .address-field label {
    margin-top: 4px;
  }

  .address-field input,
  .address-bar button {
    width: 100%;
  }

  .solution-section,
  .story-section,
  .package-section,
  .reviews-section,
  .faq-section {
    padding: 48px 0;
  }

  .dark-proof,
  .cta-panel {
    border-radius: 18px;
    margin-inline: auto;
    padding: 28px;
  }

  .footer-cta {
    align-items: start;
  }
}
