/* ==========================================================================
   Digital Marketing Course Landing Page — style.css
   Dark theme with orange accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --accent: #f5a623;
  --accent-2: #ff7a00;
  --accent-3: #ffb347;
  --bg: #0b0d12;
  --surface: #12151c;
  --surface-2: #171b24;
  --border: #242935;
  --text: #e6e9ef;
  --muted: #9aa3b2;
  --success: #2ecc71;
  --danger: #ff5a5f;
  --whatsapp: #25d366;

  /* Gradients */
  --grad-accent: linear-gradient(135deg, #f5a623 0%, #ff7a00 50%, #ffb347 100%);
  --grad-accent-soft: linear-gradient(135deg, rgba(245,166,35,.18), rgba(255,122,0,.10));

  /* Shadow / Glow */
  --shadow-sm: 0 4px 12px rgba(0,0,0,.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,.4);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.5);
  --glow-accent: 0 10px 30px rgba(245,166,35,.35);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Typography */
  --font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --header-height: 72px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

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

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Accessible focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: rgba(245,166,35,.35);
  color: #fff;
}

/* --------------------------------------------------------------------------
   3. Layout Helpers
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head .kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   4. Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-accent);
  color: #0b0d12;
  box-shadow: 0 6px 18px rgba(245,166,35,.28);
}

.btn-primary:hover {
  box-shadow: var(--glow-accent), 0 0 0 3px rgba(245,166,35,.18);
  color: #0b0d12;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(245,166,35,.12);
}

.btn-sm {
  padding: 9px 16px;
  font-size: .88rem;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,13,18,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(11,13,18,.92);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-accent);
  color: #0b0d12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(245,166,35,.35);
}

.brand-text { letter-spacing: -.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--text); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: width .25s ease;
  border-radius: 2px;
}

.nav-links a:hover::after { width: 100%; }

.header-cta { margin-left: 8px; }

/* Menu toggle (hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,166,35,.18), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(255,122,0,.14), transparent 50%),
    radial-gradient(circle at 50% 110%, rgba(255,179,71,.12), transparent 55%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { max-width: 620px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 560px;
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

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

.price-new {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}

.price-tag {
  display: inline-block;
  background: rgba(46,204,113,.15);
  color: var(--success);
  border: 1px solid rgba(46,204,113,.35);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .02em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* Countdown */
.countdown {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 28px;
}

.count-title {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.count-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}

.count-cell .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.count-cell .lbl {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

/* Hero points */
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: .98rem;
}

.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46,204,113,.2);
  color: var(--success);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
}

/* Hero visual (mock browser card) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform .4s ease;
}

.hero-card:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.hero-card-top .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #ff5a5f; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.hero-card-title {
  margin-left: 10px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
}

.stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: left;
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: .78rem;
  color: var(--muted);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  font-size: .85rem;
  color: var(--muted);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(46,204,113,.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* --------------------------------------------------------------------------
   8. Curriculum
   -------------------------------------------------------------------------- */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.week-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.week-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.45);
  box-shadow: 0 18px 40px rgba(245,166,35,.12);
}

.week-tag {
  display: inline-block;
  background: rgba(245,166,35,.14);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,.3);
  font-size: .74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.week-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--text);
}

.week-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.week-card ul li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}

.week-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.week-card.highlight {
  border-color: rgba(245,166,35,.5);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-accent) border-box;
  box-shadow: 0 0 0 1px rgba(245,166,35,.15), 0 10px 30px rgba(245,166,35,.08);
}

/* --------------------------------------------------------------------------
   9. Audience
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.4);
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--grad-accent-soft);
  border: 1px solid rgba(245,166,35,.3);
}

.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--muted);
  font-size: .92rem;
}

/* --------------------------------------------------------------------------
   10. Instructor
   -------------------------------------------------------------------------- */
.instructor-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.instructor-photo {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.photo-frame {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  padding: 4px;
  background: var(--grad-accent);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-accent);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
}

.photo-initial {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: calc(var(--radius-lg) - 4px);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 5rem;
  letter-spacing: -.02em;
  background-image: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.photo-frame.photo-fallback img {
  display: none;
}

.photo-frame.photo-fallback .photo-initial {
  display: flex;
}

.photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 100%;
  max-width: 280px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.photo-stat {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.3;
}

.photo-stat b {
  display: block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.instructor-copy h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.instructor-copy > p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: .96rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46,204,113,.18);
  color: var(--success);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

/* --------------------------------------------------------------------------
   11. Features
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .25s ease, border-color .25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.35);
}

.feature-emoji,
.feature > span:first-child {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 14px;
}

.feature h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: .92rem;
}

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease;
}

.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.3);
}

.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}

.t-name {
  font-weight: 600;
  font-size: .98rem;
  color: var(--text);
}

.t-role {
  font-size: .82rem;
  color: var(--muted);
}

.t-stars {
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-size: .95rem;
}

.t-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. Pricing
   -------------------------------------------------------------------------- */
.pricing-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-accent) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  right: -6px;
  background: var(--grad-accent);
  color: #0b0d12;
  font-weight: 700;
  font-size: .78rem;
  padding: 7px 14px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(245,166,35,.35);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.pricing-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 22px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.pricing-price .old {
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 90, 95, .85);
  text-decoration-thickness: 2px;
  opacity: .7;
}

.pricing-price .new {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 24px rgba(245, 166, 35, .35);
}

