/* ============================================================
   CCRCoaching — styles.css
   Theme: Black & Gold — Elegant, Premium, Faith-Based
   Matches the CCRCoaching Client Presentation PowerPoint
   ============================================================ */

/* ─── FONTS ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Lato:wght@300;400;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --black:       #0D0D0D;
  --black-soft:  #111111;
  --black-card:  #161610;
  --black-mid:   #1C1C16;
  --gold:        #C9A84C;
  --gold-dark:   #A07830;
  --gold-light:  #E2C278;
  --off-white:   #F8F5EE;
  --cream:       #EDE8DC;
  --text-light:  #CCCCBB;
  --text-muted:  #888880;
  --text-dim:    #555550;
  --border:      #2A2A20;
  --border-gold: rgba(201,168,76,0.35);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Calibri', sans-serif;

  --radius:    4px;
  --radius-lg: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.45);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);

  --max-w: 1140px;
  --section-pad: 96px 24px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: #fff; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-light); }

/* ─── EYEBROW LABELS ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── GOLD ACCENT BAR ────────────────────────────────────── */
.gold-bar {
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0D0D0D;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-card {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-size: 0.8rem;
  padding: 11px 26px;
}
.btn-outline-card:hover {
  background: var(--gold);
  color: #0D0D0D;
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-dot { color: var(--gold); }

/* Navbar logo */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* Hero logo */
.hero-logo-link {
  display: block;
  margin-bottom: 32px;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.18));
}

/* Footer logo */
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.logo:hover .footer-logo-img { opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: #0D0D0D !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #0D0D0D !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--black);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 88px 24px 80px;
  background: var(--black);
}

/* Left gold accent bar */
#hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
}

/* Subtle texture overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.98) 0%, rgba(22,22,16,0.95) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 32px;
  color: #fff;
}

/* Purpose statement */
.purpose-statement {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 28px 0 32px;
  padding: 24px 28px;
  border: 1px solid var(--border-gold);
  background: rgba(201,168,76,0.05);
  border-radius: var(--radius);
}
.purpose-line {
  flex-shrink: 0;
  width: 3px;
  min-height: 60px;
  background: var(--gold);
  border-radius: 2px;
}
.purpose-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.purpose-highlight { color: var(--gold); font-weight: 700; }

.hero-main-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════════════════
   SCRIPTURE BANNER
═══════════════════════════════════════════════════════════ */
.scripture-banner {
  background: var(--gold);
  padding: 32px 24px;
  text-align: center;
}
.scripture-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0D0D0D;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 8px;
}
.scripture-ref {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(13,13,13,0.7);
}

/* ═══════════════════════════════════════════════════════════
   TAGLINE STRIPS
═══════════════════════════════════════════════════════════ */
.tagline-strip { padding: 28px 24px; text-align: center; }
.tagline-dark {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tagline-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
#about {
  padding: var(--section-pad);
  background: var(--off-white);
}
#about .section-eyebrow { color: var(--gold-dark); }
#about h2 { color: #111; }
#about p { color: #444; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: #0D0D0D;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-head); }
.about-badge span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.about-text { padding-left: 8px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-values { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-values li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: #333; font-weight: 600;
}
.check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold);
  color: #0D0D0D;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════
   WHO WE HELP
═══════════════════════════════════════════════════════════ */
#who-we-help {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 4px solid var(--gold);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.who-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.who-icon { font-size: 1.8rem; margin-bottom: 14px; }
.who-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.05rem; }
.who-card p { font-size: 0.9rem; color: var(--text-muted); }
.who-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   OUR APPROACH
═══════════════════════════════════════════════════════════ */
#approach {
  padding: var(--section-pad);
  background: var(--black-mid);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.approach-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.12);
}
.approach-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}
.approach-card h3 { color: #fff; margin-bottom: 14px; font-size: 1.15rem; }
.approach-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 14px; }
.approach-scripture {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.85rem !important;
  color: var(--gold) !important;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════════════════════ */
.quote-section {
  padding: 80px 24px;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.quote-icon { font-size: 2rem; color: var(--gold); margin-bottom: 20px; }
blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: #fff;
  line-height: 1.55;
  margin-bottom: 20px;
}
.quote-author {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES / PRICING
═══════════════════════════════════════════════════════════ */
#services {
  padding: var(--section-pad);
  background: var(--black-mid);
}

/* Discovery Banner */
.discovery-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.discovery-content { display: flex; align-items: flex-start; gap: 20px; }
.discovery-icon {
  font-size: 1.4rem; color: var(--gold);
  margin-top: 2px; flex-shrink: 0;
}
.discovery-content h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.discovery-content p { font-size: 0.9rem; color: var(--text-muted); }
.discovery-badge {
  display: inline-block;
  background: var(--gold);
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
}

/* ── Pricing Trio ─────────────────────────────────────────── */
.pricing-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
  align-items: start;
}

