/* ===== Tokens ===== */
:root {
  --navy: #2B4257;
  --navy-deep: #1F3348;
  --card-navy: #33465C;
  --card-navy-border: #46597A;
  --sky: #6DA7CC;
  --dusty-blue: #88A9C3;
  --cream: #EFEBE5;
  --black: #000000;
  --white: #FFFFFF;
  --sub-text: #CBD9E4;
  --muted: #6B7D8E;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button { font-family: var(--font-body); cursor: pointer; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  padding: 14px 20px;
}

.nav__logo img { height: 40px; width: auto; }

.nav__links { display: none; align-items: center; gap: 40px; }

.nav__links a {
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
  transition: opacity .15s ease;
}
.nav__links a:hover { opacity: .7; }

.nav__cta {
  background: var(--cream);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.nav__links a.nav__cta,
.mobile-menu a.nav__cta {
  color: var(--black);
}

.nav__menu-btn {
  background: none;
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__menu-btn svg { stroke: var(--cream); }
.nav__menu-btn .icon-close { display: none; }
.nav__menu-btn[aria-expanded="true"] .icon-open { display: none; }
.nav__menu-btn[aria-expanded="true"] .icon-close { display: block; }

/* ===== Mobile menu overlay ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 68px;
  background: var(--black);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  text-transform: uppercase;
}

.mobile-menu .nav__cta {
  margin-top: 12px;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}

/* ===== Section shells ===== */
.section { padding: 56px 24px; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); }
.section--black { background: var(--black); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ===== Hero ===== */
.hero { background: var(--black); padding: 56px 24px 48px; }
.hero__eyebrow { color: var(--dusty-blue); }
.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sub-text);
  font-weight: 300;
  margin: 0 0 28px;
}
.hero__visual {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.btn-primary {
  display: block;
  text-align: center;
  background: var(--cream);
  color: var(--black);
  padding: 17px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
  border: none;
  width: 100%;
}
.hero__see-more {
  display: block;
  text-align: center;
  color: var(--dusty-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

/* ===== About ===== */
.about__photo {
  width: 62%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about h2 { font-size: 30px; color: var(--navy); margin-bottom: 24px; }
.about p { font-size: 15px; line-height: 1.7; color: var(--navy); font-weight: 300; margin: 0; }
.about .eyebrow { color: var(--navy); }

/* ===== Services ===== */
.services .eyebrow { color: var(--navy); margin-bottom: 32px; }
.cards { display: flex; flex-direction: column; gap: 18px; }
.card {
  background: var(--cream);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.card--dark { background: var(--navy); }
.card__num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--sky);
  margin-bottom: 6px;
}
.card h3 { font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.card--dark h3 { color: var(--cream); }
.card__meta { font-size: 13px; color: var(--navy); font-weight: 600; margin-bottom: 10px; }
.card--dark .card__meta { color: var(--dusty-blue); }
.card p { font-size: 14px; line-height: 1.6; color: var(--navy); font-weight: 300; margin: 0 0 14px; }
.card--dark p { color: #C9D6E3; }
.card__tiers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--white);
  border-radius: 10px;
}
.card__tiers div { display: flex; justify-content: space-between; font-size: 13px; color: var(--navy); }
.card__tiers span:last-child { font-weight: 600; }
.card__link { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: underline; margin-top: auto; }
.card--dark .card__link { color: var(--cream); }

/* ===== Results ===== */
.results .eyebrow { color: var(--sky); }
.results h2 { font-size: 28px; color: var(--cream); margin-bottom: 28px; }
.results__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.results__item { display: flex; gap: 12px; align-items: flex-start; }
.results__item svg { flex-shrink: 0; margin-top: 2px; }
.results__item p { font-size: 14px; line-height: 1.6; color: var(--cream); font-weight: 300; margin: 0; }
.testimonial {
  background: var(--card-navy);
  border: 1px solid var(--card-navy-border);
  border-radius: 16px;
  padding: 26px;
}
.testimonial__mark { font-family: var(--font-display); font-size: 36px; color: var(--sky); line-height: 1; margin-bottom: 8px; }
.testimonial p { font-size: 15px; line-height: 1.6; color: var(--cream); font-style: italic; font-weight: 300; margin: 0 0 14px; }
.testimonial cite { font-size: 13px; color: var(--dusty-blue); font-weight: 600; font-style: normal; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 26px; color: var(--navy); margin-bottom: 14px; }
.final-cta p { font-size: 15px; line-height: 1.6; color: var(--navy); font-weight: 300; margin: 0 0 28px; }
.final-cta .btn-primary { background: var(--navy); color: var(--cream); }

/* ===== Newsletter ===== */
.newsletter { text-align: center; }
.newsletter .eyebrow { color: var(--sky); }
.newsletter p { font-size: 14px; line-height: 1.6; color: var(--sub-text); font-weight: 300; margin: 0 0 24px; }
.newsletter form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__row, .newsletter__submit-row { display: flex; flex-direction: column; gap: 12px; }
.newsletter input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
}
.newsletter button {
  width: 100%;
  background: var(--cream);
  color: var(--black);
  padding: 15px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
}
.newsletter__hp { position: absolute; left: -5000px; }

/* ===== FAQ ===== */
.faq .eyebrow { color: var(--navy); }
.faq h2 { font-size: 28px; color: var(--navy); margin-bottom: 28px; }
.faq__list { display: flex; flex-direction: column; gap: 28px; }
.faq__q {
  background: var(--dusty-blue);
  border-radius: 999px;
  padding: 14px 22px;
  margin-bottom: 14px;
  display: inline-block;
}
.faq__q span { font-size: 15px; color: var(--white); font-weight: 600; }
.faq__a { font-size: 14px; line-height: 1.6; color: var(--navy); font-weight: 300; margin: 0; }

/* ===== Footer ===== */
.footer { background: var(--black); padding: 40px 24px; }
.footer__logo img { height: 46px; width: auto; margin-bottom: 22px; }
.footer__social { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.footer__social a {
  display: flex;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  align-items: center;
  justify-content: center;
  transition: opacity .15s ease;
}
.footer__social a:hover { opacity: .7; }
.footer__links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.footer__links a { font-size: 13px; color: var(--dusty-blue); font-weight: 400; }
.footer__bottom {
  border-top: 1px solid var(--navy);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copyright { font-size: 11px; color: var(--muted); }
.footer__legal { display: flex; gap: 14px; }
.footer__legal a { font-size: 11px; color: var(--muted); font-weight: 400; text-decoration: underline; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--black);
  padding: 20px 24px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform .25s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 13px; line-height: 1.5; color: var(--cream); font-weight: 300; margin: 0 0 14px; }
.cookie-banner a { color: var(--dusty-blue); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__actions button {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-body);
}
.btn-decline { background: transparent; color: var(--cream); border: 1px solid var(--card-navy-border); }
.btn-accept { background: var(--cream); color: var(--black); border: none; }

/* ===== Legal pages ===== */
.legal-content { max-width: 720px; margin: 0 auto; padding: 64px 24px 96px; }
.legal-content h1 { font-size: 34px; color: var(--navy); margin-bottom: 10px; }
.legal-content .updated { font-size: 13px; color: var(--muted); font-weight: 500; margin: 0 0 32px; }
.legal-content h2 { font-size: 18px; color: var(--navy); margin: 0 0 10px; }
.legal-content p { font-size: 15px; line-height: 1.7; color: var(--navy); font-weight: 300; margin: 0 0 28px; }
.legal-content ul { font-size: 15px; line-height: 1.8; color: var(--navy); font-weight: 300; margin: 0 0 28px; padding-left: 22px; }
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-content .back-link { font-size: 13px; color: var(--muted); font-weight: 400; margin: 0; }
.legal-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black); padding: 16px 24px;
}
.legal-nav img { height: 36px; width: auto; }
.legal-nav a.back { font-size: 13px; color: var(--dusty-blue); font-weight: 500; }

/* ============================================================
   Desktop (900px+)
   ============================================================ */
@media (min-width: 900px) {
  .nav { padding: 18px 64px; }
  .nav__logo img { height: 48px; }
  .nav__links { display: flex; }
  .nav__menu-btn { display: none; }

  .section { padding: 100px 64px; }
  .hero { padding: 100px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .hero__eyebrow { font-size: 13px; margin-bottom: 20px; }
  .hero h1 { font-size: 54px; line-height: 1.08; margin-bottom: 24px; }
  .hero__sub { font-size: 18px; margin-bottom: 36px; max-width: 480px; }
  .hero__visual { aspect-ratio: 4/3; max-width: 480px; margin: 0 0 0 auto; }
  .hero__cta-row { display: flex; align-items: center; gap: 28px; }
  .btn-primary { display: inline-block; width: auto; padding: 17px 32px; margin-bottom: 0; }
  .hero__see-more { display: inline; }

  .about { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about__photo { width: 100%; max-width: 380px; aspect-ratio: 3/4; margin: 0; }
  .about h2 { font-size: 38px; margin-bottom: 26px; }
  .about p { font-size: 16px; max-width: 520px; }

  .services__intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  .cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .card { padding: 30px 26px; }
  .card__num { font-size: 36px; }
  .card h3 { font-size: 19px; }

  .results { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .results h2 { font-size: 36px; }
  .testimonial { padding: 40px; }
  .testimonial__mark { font-size: 48px; }
  .testimonial p { font-size: 18px; }

  .final-cta h2 { font-size: 38px; }
  .final-cta p { font-size: 16px; }
  .final-cta .btn-primary { padding: 17px 36px; }

  .newsletter__inner { max-width: 560px; margin: 0 auto; }
  .newsletter p { font-size: 16px; margin-bottom: 32px; }
  .newsletter__row { display: flex; gap: 12px; margin-bottom: 12px; }
  .newsletter__row input { flex-grow: 1; padding: 15px 20px; }
  .newsletter__submit-row { display: flex; gap: 12px; }
  .newsletter__submit-row input { flex-grow: 1; padding: 15px 20px; }
  .newsletter__submit-row button { width: auto; padding: 15px 28px; white-space: nowrap; }

  .faq__inner { max-width: 760px; margin: 0 auto; }
  .faq h2 { font-size: 36px; margin-bottom: 40px; }
  .faq__list { gap: 36px; }
  .faq__q { padding: 16px 26px; }
  .faq__q span { font-size: 16px; }
  .faq__a { font-size: 15px; line-height: 1.7; }

  .footer { padding: 56px 64px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
  .footer__logo img { height: 54px; margin-bottom: 18px; }
  .footer__social a { width: 38px; height: 38px; }
  .footer__links { flex-direction: row; gap: 40px; margin-bottom: 0; }
  .footer__links a { font-size: 14px; color: var(--cream); }
  .footer__bottom { border-top: none; padding-top: 0; display: flex; gap: 20px; }
  .footer__col:first-child { display: flex; flex-direction: column; }

  .cookie-banner { padding: 22px 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .cookie-banner p { margin: 0; max-width: 720px; }
  .cookie-banner__actions { flex-shrink: 0; }
  .cookie-banner__actions button { padding: 12px 24px; white-space: nowrap; flex: none; }

  .legal-nav { padding: 16px 64px; }
}
