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

:root {
  --gold: #ffd700;
  --gold-dark: #e6b800;
  --gold-light: #fff0a0;
  --dark-navy: #0d0d1a;
  --dark-bg: #12122a;
  --card-dark: #1a1a35;
  --light-bg: #f5f0e8;
  --green: #22c55e;
  --teal: #0891b2;
  --white: #ffffff;
  --text-light: #e8e8e8;
  --text-muted: #a0a0b0;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 76px;
}

.timer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #fff8df 0%, #ffe8a3 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.timer-bar-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.timer-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #4a3308;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.timer-copy i {
  color: #d97706;
}

.timer-display {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f1a17;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.timer-separator {
  color: #c58a00;
  animation: timerBlink 1s steps(1, end) infinite;
}

.timer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.28);
}

@keyframes timerBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

img { max-width: 100%; display: block; }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-xl { padding: 1.2rem 3rem; font-size: 1.25rem; }

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.6);
  background: linear-gradient(135deg, #ffe333, #f0b800);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #0d0d1a;
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.6);
}

.btn-teal {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: white;
  box-shadow: 0 4px 20px rgba(8,145,178,0.4);
}
.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(8,145,178,0.6);
}

.btn-dark {
  background: linear-gradient(135deg, #1a1a35, #12122a);
  color: white;
  border: 2px solid var(--gold);
}
.btn-dark:hover {
  background: var(--gold);
  color: #0d0d1a;
  transform: translateY(-3px);
}

.w-full { width: 100%; }

.pulse-btn {
  animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.5); }
  50% { box-shadow: 0 0 0 20px rgba(255,215,0,0); }
}

/* ==============================
   SECTION UTILITIES
============================== */
.section-dark { background: var(--dark-bg); padding: 5rem 0; }
.section-light { background: var(--light-bg); padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  letter-spacing: 2px;
}

.section-header.dark h2 { color: #1a1a2e; }

.section-divider {
  color: var(--gold);
  font-size: 1.2rem;
}
.section-divider.dark { color: #1a1a2e; }

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a35 100%);
  border-bottom: 2px solid rgba(255,215,0,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,13,26,0.97);
  backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffd700, #e6a800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d1a;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-main {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.nav-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
}

.stat-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.stat-item strong {
  display: block;
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1;
}

.stat-item span {
  color: var(--text-muted);
  font-size: 0.6rem;
  line-height: 1;
}

.nav-badge {
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  flex-shrink: 0;
}

