/**
 * Q-DASH — Short-Form Video Editing & Shooting Subscription (Platform V3 Experience)
 * Path: assets/css/short-video-editing-platform-v3.css
 * Theme: Live Post-Production Studio & Editing Workstation
 * Scoped strictly under .qd-video-studio
 */

:root {
  --sve-primary: #e05c2a;
  --sve-primary-hover: #f07545;
  --sve-primary-glow: rgba(224, 92, 42, 0.35);
  --sve-bg: #050914;
  --sve-surface: #0b1426;
  --sve-panel: #111e38;
  --sve-panel-hover: #172747;
  --sve-border: rgba(255, 255, 255, 0.1);
  --sve-border-hover: rgba(224, 92, 42, 0.5);
  --sve-cyan: #06b6d4;
  --sve-cyan-light: #38bdf8;
  --sve-green: #10b981;
  --sve-green-light: #34d399;
  --sve-purple: #8b5cf6;
  --sve-amber: #f59e0b;
  --sve-rose: #f43f5e;
  --sve-text-light: #f8fafc;
  --sve-text-muted: #94a3b8;
  --sve-text-dark: #0f172a;
  --sve-font: 'Tajawal', sans-serif;
  --sve-radius: 18px;
  --sve-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.15);
  --sve-shadow-md: 0 12px 36px rgba(0, 0, 0, 0.35);
  --sve-shadow-glow: 0 0 35px rgba(224, 92, 42, 0.3);
}

.qd-video-studio {
  font-family: var(--sve-font);
  background: var(--sve-bg);
  color: var(--sve-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.qd-video-studio *,
.qd-video-studio *::before,
.qd-video-studio *::after {
  box-sizing: border-box;
}

/* Shell & Section Setup */
.sve-shell {
  width: min(1280px, 94vw);
  margin-inline: auto;
}

.sve-sec {
  padding: clamp(64px, 7vw, 100px) 0;
  position: relative;
}

.sve-sec-dark {
  background: var(--sve-bg);
  border-top: 1px solid var(--sve-border);
}

.sve-sec-panel {
  background: var(--sve-surface);
  border-top: 1px solid var(--sve-border);
}

.sve-sec-light {
  background: #f8fafc;
  color: var(--sve-text-dark);
  border-top: 1px solid #e2e8f0;
}

/* Typography & Headers */
.sve-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.sve-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 92, 42, 0.15);
  color: #fb923c;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(224, 92, 42, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sve-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 16px;
  color: inherit;
}

.sve-title span {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sve-subtitle {
  font-size: clamp(0.96rem, 1.2vw, 1.15rem);
  color: var(--sve-text-muted);
  line-height: 1.7;
  margin: 0;
}

.sve-sec-light .sve-subtitle {
  color: #64748b;
}

/* Badges & Live Status */
.sve-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sve-green);
  display: inline-block;
  box-shadow: 0 0 8px var(--sve-green);
  animation: svePulse 2s infinite ease-in-out;
}

@keyframes svePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.sve-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Buttons */
.sve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  font-family: inherit;
}

.sve-btn-primary {
  background: linear-gradient(135deg, #e05c2a 0%, #c2410c 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(224, 92, 42, 0.4);
}

.sve-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 92, 42, 0.5);
  color: #ffffff;
}

.sve-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.sve-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.sve-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.sve-btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   01. HERO / LIVE POST-PRODUCTION WORKSTATION STUDIO
   ========================================================================== */
.sve-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 15%, #152342 0%, #050914 75%);
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 140px) 0 clamp(60px, 8vw, 90px);
}

.sve-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.sve-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sve-hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #ffffff;
}

.sve-hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--sve-text-muted);
  line-height: 1.75;
  margin: 0 0 28px;
}

/* Hero Path Switcher (Lightweight State) */
.sve-path-choice-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sve-path-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  text-align: center;
}

.sve-path-btn i {
  font-size: 1.35rem;
}

.sve-path-btn strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.sve-path-btn small {
  font-size: 0.76rem;
  color: var(--sve-text-muted);
}

