/* ============================================
   ASK A WIZARD — Global Styles v2
   70% White / 20% Black / 10% Red (#8B1A1A)
   Headlines: Abril Fatface
   Body: Georgia
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light-gray: #E8E6E3;
  --mid-gray: #444444;
  --dark-gray: #1A1A1A;
  --near-black: #0A0A0A;
  --black: #000000;
  --red: #8B1A1A;
  --red-hover: #A52222;
  --red-dark: #6B1414;
  --red-glow: rgba(139, 26, 26, 0.25);

  --font-display: 'Abril Fatface', Georgia, serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1140px;
  --section-padding: 60px 0;
  --section-padding-mobile: 40px 0;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.5rem); margin-bottom: 12px; }

p {
  font-size: 1.15rem;
  margin-bottom: 1.3em;
  line-height: 1.8;
}

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

.lead {
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--dark-gray);
}

.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-muted { color: var(--mid-gray); }

.section-eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.4;
  color: var(--red);
  margin-bottom: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

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

.section--dark .lead {
  color: rgba(255,255,255,0.8);
}

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

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

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

.section--red .countdown__label {
  color: rgba(255,255,255,0.7);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  padding: 14px 0;
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--near-black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--near-black);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--red);
}

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
}

.nav__cta:hover {
  background: var(--red-hover) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--near-black);
  transition: var(--transition);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 44px;
}

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

.btn--primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--red-glow);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(139, 26, 26, 0.2);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

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

.btn--outline-dark {
  background: transparent;
  color: var(--near-black);
  border: 2px solid var(--near-black);
}

.btn--outline-dark:hover {
  background: var(--near-black);
  color: var(--white);
}

.btn--large {
  padding: 20px 48px;
  font-size: 1rem;
}

.btn--small {
  padding: 12px 28px;
  font-size: 0.85rem;
}

/* --- HERO — WHITE background --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--near-black);
  padding: 140px 0 40px;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--near-black);
}

.hero .lead {
  color: var(--dark-gray);
  margin-bottom: 36px;
  max-width: 580px;
  font-size: 1.35rem;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 50px;
}

.section-header h4 {
  color: var(--red);
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  margin-bottom: 0;
}

/* --- DIVIDER --- */
.divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 20px auto;
}

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

/* --- QUOTE BLOCKS --- */
.quote-block {
  position: relative;
  padding: 28px 32px;
  margin-bottom: 20px;
  background: var(--off-white);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--dark-gray);
}

.section--dark .quote-block {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
}

.quote-block__source {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
}

/* --- CARDS --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(139, 26, 26, 0.12);
}

.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.section--dark .card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(139, 26, 26, 0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,26,26,0.06);
  color: var(--red);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.card h3 { margin-bottom: 14px; font-size: 1.25rem; }
.card p { color: var(--dark-gray); font-size: 1rem; line-height: 1.75; }

.section--dark .card h3 { color: var(--white); }
.section--dark .card p { color: rgba(255,255,255,0.85); }

/* --- NUMBERS STRIP --- */
.numbers-strip {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 36px 0;
}

.numbers-strip__item { text-align: center; }

.numbers-strip__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.numbers-strip__label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.section--dark .numbers-strip__label { color: rgba(255,255,255,0.6); }
.section--dark .numbers-strip__number { color: var(--white); }

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--light-gray);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--near-black);
}

.testimonial-card__detail {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.section--dark .testimonial-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

/* --- VIDEO EMBED --- */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--near-black);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FORMS --- */
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--mid-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  color: var(--near-black);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}

.section--dark .form-group input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.section--dark .form-group input::placeholder {
  color: rgba(255,255,255,0.6);
}

.section--dark .form-group input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.15);
}

.section--dark .form-group label {
  color: rgba(255,255,255,0.6);
}

/* --- INLINE FORM --- */
.inline-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  flex-wrap: wrap;
}

.inline-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.inline-form .btn { white-space: nowrap; }

/* --- COUNTDOWN TIMER --- */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}

