/* ============================================================
   JOHN BUSINESS COACH — AMBASSADOR PROGRAM WEBSITE
   Color Palette & Base Variables
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Source+Sans+3:wght@300;400;600;700&family=Oswald:wght@600;700&display=swap');

:root {
  --dark-bg:    #0b1120;
  --nav-bg:     #0d1528;
  --section-alt:#111e35;
  --gold:       #f0a500;
  --gold-light: #fbbf24;
  --red:        #c0392b;
  --red-hover:  #a93226;
  --white:      #ffffff;
  --off-white:  #f0f4f8;
  --gray-light: #cdd5e0;
  --gray:       #6b7a99;
  --border:     #1e2d50;
  --max-width:  1100px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;   /* clip prevents horiz scroll WITHOUT breaking position:sticky */
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  background: var(--dark-bg);
  color: var(--off-white);
  overflow-x: clip;   /* clip, not hidden — hidden breaks sticky nav & photos */
  width: 100%;
}

img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }
.oswald { font-family: 'Oswald', sans-serif; letter-spacing: .04em; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;          /* never exceed viewport */
}
.section    { padding: 80px 0; }
.section-alt{ background: var(--section-alt); }
.section-light { background: #f7f9fc; color: #0b1120; }
.section-light h1,
.section-light h2,
.section-light h3 { color: #0b1120; }
.section-light p,
.section-light li { color: #d3d3d3; }
.section-light .gray { color: #4a5568; }

/* ── NAV LOGO IMAGE ── */
.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(240,165,0,.45), 0 0 2px rgba(240,165,0,.2);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background: #0d1528;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (max-width: 700px) {
  .nav-logo-img {
    height: 36px;
    width: 36px;
    border-radius: 6px;
    margin-right: 8px;
  }
}

/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(240,165,0,.4);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  flex-shrink: 0;
  background: #0d1528;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Footer brand h3 flex alignment with bigger logo */
.footer-brand h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

/* ── NAV LOGO alignment fix ── */
.nav-logo {
  display: flex;
  align-items: center;
}

/* Mobile CTA icon inline alignment */
.mobile-cta-title svg {
  vertical-align: middle;
  margin-left: 5px;
}

/* ── NAVIGATION ── */
nav {
  background: var(--nav-bg);
  border-bottom: 2px solid var(--gold);
  position: sticky; top: 0; z-index: 1000;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--gray-light);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-decoration: none; }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-hover) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.btn-gold { background: var(--gold); color: #0b1120; }
.btn-gold:hover { background: var(--gold-light); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-hover); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #0b1120; }
.btn-sm { padding: 11px 24px; font-size: .88rem; }
.btn-lg { padding: 20px 48px; font-size: 1.15rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #071028 0%, #0d1f48 60%, #0b1120 100%);
  padding: 90px 0 80px;
  position: relative;
  width: 100%;
  max-width: 100vw;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0a500' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: #0b1120;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.15rem; color: var(--gray-light); margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.proof-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.proof-stat span { font-size: .9rem; color: var(--gray-light); }

/* Video container */
.video-wrap {
  border: 3px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  width: 100%;
  max-width: 100%;
}
.video-placeholder {
  background: #0d1f48;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: .9rem;
}
.video-placeholder svg { color: var(--gold); }
.video-wrap iframe,
.video-wrap video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ── GOLD BAR ── */
.gold-bar {
  background: var(--gold);
  color: #0b1120;
  text-align: center;
  padding: 18px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 640px; margin: 0 auto; color: var(--gray-light); }
.section-light .section-header p { color: #4a5568; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
}
.feature-card {
  background: #0d1a33;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 32px 28px;
}
.section-light .feature-card {
  background: #fff;
  border-color: #d1dae8;
  border-top-color: var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.section-light .feature-card h3 { color: #0b1120; }
.section-light .feature-card p  { color: #3a4a6b; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(240,165,0,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.4rem;
}
.feature-card h3 { margin-bottom: 10px; }

/* ── WHAT'S INCLUDED LIST ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.included-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #0d1a33;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 20px;
}
.included-item .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0b1120;
  font-weight: 900;
  font-size: .85rem;
  margin-top: 2px;
}
.included-item h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
.included-item p  { font-size: .9rem; color: var(--gray-light); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testi-card {
  background: #0d1a33;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.testi-card p { font-style: italic; margin-bottom: 20px; position: relative; }
.testi-author { font-weight: 700; color: var(--gold); font-size: .95rem; }
.testi-role   { font-size: .85rem; color: var(--gray); }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.price-card {
  background: #0d1a33;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
}
.price-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  position: relative;
  transform: scale(1.03);
}
.best-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #0b1120;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin: 12px 0;
}
.price-amount small { font-size: 1.2rem; }
.price-term { font-size: .9rem; color: var(--gray-light); margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--gray-light);
  display: flex; gap: 10px; align-items: flex-start;
}
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; }
.price-note { font-size: .8rem; color: var(--gray); margin-top: 16px; font-style: italic; }

/* ── DISCLOSURE BOX ── */
.disclosure {
  background: rgba(240,165,0,.07);
  border: 1px solid rgba(240,165,0,.25);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--gray-light);
  margin: 24px 0;
}
.disclosure strong { color: var(--gold); }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-answer { margin-top: 14px; color: var(--gray-light); }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: start;
}
/* CSS sticky now works — overflow-x:clip on html/body doesn't break it */
.about-photo-sticky {
  position: sticky;
  top: 96px;   /* sits just below the sticky nav */
  width: 100%;
}
@media (max-width: 900px) {
  .about-photo-sticky { position: static !important; top: auto !important; }
}

/* Big CTA button below photos */
.about-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: 28px;        /* clear gap from second photo caption */
  padding: 16px 20px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s ease, transform .4s ease;
  box-shadow: 0 4px 20px rgba(240,165,0,.25);
}
/* Hidden on mobile */
@media (max-width: 900px) {
  .about-sticky-cta { display: none !important; position: static !important; }
}
/* Fade when ambassador section enters view */
.about-sticky-cta.cta-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 3px solid var(--gold);
}
.about-photo-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo {
  border: 3px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
}
.about-photo-name {
  text-align: center;
  margin-top: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.3);
  border-radius: 40px;
  padding: 8px 20px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}