.pricing-price .per {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ----- Coupon-gated price states ----- */

/* Default state: coupon NOT applied — show only ₹8,999 */
.pricing-price .old,
.pricing-price .new,
.pricing-price .per {
  display: none;
}
.pricing-price .reg-only {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.save-pill { display: none; }

/* Coupon applied state: reveal the discounted price + save pill */
.pricing-card.coupon-applied .pricing-price .reg-only { display: none; }
.pricing-card.coupon-applied .pricing-price .old,
.pricing-card.coupon-applied .pricing-price .new,
.pricing-card.coupon-applied .pricing-price .per {
  display: inline-block;
}
.pricing-card.coupon-applied .save-pill {
  display: inline-flex;
  animation: popIn .4s ease-out;
}

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

.save-pill {
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(46, 204, 113, .22), rgba(46, 204, 113, .08));
  color: #4ade80;
  border: 1px solid rgba(46, 204, 113, .45);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .01em;
}

/* ----- Coupon Box ----- */
.coupon-box {
  background: linear-gradient(135deg, rgba(245,166,35,.06), rgba(245,166,35,.02));
  border: 1px dashed rgba(245,166,35,.45);
  border-radius: var(--radius-md, 14px);
  padding: 16px 16px 14px;
  margin: 8px 0 18px;
}
.coupon-label {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.coupon-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.coupon-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border, #242935);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.coupon-input::placeholder {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.coupon-input:focus {
  border-color: var(--accent);
  background: rgba(245,166,35,.06);
}
.coupon-btn {
  padding: 12px 22px !important;
  white-space: nowrap;
}
.coupon-msg {
  margin-top: 10px;
  min-height: 0;
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s ease;
}
.coupon-msg.success {
  color: #4ade80;
}
.coupon-msg.error {
  color: #ff6b6b;
}
.coupon-hint {
  display: block;
  margin-top: 10px;
  font-size: .8rem;
  color: var(--muted);
}
.coupon-hint b {
  color: var(--accent);
  letter-spacing: .05em;
}

/* When applied, dim the coupon box & disable interaction */
.pricing-card.coupon-applied .coupon-box {
  border-style: solid;
  border-color: rgba(46, 204, 113, .5);
  background: linear-gradient(135deg, rgba(46,204,113,.06), rgba(46,204,113,.02));
}
.pricing-card.coupon-applied .coupon-input {
  pointer-events: none;
  opacity: .8;
}

/* ----- Hero Coupon Teaser ----- */
.coupon-teaser {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(245,166,35,.14), rgba(245,166,35,.04));
  border: 1px dashed rgba(245,166,35,.55);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: .92rem;
  margin: 4px 0 18px;
  font-weight: 500;
}
.coupon-teaser b {
  color: var(--accent);
  letter-spacing: .08em;
  font-weight: 700;
  background: rgba(245,166,35,.15);
  padding: 2px 8px;
  border-radius: 6px;
  margin: 0 2px;
}

/* ----- Urgent countdown styling ----- */
.countdown.urgent .count-title b {
  color: var(--accent);
  letter-spacing: .08em;
  background: rgba(245,166,35,.15);
  padding: 2px 8px;
  border-radius: 6px;
  margin: 0 2px;
}
.countdown.urgent {
  border-color: rgba(255,90,95,.4);
  animation: urgentGlow 2s ease-in-out infinite;
}
@keyframes urgentGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,95,0); }
  50%      { box-shadow: 0 0 28px 0 rgba(255,90,95,.18); }
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(74,222,128,.06);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 10px;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.45;
}
.trust-note b { color: #4ade80; }

.urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,90,95,.12);
  color: #ff8a8d;
  border: 1px solid rgba(255,90,95,.35);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 22px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: .95rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46,204,113,.2);
  color: var(--success);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .76rem;
}

.razorpay-slot {
  margin: 20px 0 14px;
  min-height: 50px;
  display: flex;
  justify-content: center;
}

.fine {
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  transition: color .2s ease;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform .25s ease, color .2s ease;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary:hover::after {
  color: var(--accent);
}

.faq-item[open] {
  border-color: rgba(245,166,35,.4);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  background: var(--grad-accent);
  color: #0b0d12;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 45%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0b0d12;
  margin-bottom: 14px;
  position: relative;
}

.final-cta p {
  color: #1a1d24;
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.final-cta .btn {
  position: relative;
}

.final-cta .btn-primary {
  background: #0b0d12;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.final-cta .btn-primary:hover {
  background: #fff;
  color: #0b0d12;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.final-cta .btn-ghost {
  border-color: rgba(11,13,18,.4);
  color: #0b0d12;
}

.final-cta .btn-ghost:hover {
  background: #0b0d12;
  color: #fff;
  border-color: #0b0d12;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #080a0f;
  padding: 60px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-tag {
  color: var(--muted);
  font-size: .92rem;
  max-width: 320px;
  line-height: 1.65;
}

.footer-col h5 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: .93rem;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}

.footer-bottom a {
  color: var(--muted);
}

.footer-bottom a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   17. WhatsApp Floating Button
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .25s ease, box-shadow .25s ease;
  font-size: 1.7rem;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(37,211,102,.55);
  color: #fff;
}

.wa-float svg,
.wa-float img {
  width: 30px;
  height: 30px;
}

.wa-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #0b0d12;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  border: 1px solid var(--border);
}

.wa-label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0b0d12;
}

.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --------------------------------------------------------------------------
   18. Responsive — Tablet (≤ 900px)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .section { padding: 64px 0; }

  /* Header mobile nav */
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(11,13,18,.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
  }

  .nav-links a::after { display: none; }

  .header-cta {
    margin-left: 0;
    margin-top: 10px;
    align-self: stretch;
  }
  .header-cta .btn { width: 100%; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy { max-width: none; }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    transform: none;
    max-width: 420px;
  }

  /* Grids collapse to 2 */
  .curriculum-grid,
  .audience-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: center;
  }

  .instructor-copy {
    text-align: left;
    max-width: 620px;
  }

  .checklist { align-items: flex-start; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* --------------------------------------------------------------------------
   19. Responsive — Mobile (≤ 600px)
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  body { font-size: 15px; }

  .section { padding: 56px 0; }

  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.6rem; }
  .section-head p { font-size: .98rem; }

  /* Hero */
  .hero {
    padding: 50px 0 64px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-sub { font-size: 1rem; }

  .price-new { font-size: 1.7rem; }

  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }

  /* Countdown stays 4 cols but smaller */
  .count-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .count-cell {
    padding: 10px 4px;
  }

  .count-cell .num {
    font-size: 1.2rem;
  }

  .count-cell .lbl {
    font-size: .62rem;
  }

  /* Grids to 1 col */
  .curriculum-grid,
  .audience-grid,
  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Hero card */
  .hero-card-body {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
  }

  .stat-num { font-size: 1.3rem; }

  /* Instructor */
  .photo-frame {
    width: 220px;
    height: 220px;
  }

  .instructor-copy h3 { font-size: 1.3rem; }

  /* Pricing */
  .pricing-card {
    padding: 28px 22px;
  }

  .pricing-price .new {
    font-size: 2.3rem;
  }
  .pricing-price .old {
    font-size: 1.15rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* WhatsApp */
  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }

  .wa-label { display: none !important; }
}