.countdown__block {
  text-align: center;
  min-width: 65px;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.countdown__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 4px;
}

.section--dark .countdown__number { color: var(--white); }
.section--dark .countdown__label { color: rgba(255,255,255,0.6); }

/* --- SCARCITY BADGE --- */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(139,26,26,0.06);
  border: 1px solid rgba(139,26,26,0.12);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}

.scarcity-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- STEPS --- */
.steps {
  counter-reset: step-counter;
  max-width: 600px;
}

.step {
  counter-increment: step-counter;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-gray);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  border-radius: 50%;
}

.step__content h3 { margin-bottom: 10px; font-size: 1.4rem; }
.step__content p { color: var(--dark-gray); font-size: 1.05rem; line-height: 1.8; }

/* --- SPLIT SECTION --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* --- FOOTER --- */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer__social { display: flex; gap: 18px; }

.footer__social a {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover { color: var(--white); }

/* --- PAGE HERO — WHITE --- */
.page-hero {
  padding: 140px 0 30px;
  background: var(--white);
  color: var(--near-black);
  text-align: center;
}

.page-hero h1 { margin-bottom: 14px; }

.page-hero .lead {
  color: var(--mid-gray);
  max-width: 560px;
  margin: 0 auto;
}

/* --- BONUS BOX --- */
.bonus-box {
  padding: 28px;
  background: rgba(139,26,26,0.04);
  border: 2px dashed var(--red);
  border-radius: 6px;
  text-align: center;
  margin: 28px 0;
}

.bonus-box h3 { color: var(--red); margin-bottom: 10px; }

.section--dark .bonus-box {
  background: rgba(139,26,26,0.15);
  border-color: rgba(139,26,26,0.4);
}

/* --- GUARANTEE --- */
.guarantee-box {
  padding: 36px;
  background: var(--off-white);
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--light-gray);
}

.guarantee-box h3 { margin-bottom: 14px; }

