@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+Bengali:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #07090d;
  --panel: #0d1118;
  --panel-2: #111722;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --gold: #f7c948;
  --gold-dark: #e5ad18;
  --green: #34d399;
  --red: #f87171;
  --radius: 8px;
  --header-bg: rgba(7, 9, 13, 0.9);
  --surface-glass: rgba(255,255,255,0.045);
  --shadow-premium: 0 22px 80px rgba(0,0,0,.35);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --panel-2: #eef2f7;
  --line: rgba(15, 23, 42, 0.12);
  --text: #111827;
  --muted: #475569;
  --soft: #64748b;
  --gold: #c99513;
  --gold-dark: #a97908;
  --green: #059669;
  --red: #dc2626;
  --header-bg: rgba(255, 255, 255, 0.9);
  --surface-glass: rgba(15, 23, 42, 0.045);
  --shadow-premium: 0 22px 70px rgba(15,23,42,.10);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.13), transparent 32rem),
    radial-gradient(circle at 85% 15%, rgba(70, 117, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Manrope, "Noto Sans Bengali", "Noto Sans Devanagari", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}
:root[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(201, 149, 19, 0.14), transparent 31rem),
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0, #f4f6f8 44rem),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(100% - 32px, 1180px); margin-inline: auto; }
.section { padding: 72px 0; }
.band { border-block: 1px solid var(--line); background: rgba(255,255,255,0.025); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 201, 72, 0.34);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.35);
  padding: 5px;
  box-shadow: 0 0 32px rgba(247, 201, 72, 0.18);
}
.brand-copy strong { display: block; font-size: 17px; font-weight: 900; line-height: 1.05; }
.brand-copy small { display: block; margin-top: 3px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.primary-menu { display: flex; align-items: center; gap: 6px; }
.primary-menu > a:not(.btn) { border-radius: var(--radius); padding: 10px 12px; color: var(--muted); font-size: 14px; font-weight: 750; }
.primary-menu > a:hover { background: var(--surface-glass); color: var(--text); }
.language-switcher select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 850;
}
.language-switcher option { color: #0f172a; }
.theme-mode-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.theme-mode-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(247, 201, 72, .14);
}
:root[data-theme="dark"] .theme-mode-toggle-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--header-bg);
}
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.05); }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; margin: 4px auto; background: white; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #07090d; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { border-color: var(--line); background: var(--surface-glass); color: var(--text); }
.full { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.actions.compact { margin-top: 0; }
.hero-section { padding-top: 56px; }
.hero-grid, .two-col { display: grid; gap: 44px; grid-template-columns: 1.02fr .98fr; align-items: center; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 201, 72, .25);
  border-radius: var(--radius);
  background: rgba(247, 201, 72, .10);
  color: var(--gold);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.kicker { border: 0; background: transparent; padding: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(42px, 7vw, 70px); line-height: 1.02; letter-spacing: 0; font-weight: 950; }
h2 { margin-bottom: 0; font-size: clamp(31px, 4.5vw, 46px); line-height: 1.08; font-weight: 950; }
h3 { margin-bottom: 0; font-size: 24px; line-height: 1.15; font-weight: 950; }
.eyebrow + h1, .kicker + h2 { margin-top: 18px; }
.lead { max-width: 720px; margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.lead.small { font-size: 17px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.stat-grid div, .feature-grid article, .form-card, .price-card, .webinar-list article, .faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
}
.stat-grid div { padding: 18px; }
.stat-grid strong { display: block; color: var(--gold); font-size: 28px; font-weight: 950; }
.stat-grid span { display: block; margin-top: 4px; color: var(--soft); font-size: 12px; font-weight: 800; }
.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    var(--panel);
  background-size: 34px 34px;
  box-shadow: 0 22px 80px rgba(0,0,0,.35);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 92px 28px 0;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 50% 68%, rgba(247,201,72,.13), transparent 34%),
    linear-gradient(to top, rgba(0,0,0,.78), rgba(255,255,255,.08), transparent);
  box-shadow: inset 0 0 0 1px rgba(247,201,72,.12);
}
.hero-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: min(76%, 390px);
  height: 250px;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(to bottom, transparent 0 22px, rgba(247,201,72,.86) 22px 38px, transparent 38px 62px),
    linear-gradient(78deg, transparent 0 calc(50% - 8px), rgba(247,201,72,.9) calc(50% - 7px) calc(50% - 2px), transparent calc(50% - 1px)),
    linear-gradient(102deg, transparent 0 calc(50% + 1px), rgba(247,201,72,.9) calc(50% + 2px) calc(50% + 7px), transparent calc(50% + 8px)),
    linear-gradient(to bottom, rgba(12,15,22,.1), rgba(3,5,9,.96));
  background-size: 8px 62px, 100% 100%, 100% 100%, 100% 100%;
  background-position: center 58px, center, center, center;
  border-bottom: 3px solid rgba(247,201,72,.8);
  clip-path: polygon(41% 0, 59% 0, 100% 100%, 0 100%);
  opacity: .92;
  filter: drop-shadow(0 -16px 45px rgba(247,201,72,.08));
  pointer-events: none;
}
.hero-road {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -34px;
  width: min(76%, 390px);
  height: 260px;
  transform: translateX(-50%);
  overflow: hidden;
  border-bottom: 3px solid rgba(247, 201, 72, .8);
  background:
    linear-gradient(78deg, transparent 0 calc(50% - 8px), rgba(247,201,72,.92) calc(50% - 7px) calc(50% - 2px), transparent calc(50% - 1px)),
    linear-gradient(102deg, transparent 0 calc(50% + 1px), rgba(247,201,72,.92) calc(50% + 2px) calc(50% + 7px), transparent calc(50% + 8px)),
    radial-gradient(circle at 50% 25%, rgba(247,201,72,.12), transparent 45%),
    linear-gradient(to bottom, rgba(15, 23, 42, .18), rgba(2, 6, 12, .98));
  clip-path: polygon(41% 0, 59% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 -22px 44px rgba(247, 201, 72, .12));
  pointer-events: none;
}
.hero-road-lane {
  position: absolute;
  left: 50%;
  top: 52px;
  bottom: 18px;
  width: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom, rgba(247,201,72,.98) 0 18px, transparent 18px 44px);
  opacity: .95;
}
.hero-card-top {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.44);
  padding: 16px;
  backdrop-filter: blur(12px);
}
.hero-card-top small { display: block; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-card-top strong { display: block; margin-top: 5px; font-size: 22px; }
.hero-card-top img { width: 58px; height: 58px; object-fit: contain; }
.gauge-shell {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  width: 210px;
  height: 210px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-align: center;
  background: rgba(0,0,0,.55);
  padding: 16px;
  backdrop-filter: blur(10px);
}
.gauge-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,201,72,.22), transparent 62%);
}
.dashboard-arc {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, #ef4444 0deg 30deg, #f7c948 30deg 112deg, #22c55e 112deg 194deg, transparent 194deg 360deg);
  padding: 13px;
}
.gauge-core {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #05070b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 0 32px rgba(247,201,72,.08);
}
.gauge-icon {
  position: relative;
  display: block;
  width: 35px;
  height: 22px;
  margin-bottom: 4px;
  border: 3px solid var(--gold);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.gauge-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%) rotate(36deg);
  transform-origin: 50% 100%;
}
.gauge-core strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}
.gauge-core small { margin-top: 6px; color: var(--soft); font-weight: 800; }
.mini-card { position: absolute; z-index: 2; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.08); padding: 13px; backdrop-filter: blur(12px); }
.mini-card strong { display: block; }
.mini-card small { display: block; margin-top: 4px; color: var(--soft); }
.mini-left { left: 20px; top: 145px; }
.mini-right { right: 20px; bottom: 108px; }
.hero-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 18%, rgba(247, 201, 72, .18), transparent 30%),
    linear-gradient(145deg, rgba(17, 24, 39, .96), rgba(3, 7, 18, .98));
  padding: 18px;
  box-shadow: var(--shadow-premium);
}
.hero-video::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% 34%;
  height: 210px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 24px, rgba(247,201,72,.9) 24px 42px, transparent 42px 68px),
    linear-gradient(to bottom, rgba(15,23,42,.2), rgba(0,0,0,.92));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  opacity: .45;
}
.video-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: #03060b;
}
.hero-video-embed iframe,
.hero-video-embed video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 330px;
  border: 0;
  background: #05070c;
}
.video-topbar,
.video-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.video-topbar span { color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
.video-stage {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(247,201,72,.17), transparent 34%),
    linear-gradient(145deg, #0f172a, #05070c);
  background-size: 34px 34px, 34px 34px, auto, auto;
}
.video-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: min(72%, 360px);
  height: 210px;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(to bottom, transparent 0 22px, rgba(247,201,72,.9) 22px 38px, transparent 38px 62px),
    linear-gradient(to bottom, rgba(255,255,255,.03), rgba(0,0,0,.88));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}