/* ==========================================================================
   ✨ PREMIUM EFFECTS LAYER — Animated blobs, tilt, glow, sparkles, ripple
   ========================================================================== */

/* ---------- Hero animated gradient blobs ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(245,166,35,.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,122,0,.16), transparent 45%),
    radial-gradient(circle at 60% 20%, rgba(255,179,71,.10), transparent 35%);
  filter: blur(60px);
  z-index: -1;
  animation: blobDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  33%  { transform: translate(3%, -2%) scale(1.05) rotate(8deg); }
  66%  { transform: translate(-2%, 3%) scale(.95) rotate(-6deg); }
  100% { transform: translate(2%, 2%) scale(1.03) rotate(4deg); }
}

/* Floating decorative shapes */
.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero-copy { position: relative; }
.hero-copy::before {
  width: 14px; height: 14px;
  background: var(--accent);
  top: -10px; right: -20px;
  box-shadow: 0 0 20px rgba(245,166,35,.7);
  animation: floatY 4s ease-in-out infinite;
}
.hero-copy::after {
  width: 10px; height: 10px;
  background: #4ade80;
  bottom: 40px; left: -25px;
  box-shadow: 0 0 16px rgba(74,222,128,.6);
  animation: floatY 5s ease-in-out infinite .8s reverse;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ---------- Cursor spotlight on hero (desktop only) ---------- */
@media (hover: hover) and (pointer: fine) {
  .hero {
    --mx: 50%;
    --my: 50%;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my),
                rgba(245,166,35,.12), transparent 55%);
    pointer-events: none;
    z-index: -1;
    transition: opacity .3s;
  }
}

/* ---------- Hero card 3D tilt prep ---------- */
.hero-visual { perspective: 1200px; }
.hero-card {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  will-change: transform;
}
.hero-card:hover {
  box-shadow: 0 30px 80px rgba(245,166,35,.18), 0 0 0 1px rgba(245,166,35,.35);
}

/* ---------- Stagger reveal for grids ---------- */
.curriculum-grid .reveal:nth-child(1) { transition-delay: .05s; }
.curriculum-grid .reveal:nth-child(2) { transition-delay: .15s; }
.curriculum-grid .reveal:nth-child(3) { transition-delay: .25s; }
.curriculum-grid .reveal:nth-child(4) { transition-delay: .35s; }
.curriculum-grid .reveal:nth-child(5) { transition-delay: .45s; }
.curriculum-grid .reveal:nth-child(6) { transition-delay: .55s; }

.audience-grid .reveal:nth-child(1) { transition-delay: .05s; }
.audience-grid .reveal:nth-child(2) { transition-delay: .15s; }
.audience-grid .reveal:nth-child(3) { transition-delay: .25s; }
.audience-grid .reveal:nth-child(4) { transition-delay: .35s; }

.features-grid .reveal:nth-child(1) { transition-delay: .05s; }
.features-grid .reveal:nth-child(2) { transition-delay: .12s; }
.features-grid .reveal:nth-child(3) { transition-delay: .19s; }
.features-grid .reveal:nth-child(4) { transition-delay: .26s; }
.features-grid .reveal:nth-child(5) { transition-delay: .33s; }
.features-grid .reveal:nth-child(6) { transition-delay: .40s; }
.features-grid .reveal:nth-child(7) { transition-delay: .47s; }
.features-grid .reveal:nth-child(8) { transition-delay: .54s; }

.testimonial-grid .reveal:nth-child(1) { transition-delay: .05s; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: .20s; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: .35s; }

/* ---------- Card hover lift ---------- */
.week-card,
.audience-card,
.feature,
.t-card {
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease,
              border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.week-card::before,
.audience-card::before,
.feature::before,
.t-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
              rgba(245,166,35,.08), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.week-card:hover::before,
.audience-card:hover::before,
.feature:hover::before,
.t-card:hover::before { opacity: 1; }
.week-card:hover,
.audience-card:hover,
.feature:hover,
.t-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(245,166,35,.25);
}

/* ---------- Audience icon — animated gradient halo ---------- */
.audience-icon {
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.audience-card:hover .audience-icon {
  transform: scale(1.15) rotate(-6deg);
}
.audience-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), transparent, var(--accent));
  opacity: 0;
  transition: opacity .35s;
  z-index: -1;
  filter: blur(8px);
  animation: spin 6s linear infinite;
}
.audience-card:hover .audience-icon::after { opacity: .55; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Animated rotating gradient border on the pricing card ---------- */
.pricing-card {
  position: relative;
  isolation: isolate;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from var(--ang, 0deg),
              var(--accent), #ff7a00, #ffb347, var(--accent));
  z-index: -1;
  opacity: .7;
  animation: rotateBorder 8s linear infinite;
  filter: blur(0.5px);
}
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--surface);
  z-index: -1;
}
@property --ang {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --ang: 360deg; }
}
/* Fallback (browsers without @property): rotate the pseudo */
@supports not (background: paint(something)) {
  .pricing-card::before { animation: spin 8s linear infinite; }
}
.pricing-card.coupon-applied::before {
  opacity: 1;
  animation: rotateBorder 4s linear infinite,
             pulseGlow 1.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { filter: blur(0.5px) brightness(1); }
  50%      { filter: blur(1px) brightness(1.25); }
}