/* Two-card variant (Foundation + Shalom Awakening pair).
   Use this modifier instead of an inline grid-template-columns override so the
   responsive collapse below actually wins on mobile. The featured card gets a
   slightly wider track on desktop to make the recommended option feel bigger. */
.pricing-trio.pricing-trio--pair {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Base card */
/* ─────────────────────────────────────────────
   PRICING CARDS — Premium Redesign
───────────────────────────────────────────── */
.ptcard {
  position: relative;
  border-radius: 20px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}
.ptcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

/* Dark card */
.ptcard-dark {
  background: linear-gradient(160deg, #1C1C14 0%, #111110 100%);
  border: 1px solid rgba(201,168,76,0.12);
}

/* Featured (middle) card — elevated treatment */
.ptcard-featured {
  border-color: rgba(201,168,76,0.45);
  background: linear-gradient(160deg, #201E12 0%, #151410 100%);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.18),
    0 12px 60px rgba(201,168,76,0.1),
    0 4px 20px rgba(0,0,0,0.4);
}

/* Gold card (Phase 3) */
.ptcard-gold-bg {
  background: linear-gradient(150deg, #D4A94C 0%, #C9A84C 55%, #B8952E 100%);
  border: none;
  box-shadow: 0 12px 60px rgba(201,168,76,0.3), 0 4px 20px rgba(0,0,0,0.3);
}

/* Gold bg overrides */
.ptcard-gold-bg .pkg-duration { color: #0D0D0D; }
.ptcard-gold-bg .pkg-sessions { color: rgba(13,13,13,0.6); }
.ptcard-gold-bg .pkg-phase-tag {
  color: rgba(13,13,13,0.65);
  border-color: rgba(13,13,13,0.2);
  background: rgba(13,13,13,0.08);
}
.ptcard-gold-bg .ptcard-tier-dark { color: #0D0D0D; }
.ptcard-gold-bg .pkg-duration-row { border-top-color: rgba(13,13,13,0.12); }

/* ── Badge tab ── */
.ptcard-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0D0D0D;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 24px;
  border-radius: 6px 6px 0 0;
  white-space: nowrap;
  box-shadow: 0 -4px 16px rgba(201,168,76,0.3);
}
.ptcard-gold-bg .ptcard-badge {
  background: #0D0D0D;
  color: var(--gold);
  box-shadow: none;
}

/* ── Phase pill ── */
.pkg-phase-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.72;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Tier heading — the hero of the card ── */
.ptcard-tier {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
/* Gold accent rule below heading */
.ptcard-tier::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
  border-radius: 2px;
  opacity: 0.65;
}
.ptcard-tier-gold { color: var(--gold); }
.ptcard-tier-dark { color: #0D0D0D; }
.ptcard-tier-dark::after { background: rgba(13,13,13,0.3); opacity: 1; }

/* ── Shalom subtitle ── */
.ptcard-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin: 18px 0 10px;
  display: block;
}
.ptcard-sub-dark { color: rgba(13,13,13,0.5); opacity: 1; }

/* ── Description blurb ── */
.ptcard-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.ptcard-desc-dark { color: rgba(13,13,13,0.52); }

/* ── Duration separator row ── */
.pkg-duration-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pkg-duration {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.pkg-sessions {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ── Feature list ── */
.ptcard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  flex: 1;
}
.ptcard-features li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.35;
}
.ptcard-features li:last-child { border-bottom: none; }
.ptcard-features-dark li {
  color: rgba(13,13,13,0.75);
  border-bottom-color: rgba(13,13,13,0.1);
}
.ptcard-features-dark li:last-child { border-bottom: none; }

/* ── Price note ── */
.pkg-price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 11px 16px;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  font-style: italic;
}
.pkg-price-note-dark {
  color: rgba(13,13,13,0.42);
  border-color: rgba(13,13,13,0.1);
  background: rgba(13,13,13,0.04);
}

/* ── Divider (kept for backwards compat, visually hidden) ── */
.ptcard-divider { display: none; }
.ptcard-divider-gold { display: none; }
.ptcard-divider-dark { display: none; }

/* ── Payment line (legacy) ── */
.ptcard-payment { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 20px; }
.ptcard-payment-gold { color: var(--gold); font-style: italic; }
.ptcard-payment-dark { color: rgba(13,13,13,0.6); font-style: italic; }

/* ── Buttons ── */
.pkg-btn {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  border-radius: 8px;
}

.btn-dark-solid {
  background: #0D0D0D;
  color: var(--gold);
  border: 2px solid #0D0D0D;
}
.btn-dark-solid:hover {
  background: #1a1a14;
  border-color: #1a1a14;
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  padding: 20px 28px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}
.pricing-note p { font-size: 0.9rem; color: var(--text-muted); }
.pricing-note strong { color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-pad);
  background: var(--off-white);
}
#testimonials .section-eyebrow { color: var(--gold-dark); }
#testimonials h2 { color: #111; }
#testimonials .section-sub { color: #666; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid #e0d9cc;
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.testimonial-featured {
  grid-column: 1 / -1;
  background: #111;
  border-color: var(--gold);
  border-top-width: 4px;
}
.testimonial-featured .testimonial-text { color: var(--text-light); }
.testimonial-featured .stars { color: var(--gold); }
.testimonial-featured .testimonial-author strong { color: #fff; }
.testimonial-featured .testimonial-author span { color: var(--text-dim); }

.stars { font-size: 1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #0D0D0D;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: #111; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.78rem; color: #888; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 4px solid var(--gold);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-text .section-eyebrow { color: var(--gold); }
.contact-text h2 { color: #fff; margin-bottom: 16px; }
.contact-tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.contact-text p { color: var(--text-muted); margin-bottom: 12px; }
.contact-details { margin-top: 28px; }
.contact-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* Contact Form */
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #111; color: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 12px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: #0A0A08;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   SHALOM AWAKENING METHOD SECTION
═══════════════════════════════════════════════════════════ */
.shalom-section {
  padding: var(--section-pad);
  background: var(--black);
}
.shalom-intro-box {
  text-align: center;
  margin-bottom: 56px;
}
.shalom-hebrew {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5rem);
  color: #8B1A1A;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(139,26,26,0.35);
}
.shalom-romanized {
  font-size: 0.82rem;
  color: #8B1A1A;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
/* Redesigned definition card */
.shalom-definition-card {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.shalom-def-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.shalom-def-rule::before,
.shalom-def-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,26,26,0.5), transparent);
}
.shalom-def-rule span {
  font-size: 1rem;
  color: #8B1A1A;
  opacity: 0.7;
}
.shalom-def-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.shalom-def-statement {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 14px;
}
.shalom-def-statement em {
  color: var(--gold);
  font-style: italic;
}
.shalom-def-sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Kept for legacy but replaced by card above */
.shalom-definition {
  font-size: 1.05rem;
  color: var(--text-main);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.shalom-meaning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 56px;
}
.shalom-meaning-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
}
.shalom-meaning-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
.shalom-meaning-word {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.shalom-meaning-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.shalom-phases-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.shalom-phases {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.phase-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.phase-number {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.phase-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}
.phase-subtitle {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}
.phase-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 14px;
}
.phase-why {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  padding: 10px 14px;
  background: rgba(201,168,76,0.05);
  border-left: 2px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  text-align: left;
  line-height: 1.55;
}
.phase-why strong {
  color: var(--gold);
  font-style: normal;
}
.phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.55;
}
.shalom-tagline-box {
  text-align: center;
  margin: 48px auto 0;
  max-width: 680px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 12px;
}
.shalom-tagline-box p {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   AWAKEN WITHIN PROCESS SECTION
═══════════════════════════════════════════════════════════ */
.awaken-section {
  padding: var(--section-pad);
  background: var(--black-card);
}
.awaken-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  max-width: 1040px;
  margin: 40px auto 0;
}
.awaken-step {
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.awaken-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #0D0D0D;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.awaken-step-verb {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.awaken-step-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.awaken-step-subtitle {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.awaken-step-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}
.awaken-step-why {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  padding: 10px 14px;
  background: rgba(201,168,76,0.05);
  border-left: 2px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  text-align: left;
  line-height: 1.55;
}
.awaken-step-why strong {
  color: var(--gold);
  font-style: normal;
}
.awaken-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.55;
}
/* Redesigned visual connector */
.awaken-connector {
  margin: 48px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  overflow: hidden;
}
.connector-col {
  padding: 32px 24px;
  text-align: center;
}
.connector-col-result {
  background: rgba(201,168,76,0.05);
}
.connector-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.connector-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.connector-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}
.connector-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.connector-op {
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
  opacity: 0.5;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE CARDS (no-price design)
═══════════════════════════════════════════════════════════ */
.pkg-phase-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
/* pkg-duration-row, pkg-duration, pkg-sessions, pkg-price-note
   defined above in the Premium Pricing Cards block */

/* ═══════════════════════════════════════════════════════════
   METHOD FOOTER STRIP
═══════════════════════════════════════════════════════════ */
.method-footer-strip {
  background: rgba(201,168,76,0.04);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 36px 24px;
}
.method-footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.method-footer-col {
  flex: 1;
}
.method-footer-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.method-footer-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  line-height: 1.5;
}
.method-footer-tag {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  opacity: 0.75;
}
.method-footer-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(201,168,76,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING ACTION BUTTON
═══════════════════════════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--gold);
  color: #0D0D0D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(201,168,76,0.65);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .two-col,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -16px; right: 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .pricing-trio { grid-template-columns: 1fr; }
  .pricing-trio.pricing-trio--pair { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { grid-column: auto; }
  .shalom-meaning-grid { grid-template-columns: repeat(2, 1fr); }
  .shalom-phases { grid-template-columns: 1fr; gap: 24px; }
  .phase-arrow { padding-top: 0; transform: rotate(90deg); }
  .awaken-steps { grid-template-columns: 1fr; gap: 24px; }
  .awaken-flow-arrow { padding-top: 0; transform: rotate(90deg); }
  .method-footer-inner { flex-direction: column; gap: 24px; }
  .method-footer-divider { width: 100%; height: 1px; align-self: unset; }
  .awaken-connector { grid-template-columns: 1fr; }
  .connector-op { transform: rotate(90deg); padding: 4px 0; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-left: 20px; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-trio { grid-template-columns: 1fr; }
  .pricing-trio.pricing-trio--pair { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .discovery-banner { flex-direction: column; align-items: flex-start; }
  .purpose-statement { flex-direction: column; gap: 12px; }
  .purpose-line { width: 40px; height: 3px; min-height: unset; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ── CTA TRUST LINE — quiet reassurance under booking buttons ─────── */
.cta-trust-line {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
  margin: 18px auto 0;
  text-align: center;
  letter-spacing: 0.01em;
  opacity: 0.78;
}

@media (max-width: 600px) {
  .cta-trust-line {
    font-size: 0.74rem;
    padding: 0 16px;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   MEGA QUIZ CTA — high-conversion button used across all landing pages.
   Page-specific accent color is supplied via inline custom properties:
     --cta-bg, --cta-bg-light, --cta-text, --cta-glow, --cta-glow-strong
   ══════════════════════════════════════════════════════════════════════ */
.quiz-mega-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  background: var(--cta-bg, #C9A84C);
  background-image: linear-gradient(
    135deg,
    var(--cta-bg, #C9A84C) 0%,
    var(--cta-bg-light, #dbbe6a) 50%,
    var(--cta-bg, #C9A84C) 100%);
  color: var(--cta-text, #111110);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 28px 64px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  border: none;
  line-height: 1.2;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -2px 0 rgba(0,0,0,0.10),
    0  8px 24px rgba(0,0,0,0.45),
    0 16px 50px -10px var(--cta-glow, rgba(201,168,76,0.55));
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              filter 0.28s ease;
  animation: quizCtaPulse 2.4s ease-in-out infinite;
}

/* Shimmer sweep */
.quiz-mega-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%);
  transform: skewX(-22deg);
  transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.quiz-mega-cta > * {
  position: relative;
  z-index: 2;
}

/* Animated arrow */
.quiz-mega-cta-arrow {
  display: inline-block;
  font-size: 1.25em;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Two-line layout (eyebrow + main label) */
.quiz-mega-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.quiz-mega-cta-eyebrow {
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.28em;
  opacity: 0.7;
}

.quiz-mega-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
}

/* Hover */
.quiz-mega-cta:hover,
.quiz-mega-cta:focus-visible {
  transform: translateY(-4px) scale(1.025);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -2px 0 rgba(0,0,0,0.12),
    0 14px 32px rgba(0,0,0,0.5),
    0 26px 70px -8px var(--cta-glow-strong, rgba(201,168,76,0.85));
  animation-play-state: paused;
  outline: none;
}

.quiz-mega-cta:hover::before,
.quiz-mega-cta:focus-visible::before {
  left: 125%;
}

.quiz-mega-cta:hover .quiz-mega-cta-arrow,
.quiz-mega-cta:focus-visible .quiz-mega-cta-arrow {
  transform: translateX(8px);
}

.quiz-mega-cta:active {
  transform: translateY(-1px) scale(1.005);
  transition-duration: 0.08s;
}

/* Pulsing glow */
@keyframes quizCtaPulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.32),
      inset 0 -2px 0 rgba(0,0,0,0.10),
      0  8px 24px rgba(0,0,0,0.45),
      0 16px 50px -10px var(--cta-glow, rgba(201,168,76,0.55));
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.40),
      inset 0 -2px 0 rgba(0,0,0,0.10),
      0 10px 30px rgba(0,0,0,0.48),
      0 22px 70px -8px var(--cta-glow-strong, rgba(201,168,76,0.82));
  }
}

@media (max-width: 600px) {
  .quiz-mega-cta {
    width: 100%;
    max-width: 460px;
    padding: 22px 24px;
    font-size: 14px;
    letter-spacing: 0.14em;
  }
  .quiz-mega-cta-eyebrow { font-size: 0.62em; letter-spacing: 0.22em; }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-mega-cta { animation: none; }
  .quiz-mega-cta::before { display: none; }
}