/* ============================================
   ELITES GRID CAT COURSE - PREMIUM STYLESHEET
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --bg-primary: #06060f;
  --bg-secondary: #0b0b18;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --gold: #c9973a;
  --gold-light: #e8b84b;
  --gold-bright: #f5cc6a;
  --gold-dark: #8a6520;
  --gold-dim: rgba(201, 151, 58, 0.15);
  --text-primary: #f0eadc;
  --text-secondary: #8a8499;
  --text-muted: #5a5468;
  --border: rgba(201, 151, 58, 0.18);
  --border-strong: rgba(201, 151, 58, 0.35);
  --success: #4ade80;
  --danger: #f87171;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(201, 151, 58, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-bright); }

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

ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- LAYOUT --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #06060f;
  box-shadow: 0 4px 20px rgba(201, 151, 58, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 151, 58, 0.5);
  color: #06060f;
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* --- GLASS CARD --- */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  transition: var(--transition);
}
.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

/* --- SECTION LABELS --- */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
}

.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ============ HEADER ============ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(6, 6, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #06060f;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.active { color: var(--gold); }

.nav-enroll {
  padding: 9px 22px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(6, 6, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

/* ============ HERO ============ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 50px 20px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,151,58,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201,151,58,0.06) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,151,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,151,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--gold-dim);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-badge .original { color: var(--text-muted); text-decoration: line-through; }
.hero-badge .current { color: var(--gold-bright); font-size: 1rem; }
.hero-badge .divider { width: 1px; height: 16px; background: var(--border-strong); }

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-sub strong { color: var(--gold); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 0;
  animation: scroll-trust 25s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes scroll-trust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ FEATURES / WHAT YOU GET ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.feature-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card p { font-size: 0.88rem; color: var(--text-secondary); }

/* ============ WHO IS THIS FOR ============ */
.target-section { background: var(--bg-secondary); }

.target-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
  max-width: 680px;
}

.target-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
}

.target-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}

.target-card p { font-size: 0.9rem; color: var(--text-secondary); }

.target-note {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* ============ DEMO & PROOF ============ */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.demo-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
}

.demo-card:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.demo-icon { font-size: 2.2rem; }

.demo-card h3 {
  font-size: 1.05rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

.demo-card p { font-size: 0.875rem; color: var(--text-secondary); }

.demo-arrow {
  margin-top: auto;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============ REVIEWS (SCREENSHOT GALLERY) ============ */
.reviews-section { background: var(--bg-secondary); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.review-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.review-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  display: block;
}

.review-meta {
  display: none;
}

.review-meta span { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.review-meta .stars { color: var(--gold-light); font-size: 0.8rem; }

.reviews-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}
.reviews-placeholder a { color: var(--gold); }

/* ============ TESTIMONIALS ============ */
.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 48px 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: 300px;
  max-width: 340px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.t-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 14px; }

.t-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ============ PRICING ============ */
.pricing-section {
  background: var(--bg-secondary);
  text-align: center;
}

.pricing-wrap {
  max-width: 520px;
  margin: 0 auto;
  margin-top: 48px;
}

.pricing-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
}

.pricing-badge-top {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.price-block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.price-original {
  font-size: 1.4rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  padding-bottom: 6px;
}

.price-current {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-sup { font-size: 2rem; font-family: 'DM Sans', sans-serif; vertical-align: super; }

.pricing-checklist {
  text-align: left;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.check-icon { color: var(--gold-light); font-size: 0.9rem; font-weight: 700; flex-shrink: 0; }

/* ============ FAQs ============ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--border-strong); background: var(--bg-card-hover); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  user-select: none;
}

.faq-q:hover { color: var(--gold-light); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold-dim); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ CHECKOUT ============ */
.checkout-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.checkout-wrap {
  max-width: 640px;
  margin: 0 auto;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-primary);
  transition: var(--transition);
}

.step-node.active .step-circle {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 0 4px rgba(201,151,58,0.12);
}

.step-node.done .step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: #06060f;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.step-node.active .step-label { color: var(--gold); }
.step-node.done .step-label { color: var(--text-secondary); }

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 4px;
  margin-bottom: 24px;
}

.step-line.done { background: var(--gold); }

/* Checkout panels */
.checkout-panel { display: none; }
.checkout-panel.active { display: block; }

.panel-header { margin-bottom: 32px; }
.panel-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 8px; }
.panel-header p { color: var(--text-secondary); font-size: 0.95rem; }