.video-play {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(247,201,72,.55);
  border-radius: 50%;
  background: rgba(247,201,72,.96);
  cursor: pointer;
  box-shadow: 0 0 0 18px rgba(247,201,72,.12), 0 22px 60px rgba(0,0,0,.35);
}
.video-play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #05070c;
}
.video-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(3, 6, 11, .72);
  padding: 16px;
  backdrop-filter: blur(12px);
}
.video-caption strong { display: block; font-size: 22px; }
.video-caption p { margin: 7px 0 0; color: var(--muted); line-height: 1.5; }
.video-controls { justify-content: flex-start; border-top: 1px solid rgba(255,255,255,.1); }
.video-controls span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.video-controls span:nth-child(1) { width: 50%; background: var(--gold); }
.video-controls span:nth-child(2) { width: 20%; }
.video-controls span:nth-child(3) { width: 9px; height: 9px; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.feature-grid article { padding: 22px; background: var(--panel); }
.feature-grid span { color: var(--gold); font-size: 13px; font-weight: 950; }
.feature-grid strong { display: block; margin-top: 14px; }
.odoo-panel, .cta-card {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.26);
  padding: 20px;
}
.odoo-panel p { margin: 6px 0 0; color: var(--soft); font-size: 14px; }
.form-card { padding: 26px; background: var(--panel); box-shadow: 0 22px 80px rgba(0,0,0,.28); }
.form-card p { color: var(--soft); }
.tvdetest-lead-form, .tvdetest-result-form { display: grid; gap: 12px; margin-top: 20px; }
.tvdetest-lead-form label, .tvdetest-result-form label { display: grid; gap: 6px; color: var(--muted); font-size: 14px; font-weight: 700; }
.tvdetest-lead-form input, .tvdetest-lead-form select, .tvdetest-result-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  color: white;
  padding: 0 14px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { position: relative; padding: 26px; }
