/* ===== BRAND COLORS ===== */
:root {
  --brand-blue: #2563eb;
  --brand-blue-light: #3b82f6;
  --brand-blue-dark: #1d4ed8;
  --brand-navy: #0f172a;
  --brand-navy-mid: #1e293b;
  --yellow: #f5c518;
  --orange: #f5a623;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 820px;
}

.center { text-align: center; }

/* ===== COLORS ===== */
.yellow { color: #f5c518; }

/* ===== TYPOGRAPHY ===== */
.pre-headline {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid #f5c518;
  color: #f5c518;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #c8d0e8;
  margin-bottom: 36px;
  max-width: 680px;
}

.section-headline {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1.05rem;
  color: #c8d0e8;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid #f5c518;
  color: #f5c518;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.body-text {
  font-size: 1.05rem;
  color: #d0d8f0;
  margin-bottom: 20px;
  line-height: 1.8;
}

.body-text.empathy {
  background: rgba(245, 197, 24, 0.07);
  border-left: 4px solid #f5c518;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  color: #ffffff;
}

.let-me-guess {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 32px 0 16px;
}

.introducing-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5c518;
  margin-bottom: 12px;
}

.product-name {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.product-tagline {
  font-size: 1.15rem;
  color: #c8d0e8;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== SITE HEADER ===== */
.site-header {
  background: #0f172a;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  padding: 16px 0;
  text-align: center;
}

.header-logo {
  height: auto;
  width: 240px;
  max-width: 85%;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(180deg, #0a1428 0%, #111827 100%);
  padding: 60px 0 70px;
  text-align: center;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 10px;
  text-align: left;
}

/* ===== VIDEO ===== */
.video-wrapper {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 2px solid rgba(245, 197, 24, 0.3);
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1545 0%, #1a2060 100%);
  cursor: pointer;
}

.play-icon {
  font-size: 4rem;
  color: #f5c518;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.5));
}

.video-label {
  color: #c8d0e8;
  font-size: 0.95rem;
  font-weight: 600;
}

.video-caption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #f5c518;
  text-align: center;
}

/* ===== ORDER BOX ===== */
.order-box {
  background: linear-gradient(180deg, #0f1650 0%, #0a1040 100%);
  border: 2px solid rgba(245, 197, 24, 0.4);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.order-box-header {
  margin-bottom: 20px;
}

.product-mockup {
  max-width: 80px;
  margin: 0 auto 12px;
  display: block;
  border-radius: 14px;
}

.order-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
}

.order-sub {
  font-size: 0.88rem;
  color: #a0aac8;
  margin-bottom: 0;
}

.price-block {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 18px;
}

.regular-price {
  display: block;
  font-size: 0.88rem;
  color: #8090b0;
  margin-bottom: 6px;
}

.regular-price s {
  color: #8090b0;
}

.today-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.price-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: #f5c518;
  line-height: 1;
}

.savings-tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #8090b0;
}

.order-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #6070a0;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.3px;
  border: none;
}

.cta-main {
  background: linear-gradient(135deg, #f5a623 0%, #f5c518 100%);
  color: #0a0e2e;
  box-shadow: 0 6px 30px rgba(245, 166, 35, 0.45);
}

.cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245, 166, 35, 0.6);
}

/* ===== PAIN SECTION ===== */
.pain-section {
  background: #0f172a;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pain-list {
  list-style: none;
  margin-bottom: 28px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
  color: #d0d8f0;
}

.x-mark {
  color: #ef4444;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
  color: #d0d8f0;
}

