/* ============================================================
   wazeroX — SITE STYLESHEET
   Structure, scale, and component language extracted from the
   Luna Glass build (clients/Luna Glass/index.html).
   Palette is wazeroX's own two-blue brand — NOT Luna Glass's.
   Authored mobile-first: base rules are mobile, min-width
   queries scale up at 768px and 1024px.
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Brand — two blues only. No amber, no third accent.
     Primary is the logo blue exactly (images/wazerox-horizontal-logo.png). */
  --color-primary: #006EFC;
  --color-primary-hover: #0056C6;
  --color-navy: #1F2D4A;
  --color-navy-deep: #16223A;

  /* Backgrounds — white + light cream, plus a tint of the primary blue */
  --color-white: #FFFFFF;
  --color-cream: #F5F2ED;
  --color-tint: #E5F0FF;

  /* Text */
  --color-text-dark: #1F2D4A;
  --color-text-mid: #4A5875;
  --color-text-muted: #7A879E;
  --color-border: #E3DDD3;
  --color-border-tint: #C9E0FE;

  /* Type */
  --font-heading: 'Manrope', sans-serif;
  --font-heading-bold: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --btn-radius: 10px;
  --card-radius: 16px;

  /* Rhythm */
  --section-py: 48px;
  --section-py-desk: 80px;
  --nav-h: 64px;
  --nav-h-desk: 110px;

  /* Shadows */
  --shadow-dark: 0 12px 32px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  font-family: var(--font-heading-bold);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

p {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text-mid);
}

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

.accent {
  color: var(--color-primary);
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: calc(var(--nav-h-desk) + 16px);
  }

  .wrap,
  .wrap-narrow {
    padding: 0 40px;
  }
}

/* Image placeholder — swap for a real <img> when assets land */
.ph {
  background: var(--color-cream);
  border: 2px dashed #C4BCB0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.ph.fill {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 0;
}

/* ============================================================
   TYPE PATTERNS — eyebrow label + H2, body copy, dividers
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: #6EADFD;
}

.h2 {
  font-family: var(--font-heading-bold);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.body-p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.body-p:last-child {
  margin-bottom: 0;
}

.body-p strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.lede {
  font-size: 1.125rem;
}

.divider {
  width: 80px;
  height: 2px;
  background: var(--color-primary);
  margin: 1.25rem 0;
  border: none;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-head .divider {
  margin-left: auto;
  margin-right: auto;
}

/* Sections stack on cream / white / tint backgrounds */
.section {
  padding: var(--section-py) 0;
}

.section--white {
  background: var(--color-white);
}

.section--cream {
  background: var(--color-cream);
}

.section--tint {
  background: var(--color-tint);
}

.section--navy {
  background: var(--color-navy);
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-py-desk) 0;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 16px 18px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--color-primary);
  color: #fff;
}

.btn-blue:hover {
  background: var(--color-primary-hover);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-tint);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: #fff;
}