/* ---------- Sparkle stars on the price after coupon applied ---------- */
.pricing-card.coupon-applied .pricing-price .new {
  position: relative;
  animation: priceBounce .5s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes priceBounce {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.pricing-card.coupon-applied .pricing-price::before,
.pricing-card.coupon-applied .pricing-price::after {
  content: "✨";
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: sparkle 1.8s ease-out infinite;
  pointer-events: none;
}
.pricing-price { position: relative; }
.pricing-card.coupon-applied .pricing-price::before {
  top: -10px; right: 30%;
  animation-delay: .2s;
}
.pricing-card.coupon-applied .pricing-price::after {
  bottom: 0; right: 10%;
  animation-delay: .9s;
}
@keyframes sparkle {
  0%   { opacity: 0; transform: translateY(0) scale(.5) rotate(0deg); }
  40%  { opacity: 1; transform: translateY(-12px) scale(1) rotate(180deg); }
  100% { opacity: 0; transform: translateY(-24px) scale(.6) rotate(360deg); }
}

/* ---------- Button shimmer + ripple ---------- */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .7s ease;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before { left: 150%; }
.btn-primary > * { position: relative; z-index: 2; }

/* Click ripple (added by JS) */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim .6s ease-out;
  pointer-events: none;
  z-index: 1;
}
@keyframes rippleAnim {
  to { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}

/* ---------- Animated nav link underline ---------- */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease, left .3s ease;
}
.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

/* ---------- Enhanced WhatsApp float — pulsing aura rings ---------- */
.wa-float {
  animation: bounceFloat 3s ease-in-out infinite;
}
.wa-float::before,
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.45);
  z-index: -1;
  animation: aura 2.4s ease-out infinite;
}
.wa-float::after { animation-delay: 1.2s; }
@keyframes aura {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes bounceFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wa-float:hover { animation-play-state: paused; }

/* ---------- Hero badge shimmer ---------- */
.badge {
  position: relative;
  overflow: hidden;
}
.badge::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: badgeShimmer 3s linear infinite;
}
@keyframes badgeShimmer {
  to { left: 200%; }
}

/* ---------- Pricing ribbon — gentle wave ---------- */
.pricing-ribbon {
  animation: ribbonWave 3s ease-in-out infinite;
  transform-origin: top right;
}
@keyframes ribbonWave {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-3deg); }
}

/* ---------- Countdown number flip (subtle bump per second) ---------- */
.count-cell .num {
  display: inline-block;
  transition: transform .15s ease;
}
.count-cell .num.tick {
  animation: tickBump .3s ease;
}
@keyframes tickBump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); color: #ffd07a; }
  100% { transform: scale(1); }
}

/* ---------- FAQ summary smooth chevron rotate ---------- */
.faq-item summary {
  transition: background .25s ease;
}
.faq-item summary:hover {
  background: rgba(245,166,35,.05);
}

/* ---------- Coupon input glow when focused ---------- */
.coupon-input:focus {
  box-shadow: 0 0 0 3px rgba(245,166,35,.18), 0 0 24px rgba(245,166,35,.15);
}

/* ---------- Section divider — soft glow line ---------- */
.section + .section::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .35;
  transform: translateY(-40px);
}

/* ==========================================================================
   🎁 TOP PROMO BAR — coupon code ribbon (Myntra/Amazon style)
   ========================================================================== */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background:
    linear-gradient(90deg, #ff7a00 0%, #f5a623 50%, #ff9a3c 100%),
    var(--accent);
  color: #1a0f00;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 4px 18px rgba(245,166,35,.18);
  overflow: hidden;
  transition: transform .35s ease, opacity .25s ease;
}
.promo-bar::before {
  /* Marquee shimmer */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
              transparent 30%,
              rgba(255,255,255,.45) 50%,
              transparent 70%);
  transform: translateX(-100%);
  animation: promoShimmer 4s linear infinite;
  pointer-events: none;
}
@keyframes promoShimmer {
  to { transform: translateX(100%); }
}
.promo-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  min-height: 40px;
  position: relative;
}
.promo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-emoji {
  font-size: 1.05rem;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.15));
}
.promo-msg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-tag {
  background: rgba(0,0,0,.18);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-right: 4px;
}

/* The clickable coupon code "chip" */
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  color: #ffd07a;
  border: 1px dashed rgba(255,208,122,.5);
  padding: 3px 10px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .2s ease;
  margin: 0 2px;
  position: relative;
}
.promo-code:hover {
  background: #000;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.promo-code.copied {
  background: #14532d;
  color: #4ade80;
  border-color: #4ade80;
}
.promo-code.copied .promo-code-text::after {
  content: " — Copied!";
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
}
.promo-copy-icon {
  display: inline-flex;
  opacity: .7;
}

.promo-close {
  background: rgba(0,0,0,.18);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.promo-close:hover {
  background: rgba(0,0,0,.35);
  transform: translateY(-50%) rotate(90deg);
}

/* When promo bar is visible, push everything down */
body { padding-top: 40px; }
.site-header { top: 40px !important; }
.promo-bar.hidden ~ * .site-header,
body.promo-dismissed { padding-top: 0; }
body.promo-dismissed .site-header { top: 0 !important; }

/* Mobile compact promo bar */
@media (max-width: 600px) {
  .promo-bar { font-size: .78rem; }
  .promo-inner { padding: 7px 36px 7px 12px; min-height: 36px; }
  .promo-tag { font-size: .65rem; padding: 1px 6px; }
  .promo-code { font-size: .78rem; padding: 2px 7px; }
  body { padding-top: 36px; }
  .site-header { top: 36px !important; }
  body.promo-dismissed { padding-top: 0; }
  body.promo-dismissed .site-header { top: 0 !important; }
}

/* ==========================================================================
   ✕ REMOVE COUPON button (shown only when coupon-applied)
   ========================================================================== */
.coupon-remove {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}
.coupon-remove:hover {
  color: #ff6b6b;
  border-color: rgba(255,107,107,.5);
  background: rgba(255,107,107,.08);
}
/* When applied: hide Apply button + input edits, show Remove */
.pricing-card.coupon-applied .coupon-btn { display: none; }
.pricing-card.coupon-applied .coupon-remove { display: inline-flex; }

/* ==========================================================================
   🕗 SCHEDULE SECTION — Batch banner + class-format cards + perks strip
   ========================================================================== */

.schedule-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(245,166,35,.06), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(45,140,255,.05), transparent 55%);
}