.section--dark .guarantee-box {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

/* --- FAQ --- */
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-item h3:hover { color: var(--red); }

.faq-item h3::after {
  content: '+';
  font-family: var(--font-ui);
  font-size: 1.4rem;
  color: var(--red);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active h3::after { content: '\2212'; }

.faq-item__answer {
  display: none;
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 12px 0 0 0;
}

.faq-item.active .faq-item__answer { display: block; }

/* --- ABOUT PAGE --- */
.about-am {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.about-am__col h3 { margin-bottom: 16px; font-size: 1.15rem; }
.about-am__col ul { list-style: none; padding: 0; }

.about-am__col ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-am__col ul li:last-child { border-bottom: none; }
.section--dark .about-am__col ul li { border-color: rgba(255,255,255,0.08); }

/* --- PROOF PAGE GRID --- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* --- "NOT" SECTION --- */
.not-list {
  max-width: 620px;
  margin: 0 auto;
}

.not-list p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- ANIMATION UTILITIES --- */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.will-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .fade-up.will-animate:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up.will-animate:nth-child(2) { transition-delay: 0.12s; }
.stagger > .fade-up.will-animate:nth-child(3) { transition-delay: 0.2s; }
.stagger > .fade-up.will-animate:nth-child(4) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up.will-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- MOBILE NAV --- */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    align-items: flex-start;
    padding-left: 24px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid var(--light-gray);
  }

  .nav__links.active { right: 0; }

  .nav__links a {
    color: var(--near-black) !important;
    font-size: 1rem;
  }

  .nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav__overlay.active { display: block; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .split { gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: var(--section-padding-mobile); }
  .card-grid { grid-template-columns: 1fr; }
  .numbers-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px 0; }
  .numbers-strip__number { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .inline-form { flex-direction: column; }
  .inline-form input { min-width: 100%; }
  .quote-block { padding: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .countdown__number { font-size: 1.5rem; }
  .about-am { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }
  .steps { max-width: 100%; }
  .step { gap: 14px; }
  .step__number { width: 44px; height: 44px; font-size: 1.05rem; }
  .step__content h3 { font-size: 1.2rem; }
  .step__content p { font-size: 1rem; }
  .popup__content { padding: 36px 24px; width: 94%; margin: 16px; }
  .popup__content h2 { font-size: 1.35rem; }
  .section-header { margin-bottom: 32px; }
  .video-embed { border-radius: 4px; }
  .guarantee-box { padding: 24px; }
  .bonus-box { padding: 20px; }

  .proof-grid { grid-template-columns: 1fr; gap: 12px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .page-hero { padding: 110px 0 40px; }
  .hero { padding: 110px 0 60px; }
  .hero__content { max-width: 100%; }
  .lead { font-size: 1.05rem; }
  p { font-size: 1rem; }
  .container { padding: 0 16px; }
  .container-narrow { padding: 0 16px; }
  .btn--large { padding: 16px 32px; font-size: 0.95rem; }
}

/* --- FLOATING CTA (mobile) --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 900;
  text-align: center;
}

.floating-cta .btn {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .floating-cta { display: block; }
  body { padding-bottom: 65px; }
}

/* --- 2-STEP OPT-IN --- */
.optin-form-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.optin-form-wrap.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 32px;
}

.optin-form-wrap input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* --- POPUP MODAL --- */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.popup.active { display: flex; }

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.popup__content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 480px;
  width: 92%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup__dismiss {
  background: none;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  color: #999;
  margin-top: 16px;
  padding: 8px 16px;
  display: inline-block;
  transition: color 0.2s;
  font-family: var(--font-ui);
}

.popup__dismiss:hover { color: var(--mid-gray); }

.popup__content h2 { font-size: 1.6rem; margin-bottom: 16px; }
.popup__content p { color: var(--mid-gray); font-size: 0.95rem; margin-bottom: 24px; }
.popup__content .btn { width: 100%; font-size: 1rem; padding: 18px 36px; }

.popup__trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.popup__trust span {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* Popup form */
.popup__form .form-group {
  margin-bottom: 10px;
}
.popup__form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.popup__form input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.popup__form button[type="submit"] {
  width: 100%;
  margin-top: 4px;
}
.popup__form .popup__fine-print {
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin-top: 8px;
  margin-bottom: 0;
}

/* Popup step layout */
.popup__step-cta,
.popup__step-form {
  text-align: center;
}

.popup__get-now {
  margin-top: 8px;
  margin-bottom: 4px;
}

/* Final CTA section boost */
.final-cta {
  padding: 80px 0 !important;
}

.final-cta h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.final-cta .section-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.final-cta .lead {
  font-size: 1.35rem;
}

@media (max-width: 768px) {
  .final-cta { padding: 60px 0 !important; }
  .final-cta h2 { font-size: 1.8rem; }
}

/* Instagram DM CTA */
.dm-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.dm-cta a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.dm-cta a:hover {
  color: var(--red);
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  .numbers-strip__number { font-size: 1.5rem; }
  .countdown__block { min-width: 50px; }
  .countdown__number { font-size: 1.3rem; }
  .popup__trust { flex-direction: column; gap: 6px; }
}

/* ============================================
   ATMOSPHERE — Clean Professional Base
   70% White / 20% Black / 10% Red
   White heroes + nav, dark footer + accents.
   ============================================ */

/* Heroes stay WHITE (base styles) — no dark override */

/* --- Red Section Depth --- */

/* Dark and Red sections kept clean — no pseudo-element overlays */

/* --- Card Hover Polish --- */
/* (merged into .card:hover above) */

/* --- Testimonial Hover --- */
.testimonial-card {
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* --- Subtle Shadows --- */
.video-embed {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.section--dark .video-embed {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* --- Popup Polish --- */
.popup__overlay {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.popup__content {
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

/* --- Footer --- */
.footer {
  position: relative;
}

/* --- Off-White Warmth --- */
.section--off-white {
  background: #F8F6F3;
}
