/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:      #C4902A;
  --accent-light:#E0B050;
  --accent-glow: rgba(196, 144, 42, 0.35);
  --bg:          #0E0C09;
  --bg2:         #161209;
  --bg3:         #1E1810;
  --text:        #F5F0E8;
  --muted:       #A89880;
  --border:      rgba(196, 144, 42, 0.25);
  --gold:        #F5E042;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTIL ── */
.container { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-accent { color: var(--accent-light); }

/* ── NOTIFICATION TOAST ── */
#toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 280px;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: slideIn 0.4s ease, fadeOut 0.5s ease 4.5s forwards;
}

.toast strong { color: var(--accent-light); }

@keyframes slideIn {
  from { transform: translateX(-110%); opacity: 0; }
  to   { transform: translateX(0);      opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateX(-110%); }
}

/* ── TOP BAR ── */
.topbar {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0E0C09;
}

/* ── VIDEO HERO ── */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: var(--bg);
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  background: var(--bg);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 12, 9, 0.05) 0%,
    rgba(14, 12, 9, 0.40) 100%
  );
}

/* ── HERO ── */
.hero {
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: rgba(196, 144, 42, 0.15);
  border: 1px solid var(--border);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  display: inline-block;
  padding: 0 6px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 16px;
}

.hero-subtitle span {
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  padding: 0 4px;
}

.hero-detail {
  font-size: 0.95rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 36px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #0E0C09;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 30px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-glow); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

/* ── URGENCY ── */
.urgency {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency::before {
  content: '⏳';
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--bg2);
  padding: 36px 20px;
}

.features-strip .container {
  max-width: 100%;
  padding: 0 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  width: 100%;
}

.feature-item .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.feature-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item span {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ── SECTION ── */
.section {
  padding: 72px 20px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-intro {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 580px;
  margin-bottom: 40px;
}

/* ── LEARN CARDS ── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.learn-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.learn-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0E0C09;
  margin-bottom: 16px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.learn-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── STORY ── */
.story-section {
  background: var(--bg2);
}

.story-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.story-box::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.story-box p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-box p:last-child { margin-bottom: 0; }

.story-highlight {
  background: rgba(196, 144, 42, 0.12);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 24px 0;
  font-weight: 600;
  color: var(--text) !important;
  font-size: 1rem !important;
}

/* ── SOCIAL PROOF ── */
.proof-strip {
  padding: 48px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(196,144,42,0.12), rgba(196,144,42,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.proof-item big {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── WHO IS IT FOR ── */
.for-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.for-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.for-item .check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #0E0C09;
  font-weight: 800;
}

.for-item strong {
  display: block;
  font-size: 0.97rem;
  margin-bottom: 4px;
}

.for-item p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CTA FINAL ── */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 64px 20px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-section > .container > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  padding: 28px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-box {
    padding: 24px 20px;
  }
}

@media (max-width: 420px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}