/* ----- Batch start banner ----- */
.batch-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  margin: 0 auto 40px;
  max-width: 920px;
  background: linear-gradient(135deg,
              rgba(245,166,35,.10) 0%,
              rgba(255,122,0,.06) 100%);
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.batch-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(245,166,35,.3), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: floatY 6s ease-in-out infinite;
}
.batch-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

/* "Calendar" date block */
.batch-cal {
  flex-shrink: 0;
  width: 86px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  border: 1px solid rgba(255,255,255,.1);
}
.batch-cal-month {
  background: var(--accent);
  color: #1a0f00;
  padding: 6px 0;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .12em;
}
.batch-cal-day {
  color: #1a1a1a;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  padding: 8px 0 10px;
}

.batch-info { min-width: 0; }
.batch-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(74,222,128,.15);
  color: #4ade80;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 8px;
  border: 1px solid rgba(74,222,128,.35);
}
.batch-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.batch-info p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.batch-info b { color: var(--accent); }
.batch-cta { flex-shrink: 0; }

/* Live dot (pulsing red) */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239,68,68,.7);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ----- Schedule grid (4 perk cards) ----- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.schedule-card {
  background: var(--surface, #12151c);
  border: 1px solid var(--border, #242935);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              border-color .3s ease,
              box-shadow .3s ease;
}
.schedule-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.schedule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.schedule-card:hover::before { opacity: 1; }

.schedule-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(245,166,35,.15), rgba(245,166,35,.05));
  border: 1px solid rgba(245,166,35,.25);
}
.schedule-icon.zoom-icon {
  background: linear-gradient(135deg, rgba(45,140,255,.15), rgba(45,140,255,.05));
  border-color: rgba(45,140,255,.3);
}
.schedule-icon.wa-icon {
  background: linear-gradient(135deg, rgba(37,211,102,.15), rgba(37,211,102,.05));
  border-color: rgba(37,211,102,.3);
}
.schedule-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.schedule-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* "LIVE" card — featured first card with the time display */
.schedule-card.live-card {
  background: linear-gradient(135deg,
              rgba(245,166,35,.10),
              rgba(255,122,0,.04));
  border-color: rgba(245,166,35,.45);
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,.18);
  color: #ff8a8d;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 14px;
  border: 1px solid rgba(239,68,68,.4);
}
.schedule-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.time-num {
  font-size: 3.2rem;
  line-height: 1;
  background: linear-gradient(135deg, #ffd07a, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.time-sep {
  font-size: 2rem;
  color: var(--muted);
  font-weight: 600;
}
.schedule-time-suffix {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 14px;
  text-align: center;
}

/* ----- Perks strip (horizontal pill row) ----- */
.perks-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  background: rgba(255,255,255,.02);
  border: 1px dashed var(--border);
  border-radius: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface-2, #171b24);
  border: 1px solid var(--border, #242935);
  border-radius: var(--radius-pill, 999px);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s ease;
}
.perk span {
  font-size: 1.1rem;
}
.perk:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,.08);
  transform: translateY(-2px);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .batch-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 18px;
  }
  .batch-banner-left {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .time-num { font-size: 2.6rem; }
  .batch-cal { width: 76px; }
  .batch-cal-day { font-size: 2.2rem; }
  .batch-info h3 { font-size: 1.25rem; }
  .perks-strip { padding: 16px; }
  .perk { font-size: .78rem; padding: 6px 11px; }
}

/* ==========================================================================
   💳 PAYMENT AREA — Razorpay button states + trust strip
   ========================================================================== */

.btn-pay {
  font-size: 1.1rem;
  padding: 18px 24px !important;
  letter-spacing: .01em;
  position: relative;
  margin-top: 6px;
}
.btn-pay:disabled {
  background: var(--surface-2, #171b24) !important;
  color: var(--muted) !important;
  cursor: not-allowed;
  border: 1px dashed var(--border) !important;
  box-shadow: none !important;
  opacity: .85;
}
.btn-pay:disabled::before { display: none !important; }
.btn-pay:not(:disabled) {
  animation: payPulse 2.4s ease-in-out infinite;
}
@keyframes payPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(245,166,35,.25); }
  50%      { box-shadow: 0 12px 38px rgba(245,166,35,.55); }
}

.pay-fine {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin: 12px 0 14px;
  font-weight: 500;
}

.pay-trust {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
}
.pay-chip {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.pay-flow {
  margin: 0;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

.pay-help {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
}
.pay-help a {
  color: var(--accent);
  font-weight: 600;
  margin-left: 4px;
  text-decoration: none;
}
.pay-help a:hover { text-decoration: underline; }

/* ==========================================================================
   END PREMIUM EFFECTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   20. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   21. Instructor — Multi-Domain Cert Strip
   -------------------------------------------------------------------------- */
.instructor-tagline {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1rem;
}

.cert-strip {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg,
    rgba(245,166,35,.08),
    rgba(255,122,0,.04));
  border: 1px solid rgba(245,166,35,.25);
  border-radius: 14px;
}

.cert-strip-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent, #f5a623);
  margin-bottom: .65rem;
}

.cert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .38rem .7rem;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: #f5f5f5;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.cert-chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}

