/* ============================================================
   WEDLINKS — Global Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. Custom Properties
---------------------------------------------------------- */
:root {
  --navy:       #12233A;
  --navy-light: #1C3354;
  --charcoal:   #1E2329;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --green-muted:#4A6741;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --grey-light: #E8E6E1;
  --grey:       #9A9590;
  --text:       #2C2C2C;
  --text-light: #5C5C5C;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1160px;
  --radius: 6px;
  --transition: 0.25s ease;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
}

/* ----------------------------------------------------------
   2. Reset & Base
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----------------------------------------------------------
   3. Typography
---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-light); font-size: 1.05rem; }

.lead {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.8;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ----------------------------------------------------------
   4. Utility Classes
---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }

.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }

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

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ----------------------------------------------------------
   5. Buttons
---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ----------------------------------------------------------
   6. Navigation
---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  transition: all var(--transition);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav--scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--gold); }

.nav__cta { margin-left: 1rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ----------------------------------------------------------
   7. Hero
---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero image.png');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 35, 58, 0.88) 0%,
    rgba(18, 35, 58, 0.65) 60%,
    rgba(18, 35, 58, 0.40) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  max-width: 720px;
}

.hero__content h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero__subheadline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.75;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__trust-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__trust-note::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ----------------------------------------------------------
   8. Social Proof Bar
---------------------------------------------------------- */
.proof-bar {
  background: var(--navy);
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}
.proof-stat__number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.proof-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ----------------------------------------------------------
   9. Problem Section
---------------------------------------------------------- */
.problem__content {
  max-width: 720px;
  margin: 0 auto;
}
.problem__content h2 { margin-bottom: 2rem; }
.problem__content p { margin-bottom: 1.25rem; font-size: 1.05rem; }

/* ----------------------------------------------------------
   10. Steps / How It Works
---------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-card__number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.step-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }

.steps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 2.5rem;
  transition: gap var(--transition);
}
.steps-link:hover { gap: 0.7rem; }

/* ----------------------------------------------------------
   11. Stats / Results
---------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
}
.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

.testimonial-pull {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 8px 8px 0;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-pull blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-pull__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-pull__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-light);
  overflow: hidden;
  object-fit: cover;
}
.testimonial-pull__name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-pull__role { font-size: 0.8rem; color: var(--grey); }

/* ----------------------------------------------------------
   12. Pricing Snapshot & Cards
---------------------------------------------------------- */
.pricing-snapshot {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-snapshot p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0;
}
.pricing-snapshot p strong { color: var(--white); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  border: 2px solid var(--grey-light);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
  background: var(--white);
}
.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card__price sub {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--grey);
  vertical-align: baseline;
}

.pricing-card__tagline {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--grey-light);
}

.pricing-card__features { margin-bottom: 2rem; }
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.4rem 0;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pricing-card__best-for {
  font-size: 0.82rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.pricing-card__best-for strong { color: var(--text); font-style: normal; }

/* ----------------------------------------------------------
   13. ROI Calculator
---------------------------------------------------------- */
.roi-calculator {
  background: var(--navy);
  border-radius: 10px;
  padding: 3rem;
  margin-top: 3rem;
  color: var(--white);
}
.roi-calculator h3 { color: var(--white); margin-bottom: 0.5rem; }
.roi-calculator > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.roi-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.roi-field input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.roi-field__value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.25rem;
}

.roi-output {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}

.roi-output__item label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.4rem;
}
.roi-output__item span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

/* ----------------------------------------------------------
   14. FAQ Accordion
---------------------------------------------------------- */
.faq { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--grey-light);
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
}
.faq-item__question .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  transition: all var(--transition);
}
.faq-item.open .faq-item__question .icon { background: var(--gold); color: var(--white); border-color: var(--gold); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
}
.faq-item.open .faq-item__answer { max-height: 300px; }

/* ----------------------------------------------------------
   15. Case Study Cards
---------------------------------------------------------- */
.case-study-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.case-study-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-study-card__image {
  height: 200px;
  background: var(--navy-light);
  overflow: hidden;
}
.case-study-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-study-card:hover .case-study-card__image img { transform: scale(1.05); }