.price-card.popular { border-color: rgba(247, 201, 72, .75); background: rgba(247, 201, 72, .09); box-shadow: 0 0 35px rgba(247,201,72,.18); }
.badge { display: inline-flex; margin-bottom: 18px; border-radius: var(--radius); background: var(--gold); color: #07090d; padding: 8px 11px; font-size: 12px; font-weight: 950; text-transform: uppercase; }
.price { margin-top: 24px; font-size: 52px; font-weight: 950; }
.price .woocommerce-Price-amount,
.price .amount,
.price bdi {
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}
.price .woocommerce-Price-currencySymbol {
  font-size: inherit;
  font-weight: inherit;
}
.price span { color: var(--soft); font-size: 14px; font-weight: 750; }
.price-card ul { display: grid; gap: 12px; margin: 22px 0 26px; padding: 0; list-style: none; color: var(--muted); }
.price-card li::before { content: "✓"; color: var(--gold); font-weight: 950; margin-right: 8px; }
.webinar-list { display: grid; gap: 16px; }
.webinar-list article { padding: 22px; }
.webinar-list p { margin-top: 8px; color: var(--soft); }
.course-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.course-preview-main {
  display: grid;
  gap: 18px;
}
.course-preview-summary,
.course-content-box,
.course-preview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow-premium);
}
.course-preview-summary {
  padding: 26px;
}
.course-preview-summary h3 {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 42px);
}
.course-preview-summary p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.course-includes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.course-includes span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.lesson-status {
  justify-self: start;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.lesson-status.free { background: rgba(52,211,153,.14); color: #86efac; }
.course-content-box {
  overflow: hidden;
  background: var(--panel);
}
.course-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
}
.course-content-head h3 { font-size: 25px; }
.course-content-head p { margin: 6px 0 0; color: var(--muted); }
.course-content-head a {
  color: var(--gold);
  font-weight: 950;
  white-space: nowrap;
}
.lesson-section + .lesson-section { border-top: 1px solid var(--line); }
.lesson-section > button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: rgba(255,255,255,.035);
  color: var(--text);
  padding: 16px 24px;
  text-align: left;
  cursor: default;
}
.lesson-section > button span {
  font-size: 16px;
  font-weight: 950;
}
.lesson-section > button small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.lesson-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto 54px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 14px 24px;
  color: var(--muted);
  font-size: 14px;
}
.lesson-row strong {
  color: var(--text);
  font-size: 14px;
}
.lesson-row a,
.lesson-preview-button {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 850;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  text-align: right;
}
.lesson-row[data-lesson-video] {
  cursor: pointer;
}
.lesson-row[data-lesson-video]:hover {
  background: rgba(247,201,72,.055);
}
.lesson-row[data-lesson-video]:focus-visible,
.lesson-preview-button:focus-visible {
  outline: 3px solid rgba(247,201,72,.55);
  outline-offset: 3px;
}
.lesson-row span:not(.lesson-icon) {
  color: var(--soft);
  font-weight: 850;
}
.lesson-row.is-active {
  background: rgba(247,201,72,.08);
}
.lesson-row.is-active strong {
  color: var(--gold);
}
.lesson-row em {
  color: var(--soft);
  font-style: normal;
  text-align: right;
}
.lesson-icon {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--gold);
  font-size: 0;
}
.lesson-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--gold);
}
.is-locked .lesson-icon::before {
  width: 12px;
  height: 10px;
  border: 2px solid var(--soft);
  border-top: 0;
  border-radius: 2px;
}
.is-locked .lesson-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  margin-top: -10px;
  border: 2px solid var(--soft);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.course-preview-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  background: var(--panel);
}
.course-player {
  position: relative;
  display: grid;
  min-height: 205px;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(247,201,72,.17), transparent 36%),
    linear-gradient(145deg, #111827, #05070c);
  background-size: 28px 28px, 28px 28px, auto, auto;
}
.course-player iframe,
.course-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 205px;
  border: 0;
  background: #05070c;
}
.course-player:has(iframe),
.course-player:has(video) {
  display: block;
  min-height: auto;
  background: #05070c;
}
.course-player strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: white;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}
.course-buy-box {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.course-price {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 38px;
  font-weight: 950;
}
.course-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.course-buy-box ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}
.course-buy-box li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 950;
  margin-right: 8px;
}
.mock-entry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(247,201,72,.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0, rgba(247,201,72,.16), transparent 32%),
    var(--panel);
  padding: 28px;
  box-shadow: var(--shadow-premium);
}
.mock-entry-badge {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(247,201,72,.14);
  color: var(--gold);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.mock-entry-card p { max-width: 650px; margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chips span { border-radius: var(--radius); background: rgba(255,255,255,.08); padding: 9px 12px; color: var(--muted); font-weight: 850; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-grid details { padding: 22px; }
.faq-grid summary { cursor: pointer; font-size: 18px; font-weight: 950; }
.faq-grid p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.cta-section { padding-top: 0; }
.cta-card { border-color: rgba(247,201,72,.25); background: rgba(247,201,72,.1); }
.site-footer {
  overflow: hidden;
  border-top: 1px solid rgba(247, 201, 72, .18);
  background:
    radial-gradient(circle at 10% 0, rgba(247, 201, 72, .12), transparent 26rem),
    #07090d;
  color: #e5e7eb;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: 64px 0 72px;
}
.footer-brand img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  margin-bottom: 24px;
}
.footer-brand p {
  max-width: 330px;
  color: rgba(229, 231, 235, .82);
  line-height: 1.75;
}
.footer-main h3 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-main nav a {
  display: block;
  margin: 12px 0;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.footer-main nav a:hover { color: var(--gold); }
.footer-payment-strip {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-block: 1px solid rgba(247,201,72,.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(247,201,72,.2), transparent 34rem),
    linear-gradient(90deg, #05070c, #10151f, #05070c);
  padding: 7px 16px;
}
.pay-logo {
  display: inline-flex;
  min-height: 28px;
  min-width: 62px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: #05070c;
  color: #f8fafc;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.pay-visa {
  color: #1a4fb4;
  background: #ffffff;
  font-size: 16px;
  font-style: italic;
  letter-spacing: .02em;
}
.pay-mastercard {
  min-width: 62px;
  background: #ffffff;
}
.pay-mastercard i,
.pay-mastercard b {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.pay-mastercard i { margin-right: -8px; background: #eb001b; }
.pay-mastercard b { background: #f79e1b; opacity: .92; }
.pay-stripe {
  color: #ffffff;
  background: #635bff;
  font-size: 16px;
  letter-spacing: -.04em;
}
.pay-secure {
  color: #d1fae5;
  background: linear-gradient(135deg, #065f46, #047857);
}
.pay-secure svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.footer-bottom {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247,201,72,.42);
  background: rgba(247,201,72,.08);
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
  transition: transform .15s ease, background .15s ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #05070c;
}
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 82px;
  display: inline-flex;
  min-width: 60px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 32px rgba(34,197,94,.32);
  padding: 0 12px;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.prose { color: var(--muted); line-height: 1.75; }
.page-shell { padding-top: 38px; }
.tvde-page { color: var(--text); }
.tvde-page * { box-sizing: border-box; }
.tvde-page-hero,
.tvde-page-band,
.tvde-page-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 24, 39, .96), rgba(3, 7, 18, .98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.tvde-page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 48px 28px;
  margin-bottom: 28px;
}
.tvde-page-hero::before {
  content: "";
  position: absolute;
  inset: -42% -28% auto auto;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(247, 201, 72, .22), transparent 66%);
}
.tvde-page-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tvde-page-title {
  max-width: 860px;
  margin: 10px 0 14px;
  color: white;
  font-size: clamp(34px, 7vw, 68px);
  line-height: 1.03;
}
.tvde-page-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.55;
}
.tvde-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.tvde-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.tvde-page-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tvde-page-card,
.tvde-page-band {
  border-radius: 18px;
  padding: 22px;
}
.tvde-page-card {
  position: relative;
  overflow: hidden;
}
.tvde-page-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.tvde-page-card h2,
.tvde-page-card h3,
.tvde-page-band h2,
.tvde-page-band h3 { color: white; }
.tvde-page-card p,
.tvde-page-band p { color: var(--muted); }
.tvde-page-band {
  margin: 22px 0;
  border-radius: 20px;
  padding: 26px;
}
.tvde-page-steps { counter-reset: tvde-step; }
.tvde-page-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 14px 0;
  color: #dbeafe;
}
.tvde-page-step::before {
  counter-increment: tvde-step;
  content: counter(tvde-step);
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #080808;
  font-weight: 950;
}
.tvde-page-price {
  margin: 10px 0;
  color: var(--gold);
  font-size: 44px;
  font-weight: 950;
}
.tvde-page-list {
  padding-left: 18px;
  color: #dbeafe;
}
.tvde-page-list li { margin: 8px 0; }
.tvde-page-form {
  margin-top: 18px;
  border: 1px solid rgba(247, 201, 72, .22);
  border-radius: 18px;
  background: rgba(247, 201, 72, .07);
  padding: 20px;
}
.tvde-page-faq details {
  margin: 12px 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  padding: 16px 18px;
}
.tvde-page-faq summary {
  cursor: pointer;
  color: white;
  font-weight: 950;
}
.tvde-page-note {
  color: var(--soft);
  font-size: 14px;
}
.tvdetest-auth-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17, 24, 39, .94), rgba(3, 7, 18, .98));
  padding: 24px;
}
.tvdetest-auth-card p { color: var(--muted); }
.tvdetest-auth-card a:not(.btn) { color: var(--gold); font-weight: 850; }
.tvdetest-auth-form,
#tvdetest-login-form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.tvdetest-auth-form label,
#tvdetest-login-form p {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.tvdetest-auth-form input,
.tvdetest-auth-form select,
#tvdetest-login-form input[type="text"],
#tvdetest-login-form input[type="password"] {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  color: white;
  padding: 0 14px;
}
#tvdetest-login-form input[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #07090d;
  font-weight: 950;
  cursor: pointer;
}
.tvdetest-auth-message {
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 14px 0;
  font-weight: 800;
}
.tvdetest-auth-message.success {
  border: 1px solid rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .12);
  color: #bbf7d0;
}
.tvdetest-auth-message.error {
  border: 1px solid rgba(248, 113, 113, .35);
  background: rgba(248, 113, 113, .12);
  color: #fecaca;
}
.tvdetest-recaptcha {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 2px 0;
}
.student-dashboard {
  display: grid;
  gap: 22px;
}
.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(247, 201, 72, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 0, rgba(247, 201, 72, .16), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(3, 7, 18, .98));
  padding: 24px;
}
.dashboard-hero h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4.5vw, 52px);
}
.dashboard-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.dashboard-profile-card {
  display: grid;
  align-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, .28);
  padding: 18px;
}
.dashboard-profile-card strong {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dashboard-profile-card span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.dashboard-card,
.dashboard-price,
.dashboard-next {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17, 24, 39, .92), rgba(3, 7, 18, .98));
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}
.dashboard-card-featured {
  border-color: rgba(247, 201, 72, .34);
  background:
    radial-gradient(circle at 10% 0, rgba(247, 201, 72, .16), transparent 42%),
    linear-gradient(145deg, rgba(17, 24, 39, .96), rgba(3, 7, 18, .98));
}
.dashboard-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(247, 201, 72, .34);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}
.dashboard-card h3,
.dashboard-price h3,
.dashboard-next h3 {
  margin: 16px 0 0;
}
.dashboard-card p,
.dashboard-price p,
.dashboard-next li {
  color: var(--muted);
  line-height: 1.65;
}
.dashboard-card .btn,
.dashboard-price .btn {
  width: 100%;
  margin-top: 12px;
}
.dashboard-actions {
  display: grid;
  gap: 10px;
}
.dashboard-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dashboard-price small {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dashboard-price strong {
  display: block;
  margin-top: 12px;
  color: white;
  font-size: 40px;
  line-height: 1;
}
.dashboard-price.is-popular {
  border-color: rgba(247, 201, 72, .48);
  box-shadow: 0 0 0 1px rgba(247, 201, 72, .16), 0 24px 80px rgba(247, 201, 72, .1);
}
.dashboard-next ol {
  margin: 16px 0 0;
  padding-left: 22px;
}
.dashboard-next li + li {
  margin-top: 8px;
}

:root[data-theme="light"] .brand-mark {
  background: #0b0f17;
  box-shadow: 0 12px 34px rgba(201, 149, 19, 0.18);
}
:root[data-theme="light"] .menu-toggle span:not(.screen-reader-text) { background: var(--text); }
:root[data-theme="light"] .primary-menu {
  color: var(--text);
}
:root[data-theme="light"] .primary-menu > a:not(.btn) {
  color: #334155;
}
:root[data-theme="light"] .language-switcher select,
:root[data-theme="light"] .theme-mode-toggle {
  background: #ffffff;
}
:root[data-theme="light"] .hero-visual,
:root[data-theme="light"] .hero-video,
:root[data-theme="light"] .form-card,
:root[data-theme="light"] .feature-grid article,
:root[data-theme="light"] .price-card,
:root[data-theme="light"] .webinar-list article,
:root[data-theme="light"] .course-preview-summary,
:root[data-theme="light"] .course-content-box,
:root[data-theme="light"] .course-preview-card,
:root[data-theme="light"] .mock-entry-card,
:root[data-theme="light"] .faq-grid details,
:root[data-theme="light"] .tvde-page-hero,
:root[data-theme="light"] .tvde-page-band,
:root[data-theme="light"] .tvde-page-card,
:root[data-theme="light"] .tvdetest-auth-card,
:root[data-theme="light"] .dashboard-card,
:root[data-theme="light"] .dashboard-price,
:root[data-theme="light"] .dashboard-next {
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: var(--shadow-premium);
}
:root[data-theme="light"] .hero-card-top,
:root[data-theme="light"] .gauge-shell,
:root[data-theme="light"] .mini-card,
:root[data-theme="light"] .odoo-panel,
:root[data-theme="light"] .cta-card,
:root[data-theme="light"] .dashboard-profile-card {
  background: rgba(255,255,255,.78);
}
:root[data-theme="light"] .video-shell,
:root[data-theme="light"] .video-stage,
:root[data-theme="light"] .course-player {
  background-color: #0f172a;
}
:root[data-theme="light"] .video-caption {
  background: rgba(255,255,255,.82);
}
:root[data-theme="light"] .video-caption strong {
  color: var(--text);
}
:root[data-theme="light"] .lesson-status.free {
  color: #047857;
}
:root[data-theme="light"] .lesson-section > button,
:root[data-theme="light"] .lesson-row,
:root[data-theme="light"] .course-includes span {
  background: #ffffff;
}
:root[data-theme="light"] .lesson-preview-button {
  color: var(--gold-dark);
}
:root[data-theme="light"] .lesson-row strong,
:root[data-theme="light"] .course-price {
  color: var(--text);
}
:root[data-theme="light"] .gauge-core {
  background: #ffffff;
}
:root[data-theme="light"] .tvde-page-title,
:root[data-theme="light"] .tvde-page-card h2,
:root[data-theme="light"] .tvde-page-card h3,
:root[data-theme="light"] .tvde-page-band h2,
:root[data-theme="light"] .tvde-page-band h3,
:root[data-theme="light"] .tvde-page-faq summary,
:root[data-theme="light"] .dashboard-price strong {
  color: var(--text);
}
:root[data-theme="light"] .tvde-page-step,
:root[data-theme="light"] .tvde-page-list {
  color: var(--muted);
}
:root[data-theme="light"] .tvdetest-lead-form input,
:root[data-theme="light"] .tvdetest-lead-form select,
:root[data-theme="light"] .tvdetest-result-form input,
:root[data-theme="light"] .tvdetest-auth-form input,
:root[data-theme="light"] .tvdetest-auth-form select,
:root[data-theme="light"] #tvdetest-login-form input[type="text"],
:root[data-theme="light"] #tvdetest-login-form input[type="password"] {
  background: #ffffff;
  color: #111827;
}
:root[data-theme="light"] .dashboard-hero,
:root[data-theme="light"] .dashboard-card-featured {
  background:
    radial-gradient(circle at 14% 0, rgba(201,149,19,.12), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(241,245,249,.96));
}
:root[data-theme="light"] .tvdetest-marketplace,
:root[data-theme="light"] .tvdetest-qbank {
  color: var(--text);
}
:root[data-theme="light"] .tvdetest-marketplace-hero,
:root[data-theme="light"] .tvdetest-store-category,
:root[data-theme="light"] .tvdetest-service-form,
:root[data-theme="light"] .tvdetest-service-panel,
:root[data-theme="light"] .tvdetest-single-store-details,
:root[data-theme="light"] .tvdetest-qbank-hero,
:root[data-theme="light"] .tvdetest-qbank-locked,
:root[data-theme="light"] .tvdetest-qbank-card {
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.96)) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow-premium);
}
:root[data-theme="light"] .tvdetest-marketplace h1,
:root[data-theme="light"] .tvdetest-store-category h2,
:root[data-theme="light"] .tvdetest-service-panel h2,
:root[data-theme="light"] .tvdetest-store-product-title,
:root[data-theme="light"] .tvdetest-single-store-details h2,
:root[data-theme="light"] .tvdetest-qbank h1,
:root[data-theme="light"] .tvdetest-qbank-card h2,
:root[data-theme="light"] .tvdetest-qbank-feedback strong {
  color: var(--text) !important;
}
:root[data-theme="light"] .tvdetest-marketplace p,
:root[data-theme="light"] .tvdetest-store-product-body p,
:root[data-theme="light"] .tvdetest-service-panel ol,
:root[data-theme="light"] .tvdetest-single-store-details li,
:root[data-theme="light"] .tvdetest-qbank p,
:root[data-theme="light"] .tvdetest-qbank-feedback {
  color: var(--muted) !important;
}
:root[data-theme="light"] .tvdetest-store-product-card {
  background: #ffffff !important;
  border-color: var(--line) !important;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}