.cert-chip.cert-cloud  { border-color: rgba(80,160,255,.45); }
.cert-chip.cert-sec    { border-color: rgba(255,90,95,.50); }
.cert-chip.cert-data   { border-color: rgba(120,200,140,.45); }
.cert-chip.cert-biz    { border-color: rgba(180,140,255,.45); }
.cert-chip.cert-ai     {
  border-color: rgba(245,166,35,.65);
  background: linear-gradient(135deg, rgba(245,166,35,.18), rgba(255,122,0,.10));
  color: #ffd07a;
}

@media (max-width: 520px) {
  .cert-chip { font-size: .74rem; padding: .32rem .6rem; }
}

/* --------------------------------------------------------------------------
   22. "Are You..." Persona Question Cards
   -------------------------------------------------------------------------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.persona-card {
  position: relative;
  background: linear-gradient(160deg,
    rgba(255,255,255,.04) 0%,
    rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.25rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.persona-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,166,35,0) 0%,
    rgba(245,166,35,.35) 50%,
    rgba(245,166,35,0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.persona-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.persona-card:hover::before { opacity: 1; }

.persona-head {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: .9rem;
}

.persona-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
    rgba(245,166,35,.15),
    rgba(255,122,0,.08));
  border: 1px solid rgba(245,166,35,.30);
  border-radius: 12px;
}

.persona-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent, #f5a623);
  margin-bottom: .25rem;
}

.persona-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.persona-q {
  font-style: italic;
  font-size: .92rem;
  color: #c9c9d1;
  border-left: 3px solid rgba(245,166,35,.55);
  padding: .25rem 0 .25rem .8rem;
  margin: .25rem 0 .9rem;
  line-height: 1.5;
}

.persona-a {
  font-size: .94rem;
  color: #e8e8ed;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.persona-fit {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.30);
  padding: .35rem .7rem;
  border-radius: 999px;
}

/* ----- Don't Miss Out urgency strip ----- */
.dont-miss {
  margin-top: 2.5rem;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, #ff7a00, #f5a623, #ff5a5f);
  box-shadow: 0 20px 50px rgba(245,166,35,.25);
  animation: dmGlow 3.5s ease-in-out infinite;
}

@keyframes dmGlow {
  0%, 100% { box-shadow: 0 18px 40px rgba(245,166,35,.20); }
  50%      { box-shadow: 0 22px 60px rgba(245,166,35,.40); }
}

.dont-miss-inner {
  background: var(--surface, #14161c);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dont-miss-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1 1 360px;
}

.dm-flame {
  font-size: 2.6rem;
  line-height: 1;
  animation: flameWiggle 1.3s ease-in-out infinite;
}

@keyframes flameWiggle {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%      { transform: scale(1.15) rotate(3deg); }
}

.dont-miss h3 {
  font-size: 1.4rem;
  margin: 0 0 .35rem;
  background: linear-gradient(90deg, #ff9a3c, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.dont-miss p {
  font-size: .95rem;
  color: #d8d8de;
  line-height: 1.55;
  margin: 0;
}

.dm-cta {
  flex-shrink: 0;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .dont-miss-inner { padding: 1.3rem 1.2rem; }
  .dont-miss h3 { font-size: 1.15rem; }
  .dm-cta { width: 100%; text-align: center; }
}

/* ============================================================
   SECTION 23 — INFOGRAPHIC IMAGES (Wired April 2026)
   45-Day Roadmap • AI Vault • AI Superpowers • With vs Without AI
   ============================================================ */

.infographic-wrap {
  margin: 2.5rem auto 0;
  max-width: 980px;
  text-align: center;
  position: relative;
}

.infographic {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(255, 138, 61, 0.18),
              0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 138, 61, 0.25);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  background: #0a0f1e;
}

.infographic:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(255, 138, 61, 0.32),
              0 10px 30px rgba(0, 0, 0, 0.5);
}

.infographic-wide {
  max-width: 100%;
}

.infographic-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 1100px;
}

.infographic-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.infographic-card .infographic {
  border-radius: 18px;
}

/* Week 6 teaser line */
.week-teaser {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 138, 61, 0.35);
  font-size: 0.92rem;
  color: #ffb070;
  font-style: italic;
  line-height: 1.5;
}

/* "With vs Without AI" comparison section */
.section-compare {
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.04) 0%, transparent 100%);
  position: relative;
}

.section-compare .section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.compare-cta {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: #e8e8ea;
}

.compare-cta a {
  color: #ff8a3d;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 138, 61, 0.45);
  padding-bottom: 2px;
  transition: all 0.25s ease;
}

.compare-cta a:hover {
  color: #ffb070;
  border-bottom-color: #ffb070;
}

/* Subtle entrance animation when scrolled into view */
.infographic-wrap.reveal,
.infographic-pair.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.infographic-wrap.reveal.visible,
.infographic-pair.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .infographic-wrap { margin-top: 1.8rem; }
  .infographic-pair { gap: 1rem; margin-top: 1.8rem; }
  .infographic { border-radius: 14px; }
  .compare-cta { font-size: 0.95rem; padding: 0 1rem; }
}

/* ============================================================
   SECTION 24 — TRUST/URGENCY UPGRADES (April 2026)
   Countdown • Seats Left • Money-Back Guarantee • WhatsApp Proof
   • 5 testimonials with location + verified badges
   ============================================================ */

/* --------- Urgency strip: countdown + seats left --------- */
.urgency-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.08), rgba(255, 138, 61, 0.02));
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 14px;
}

.countdown {
  display: flex;
  gap: 0.5rem;
}

.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 0.5rem 0.6rem;
  background: #0a0f1e;
  border: 1px solid rgba(255, 138, 61, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 138, 61, 0.15) inset;
}

.cd-cell span {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ff8a3d;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.cd-cell small {
  font-size: 0.7rem;
  color: #a5a5b0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.seats-left {
  font-size: 0.95rem;
  color: #ffb070;
  font-weight: 600;
}

.seats-left b {
  color: #ff5e3d;
  font-size: 1.1rem;
}

/* --------- 7-day Money-Back Guarantee badge --------- */
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin: 1rem 0 1.2rem;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.08), rgba(46, 213, 115, 0.02));
  border: 1.5px solid rgba(46, 213, 115, 0.4);
  border-radius: 14px;
}

