:root {
  --bg: #071326;
  --bg-soft: #0d1b33;
  --panel: rgba(10, 20, 39, 0.82);
  --panel-2: rgba(255,255,255,0.04);
  --gold: #efb236;
  --gold-2: #ffd979;
  --text: #f8f7f2;
  --muted: #c8ced8;
  --line: rgba(255, 215, 130, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(23, 52, 109, 0.45), transparent 35%),
    linear-gradient(180deg, #06101f 0%, #071326 55%, #081525 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bg-effects::before,
.bg-effects::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.22;
}
.bg-effects::before {
  top: 50px;
  right: -100px;
  background: #1d57c8;
}
.bg-effects::after {
  bottom: 150px;
  left: -80px;
  background: #dba328;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(4, 10, 20, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img, .footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 217, 121, 0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.brand strong, .footer-brand strong {
  display: block;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.brand span, .footer-brand span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
nav a {
  color: #dbe4f1;
  font-size: 0.95rem;
}
nav a:hover { color: var(--gold-2); }

.hero {
  padding: 82px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow, .section-tag, .mini-label, .plan-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 178, 54, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(255, 217, 121, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.hero h1 {
  margin: 18px 0 18px;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 1.04;
}
.hero h1 span {
  color: var(--gold-2);
  text-shadow: 0 0 22px rgba(255, 209, 102, 0.18);
}
.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 690px;
}
.cta-group, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, #f0b439, #db8f15);
  color: #081220;
  box-shadow: 0 18px 40px rgba(219, 143, 21, 0.28);
}
.btn-secondary {
  border: 1px solid rgba(255, 217, 121, 0.26);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.hero-badges li {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: #e4ebf5;
  font-weight: 600;
}
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 8, 16, 0.75) 100%);
}
.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}
.hero-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}
.hero-card-content h2 {
  margin: 12px 0 8px;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.hero-card-content p {
  margin: 0;
  color: #f1f3f8;
}

.countdown-section {
  padding: 10px 0 8px;
}
.countdown-box, .cta-box {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
.countdown-box h2, .cta-box h2 {
  margin: 12px 0 10px;
  font-family: 'Cinzel', serif;
}
.countdown-box p { color: var(--muted); }
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 14px;
}
.countdown-grid div {
  text-align: center;
  padding: 18px 14px;
  border-radius: 22px;
  background: rgba(7, 15, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.08);
}
.countdown-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-2);
}
.countdown-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.stats-section { padding: 18px 0 18px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 26px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-card strong {
  display: block;
  color: var(--gold-2);
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.stat-card span { color: var(--muted); }

.section { padding: 76px 0; }
.two-col, .capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.section h2 {
  margin: 16px 0 16px;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.15;
}
.section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}
.section-heading.center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px;
}
.feature-panel, .profit-box, .faq-grid {
  display: grid;
  gap: 16px;
}
.feature-item, .profit-box > div, .faq-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.feature-item h3, .profit-box strong, .faq-item h3 {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: 1.1rem;
}
.feature-item p, .profit-box span, .faq-item p {
  margin: 0;
  color: var(--muted);
}

.dark-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.modules-grid, .plans-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module-card, .plan-card, .testimonial-card {
  padding: 24px;
  background: rgba(7, 15, 30, 0.7);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
}
.module-card {
  min-height: 184px;
}
.module-card h3, .plan-card h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 1.1rem;
}
.module-card p, .testimonial-card p {
  margin: 0;
  color: #d4dce8;
}
.highlight-card {
  background: linear-gradient(135deg, rgba(239, 178, 54, 0.18), rgba(22, 54, 111, 0.32));
  border-color: rgba(255, 217, 121, 0.25);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-card {
  position: relative;
  padding: 28px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f0b439, #244fbd);
}
.week {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-2);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.timeline-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}
.timeline-card p {
  margin: 0;
}

.profit-section {
  background: radial-gradient(circle at top right, rgba(239,178,54,0.08), transparent 30%);
}
.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
}
.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-card .price {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  color: var(--text);
}
.plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}
.featured-plan {
  background: linear-gradient(180deg, rgba(239, 178, 54, 0.16), rgba(17, 35, 68, 0.78));
  border-color: rgba(255, 217, 121, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(219, 143, 21, 0.14);
}

.capture-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #ebeff6;
}
.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 15, 30, 0.88);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}
.lead-form input::placeholder { color: #9eabbe; }

.cta-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0 34px;
  background: rgba(0,0,0,0.18);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-info a { color: var(--muted); }
.footer-info a:hover { color: var(--gold-2); }

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .capture-grid,
  .stats-grid,
  .modules-grid,
  .timeline,
  .plans-grid,
  .testimonials-grid,
  .countdown-box,
  .cta-box {
    grid-template-columns: 1fr 1fr;
  }
  .countdown-box,
  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    gap: 14px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-grid,
  .two-col,
  .capture-grid,
  .stats-grid,
  .modules-grid,
  .timeline,
  .plans-grid,
  .testimonials-grid,
  .countdown-box,
  .countdown-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero-card img {
    min-height: 360px;
  }
  .btn {
    width: 100%;
  }
  .cta-actions {
    width: 100%;
  }
  .section,
  .cta-section {
    padding: 58px 0;
  }
  .countdown-box,
  .cta-box {
    padding: 26px;
  }
  .featured-plan {
    transform: none;
  }
}