:root[data-theme="light"] .tvdetest-store-product-actions a:not(.tvdetest-store-buy),
:root[data-theme="light"] .tvdetest-qbank-answers button {
  background: #ffffff !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}
:root[data-theme="light"] .tvdetest-service-form input,
:root[data-theme="light"] .tvdetest-service-form select,
:root[data-theme="light"] .tvdetest-service-form textarea {
  border-color: rgba(15,23,42,.14);
  background: #ffffff;
  color: #111827;
}

@media (max-width: 980px) {
  main#top {
    display: flex;
    flex-direction: column;
  }
  #video-library { order: 2; }
  #mock-test { order: 3; }
  #course { order: 4; }
  #pricing { order: 5; }
  #webinar { order: 6; }
  #lead-support { order: 7; }
  #faq { order: 8; }
  .menu-toggle { display: block; }
  .primary-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--header-bg);
    padding: 16px;
  }
  .primary-menu.is-open { display: flex; }
  .primary-menu a { width: 100%; }
  .hero-grid, .two-col, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid > div:first-child { order: 2; }
  .hero-grid > .hero-video { order: 1; }
  .course-preview-layout { grid-template-columns: 1fr; }
  .course-preview-main { order: 2; }
  .course-preview-card { order: 1; position: static; }
  .mock-entry-card { align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: span 2; }
  .tvde-page-grid, .tvde-page-grid.two { grid-template-columns: 1fr; }
  .dashboard-hero,
  .dashboard-grid,
  .dashboard-pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .odoo-panel, .cta-card { align-items: stretch; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 54px 0; }
  .hero-section { padding-top: 36px; }
  .stat-grid { grid-template-columns: 1fr; }
  .actions, .actions.compact { display: grid; }
  .btn { width: 100%; }
  .tvde-page-hero { padding: 34px 20px; border-radius: 18px; }
  .tvde-page-actions .btn { width: 100%; }
  .tvde-page-price { font-size: 36px; }
  .hero-visual { min-height: 430px; }
  .hero-video { padding: 12px; }
  .video-stage { min-height: 360px; }
  .course-includes { grid-template-columns: 1fr; }
  .course-content-head { align-items: flex-start; flex-direction: column; }
  .lesson-section > button,
  .lesson-row { padding-inline: 16px; }
  .lesson-row { grid-template-columns: 24px minmax(0, 1fr); }
  .lesson-row a,
  .lesson-preview-button,
  .lesson-row span:not(.lesson-icon),
  .lesson-row em { grid-column: 2; text-align: left; }
  .lesson-preview-button {
    min-height: 44px;
    justify-self: start;
    padding: 10px 0;
    font-size: 15px;
  }
  .footer-main { grid-template-columns: 1fr; padding: 46px 0 52px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .footer-bottom p { letter-spacing: .14em; }
  .footer-payment-strip { justify-content: flex-start; overflow-x: auto; }
  .mini-right { right: 14px; bottom: 90px; }
  .mini-left { left: 14px; }
}