.gb-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.gb-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.45;
}

.gb-text b {
  color: #2ed573;
  font-size: 1.02rem;
}

.gb-text span {
  font-size: 0.88rem;
  color: #c5c5cc;
}

/* --------- WhatsApp Proof Strip --------- */
.whatsapp-proof-strip {
  margin: 0 auto 2.5rem;
  max-width: 1100px;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(37, 211, 102, 0.01));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 18px;
}

.wa-proof-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.wa-badge {
  display: inline-block;
  padding: 0.32rem 0.85rem;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
}

.wa-proof-head h3 {
  font-size: 1.35rem;
  color: #f2f2f5;
  margin: 0;
}

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

.wa-shot {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0f1e;
  border: 1px solid rgba(37, 211, 102, 0.18);
  aspect-ratio: 9 / 12;
  transition: transform 0.3s ease;
}

.wa-shot:hover {
  transform: translateY(-3px);
}

.wa-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-shot figcaption {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  color: #25d366;
  background: repeating-linear-gradient(45deg, #0a0f1e, #0a0f1e 10px, #11192d 10px, #11192d 20px);
  padding: 1rem;
  font-weight: 600;
}

.wa-shot figcaption code {
  background: rgba(37, 211, 102, 0.15);
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #2ed573;
  margin-top: 0.4rem;
  display: inline-block;
}

.wa-shot.wa-placeholder img {
  display: none;
}

.wa-shot.wa-placeholder figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* --------- Testimonial enhancements: location + verified --------- */
.t-loc {
  display: inline-block;
  font-size: 0.78rem;
  color: #a5a5b0;
  font-weight: 500;
  margin-left: 0.3rem;
}

.t-verified {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(46, 213, 115, 0.25);
  font-size: 0.78rem;
  color: #2ed573;
  font-weight: 600;
}

@media (max-width: 640px) {
  .urgency-strip { flex-direction: column; align-items: stretch; text-align: center; padding: 0.85rem; }
  .countdown { justify-content: center; }
  .cd-cell { min-width: 48px; padding: 0.4rem 0.5rem; }
  .cd-cell span { font-size: 1.2rem; }
  .guarantee-badge { gap: 0.7rem; padding: 0.85rem 0.9rem; }
  .gb-icon { font-size: 1.6rem; }
  .gb-text b { font-size: 0.95rem; }
  .gb-text span { font-size: 0.82rem; }
}

/* ============================================================
   Section 25 — Honest Trust & Proof block
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 1.1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(46, 213, 115, 0.04));
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 10px 30px -14px rgba(255, 107, 53, 0.35);
}

.tp-icon {
  font-size: 1.85rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 12px;
}

.tp-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tp-text b {
  font-size: 1rem;
  color: var(--text, #e9edf1);
  font-weight: 700;
  line-height: 1.3;
}

.tp-text span {
  font-size: 0.88rem;
  color: var(--muted, #9aa4b2);
  line-height: 1.5;
}

.tp-text a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 107, 53, 0.5);
}

.tp-text a:hover {
  color: #ff8555;
  border-bottom-color: #ff8555;
}

.tp-text em {
  color: #2ed573;
  font-style: normal;
  font-weight: 600;
}

/* Founder's note */
.founder-note {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 1.6rem;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.6), rgba(30, 35, 45, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #ff6b35;
  border-radius: 14px;
}

.fn-avatar {
  font-size: 2.4rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.08));
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.35);
}

.fn-content {
  flex: 1;
}

.fn-content h4 {
  margin: 0 0 0.6rem 0;
  font-size: 1.02rem;
  color: #ff6b35;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fn-content p {
  margin: 0 0 0.8rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text, #d5dae1);
  font-style: italic;
}

.fn-sign {
  font-style: normal !important;
  font-size: 0.88rem !important;
  color: var(--text, #e9edf1) !important;
  font-weight: 700;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.fn-sign span {
  font-weight: 400;
  color: var(--muted, #9aa4b2);
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .trust-pill { padding: 1rem 0.9rem; }
  .tp-icon { width: 40px; height: 40px; font-size: 1.6rem; }
  .tp-text b { font-size: 0.95rem; }
  .tp-text span { font-size: 0.84rem; }
  .founder-note { flex-direction: column; gap: 1rem; padding: 1.2rem 1.1rem; }
  .fn-avatar { width: 52px; height: 52px; font-size: 2rem; }
  .fn-content p { font-size: 0.9rem; }
}

/* ============================================================
   Section 26 — Google Review Hero (real verified social proof)
   ============================================================ */
.google-review-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.2rem;
  margin: 1.8rem 0 1.4rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 107, 53, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px -30px rgba(255, 107, 53, 0.35);
}

.gr-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  padding: 1.4rem 1.1rem;
  background: #fff;
  color: #202124;
  border-radius: 14px;
  box-shadow: 0 6px 20px -10px rgba(0, 0, 0, 0.5);
}

.gr-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.15);
}

.gr-rating {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.gr-stars {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.gr-rating-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #202124;
  line-height: 1;
}

.gr-stars-row {
  color: #fbbc04;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  line-height: 1;
}

.gr-stars-row.small {
  font-size: 0.88rem;
}

.gr-count {
  font-size: 0.86rem;
  color: #5f6368;
  line-height: 1.4;
}

.gr-count b {
  color: #202124;
  font-weight: 700;
}

.gr-cta {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.55rem 1rem;
  background: #1a73e8;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gr-cta:hover {
  background: #1557b0;
  transform: translateY(-1px);
}

/* Review quote card */
.gr-review {
  margin: 0;
  padding: 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.gr-review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8555);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.gr-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gr-meta b {
  color: var(--text, #e9edf1);
  font-weight: 700;
  font-size: 0.98rem;
}

.gr-meta .gr-stars-row {
  color: #fbbc04;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.gr-review blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text, #d5dae1);
  font-style: italic;
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 107, 53, 0.45);
}

.gr-review blockquote mark {
  background: rgba(255, 107, 53, 0.22);
  color: #ff8555;
  padding: 0 0.25rem;
  border-radius: 3px;
  font-weight: 600;
}

.gr-review figcaption {
  font-size: 0.85rem;
}

.gr-review figcaption a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}