.check-mark {
  color: #4ade80;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== OPPORTUNITY SECTION ===== */
.opportunity-section {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== PRODUCT INTRO SECTION ===== */
.product-intro-section {
  background: #0f172a;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-intro-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

/* ===== WHAT'S INSIDE SECTION ===== */
.inside-section {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}

.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s ease;
}

.module-card:hover {
  border-color: rgba(37, 99, 235, 0.6);
}

.module-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 8px;
}

.module-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.module-desc {
  font-size: 0.93rem;
  color: #a0aac8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.module-lessons {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}

.module-lessons li {
  font-size: 0.85rem;
  color: #8090b0;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.module-lessons li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

/* ===== BONUSES SECTION ===== */
.bonuses-section {
  background: #0f172a;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
}

.bonus-badge {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.bonus-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.bonus-desc {
  font-size: 0.93rem;
  color: #a0aac8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 0.9rem;
  color: #8090b0;
  font-weight: 600;
}

.total-value-block {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.total-label {
  font-size: 0.9rem;
  color: #8090b0;
  margin-bottom: 6px;
}

.total-value {
  font-size: 2rem;
  font-weight: 900;
  color: #8090b0;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.today-only {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.guarantee-box {
  background: rgba(34, 197, 94, 0.06);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 900;
  color: #4ade80;
  margin-bottom: 20px;
}

.guarantee-text {
  font-size: 1rem;
  color: #c8d0e8;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOR WHO SECTION ===== */
.for-who-section {
  background: #0f172a;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: linear-gradient(180deg, #111827 0%, #0a1020 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.final-order-box {
  background: linear-gradient(180deg, #0f1650 0%, #0a1040 100%);
  border: 2px solid rgba(245, 197, 24, 0.4);
  border-radius: 16px;
  padding: 40px 36px;
  margin-top: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #0f172a;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.97rem;
  color: #a0aac8;
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080f1e;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
  opacity: 0.7;
}

.footer-brand {
  font-size: 0.9rem;
  font-weight: 700;
  color: #6070a0;
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #404870;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 16px;
}

.footer-links {
  font-size: 0.8rem;
  color: #6070a0;
  margin-bottom: 12px;
}

.footer-links a {
  color: #6070a0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f5c518;
}

.footer-bss {
  font-size: 0.75rem;
  color: #404870;
}

.footer-bss a {
  color: #6070a0;
  text-decoration: underline;
}

.footer-bss a:hover {
  color: #f5c518;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-columns {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .bonus-cards {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 480px) {
    .bonus-cards {
      grid-template-columns: 1fr;
    }
  }

  .hero {
    padding: 40px 0 50px;
  }

  .pain-section,
  .opportunity-section,
  .product-intro-section,
  .inside-section,
  .bonuses-section,
  .guarantee-section,
  .for-who-section,
  .final-cta-section,
  .faq-section {
    padding: 56px 0;
  }

  .guarantee-box {
    padding: 28px 20px;
  }

  .final-order-box {
    padding: 28px 20px;
  }
}

/* ===== TWO-STEP FORM STYLES ===== */
.twostep-step {
  width: 100%;
}

.step-label {
  font-size: 0.88rem;
  color: #a0aac8;
  text-align: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 8px;
}

.step-label strong {
  color: #f5c518;
}

.step-label-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.step-label-success strong {
  color: #22c55e;
}

.step-note {
  font-size: 0.78rem;
  color: #6b7a99;
  text-align: center;
  margin-top: 10px;
}

/* AWeber form overrides — force it to match the dark theme */
.AW-Form-151841552 form,
.AW-Form-151841552 .af-form {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.AW-Form-151841552 input[type="text"],
.AW-Form-151841552 input[type="email"] {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  padding: 12px 14px !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 10px !important;
}

.AW-Form-151841552 input[type="text"]::placeholder,
.AW-Form-151841552 input[type="email"]::placeholder {
  color: #6b7a99 !important;
}

.AW-Form-151841552 input[type="submit"],
.AW-Form-151841552 button[type="submit"] {
  background: linear-gradient(135deg, #f5c518 0%, #e6a800 100%) !important;
  color: #0a0f1e !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  width: 100% !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-top: 4px !important;
}

.AW-Form-151841552 input[type="submit"]:hover,
.AW-Form-151841552 button[type="submit"]:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%) !important;
  transform: translateY(-2px) !important;
}

.AW-Form-151841552 label {
  color: #a0aac8 !important;
  font-size: 0.85rem !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.AW-Form-151841552 .af-header,
.AW-Form-151841552 .af-footer,
.AW-Form-151841552 .af-quirksMode {
  display: none !important;
}

/* ===== HIDE AWEBER UTM / TRACKING FIELDS ===== */
/* Hide field rows that contain utm, fbclid, landing_page, etc. */
.AW-Form-151841552 .af-element:has(input[id*="118620014"]),
.AW-Form-151841552 .af-element:has(input[id*="118620015"]),
.AW-Form-151841552 .af-element:has(input[id*="118620016"]),
.AW-Form-151841552 .af-element:has(input[id*="118620017"]),
.AW-Form-151841552 .af-element:has(input[id*="118620018"]),
.AW-Form-151841552 .af-element:has(input[id*="118620019"]),
.AW-Form-151841552 .af-element:has(input[id*="118620020"]),
.AW-Form-151841552 .af-element:has(input[id*="118620021"]) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Also hide any label/input pairs for utm fields by label text */
.AW-Form-151841552 label[for*="118620014"],
.AW-Form-151841552 label[for*="118620015"],
.AW-Form-151841552 label[for*="118620016"],
.AW-Form-151841552 label[for*="118620017"],
.AW-Form-151841552 label[for*="118620018"],
.AW-Form-151841552 label[for*="118620019"],
.AW-Form-151841552 label[for*="118620020"],
.AW-Form-151841552 label[for*="118620021"],
#awf_field-118620014, #awf_field-118620015,
#awf_field-118620016, #awf_field-118620017,
#awf_field-118620018, #awf_field-118620019,
#awf_field-118620020, #awf_field-118620021 {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
