/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F1B3D;
  --navy-deep: #0A1128;
  --navy-light: #162350;
  --red: #8B1A1A;
  --red-bright: #C62828;
  --gold: #C4A24E;
  --gold-light: #D4B86A;
  --blue-accent: #1E4B8E;
  --dark: #080C1A;
  --text: #D8DCE8;
  --text-muted: #8892A8;
  --white: #FFFFFF;
  --green: #22C55E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

h1, h2, h3 { color: var(--white); line-height: 1.2; font-family: 'Oswald', 'Inter', sans-serif; text-transform: uppercase; }
h2 { letter-spacing: 1px; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* === STICKY NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}

.nav-scrolled {
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-cta {
  background: var(--red-bright);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.nav-cta:hover { background: #D32F2F; transform: scale(1.05); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/portal-2.png') center center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,17,40,0.3) 0%, rgba(10,17,40,0.8) 60%, var(--dark) 100%);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  filter: drop-shadow(0 4px 20px rgba(196, 162, 78, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red-bright);
  margin-bottom: 24px;
  font-family: 'Oswald', sans-serif;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.highlight { color: var(--gold); }

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 20px 52px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.25s;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 4px 20px rgba(198, 40, 40, 0.4);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(198, 40, 40, 0.5);
}

.cta-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.cta-btn-lg {
  font-size: 1.35rem;
  padding: 24px 60px;
}

.pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(198, 40, 40, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(198, 40, 40, 0.7), 0 0 60px rgba(198, 40, 40, 0.2); }
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.cta-center { text-align: center; margin-top: 48px; }

/* === PROOF BAR === */
.proof-bar {
  background: var(--navy);
  padding: 16px 24px;
  border-top: 1px solid rgba(196, 162, 78, 0.2);
  border-bottom: 1px solid rgba(196, 162, 78, 0.2);
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.proof-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
}

/* === SECTIONS === */
.section { padding: 100px 24px; }

.section-navy {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.section p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

/* === CALLOUT === */
.callout {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0;
  background: linear-gradient(135deg, rgba(196, 162, 78, 0.08) 0%, rgba(15, 27, 61, 0.3) 100%);
  border-radius: 0 8px 8px 0;
}

.callout p { margin-bottom: 0; font-size: 1.15rem; }

.callout-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* === CHECK LIST === */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* === LESSON GRID === */
.lesson-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.lesson-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
  border: 2px solid rgba(196, 162, 78, 0.45);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
}

.lesson-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.lesson-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.lesson-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: 2px;
  font-family: 'Oswald', sans-serif;
}

.lesson-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.lesson-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.lesson-time {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  background: rgba(196, 162, 78, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.lesson-icons {
  display: flex;
  gap: 12px;
}

.lesson-icon {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* === BONUS CARDS === */
.bonus-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.bonus-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196, 162, 78, 0.2);
  border-radius: 12px;
  padding: 36px;
  transition: border-color 0.3s;
}

.bonus-card:hover { border-color: var(--gold); }

.bonus-badge {
  display: inline-block;
  background: var(--red-bright);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Oswald', sans-serif;
}

.bonus-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-value {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

/* === VALUE STACK === */
.section-stack {
  background: linear-gradient(180deg, var(--dark) 0%, var(--navy-deep) 50%, var(--dark) 100%);
  text-align: center;
}

.stack-crown {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.5;
}

.stack-table {
  max-width: 520px;
  margin: 36px auto 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(196, 162, 78, 0.15);
  border-radius: 12px;
  padding: 8px 28px;
}

.stack-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.stack-val {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: line-through;
}

.stack-total {
  border-bottom: 2px solid rgba(196, 162, 78, 0.2);
  font-weight: 700;
}

.stack-price {
  border-bottom: none;
  font-size: 1.25rem;
  font-weight: 800;
  padding-top: 24px;
}

.price-highlight {
  color: var(--gold) !important;
  text-decoration: none !important;
  font-size: 1.6rem;
  font-family: 'Oswald', sans-serif;
}

/* === ABOUT === */
.about-block { text-align: center; }

.about-icon {
  width: 64px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.4;
}

/* === GUARANTEE === */
.guarantee-box {
  text-align: center;
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 56px 36px;
  background: rgba(196, 162, 78, 0.04);
  position: relative;
}

.guarantee-shield {
  width: 72px;
  height: 90px;
  background: var(--gold);
  color: var(--navy-deep);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  margin: 0 auto 28px;
}

.guarantee-shield small {
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1;
}

.guarantee-box h2 { margin-bottom: 20px; }

.guarantee-box p {
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.guarantee-bold {
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

/* === FAQ === */
.faq-list { margin-top: 32px; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 28px;
  color: var(--red-bright);
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Oswald', sans-serif;
}

.faq-item[open] summary::before { content: "\2212"; }

.faq-item p {
  margin-top: 12px;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* === FINAL CTA === */
.section-cta {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.section-cta .hero-bg { opacity: 0.15; }

.section-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(10,17,40,0.7) 50%, var(--dark) 100%);
  z-index: 0;
}

.section-cta h2 {
  margin-bottom: 36px;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

.final-logo {
  width: 120px;
  height: auto;
  margin-bottom: 32px;
  background: white;
  border-radius: 10px;
  padding: 10px 14px;
  opacity: 0.9;
}

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid rgba(196, 162, 78, 0.1);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-logo {
  width: 36px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.3;
}

.footer p {
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .hero-logo { width: 120px; }
  .hero-stats { gap: 16px; }
  .hero-stat-divider { display: none; }
  .section { padding: 70px 20px; }
  .cta-btn { width: 100%; padding: 20px 24px; font-size: 1rem; }
  .cta-btn-lg { padding: 22px 24px; }
  .lesson-grid { grid-template-columns: 1fr; }
  .bonus-stack { grid-template-columns: 1fr; }
  .proof-items { font-size: 0.75rem; gap: 10px; }
  .nav-logo { height: 32px; }
  .callout { flex-direction: column; gap: 12px; }
  .callout-icon { width: 36px; height: 36px; }
  .stack-table { padding: 8px 16px; }
}