.case-study-card__body { padding: 1.75rem; }
.case-study-card__location {
  font-size: 0.78rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.case-study-card__body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.case-study-card__body p { font-size: 0.9rem; margin-bottom: 1.25rem; }

.case-study-card__stats {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--grey-light);
  margin-bottom: 1.25rem;
}
.cs-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.cs-stat span { font-size: 0.78rem; color: var(--grey); }

/* Results wall cards */
.results-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.result-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
}
.result-card__club {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.result-card__stat {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.result-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ----------------------------------------------------------
   16. Full Case Study Story
---------------------------------------------------------- */
.case-story {
  max-width: 780px;
  margin: 0 auto;
}
.case-story__header {
  background: var(--navy);
  border-radius: 10px;
  padding: 3rem;
  margin-bottom: 3rem;
  color: var(--white);
}
.case-story__club-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.case-story__location { color: var(--gold); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; }
.case-story__header-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.case-story__header-stats strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--gold); }
.case-story__header-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.case-story h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.case-story p { margin-bottom: 1.25rem; }
.case-story blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
}

/* ----------------------------------------------------------
   17. How It Works — Detail Sections
---------------------------------------------------------- */
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: start;
}
.process-step__num {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.process-step h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gold);
  z-index: 0;
}
.timeline-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.timeline-item__dot {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.timeline-item h4 { font-size: 0.88rem; margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.8rem; }

/* ----------------------------------------------------------
   18. Book a Call Page
---------------------------------------------------------- */
.book-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.book-trust { margin-top: 2rem; }
.book-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.book-trust__item .icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.book-trust__item p { margin: 0; font-size: 0.9rem; }
.book-trust__item strong { color: var(--navy); }

.calendly-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--grey-light);
  border-radius: 10px;
  padding: 4rem 2rem;
  text-align: center;
}
.calendly-placeholder p { color: var(--grey); font-size: 0.9rem; margin-top: 0.5rem; }

.host-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.host-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grey-light);
  object-fit: cover;
  flex-shrink: 0;
}
.host-card__name { font-weight: 700; color: var(--navy); }
.host-card__role { font-size: 0.85rem; color: var(--grey); }
.host-card__bio { font-size: 0.88rem; margin-top: 0.25rem; }

/* ----------------------------------------------------------
   19. Forms
---------------------------------------------------------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--navy); }

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.75rem;
  text-align: center;
}

/* Inline form (hero CTA section) */
.inline-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.inline-form .form-group { margin-bottom: 0; }
.inline-form .form-group label { color: rgba(255,255,255,0.75); }
.inline-form .form-group input,
.inline-form .form-group select {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.inline-form .form-group input::placeholder { color: rgba(255,255,255,0.4); }
.inline-form .form-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.inline-form .form-submit { grid-column: 1 / -1; }

/* ----------------------------------------------------------
   20. Exit Intent Modal
---------------------------------------------------------- */
.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(18, 35, 58, 0.75);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.exit-modal.show { display: flex; }
.exit-modal__box {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exit-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--grey);
}
.exit-modal__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.exit-modal h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.exit-modal p { margin-bottom: 1.5rem; font-size: 0.95rem; }
.exit-modal__form { display: flex; gap: 0.75rem; }
.exit-modal__form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
}
.exit-modal__form input:focus { border-color: var(--navy); }
.exit-modal__skip {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}

/* ----------------------------------------------------------
   21. Footer
---------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .nav__logo { margin-bottom: 1rem; display: inline-block; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ----------------------------------------------------------
   22. Page Hero (inner pages)
---------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ----------------------------------------------------------
   23. Breadcrumb / Link back
---------------------------------------------------------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap var(--transition);
}
.text-link:hover { gap: 0.65rem; }

/* ----------------------------------------------------------
   24. Responsive
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .timeline::before { display: none; }
  .roi-inputs { grid-template-columns: 1fr; }
  .roi-output { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .proof-bar__inner { gap: 1.5rem; }
  .proof-divider { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .book-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .case-story__header-stats { flex-wrap: wrap; gap: 1.5rem; }
  .pricing-snapshot { flex-direction: column; text-align: center; }
  .roi-output { grid-template-columns: 1fr; gap: 1rem; }
  .inline-form { grid-template-columns: 1fr; }
  .exit-modal__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__content { padding: 7rem 1.5rem 3.5rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .roi-calculator { padding: 2rem 1.5rem; }
  .timeline { grid-template-columns: 1fr; }
}