/* Course summary card */
.course-summary-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  margin-bottom: 28px;
}

.cs-price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 24px;
}

.cs-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.cs-current {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.cs-list { display: flex; flex-direction: column; gap: 10px; }

.cs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cs-list .ck { color: var(--gold-light); font-weight: 700; }

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.meta-tag {
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* Payment QR panel */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  margin-bottom: 28px;
}

.qr-box {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(201,151,58,0.2);
}

.qr-box canvas, .qr-box img { display: block; }

.amount-tag {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.upi-copy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  width: 100%;
  max-width: 340px;
}

.upi-id-text {
  flex: 1;
  font-family: monospace;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.copy-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.copy-btn:hover { background: var(--gold); color: #06060f; }

/* Timer */
.timer-section {
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.timer-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.timer-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.timer-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 4px;
  transition: width 1s linear, background 0.5s;
  width: 100%;
}

.timer-fill.warning { background: linear-gradient(90deg, #f97316, var(--danger)); }

.timer-display {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.timer-display.warning { color: var(--danger); }

.qr-expired-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  color: var(--danger);
}

.qr-expired-msg p { font-size: 0.9rem; color: var(--text-secondary); }

.payment-steps {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.payment-steps h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }

.payment-steps ol { counter-reset: steps; display: flex; flex-direction: column; gap: 10px; }
.payment-steps ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.payment-steps ol li::before {
  content: counter(steps);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Form */
.proof-form { display: flex; flex-direction: column; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-field input,
.form-field textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201,151,58,0.05);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.1);
}

.form-field input::placeholder { color: var(--text-muted); }

.file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 2px dashed var(--border);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  flex-direction: column;
}

.file-label:hover { border-color: var(--gold); background: var(--gold-dim); }
.file-label .file-icon { font-size: 2rem; }
.file-label .file-text { font-size: 0.88rem; color: var(--text-secondary); }
.file-label .file-subtext { font-size: 0.78rem; color: var(--text-muted); }

input[type="file"] { display: none; }

.form-note-box {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(201,151,58,0.06);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ THANK YOU PAGE ============ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}

.thankyou-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.check-anim {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 32px;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 16px rgba(201,151,58,0.12);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thankyou-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.thankyou-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.65;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.thankyou-note {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.mini-faq {
  margin-top: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-faq-item {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.mini-faq-item strong { font-size: 0.88rem; color: var(--text-primary); display: block; margin-bottom: 4px; }
.mini-faq-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============ ABOUT / LEGAL PAGES ============ */
.inner-page {
  min-height: 100vh;
  padding: 130px 24px 80px;
}

.inner-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.value-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-secondary); }

.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* Legal / Policy pages */
.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-size: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.legal-section p, .legal-section li { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 10px; }
.legal-section ul, .legal-section ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-section li { list-style: disc; }

.effective-date { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 40px; }

.legal-note {
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 32px;
}

.contact-box {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============ FOOTER ============ */
#site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 24px 28px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ============ UTILITIES ============ */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .target-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  section { padding: 64px 0; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .target-cards { grid-template-columns: 1fr; max-width: 340px; }
  .demo-grid { grid-template-columns: 1fr; }
  .pricing-checklist { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stepper { gap: 4px; }
  .step-label { display: none; }
  .about-ctas { flex-direction: column; }
  .checkout-page, .thankyou-page, .inner-page { padding: 100px 16px 60px; }
  .qr-container { padding: 28px 16px; }
  .course-summary-card { padding: 24px 20px; }
}

@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .price-current { font-size: 3.2rem; }
}