.about-photo-star {
  color: var(--gold);
  margin-right: 6px;
  font-size: 1rem;
}
.about-photo-caption {
  text-align: center;
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.about-photo-placeholder {
  background: var(--section-alt);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gray);
  text-align: center;
  padding: 20px;
  font-size: .9rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.about-stat {
  background: #0d1a33;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 18px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.about-stat span { font-size: .8rem; color: var(--gray-light); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: #0d1a33;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.blog-card-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-img.cat-1 { background: linear-gradient(135deg, #1a2f6e, #0d1a33); }
.blog-card-img.cat-2 { background: linear-gradient(135deg, #1a4a2e, #0d2212); }
.blog-card-img.cat-3 { background: linear-gradient(135deg, #4a1a2e, #2d0d18); }
.blog-card-img.cat-4 { background: linear-gradient(135deg, #3a2a0d, #1a1205); }
.blog-card-img.cat-5 { background: linear-gradient(135deg, #1a3a4a, #0d1e25); }
.blog-card-img.cat-6 { background: linear-gradient(135deg, #2e1a4a, #180d25); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.blog-card p  { color: var(--gray-light); font-size: .92rem; flex: 1; margin-bottom: 18px; }
.blog-meta { font-size: .82rem; color: var(--gray); margin-top: auto; }

/* ── BLOG POST ── */
.blog-post { max-width: 820px; margin: 0 auto; }
.blog-post-header { margin-bottom: 40px; }
.blog-post h1 { margin-bottom: 20px; }
.blog-post .meta { color: var(--gray); font-size: .9rem; margin-bottom: 28px; }
.blog-post h2 { margin: 40px 0 16px; }
.blog-post h3 { margin: 28px 0 12px; }
.blog-post p  { margin-bottom: 20px; }
.blog-post ul, .blog-post ol {
  margin: 0 0 20px 24px;
}
.blog-post li { margin-bottom: 8px; }
.blog-post blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: #0d1a33;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  margin: 28px 0;
  color: var(--off-white);
}
.blog-cta-box {
  background: linear-gradient(135deg, #0d1f48, #071028);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
}
.blog-cta-box h3 { color: var(--gold); margin-bottom: 12px; }
.blog-cta-box p  { color: var(--gray-light); margin-bottom: 24px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: #0d1a33;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 7px;
  color: var(--gray-light);
  letter-spacing: .03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #071028;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--off-white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; font-size: 1.05rem; padding: 16px; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: 12px; text-align: center; }

.contact-info h3 { margin-bottom: 16px; }
.contact-info p  { color: var(--gray-light); margin-bottom: 24px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(240,165,0,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.contact-detail h4 { font-size: .9rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; margin-bottom: 3px; }
.contact-detail p  { margin: 0; color: var(--gray-light); font-size: .9rem; }

/* ── FOOTER ── */
footer {
  background: #071028;
  border-top: 2px solid var(--gold);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand p { color: var(--gray); font-size: .9rem; max-width: 300px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--gray-light); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--gray); font-size: .82rem; }
.footer-disclosure {
  font-size: .78rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.55;
}

/* ── GUARANTEE BOX ── */
.guarantee-box {
  display: flex; gap: 28px; align-items: center;
  background: #0d1a33;
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 32px 36px;
  margin: 48px 0;
  flex-wrap: wrap;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #0b1120;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.guarantee-seal .days { font-size: 2rem; }
.guarantee-seal .label { font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.guarantee-text h3 { margin-bottom: 8px; }
.guarantee-text p  { color: var(--gray-light); margin: 0; }

/* ── ALERT BAR ── */
.alert-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 36px; text-align: center; width: 100%; }
  .hero-image-col  { display: block; width: 100%; max-width: 100%; }
  .hero-tag        { display: inline-block; }
  .hero h1         { text-align: center; }
  .hero-sub        { max-width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
  .hero-btns       { justify-content: center; flex-direction: column; align-items: center; }
  .hero-btns .btn  { width: 100%; max-width: 360px; text-align: center; }
  .hero-proof      { justify-content: center; gap: 24px; }
  .proof-stat      { text-align: center; }
  .about-grid      { grid-template-columns: 1fr; }
  .about-photo     { max-width: 320px; margin: 0 auto; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero            { padding: 60px 0 50px; }
  .video-wrap      { max-width: 100%; }
  .sound-nudge     { font-size: .78rem; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--nav-bg);
    padding: 20px 24px;
    border-bottom: 2px solid var(--gold);
    gap: 18px;
  }
  .hero-btns { flex-direction: column; }
  .hero-proof { gap: 20px; }
  .guarantee-box { flex-direction: column; align-items: flex-start; }
}

/* Video container & custom controls */
.video-container {
  position: relative;
  overflow: hidden;
  background: #000;
  line-height: 0;
  cursor: pointer;
}
.video-container video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  pointer-events: none;
}

/* ── Custom player controls wrap ── */
.vc-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 28px 10px 10px;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  z-index: 5;
}
.vc-wrap.vc-visible {
  opacity: 1;
  pointer-events: all;
}

/* Progress bar */
.vc-progress {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  margin-bottom: 8px;
  cursor: pointer;
}
.vc-progress:hover { height: 6px; margin-bottom: 6px; }
.vc-progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width .1s linear;
}
.vc-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .15s;
}
.vc-progress:hover .vc-progress-thumb { opacity: 1; }

/* Bottom row */
.vc-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, background .15s;
  flex-shrink: 0;
  line-height: 1;
}
.vc-btn:hover { color: var(--gold); background: rgba(255,255,255,.1); }
.vc-time {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  color: var(--gray-light);
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.vc-spacer { flex: 1; }
.vc-sound-btn { margin-left: 2px; }

/* PIP — compact controls */
#pip-video.pip-active .vc-time { font-size: .68rem; }
#pip-video.pip-active .vc-btn svg { width: 14px; height: 14px; }

/* Old play-overlay CSS removed — no longer used */
.play-overlay { display: none !important; }
.play-btn-circle { display: none !important; }

/* Centered play / pause overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s;
  z-index: 10;
}
.play-overlay:hover { opacity: 1 !important; }
.play-btn-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240,165,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
  transition: transform .15s, background .15s;
}
.play-btn-circle:hover {
  transform: scale(1.1);
  background: #fbbf24;
}

/* Sound nudge banner */
.sound-nudge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;             /* allow wrap so it never causes horizontal overflow */
  background: #0d1a33;
  border: 1px solid rgba(240,165,0,.35);
  border-bottom: 2px solid var(--gold);
  padding: 9px 12px;
  margin-bottom: 0;
  font-size: .83rem;
  color: var(--gold);
  line-height: 1.4;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.sound-nudge span {
  color: var(--gray-light);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sound-nudge button {
  background: var(--gold);
  color: #0b1120;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.sound-nudge button:hover { background: #fbbf24; }

/* Video footer: title + full-width webinar button */
.video-footer {
  padding: 14px 16px 16px;
  background: #071028;
  text-align: center;
}
.video-title {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gray-light);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.video-webinar-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 16px;
  font-size: .92rem;
}

/* Hide only footer in PIP mode — sound nudge stays visible so user can unmute */
#pip-video.pip-active .video-footer {
  display: none !important;
}

/* Compact nudge style when in PIP corner */
#pip-video.pip-active .sound-nudge {
  margin-bottom: 0;
  padding: 7px 10px;
  font-size: .75rem;
  flex-wrap: nowrap;
  gap: 6px;
}
#pip-video.pip-active .sound-nudge span {
  display: none; /* hide text label, keep icon + button only in tiny PIP */
}
#pip-video.pip-active .sound-nudge button {
  font-size: .75rem;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ── PIP VIDEO ── */
#pip-video {
  transition: none;
}
#pip-video.pip-active {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  z-index: 9999;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0,0,0,.7);
  border: 2px solid var(--gold);
  overflow: hidden;
  cursor: move;
  background: #0d1f48;
}
#pip-video.pip-active .video-placeholder,
#pip-video.pip-active iframe,
#pip-video.pip-active video {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 0;
}
.pip-close {
  display: none;
  position: absolute;
  top: 6px; right: 8px;
  background: rgba(0,0,0,.75);
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
#pip-video.pip-active .pip-close {
  display: flex;
}
.pip-label {
  display: none;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.6);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  text-align: center;
}
#pip-video.pip-active .pip-label { display: block; }

@media (max-width: 600px) {
  #pip-video.pip-active {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 12px;
  }
}

/* Guarantee badge photo placeholder */
.guarantee-photo-placeholder {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--section-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.3;
}
.guarantee-photo-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── MOBILE BOTTOM CTA BAR ── */
.mobile-cta-bar {
  display: none; /* hidden on desktop */
}
@media (max-width: 1024px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 10500;
    background: var(--gold);
    box-shadow: 0 -4px 20px rgba(0,0,0,.4);
  }
  .mobile-cta-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    text-decoration: none !important;
    gap: 2px;
  }
  .mobile-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #0b1120;
    line-height: 1.2;
  }
  .mobile-cta-sub {
    font-size: .78rem;
    color: #1a2744;
    font-weight: 600;
    letter-spacing: .02em;
  }
  /* Push page content up so bar doesn't overlap footer */
  body { padding-bottom: 72px; }
}

/* ── LEGAL PAGES ── */
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
}
.legal-doc h2 {
  margin: 40px 0 14px;
  font-size: 1.4rem;
  color: var(--gold);
}
.legal-doc h3 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
  color: var(--white);
}
.legal-doc p  { margin-bottom: 18px; color: var(--gray-light); }
.legal-doc ul { margin: 0 0 18px 24px; }
.legal-doc li { margin-bottom: 8px; color: var(--gray-light); }
.legal-doc code {
  background: #0d1a33;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: .88em;
  color: var(--gold);
}
.legal-doc a { color: var(--gold); }

