/* ═══════════════════════════════════════════
   BLR Masterclass — Landing Page Styles
   ═══════════════════════════════════════════ */

:root {
  --bg-primary: #0A0C10;
  --bg-secondary: #111318;
  --bg-card: #161922;
  --bg-card-hover: #1C1F2A;
  --accent: #C9A44E;
  --accent-light: #E2C678;
  --accent-glow: rgba(201, 164, 78, 0.15);
  --text-primary: #F0EDE6;
  --text-secondary: #A0A0A8;
  --text-muted: #6B6B76;
  --border: rgba(201, 164, 78, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --green: #34D399;
  --red: #EF4444;
  --gradient-gold: linear-gradient(135deg, #C9A44E, #E2C678, #C9A44E);
  --shadow-glow: 0 0 60px rgba(201, 164, 78, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1080px;
  --px: 20px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
}

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section { padding: 72px 0; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px);
  font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--accent); color: var(--bg-primary);
  text-align: center; padding: 10px var(--px);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
}
.announce-bar span { animation: pulse-text 2s ease-in-out infinite; }
@keyframes pulse-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ── HERO ── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 100px 0 60px; position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,164,78,0.06), transparent),
    radial-gradient(ellipse 60% 60% at 80% 100%, rgba(201,164,78,0.04), transparent),
    var(--bg-primary);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A44E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px; font-size: 13px;
  color: var(--accent-light); margin-bottom: 28px; font-weight: 500;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 6.5vw, 56px);
  font-weight: 800; line-height: 1.12; margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal; background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 36px; line-height: 1.6;
}
.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin-bottom: 36px; font-size: 14px; color: var(--text-secondary);
}
.hero-meta-item { display: flex; align-items: center; gap: 6px; }
.hero-meta-item svg { width: 18px; height: 18px; color: var(--accent); }

/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-gold); color: var(--bg-primary);
  font-size: 17px; font-weight: 700; padding: 18px 40px;
  border: none; border-radius: 12px; cursor: pointer;
  font-family: var(--font-body); letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201, 164, 78, 0.25);
  text-decoration: none;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201, 164, 78, 0.35); }
.cta-btn:active { transform: translateY(0); }
.cta-btn .price-tag {
  background: rgba(0,0,0,0.15); padding: 4px 12px;
  border-radius: 6px; font-size: 14px;
}
.cta-micro { margin-top: 14px; font-size: 13px; color: var(--text-muted); }
.cta-micro strong { color: var(--green); }

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle); padding: 28px 0;
}
.proof-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px; text-align: center;
}
.proof-item .num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--accent-light);
}
.proof-item .label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ── COUNTDOWN ── */
.countdown-section { background: var(--bg-secondary); padding: 48px 0; text-align: center; }
.countdown-title {
  font-size: 15px; color: var(--text-secondary); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 2px;
}
.countdown { display: flex; justify-content: center; gap: 16px; }
.countdown-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; min-width: 80px;
}
.countdown-box .val {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--accent-light); display: block;
}
.countdown-box .unit {
  font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}

/* ── VIDEO ── */
.video-section { text-align: center; }
.video-embed {
  position: relative; width: 100%; max-width: 720px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.video-embed .play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(201, 164, 78, 0.3);
  transition: transform 0.2s;
}
.video-embed:hover .play-icon { transform: scale(1.1); }
.video-embed .play-icon svg { width: 28px; height: 28px; color: var(--bg-primary); margin-left: 3px; }
.video-caption { font-size: 14px; color: var(--text-muted); margin-top: 16px; }

/* ── LEARN SECTION ── */
.learn-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 36px;
}
.learn-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s;
}
.learn-card:hover { border-color: var(--border); background: var(--bg-card-hover); }
.learn-card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--accent);
}
.learn-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.learn-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── PERSONAS ── */
.persona-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 36px;
}
.persona-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 32px 28px; position: relative; overflow: hidden;
}
.persona-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
}
.persona-card .emoji { font-size: 36px; margin-bottom: 16px; display: block; }
.persona-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.persona-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── SPEAKER ── */
.speaker-section { background: var(--bg-secondary); }
.speaker-card {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
  align-items: center; margin-top: 36px;
}
@media (max-width: 700px) { .speaker-card { grid-template-columns: 1fr; text-align: center; } }
.speaker-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-photo .placeholder-icon { font-size: 80px; color: var(--text-muted); }
.speaker-info h3 {
  font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 8px;
}
.speaker-info .title { color: var(--accent); font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.speaker-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px;
}
.speaker-stat {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 10px; padding: 16px 12px; text-align: center;
}
.speaker-stat .val {
  font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--accent-light);
}
.speaker-stat .lbl {
  font-size: 11px; color: var(--text-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── BONUS STACK ── */
.bonus-grid { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.bonus-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  transition: border-color 0.3s;
}
.bonus-item:hover { border-color: var(--border); }
.bonus-item .b-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.bonus-item .b-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.bonus-item .b-content p { font-size: 13px; color: var(--text-secondary); }
.bonus-item .b-value {
  margin-left: auto; flex-shrink: 0;
  font-size: 13px; color: var(--text-muted); text-decoration: line-through;
}
.bonus-total { text-align: center; margin-top: 24px; font-size: 18px; }
.bonus-total .old { text-decoration: line-through; color: var(--text-muted); }
.bonus-total .new { color: var(--accent-light); font-weight: 700; font-size: 24px; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 36px;
}
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 28px;
}
.testi-card .stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card .quote {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testi-card .author { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--accent);
}
.testi-card .author-info .name { font-size: 14px; font-weight: 600; }
.testi-card .author-info .role { font-size: 12px; color: var(--text-muted); }

/* ── PARTNER LOGOS ── */
.partners-section { background: var(--bg-secondary); text-align: center; padding: 56px 0; }
.partners-section .section-label { margin-bottom: 28px; }
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px;
}
.logo-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 10px; padding: 14px 28px;
  font-size: 16px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1px;
}
.logo-item img { height: 32px; width: auto; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; background: none; border: none; color: var(--text-primary);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: left;
}
.faq-q .arrow {
  transition: transform 0.3s; font-size: 18px; color: var(--accent);
  flex-shrink: 0; margin-left: 12px;
}
.faq-q.active .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0 24px; font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 0 24px 20px; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center; padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,164,78,0.08), transparent),
    var(--bg-primary);
}
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 44px);
  font-weight: 800; margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px; color: var(--text-secondary); margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
  padding: 40px 0; text-align: center; font-size: 13px; color: var(--text-muted);
}
.footer-links {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.site-footer .rera { margin-top: 12px; font-size: 11px; color: var(--text-muted); opacity: 0.7; }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 12px var(--px); backdrop-filter: blur(12px);
}
.sticky-cta .cta-btn {
  width: 100%; justify-content: center; padding: 16px;
  font-size: 16px; border-radius: 10px;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 90px; right: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  text-decoration: none; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@media (min-width: 769px) { .wa-float { bottom: 28px; } }

/* ── PAYMENT METHODS ── */
.pay-methods {
  display: flex; justify-content: center; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}
.pay-badge {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 8px; padding: 6px 14px; font-size: 12px;
  color: var(--text-muted); font-weight: 500;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  :root { --px: 16px; }
  .section { padding: 56px 0; }
  .countdown-box { min-width: 65px; padding: 12px 14px; }
  .countdown-box .val { font-size: 28px; }
  .speaker-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .speaker-stat { padding: 12px 8px; }
  .speaker-stat .val { font-size: 20px; }
  .bonus-item { flex-direction: column; text-align: center; gap: 12px; }
  .bonus-item .b-value { margin-left: 0; }
}