.sve-path-btn.active,
.sve-path-btn:hover {
  background: rgba(224, 92, 42, 0.18);
  border-color: var(--sve-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(224, 92, 42, 0.25);
}

.sve-path-btn.active small {
  color: #fdba74;
}

/* Hero Studio Workstation Visual */
.sve-workstation-shell {
  background: #091224;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(224, 92, 42, 0.2);
}

.sve-workstation-bar {
  background: #111d38;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: #cbd5e1;
}

.sve-workstation-screen {
  position: relative;
  height: 240px;
  background: #060b17;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sve-screen-preview-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,92,42,0.2) 0%, rgba(6,182,212,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sve-screen-phone-frame {
  width: 120px;
  height: 200px;
  background: #0f172a;
  border: 3px solid #38bdf8;
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(56,189,248,0.3);
  text-align: center;
  padding: 8px;
}

.sve-screen-caption-preview {
  position: absolute;
  bottom: 24px;
  left: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fef08a;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px;
  border-radius: 6px;
  animation: sveCaptionPulse 2.5s infinite;
}

@keyframes sveCaptionPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; color: #fbbf24; }
}

/* Timeline & Tracks */
.sve-timeline-panel {
  background: #0b162c;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.sve-timeline-ruler {
  height: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--sve-text-muted);
  margin-bottom: 8px;
}

.sve-timeline-tracks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.sve-track-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.sve-track-label {
  width: 32px;
  color: var(--sve-text-muted);
  flex-shrink: 0;
}