.btn-ghost-blue {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-ghost-blue:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-lg {
  width: 100%;
  max-width: 320px;
  padding: 16px 28px;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  .btn-lg {
    width: auto;
    max-width: none;
    min-width: 260px;
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-navy);
  transition: background 0.3s ease;
}

.nav-bar-inner {
  width: 100%;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

/* Logo — white-ink knockout, for the navy nav bar */
.nav-logo {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo img {
  display: block;
  height: 26px;
  width: auto;
}

.nav-links {
  display: none;
}

.nav-cta {
  display: none;
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: -8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .nav-bar {
    background: transparent;
  }

  .nav-bar.scrolled {
    background: var(--color-navy);
    box-shadow: var(--shadow-dark);
  }

  .nav-bar-inner {
    padding: 0 40px;
    height: var(--nav-h-desk);
    gap: 40px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-logo img {
    height: 34px;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-grow: 1;
    justify-content: center;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-heading-bold);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: #fff;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* Services dropdown (desktop) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 300px;
  background: var(--color-navy);
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: var(--shadow-dark);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading-bold);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--color-navy);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  font-family: var(--font-body);
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  margin-top: 12vh;
  width: 100%;
}

.mobile-menu-links > li {
  margin: 18px 0;
}

.mobile-menu-links a {
  font-family: var(--font-heading-bold);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu-links a:hover {
  color: var(--color-primary);
}

.mobile-menu-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading-bold);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.mobile-menu-dropdown-trigger:hover {
  color: var(--color-primary);
}

.mobile-menu-dropdown-list {
  list-style: none;
  display: none;
  margin-top: 12px;
}

.mobile-menu-dropdown.open .mobile-menu-dropdown-list {
  display: block;
}

.mobile-menu-dropdown-list li {
  margin: 12px 0;
}

.mobile-menu-dropdown-list a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.mobile-menu-cta {
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  min-height: 88vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #16223A 0%, #24365C 50%, #16223A 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(31, 45, 74, 0.35) 0%,
      rgba(31, 45, 74, 0.6) 60%,
      rgba(31, 45, 74, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.6rem, 6.2vw, 2.1rem);
  line-height: 1.18;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 900px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 700px;
  margin-bottom: 1.75rem;
}

.hero-price {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.75rem;
}

.hero-trust {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .hero {
    padding: calc(var(--nav-h-desk) + 72px) 0 88px;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 1.0625rem;
  }

  .hero-price {
    font-size: 0.9375rem;
  }
}

/* ============================================================
   CREDIBILITY STRIP — plain separated text, per Luna's .hero-trust
   ============================================================ */
.cred-strip {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.cred-line {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: var(--color-text-mid);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cred-strip {
    padding: 28px 0;
  }

  .cred-line {
    font-size: 0.9375rem;
  }
}

/* ============================================================
   SPLIT SECTIONS — alternating text / image
   Mobile: HEADLINE -> IMAGE -> BODY
   Desktop: 2-column grid, direction alternates
   ============================================================ */
.split {
  display: grid;
  /* minmax(0,…) so the placeholder's aspect-ratio can't force the track wider
     than the viewport on small screens */
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "headline"
    "image"
    "body";
  align-items: center;
}

.split > * {
  min-width: 0;
}

.split-headline {
  grid-area: headline;
  padding: var(--section-py) 24px 16px;
  text-align: center;
}

.split-img {
  grid-area: image;
  padding: 0 24px;
}

.split-img .ph {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 3;
}

.split-body {
  grid-area: body;
  padding: 20px 24px var(--section-py);
  text-align: center;
}

.split .divider {
  margin-left: auto;
  margin-right: auto;
}

.split-actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .split {
    /* fr rather than % so the column-gap is subtracted instead of overflowing */
    grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
    grid-template-areas:
      "headline image"
      "body image";
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--section-py-desk) 40px;
    column-gap: 56px;
  }

  .split-headline {
    padding: 0 0 12px;
    text-align: left;
    align-self: end;
  }

  .split-body {
    padding: 0;
    text-align: left;
    align-self: start;
  }

  .split-img {
    padding: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .split-img .ph {
    min-height: 460px;
    aspect-ratio: auto;
    height: 100%;
    border-radius: var(--card-radius);
  }

  .split .divider {
    margin-left: 0;
    margin-right: 0;
  }

  .split-actions {
    justify-content: flex-start;
  }

  /* Reversed: image on the left */
  .split--reverse {
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
    grid-template-areas:
      "image headline"
      "image body";
  }
}

/* ============================================================
   SERVICES GRID — 6 cards, each links to its feature page
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-tint);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.svc-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.svc-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-learn-more {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-card:hover .svc-learn-more {
  color: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .svc-card {
    padding: 40px 32px;
  }

  .svc-card h3 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
    margin: 0 auto;
  }
}

/* ============================================================
   STEPS — Cómo trabajamos (3 pasos)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-tint);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  position: relative;
}

/* Plain letterspaced label, per Luna's .step-number — no badge */
.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.step-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-mid);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .step-card {
    padding: 40px 32px;
  }
}

/* ============================================================
   BENEFIT GRID — feature-page sub-blocks
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-tint);
  border-radius: var(--card-radius);
  padding: 28px 24px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-mid);
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .benefit-card {
    padding: 36px 32px;
  }

  .benefit-card h3 {
    font-size: 1.25rem;
  }
}

/* ============================================================
   TRADES STRIP
   ============================================================ */
/* Plain separated text, per Luna's .hero-trust — no tag pills */
.trades-line {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--color-text-dark);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.trades-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--color-text-mid);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .trades-line {
    font-size: 1.125rem;
  }
}

/* ============================================================
   FOUNDER STRIP
   ============================================================ */
.founder-photo .ph {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--card-radius);
}