.nav-badge span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.pulse-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  background: #0a0a0f;
  min-height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(255,200,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(80,0,120,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Floating musical notes */
.musical-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.note {
  position: absolute;
  color: rgba(255,215,0,0.18);
  font-size: 2rem;
  animation: floatNote linear infinite;
}

@keyframes floatNote {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* ---- Hero layout ---- */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 2.5rem 1.25rem 1.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
  min-height: 500px;
}

/* ---- Left content ---- */
.hero-content {
  flex: 1;
  max-width: 55%;
  padding-right: 1rem;
}

/* Title */
.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero-title-gold {
  color: var(--gold);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  display: block;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,215,0,0.35);
  letter-spacing: -1px;
}

.hero-title-white {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  display: block;
  line-height: 1.1;
}

/* Tagline */
.hero-tagline {
  font-size: 0.95rem;
  color: #c8a040;
  margin: 0.75rem 0 1.1rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '—';
  color: #c8a040;
}

/* Feature badges — matching reference (icon above text) */
.hero-features {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.hero-features span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-features span i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* CTA */
.hero-cta {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 0.9rem 2.5rem;
}

.hero-sub {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ---- Right image — BLENDED into background ---- */
.hero-image {
  flex-shrink: 0;
  width: 45%;
  max-width: 520px;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

/* Gradient masks that make the image dissolve into background */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  #0a0a0f 0%, transparent 30%),
    linear-gradient(to top,    #0a0a0f 0%, transparent 18%),
    linear-gradient(to bottom, #0a0a0f 0%, transparent 12%);
  z-index: 2;
  pointer-events: none;
}

.teacher-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* Signature badge */
.teacher-badge {
  position: absolute;
  bottom: 28px;
  right: 20px;
  color: rgba(255,215,0,0.75);
  font-size: 1.3rem;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  z-index: 3;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  pointer-events: none;
}

/* ---- Bottom bar ---- */
.hero-bottom-bar {
  background: rgba(255,215,0,0.06);
  border-top: 1px solid rgba(255,215,0,0.15);
  padding: 0.65rem 0;
  position: relative;
  z-index: 1;
}

.hero-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-bottom-inner span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==============================
   HERO — MOBILE (image in placeholder)
============================== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    gap: 1.5rem;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    order: 2;
  }

  /* Image becomes a contained placeholder on mobile */
  .hero-image {
    order: 1;
    width: 85%;
    max-width: 320px;
    align-self: center;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,215,0,0.3);
    box-shadow: 0 8px 40px rgba(255,215,0,0.15);
    height: 300px;
  }

  /* Remove the blending masks on mobile so image is contained */
  .hero-image::before {
    background: linear-gradient(to top, rgba(10,10,15,0.6) 0%, transparent 50%);
  }

  .teacher-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .teacher-badge {
    font-size: 1rem;
    bottom: 12px;
    right: 14px;
  }

  .hero-title { text-align: center; }

  .hero-title-gold {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-tagline {
    justify-content: center;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    gap: 0.5rem;
  }

  .hero-cta {
    display: inline-flex;
  }

  .hero-sub { text-align: center; }

  .hero-bottom-inner {
    gap: 1rem;
  }

  .hero-bottom-inner span {
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    width: 92%;
    height: 260px;
  }

  .hero-features span {
    font-size: 0.58rem;
    padding: 0.35rem 0.5rem;
  }

  .hero-bottom-inner {
    gap: 0.75rem;
  }
}

/* ==============================
   PRICING SECTION
============================== */
.pricing-section {
  background: #07071a;
  padding: 4.5rem 0 3rem;
}

/* ---- Section heading ---- */
.pricing-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ph-ornament {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}

.ph-title {
  color: #ffffff;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

/* ---- Grid ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

/* =========================================
   BASE CARD  (.pc)
========================================= */
.pc {
  background: #0f0f2a;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
  overflow: visible;
}

.pc:hover {
  transform: translateY(-6px);
}

/* ---- Icon circle ---- */
.pc-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}

/* ---- Badge pill (Most Popular / Best Value / Premium) ---- */
.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 3;
}

/* ---- Title ---- */
.pc-title {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ---- Subtitle ---- */
.pc-sub {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.4;
}

.pc-sub-gold { color: #b8904a; }

/* ---- Price ---- */
.pc-price-box {
  width: 100%;
}

.pc-old {
  display: inline-block;
  text-decoration: line-through;
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
}

.pc-main {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.pc-main small {
  font-size: 0.75rem;
  font-weight: 500;
  color: #999;
}

.pc-main-gold { color: var(--gold); }

/* ---- Features ---- */
.pc-features {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  flex: 1;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pc-features li {
  font-size: 0.9rem;
  color: #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pc-features li i {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- Tagline ---- */
.pc-tagline {
  font-size: 0.68rem;
  color: #777;
  font-style: italic;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.pc-tagline-gold { color: #b8904a; }

/* ---- CTA button ---- */
.pc-btn {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* =========================================
   GREEN  — Starter Pass
========================================= */
.pc-green {
  border-color: rgba(34,197,94,0.3);
}
.pc-green:hover {
  box-shadow: 0 12px 40px rgba(34,197,94,0.2);
  border-color: rgba(34,197,94,0.6);
}
.pc-icon-green {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 2px solid rgba(34,197,94,0.4);
}
.pc-title-green { color: #22c55e; }
.pc-feat-green li i { color: #22c55e; }
.pc-btn-green {
  background: #22c55e;
  color: #fff;
}
.pc-btn-green:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}

/* =========================================
   BLUE  — Live Learning Club
========================================= */
.pc-blue {
  border-color: rgba(59,130,246,0.35);
}
.pc-blue:hover {
  box-shadow: 0 12px 40px rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.65);
}
.pc-icon-blue {
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
  border: 2px solid rgba(59,130,246,0.4);
}
.pc-title-blue { color: #3b82f6; }
.pc-feat-blue li i { color: #3b82f6; }
.pc-badge-blue {
  background: #3b82f6;
  color: #fff;
}
.pc-btn-blue {
  background: #3b82f6;
  color: #fff;
}
.pc-btn-blue:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}

/* =========================================
   PURPLE  — Fast Track
========================================= */
.pc-purple {
  border-color: rgba(168,85,247,0.35);
}
.pc-purple:hover {
  box-shadow: 0 12px 40px rgba(168,85,247,0.2);
  border-color: rgba(168,85,247,0.65);
}
.pc-icon-purple {
  background: rgba(168,85,247,0.15);
  color: #a855f7;
  border: 2px solid rgba(168,85,247,0.4);
}
.pc-title-purple { color: #a855f7; }
.pc-feat-purple li i { color: #a855f7; }
.pc-badge-purple {
  background: #a855f7;
  color: #fff;
}
.pc-btn-purple {
  background: #a855f7;
  color: #fff;
}
.pc-btn-purple:hover {
  background: #9333ea;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,85,247,0.4);
}

/* =========================================
   GOLD  — Mastery Program
========================================= */
.pc-gold {
  background: linear-gradient(160deg, #1a1100 0%, #2a1e00 100%);
  border-color: rgba(255,215,0,0.4);
}
.pc-gold:hover {
  box-shadow: 0 12px 50px rgba(255,215,0,0.25);
  border-color: rgba(255,215,0,0.75);
}
.pc-icon-gold {
  background: rgba(255,215,0,0.15);
  color: var(--gold);
  border: 2px solid rgba(255,215,0,0.5);
}
.pc-title-gold { color: var(--gold); }
.pc-feat-gold li i { color: var(--gold); }
.pc-badge-gold {
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
}
.pc-btn-gold {
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
  font-weight: 900;
}
.pc-btn-gold:hover {
  background: linear-gradient(135deg, #ffe033, #f0b800);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,215,0,0.45);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pc { padding: 2rem 1.5rem; }
  .pc-main { font-size: 2.5rem; }
  .pc-features li { font-size: 1rem; }
  .pc-title { font-size: 1.4rem; }
  .pc-sub { font-size: 0.95rem; }
}

/* =========================================
   MASTERY FULL WIDTH CARD
========================================= */
.mastery-card-full {
  background: linear-gradient(160deg, #1a1100 0%, #2a1e00 100%);
  border: 2px solid rgba(255,215,0,0.5);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  box-shadow: 0 12px 40px rgba(255,215,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
}
.mastery-card-full:hover {
  box-shadow: 0 16px 50px rgba(255,215,0,0.25);
  border-color: rgba(255,215,0,0.8);
}
.mcf-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
  padding: 0.4rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255,215,0,0.4);
  white-space: nowrap;
}
.mcf-header {
  text-align: center;
  margin-top: 0.5rem;
}
.mcf-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}
.mcf-subtitle {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 0.3rem;
}
.mcf-quote {
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  color: #fff0a0;
  border-left: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  padding: 1rem 2rem;
  background: rgba(255,215,0,0.05);
  border-radius: 8px;
  line-height: 1.6;
  margin: 0.5rem 0;
}
.mcf-desc {
  text-align: center;
  font-size: 1.05rem;
  color: #e8e8e8;
  font-weight: 500;
}
.mcf-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.mcf-features-list {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.1);
}
.mcf-features-list h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mcf-features-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mcf-features-list li {
  font-size: 0.95rem;
  color: #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.mcf-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  background: rgba(255,215,0,0.05);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.2);
}
.mcf-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mcf-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.mcf-price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mcf-price-label { color: #ccc; font-weight: 500; }
.mcf-old-price { text-decoration: line-through; color: #888; font-size: 1rem; }
.mcf-highlight { color: #fff; font-size: 1.2rem; font-weight: 700; }
.mcf-new-price { color: var(--gold); font-size: 1.6rem; font-weight: 900; }
.mcf-special .mcf-price-label { line-height: 1.2; }
.mcf-special .mcf-price-label small { color: #aaa; font-size: 0.8rem; }
.mcf-special-price { color: #22c55e; font-size: 1.4rem; font-weight: 900; }
.mcf-cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mcf-commitment { color: var(--gold); font-weight: 700; font-size: 1rem; }
.mcf-investment { color: #aaa; font-size: 0.9rem; font-style: italic; }
@media (max-width: 900px) {
  .mcf-body, .mcf-footer { grid-template-columns: 1fr; }
  .mcf-quote { padding: 1rem; font-size: 1.05rem; }
  .mastery-card-full { padding: 2rem 1.25rem; }
}

/* International Banner */
.intl-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  margin-top: 1rem;
}

.intl-features {
  display: contents;
}

.intl-item {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.intl-item i { color: var(--gold); }

.intl-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
}

.intl-enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.35);
}

.intl-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.55);
  opacity: 0.92;
}

.intl-enroll-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.intl-enroll-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .intl-banner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }
  .intl-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0 auto;
    width: fit-content;
  }
  .intl-features .intl-item {
    justify-content: flex-start;
    gap: 1rem;
  }
  .intl-item {
    font-size: 1.1rem;
    gap: 0.8rem;
  }
  .intl-item i {
    font-size: 1.2rem;
  }
  .intl-price {
    font-size: 2.5rem;
  }
  .intl-enroll-btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    margin-top: 0.5rem;
  }
}

/* ==============================
   JOURNEY
============================== */
.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a1a35, #2a2a55);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}

.journey-step:hover .step-icon {
  background: linear-gradient(135deg, #ffd700, #e6a800);
  color: #0d0d1a;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.journey-step span {
  font-size: 0.55rem;
  text-align: center;
  color: #1a1a2e;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.journey-arrow {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
}
/* ==============================
   INCLUDED & WHY US
============================== */
.included-section {
  background: #07071a;
  padding: 3rem 0;
}

.two-col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Common Panel Styles */
.wi-panel, .why-panel {
  background: #0a0a1a;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.wi-title {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* ---- Left: What's Included (4 col grid) ---- */
.wi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
  flex: 1;
}

.wi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.wi-icon {
  color: var(--gold);
  font-size: 1.8rem;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wi-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.wi-label {
  font-size: 0.72rem;
  color: #ccc;
  line-height: 1.3;
}

/* ---- Right: Why Choose (2 col list) ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  flex: 1;
  align-content: start;
}

.why-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #ddd;
  font-size: 0.82rem;
  line-height: 1.4;
}

.why-row i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .two-col-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Recognition Hook (Below Included/Why) ---- */
.recognition-hook {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 1.5rem;
  background: transparent;
}

.hook-title {
  color: var(--gold);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hook-stars {
  font-size: 1rem;
}

.hook-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
}

.hc-card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: transparent;
  min-width: 140px;
}

.hc-active {
  border: 1px solid var(--gold);
  padding: 2.5rem 2rem;
}

.hc-dim {
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
  padding: 2rem 1.5rem;
  margin-top: 1rem;
}

.hc-icon-wrap {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.hc-active .hc-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: #0d0d1a;
  font-size: 1.6rem;
}

.hc-dim .hc-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255,215,0,0.25);
  color: #0d0d1a;
  font-size: 1.2rem;
}

.hc-text {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}

.hc-active .hc-text {
  color: #fff;
  font-size: 0.85rem;
}

.hc-dim .hc-text {
  color: #666;
  font-size: 0.7rem;
}

.hook-sub {
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hook-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hook-socials .social-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.hook-socials .social-btn:hover {
  transform: translateY(-3px);
}

.hook-socials .youtube { background: #ff0000; }
.hook-socials .facebook { background: #3b82f6; }
.hook-socials .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.hook-live {
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hook-cta {
  display: flex;
  justify-content: center;
}

.hook-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 0 40px rgba(255,215,0,0.15);
}

/* ==============================
   TESTIMONIALS
============================== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 182, 86, 0.10), transparent 32%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ea 100%);
  color: #2a1f16;
}

.testimonials-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v40c11.046 0 20-8.954 20-20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 auto 1rem;
  color: #8a6a1b;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  justify-content: center;
}

.section-line {
  width: clamp(2rem, 6vw, 3.5rem);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.testimonials-top {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.featured-review {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  max-width: 1200px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 26px 60px rgba(78, 53, 30, 0.10), 0 0 60px rgba(212, 175, 55, 0.08);
  text-align: left;
}

.review-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.review-glow-top {
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 197, 74, 0.18) 0%, transparent 70%);
}

.review-glow-bottom {
  left: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0b3, #f1cf6b);
  color: #3f2a12;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1.25;
  font-weight: 900;
  color: #1f1a17;
}

.featured-heading span {
  color: #c58a00;
}

.featured-subtitle {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: #5f5347;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.75;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.featured-video,
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 40px rgba(78, 53, 30, 0.14);
  background: #fff;
}

.featured-video {
  aspect-ratio: 16 / 9;
}

.featured-video video,
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.1rem;
}

.featured-quote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  color: #3c332b;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.85;
  font-style: italic;
}

.featured-attribution {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.featured-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffd700, #d4af37);
  color: #2b1b17;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.featured-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #1f1a17;
}

.featured-role {
  margin-top: 0.1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.featured-note {
  margin-top: 0.1rem;
  color: #7a6d5e;
  font-size: 0.72rem;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(76, 175, 80, 0.4);
  background: rgba(76, 175, 80, 0.12);
  color: #2d7a43;
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-section {
  margin-top: 4.5rem;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gallery-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1f1a17;
}

.gallery-heading-spaced {
  margin-top: 4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.video-frame {
  aspect-ratio: 16 / 9;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.video-frame:hover,
.featured-video:hover,
.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(78, 53, 30, 0.18);
  border-color: rgba(255, 215, 0, 0.5);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.screenshot-card {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonials-cta {
  text-align: center;
  margin-top: 2.75rem;
}

.reveal-card,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-card.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   OFFICIAL PLATFORMS
============================== */
.official-platforms-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 105, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%);
}

.official-platforms-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 24px 60px rgba(78, 53, 30, 0.10);
  backdrop-filter: blur(10px);
}

.official-platforms-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.official-platforms-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #8a6a1b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-platforms-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: #1f1a17;
  font-weight: 900;
}

.official-platforms-title span {
  color: #c58a00;
}

.official-platforms-lead {
  color: #5f5347;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.8;
  max-width: 44rem;
}

.official-personas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.persona-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 12px 26px rgba(78, 53, 30, 0.08);
}

.persona-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #8a6a1b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-card strong {
  color: #1f1a17;
  font-size: 0.96rem;
  line-height: 1.4;
}

.persona-gold {
  background: linear-gradient(135deg, #fff8dc 0%, #fffdf7 100%);
}

.official-note-box {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #d4af37;
}

.official-note-box p {
  margin: 0;
  color: #4d4238;
  font-size: 0.92rem;
  line-height: 1.8;
}

.official-platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.official-platform-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 14px 28px rgba(78, 53, 30, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.official-platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 18px 36px rgba(78, 53, 30, 0.12);
}

.official-platform-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.official-platform-copy {
  min-width: 0;
  flex: 1;
}

.official-platform-name {
  display: block;
  color: #1f1a17;
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.official-platform-url {
  display: block;
  color: #7a6d5e;
  font-size: 0.78rem;
  line-height: 1.4;
  word-break: break-word;
}

.official-platform-arrow {
  color: #c58a00;
  flex-shrink: 0;
}

.official-platform-card.youtube-card .official-platform-icon {
  background: linear-gradient(135deg, #ff0000, #d60000);
}

.official-platform-card.instagram-card .official-platform-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.official-platform-card.facebook-card .official-platform-icon {
  background: linear-gradient(135deg, #1877f2, #3b82f6);
}

.official-platforms-footer {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding: 1rem 1.05rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  text-align: center;
}

.official-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #8a6a1b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-platforms-footer p {
  margin: 0.8rem auto 0;
  max-width: 760px;
  color: #5f5347;
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ==============================
   RECOGNITION
============================== */
.recognition-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.recognition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--card-dark);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  width: 180px;
  text-align: center;
  transition: var(--transition);
}

.recognition-item:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,215,0,0.2);
}

.recognition-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffd700, #e6a800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d1a;
  font-size: 1.5rem;
}

.recognition-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

.recognition-social {
  text-align: center;
}

.recognition-social p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  transition: var(--transition);
}

.social-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.social-btn.youtube { background: #ff0000; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.go-live-text {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem !important;
}

/* ==============================
   FINAL CTA
============================== */
.final-cta-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1f, #1a0533, #0d0d1a);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(255,215,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.musical-deco {
  color: rgba(255,215,0,0.3);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.final-cta-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
}

.final-cta-title span {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.final-cta-inner > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: #0a0a15;
  border-top: 1px solid rgba(255,215,0,0.15);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-powered {
  font-size: 0.78rem;
  color: #666;
}

.footer-powered a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}

.footer-powered a:hover {
  text-decoration: underline;
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* ==============================
   RESPONSIVE - TABLET
============================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .nav-stats { display: none; }

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

  .official-platforms-shell {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   RESPONSIVE - MOBILE
============================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 92px;
  }

  .timer-bar-inner {
    min-height: 64px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
  }

  .timer-copy {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    gap: 0.45rem;
  }

  .timer-display {
    font-size: 0.95rem;
    padding: 0.3rem 0.7rem;
  }

  .timer-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.74rem;
  }

  /* Navbar */
  .nav-stats { display: none; }
  .nav-badge { display: none; }
  .hamburger { display: block; }

  .nav-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.25rem 1.5rem;
  }

  .hero-content { max-width: 100%; }

  .hero-features {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-bottom-inner {
    gap: 1rem;
  }

  .hero-bottom-inner span {
    font-size: 0.65rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card:hover {
    transform: none;
  }

  /* Journey */
  .journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .journey-arrow { display: none; }

  /* Two Col */
  .two-col-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Section headers */
  .section-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  /* All text centered on mobile */
  .half-title { text-align: center; }
  .why-item { justify-content: center; }
  .included-item { flex-direction: column; text-align: center; }

  /* Recognition */
  .recognition-grid {
    gap: 1rem;
  }

  .recognition-item { width: 140px; padding: 1.25rem; }

  /* Footer */
  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Buttons centered */
  .btn { display: flex; justify-content: center; }

  .hero-cta, .section-cta .btn {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .intl-banner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .intl-item { justify-content: center; }
  
  .intl-features .intl-item { 
    justify-content: flex-start;
    text-align: left;
  }

  .testimonials-inner {
    padding-inline: 0.25rem;
  }

  .featured-review {
    border-radius: 22px;
  }

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

  .screenshots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-personas,
  .official-platforms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 104px;
  }

  .timer-bar-inner {
    min-height: 70px;
  }

  .timer-copy {
    font-size: 0.72rem;
  }

  .timer-display {
    font-size: 0.88rem;
    letter-spacing: 0.05em;
  }

  .timer-cta {
    width: 100%;
    max-width: 180px;
  }

  .hero-title { font-size: 1.75rem; }
  .btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
  .btn-xl { padding: 1rem 2rem; font-size: 1.05rem; }
  .step-icon { width: 50px; height: 50px; font-size: 1.1rem; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .why-section .btn { width: 100%; }
  .screenshots-grid { grid-template-columns: 1fr; }

  .official-platforms-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* ==============================
   PAGE: TERMS / PRIVACY / CONTACT
============================== */
.page-hero {
  background: linear-gradient(135deg, #0d0d1a, #1a0533);
  padding: 6rem 0 4rem;
  text-align: center;
  border-bottom: 2px solid rgba(255,215,0,0.2);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
}

.page-content h2 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.page-content p { margin-bottom: 1rem; color: var(--text-muted); }

.page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.page-content ul li {
  padding: 0.3rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-content ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

/* Contact Form */
.contact-form {
  background: var(--card-dark);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,215,0,0.05);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* Thankyou */
.thankyou-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1f 0%, #1a0533 50%, #0d0d1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.thankyou-card {
  background: var(--card-dark);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(255,215,0,0.1);
  animation: fadeInUp 0.8s ease;
}

.thankyou-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ffd700, #e6a800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d1a;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: badgePulse 2s infinite;
}

.thankyou-card h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.thankyou-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

@media (max-width: 480px) {
  .contact-form { padding: 1.5rem; }
  .thankyou-card { padding: 2rem 1.5rem; }
}

/* ==============================
   CONTACT INFO GRID
============================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  background: var(--card-dark);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(255,215,0,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,215,0,0.1);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #e6a800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d1a;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.contact-info-card h3 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ==============================
   FORM ROW (2-col layout)
============================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    text-align: center;
  }
}

/* ==============================
   THANKYOU CARD CENTER FIX
============================== */
.thankyou-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thankyou-card .steps-list,
.thankyou-card .whatsapp-cta-box {
  width: 100%;
}

/* ==============================
   PAGE NAV-LOGO LINK RESET
============================== */
a.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