.sve-track-bar {
  flex-grow: 1;
  height: 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.sve-track-video { background: #3b82f6; color: #ffffff; }
.sve-track-audio { background: #06b6d4; color: #ffffff; }
.sve-track-captions { background: #eab308; color: #713f12; }
.sve-track-fx { background: #8b5cf6; color: #ffffff; }

/* Animated Timeline Playhead */
.sve-playhead-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  left: 10%;
  animation: svePlayheadMove 5s linear infinite;
  z-index: 5;
}

@keyframes svePlayheadMove {
  0% { left: 10%; }
  100% { left: 90%; }
}

/* ==========================================================================
   02. RAW TO FINAL 6-STAGE TRANSFORMATION MATRIX
   ========================================================================== */
.sve-raw-stage-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sve-stage-step-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--sve-panel);
  border: 1px solid var(--sve-border);
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.sve-stage-step-btn.active,
.sve-stage-step-btn:hover {
  background: var(--sve-primary);
  color: #ffffff;
  border-color: var(--sve-primary);
  box-shadow: 0 6px 20px rgba(224, 92, 42, 0.35);
}

.sve-stage-display-card {
  background: var(--sve-panel);
  border: 1px solid var(--sve-border);
  border-radius: var(--sve-radius);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.sve-stage-image-monitor {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(224, 92, 42, 0.25);
  background: #050914;
  aspect-ratio: 16 / 9;
}

.sve-stage-image-monitor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease, filter 0.3s ease;
}

.sve-stage-image-monitor:hover img {
  transform: scale(1.03);
}

.sve-stage-hud-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.sve-stage-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sve-stage-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sve-stage-hud-badge {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   03 & 04. EDITING FEATURES & STYLE LIBRARY
   ========================================================================== */
.sve-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.sve-feature-card {
  background: var(--sve-surface);
  border: 1px solid var(--sve-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.sve-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--sve-border-hover);
  box-shadow: var(--sve-shadow-md);
}

.sve-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(224, 92, 42, 0.14);
  color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  border: 1px solid rgba(224, 92, 42, 0.3);
}

.sve-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}

.sve-feature-card p {
  font-size: 0.88rem;
  color: var(--sve-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   05 & 07. PACKAGES (EDITING ONLY & SHOOTING + EDITING)
   ========================================================================== */
.sve-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.sve-plan-card {
  background: var(--sve-surface);
  border: 1px solid var(--sve-border);
  border-radius: 22px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sve-plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--sve-border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.sve-plan-card.plan-growth {
  border-top: 4px solid var(--sve-primary);
  border-color: var(--sve-primary);
  background: radial-gradient(circle at 50% 0%, #1e2e4e 0%, #0b1426 85%);
  box-shadow: 0 20px 50px rgba(224, 92, 42, 0.28);
}

.sve-plan-badge {
  position: absolute;
  top: -14px;
  inset-inline-end: 20px;
  background: linear-gradient(135deg, #e05c2a 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(224, 92, 42, 0.5);
}

.sve-plan-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 6px;
}

.sve-plan-videos-count {
  font-size: 0.94rem;
  color: var(--sve-cyan-light);
  font-weight: 800;
  margin-bottom: 18px;
}

.sve-plan-pricing-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.sve-plan-price-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.sve-plan-price-currency {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sve-primary);
}

.sve-plan-price-period {
  font-size: 0.78rem;
  color: var(--sve-text-muted);
  margin-top: 4px;
}

.sve-plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  flex-grow: 1;
}

.sve-plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.sve-plan-features-list li i {
  color: var(--sve-green);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sve-plan-features-list li.photo-row {
  color: #fcd34d;
  font-size: 0.82rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 4px;
}

/* ==========================================================================
   08. PACKAGE SWITCHER TOGGLE
   ========================================================================== */
.sve-pkg-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.sve-pkg-segmented-control {
  background: var(--sve-surface);
  border: 1px solid var(--sve-border);
  padding: 6px;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
}

.sve-pkg-switch-btn {
  padding: 10px 26px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sve-pkg-switch-btn.active {
  background: var(--sve-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(224, 92, 42, 0.4);
}

/* ==========================================================================
   09. PACKAGE COMPARISON MATRIX
   ========================================================================== */
.sve-matrix-table-wrap {
  overflow-x: auto;
  background: var(--sve-surface);
  border: 1px solid var(--sve-border);
  border-radius: 18px;
  margin-bottom: 24px;
}

.sve-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: start;
  font-size: 0.88rem;
}

.sve-matrix-table th {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 800;
  border-bottom: 1px solid var(--sve-border);
  white-space: nowrap;
}

.sve-matrix-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.sve-matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   12. INTERACTIVE BEFORE / AFTER SLIDER
   ========================================================================== */
.sve-split-slider-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #091224;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--sve-shadow-md);
  user-select: none;
}

.sve-split-pane {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.sve-split-pane.raw {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #94a3b8;
  filter: grayscale(40%) contrast(85%);
}

.sve-split-pane.graded {
  background: linear-gradient(135deg, #0284c7 0%, #e05c2a 100%);
  color: #ffffff;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.sve-split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.sve-split-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sve-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(224, 92, 42, 0.6);
  font-size: 0.9rem;
}

/* ==========================================================================
   13. SOUND & AUDIO WAVEFORM
   ========================================================================== */
.sve-audio-layers-box {
  background: var(--sve-panel);
  border: 1px solid var(--sve-border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sve-waveform-svg {
  width: 100%;
  height: 60px;
}

/* ==========================================================================
   23. INTERACTIVE FAQ ACCORDION
   ========================================================================== */
.sve-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sve-faq-item {
  background: var(--sve-panel);
  border: 1px solid var(--sve-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.sve-faq-item.is-open {
  border-color: var(--sve-primary);
  box-shadow: 0 8px 24px rgba(224, 92, 42, 0.15);
}

.sve-faq-toggle-btn {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  text-align: start;
  cursor: pointer;
}

.sve-faq-item.is-open .sve-faq-toggle-btn {
  color: #fb923c;
}

.sve-faq-icon-rotator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sve-faq-item.is-open .sve-faq-icon-rotator {
  transform: rotate(180deg);
  background: var(--sve-primary);
  color: #ffffff;
}

.sve-faq-content-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sve-faq-content-inner {
  padding: 0 22px 20px;
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .sve-hero-grid { grid-template-columns: 1fr; }
  .sve-stage-display-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sve-path-choice-box { grid-template-columns: 1fr; }
  .sve-plans-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sve-playhead-line,
  .sve-status-dot,
  .sve-screen-caption-preview {
    animation: none !important;
  }
}