@media (min-width: 768px) {
  .founder-photo .ph {
    max-width: none;
    aspect-ratio: 4 / 5;
    min-height: 0;
    height: auto;
  }
}

/* ============================================================
   CTA BAND — closing CTA, shared across pages
   ============================================================ */
.cta-band {
  background: var(--color-primary);
  padding: 56px 0;
  text-align: center;
}

.cta-band .wrap-narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--font-heading-bold);
  font-weight: 800;
  font-size: clamp(1.6rem, 5.4vw, 2.1rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-divider {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto 1.25rem;
  border: none;
}

.cta-band p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #fff;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.cta-faq-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cta-faq-link:hover {
  color: #fff;
}

/* Slim variant — used at the end of feature pages */
.cta-band--slim {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .cta-band {
    padding: 88px 0;
  }

  .cta-band h2 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
  }

  .cta-band--slim {
    padding: 64px 0;
  }
}

/* ============================================================
   PAGE BANNER — interior pages (feature / precios / faq)
   ============================================================ */
.page-banner {
  background: var(--color-navy);
  padding: calc(var(--nav-h) + 40px) 0 48px;
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-heading-bold);
  font-weight: 800;
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0 auto 1.25rem;
  max-width: 860px;
}

.page-banner p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto;
}

.page-banner .divider {
  background: var(--color-primary);
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .page-banner {
    padding: calc(var(--nav-h-desk) + 72px) 0 88px;
  }

  .page-banner h1 {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
  }
}

/* Intro block under a page banner */
.page-intro {
  background: var(--color-cream);
  padding: var(--section-py) 0;
}

.page-intro .wrap-narrow {
  text-align: center;
}

.page-intro .body-p {
  font-size: 1.0625rem;
}

.page-intro .body-p:last-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .page-intro {
    padding: var(--section-py-desk) 0;
  }

  .page-intro .body-p {
    font-size: 1.125rem;
  }
}

/* ============================================================
   OBJECTION CARD
   ============================================================ */
.objection {
  background: var(--color-tint);
  border: 1.5px solid var(--color-border-tint);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  max-width: 820px;
  margin: 0 auto;
}

.objection h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.35;
  margin-bottom: 0.875rem;
}

.objection p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-mid);
}

@media (min-width: 768px) {
  .objection {
    padding: 40px 40px;
  }

  .objection h3 {
    font-size: 1.375rem;
  }
}

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-tint);
  border-radius: var(--card-radius);
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
}

.price-card-head {
  background: var(--color-navy);
  padding: 32px 24px;
  text-align: center;
}

.price-plan {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6EADFD;
  margin-bottom: 0.875rem;
  display: block;
}

.price-amount {
  font-family: var(--font-heading-bold);
  font-weight: 800;
  font-size: clamp(2.25rem, 9vw, 3rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.price-terms {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.price-card-body {
  padding: 32px 24px;
}

.price-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.price-list li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-value-frame {
  background: var(--color-tint);
  border-radius: 12px;
  padding: 20px;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 1.75rem;
}

.price-actions {
  text-align: center;
}

.price-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .price-card-head {
    padding: 44px 40px;
  }

  .price-card-body {
    padding: 44px 40px;
  }

  .price-amount {
    font-size: 3.25rem;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-group {
  margin-bottom: 2.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border-tint);
}

.faq-item {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-tint);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--color-primary);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-dark);
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item .faq-answer {
  padding: 0 20px 20px;
}

.faq-item .faq-answer p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-mid);
}

@media (min-width: 768px) {
  .faq-item summary {
    padding: 24px 28px;
    font-size: 1.125rem;
  }

  .faq-item .faq-answer {
    padding: 0 28px 26px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.f-col h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
  margin-bottom: 1.125rem;
}

.f-col ul {
  list-style: none;
}

.f-col ul li {
  margin-bottom: 0.7rem;
}

.f-col ul li a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-mid);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.18s;
}

.f-col ul li a:hover {
  color: var(--color-primary);
}

.f-col p {
  font-size: 1rem;
  color: var(--color-text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.footer-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-divider hr {
  border: none;
  border-top: 1px solid var(--color-border);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Logo — full colour, for the cream footer */
.footer-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.footer-legal p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 48px;
    padding: 72px 40px 48px;
  }

  .footer-divider {
    padding: 0 40px;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 36px 40px 48px;
  }

  .footer-logo img {
    height: 54px;
  }

  .footer-legal {
    text-align: right;
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.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;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