/* ── COOKIE CONSENT BANNER ── */
#cookie-banner {
  position: fixed;
  z-index: 10000;
  background: #0d1528;
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  padding: 22px 24px;
  max-width: 340px;
  width: calc(100% - 32px);
  transition: opacity .3s, transform .3s;
}
/* Desktop: bottom-left */
@media (min-width: 701px) {
  #cookie-banner {
    bottom: 24px;
    left: 24px;
  }
}
/* Mobile: bottom centre */
@media (max-width: 700px) {
  #cookie-banner {
    bottom: 80px; /* above mobile CTA bar */
    left: 16px;
    right: 16px;
    max-width: none;
    width: auto;
  }
}
#cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.cookie-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
.cookie-banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.cookie-banner-text {
  font-size: .84rem;
  color: var(--gray-light);
  margin-bottom: 18px;
  line-height: 1.55;
}
.cookie-banner-text a { color: var(--gold); font-size: .84rem; }
.cookie-banner-btns {
  display: flex;
  gap: 10px;
}
.cookie-btn-reject {
  flex: 1;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--gray-light);
  border-radius: 5px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: 'Source Sans 3', sans-serif;
}
.cookie-btn-reject:hover { border-color: var(--white); color: var(--white); }
.cookie-btn-accept {
  flex: 1.4;
  padding: 10px 14px;
  background: var(--gold);
  border: none;
  color: #0b1120;
  border-radius: 5px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Source Sans 3', sans-serif;
}
.cookie-btn-accept:hover { background: #fbbf24; }

/* ── COOKIE MINI BUTTON (shrunk state on scroll) ── */
#cookie-mini {
  position: fixed;
  z-index: 10000;
  bottom: 24px;
  left: 24px;   /* always LEFT side */
  right: auto;  /* explicitly cancel any right value */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
#cookie-mini:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}
/* Mobile: above the sticky CTA bar, left side */
@media (max-width: 1024px) {
  #cookie-mini { bottom: 84px; left: 16px; right: auto; }
}

/* ── UTILITIES ── */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-red     { color: var(--red); }
.text-gray    { color: var(--gray-light); }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mt-40        { margin-top: 40px; }
.mb-0         { margin-bottom: 0; }
.fw-bold      { font-weight: 700; }
.d-block      { display: block; }
.w-full       { width: 100%; }