.gr-review figcaption a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .google-review-hero {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .gr-badge { padding: 1.2rem 1rem; }
  .gr-rating-number { font-size: 2.2rem; }
  .gr-review { padding: 1.1rem; }
  .gr-review blockquote { font-size: 0.92rem; padding-left: 0.85rem; }
}

/* ============================================================
   Section 27 — Review Hero (solo, no institute attribution)
   ============================================================ */
.review-hero {
  max-width: 760px;
  margin: 1.8rem auto 1.4rem;
}
.gr-review-solo {
  padding: 1.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 107, 53, 0.22);
  border-radius: 16px;
  box-shadow: 0 20px 60px -30px rgba(255, 107, 53, 0.3);
}
.gr-review-solo blockquote {
  font-size: 1.08rem;
  line-height: 1.7;
}
.gr-review-solo figcaption {
  color: var(--muted, #9aa4b2);
  font-size: 0.82rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .gr-review-solo { padding: 1.2rem; }
  .gr-review-solo blockquote { font-size: 0.98rem; }
}

/* ============================================================
   Section 28 — Review Verify CTA (link to Google reviews)
   ============================================================ */
.review-verify {
  text-align: center;
  margin-top: 1.2rem;
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.review-verify p {
  margin: 0 0 0.8rem 0;
  color: var(--muted, #9aa4b2);
  font-size: 0.92rem;
}
.review-verify-cta {
  display: inline-block;
  padding: 0.75rem 1.3rem;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 22px -10px rgba(26, 115, 232, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-verify-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(26, 115, 232, 0.8);
}
.review-verify-hint {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--muted, #9aa4b2);
  opacity: 0.85;
}
.review-verify-hint kbd {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--text, #e9edf1);
}
@media (max-width: 640px) {
  .review-verify { padding: 0.9rem; }
  .review-verify p { font-size: 0.86rem; }
  .review-verify-cta { padding: 0.7rem 1.1rem; font-size: 0.88rem; }
  .review-verify-hint { font-size: 0.72rem; }
}

/* ============================================================
   Section 29 — Dual verify buttons (Google + JustDial)
   ============================================================ */
.review-verify-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.review-verify-justdial {
  background: linear-gradient(135deg, #ee7d00, #ff9522) !important;
  box-shadow: 0 8px 22px -10px rgba(238, 125, 0, 0.6) !important;
}

.review-verify-justdial:hover {
  box-shadow: 0 12px 28px -10px rgba(238, 125, 0, 0.85) !important;
}

@media (max-width: 520px) {
  .review-verify-buttons { flex-direction: column; align-items: stretch; }
  .review-verify-buttons .review-verify-cta { text-align: center; }
}

/* ============================================================
   Section 30 — YouTube Video Hero (replaces trust block)
   ============================================================ */
.yt-hero {
  max-width: 920px;
  margin: 1.8rem auto 0.5rem;
}

.yt-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(255, 107, 53, 0.55), 0 0 0 1px rgba(255, 107, 53, 0.25);
}

.yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-align: center;
}

.yt-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, #ff0033, #cc0025);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 24px -10px rgba(255, 0, 51, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yt-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(255, 0, 51, 0.8);
}

.yt-footer-hint {
  color: var(--muted, #9aa4b2);
  font-size: 0.88rem;
  max-width: 420px;
}

@media (max-width: 640px) {
  .yt-hero { margin: 1.4rem auto 0.3rem; }
  .yt-wrap { border-radius: 12px; }
  .yt-footer { padding: 0.9rem; gap: 0.8rem; }
  .yt-subscribe { padding: 0.6rem 1rem; font-size: 0.88rem; }
  .yt-footer-hint { font-size: 0.82rem; }
}

/* ============ SYLLABUS REQUEST CTA ============ */
.syllabus-cta {
  margin: 3rem auto 0.5rem;
  max-width: 1000px;
  padding: 2rem 2rem 1.6rem;
  background: linear-gradient(135deg, #0A0F1E 0%, #1A2236 100%);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 20px;
  box-shadow: 0 18px 50px -20px rgba(10, 15, 30, 0.55), 0 0 0 1px rgba(255, 107, 53, 0.08) inset;
  position: relative;
  overflow: hidden;
}
.syllabus-cta::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(closest-side, rgba(255, 107, 53, 0.35), transparent 70%);
  pointer-events: none;
}
.syllabus-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.syllabus-cta-icon {
  font-size: 2.4rem;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 16px;
  flex-shrink: 0;
}
.syllabus-cta-text h3 {
  color: #fff;
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.syllabus-cta-text p {
  color: #cbd1dc;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}
.syllabus-cta-text p b { color: #fff; }
.syllabus-cta-btn {
  white-space: nowrap;
  background: #25D366 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.65) !important;
}
.syllabus-cta-btn:hover {
  background: #1fb855 !important;
  transform: translateY(-2px);
}
.syllabus-cta-note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  color: #9aa4b2;
  font-size: 0.88rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .syllabus-cta { padding: 1.6rem 1.25rem 1.2rem; margin: 2rem auto 0.4rem; border-radius: 16px; }
  .syllabus-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .syllabus-cta-icon { margin: 0 auto; width: 56px; height: 56px; font-size: 2rem; }
  .syllabus-cta-text h3 { font-size: 1.2rem; }
  .syllabus-cta-text p { font-size: 0.94rem; }
  .syllabus-cta-btn { width: 100%; justify-content: center; }
}
