/**
 * skipdealers.com - Marketing, SEO & Marketplaces Video Platform
 * CSS Styles - Mobile First, Atomic Naming, Viewport Units
 * Fingerprint: m4k7s9e2
 */

/* ========================================
   1. MINIMAL RESET
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  height: auto;
  display: block;
}

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

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

ul,
ol {
  list-style: none;
}

/* ========================================
   2. CSS VARIABLES (Component-based)
   ======================================== */
:root {
  --c-primary: #6366f1;
  --c-primary-dark: #4f46e5;
  --c-primary-light: #818cf8;
  --c-secondary: #10b981;
  --c-accent: #f59e0b;
  --c-dark-bg: #0f0f1a;
  --c-dark-surface: #1a1a2e;
  --c-dark-text: #ffffff;
  --c-dark-muted: #94a3b8;
  --c-light-bg: #ffffff;
  --c-light-surface: #f8fafc;
  --c-light-text: #1a1a2e;
  --c-light-muted: #64748b;
  --c-success: #10b981;
  --c-error: #ef4444;
  --c-warning: #f59e0b;
  --s-xs: 0.25rem;
  --s-sm: 0.5rem;
  --s-md: 1rem;
  --s-lg: 1.5rem;
  --s-xl: 2rem;
  --s-2xl: 3rem;
  --s-3xl: 4rem;
  --f-display: "Space Grotesk", sans-serif;
  --f-body: "Inter", sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3rem;
  --fs-6xl: 4rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --z-header: 100;
  --z-modal: 200;
  --z-toast: 300;
}

/* ========================================
   3. KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   4. UTILITY CLASSES (Atomic)
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}

.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-sm {
  gap: var(--s-sm);
}
.gap-md {
  gap: var(--s-md);
}
.gap-lg {
  gap: var(--s-lg);
}

/* ========================================
   5. HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 95%;
  margin: 0 auto;
  padding: var(--s-md) var(--s-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--c-dark-text);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--s-lg);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-dark-muted);
  padding: var(--s-sm) 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-dark-text);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
}

.header-actions {
  display: none;
  gap: var(--s-sm);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-sm);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-dark-text);
  transition: var(--transition-base);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}
.hamburger::after {
  top: 7px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}
.mobile-nav {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: var(--c-dark-surface);
  padding: var(--s-lg);
  transform: translateX(-100%);
  transition: var(--transition-base);
  z-index: calc(var(--z-header) - 1);
  max-height: calc(100vh - 73px);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.mobile-nav-list a {
  display: block;
  padding: var(--s-md);
  color: var(--c-dark-muted);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: rgba(99, 102, 241, 0.1);
  color: var(--c-primary-light);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-top: var(--s-lg);
  padding-top: var(--s-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: calc(var(--z-header) - 2);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   6. BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-dark-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.light .btn-outline {
  color: var(--c-light-text);
  border-color: rgba(0, 0, 0, 0.2);
}

.light .btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: var(--fs-base);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-xs);
}

.btn-block {
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   7. SECTIONS - DARK/LIGHT SPLIT
   ======================================== */
section {
  padding: var(--s-2xl) var(--s-lg);
}

section.dark {
  background: var(--c-dark-bg);
  color: var(--c-dark-text);
}

section.light {
  background: var(--c-light-bg);
  color: var(--c-light-text);
}

.section-content {
  max-width: 95%;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--s-2xl);
}

.section-header h2 {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: var(--s-sm);
}

.section-header p {
  color: var(--c-dark-muted);
  font-size: var(--fs-lg);
}

.light .section-header p {
  color: var(--c-light-muted);
}

.section-cta {
  text-align: center;
  margin-top: var(--s-2xl);
}

/* ========================================
   8. HERO SECTION
   ======================================== */
.video-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(73px + var(--s-2xl)) var(--s-lg) var(--s-2xl);
  overflow: hidden;
  background-image: url("../images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-wrapper {
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2xl);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 26, 0.95),
    rgba(26, 26, 46, 0.9)
  );
  z-index: 1;
}

.video-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-block;
  padding: var(--s-xs) var(--s-md);
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-primary-light);
  margin-bottom: var(--s-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--s-lg);
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--c-dark-muted);
  margin-bottom: var(--s-xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.trust-item svg {
  color: var(--c-accent);
}

.hero-video-preview {
  cursor: pointer;
  flex-shrink: 0;
}

.video-thumbnail {
  position: relative;
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-base);
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail-img {
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.video-thumbnail:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 15px;
  color: var(--c-primary);
  transition: var(--transition-base);
}

.video-thumbnail:hover .play-icon {
  transform: scale(1.1);
}

/* ========================================
   9. STATS SECTION
   ======================================== */
.platform-stats {
  padding: var(--s-xl) var(--s-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: var(--s-lg);
  background: var(--c-light-surface);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--s-md);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(99, 102, 241, 0.05)
  );
  border-radius: var(--radius-lg);
  color: var(--c-primary);
}

.stat-number {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-light-text);
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
  margin-top: var(--s-xs);
}

/* ========================================
   10. VIDEO GRID
   ======================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-lg);
}

.video-card {
  display: block;
  background: var(--c-dark-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.video-card .video-thumbnail {
  height: 180px;
  position: relative;
}

.thumbnail-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: white;
}

.video-duration {
  position: absolute;
  bottom: var(--s-sm);
  right: var(--s-sm);
  background: rgba(0, 0, 0, 0.8);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition-base);
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay svg {
  width: 50px;
  height: 50px;
  color: white;
}

.video-badge {
  position: absolute;
  top: var(--s-sm);
  left: var(--s-sm);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.video-badge.premium {
  background: linear-gradient(135deg, var(--c-accent), #ea580c);
}

.video-badge.new {
  background: var(--c-secondary);
}

.video-info {
  padding: var(--s-md);
}

.video-info h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--s-xs);
  line-height: 1.4;
}

.video-instructor {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  margin-bottom: var(--s-sm);
}

.video-meta {
  display: flex;
  gap: var(--s-md);
  font-size: var(--fs-xs);
  color: var(--c-dark-muted);
}

.video-level {
  padding: 2px 6px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-sm);
  color: var(--c-primary-light);
}

/* ========================================
   11. CATEGORY GRID
   ======================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-md);
}

.category-card {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-lg);
  background: var(--c-light-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

.category-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}

.category-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.category-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.category-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.category-image img {
  height: 100%;
  object-fit: cover;
}

.category-card h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.category-card p {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.category-arrow {
  margin-left: auto;
  font-size: var(--fs-xl);
  color: var(--c-primary);
  opacity: 0;
  transition: var(--transition-base);
}

.category-card:hover .category-arrow {
  opacity: 1;
}

/* ========================================
   12. PRICING SECTION
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}

.pricing-card {
  background: var(--c-dark-surface);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--c-primary);
}

.pricing-card.popular {
  border-color: var(--c-primary);
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.1) 0%,
    var(--c-dark-surface) 100%
  );
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: white;
  padding: var(--s-xs) var(--s-md);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--s-lg);
}

.pricing-header h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-price .currency {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-dark-muted);
}

.pricing-price .amount {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
}

.pricing-price .period {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.pricing-save {
  display: inline-block;
  margin-top: var(--s-sm);
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--c-secondary);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.pricing-features {
  margin-bottom: var(--s-lg);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  padding: var(--s-sm) 0;
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  color: var(--c-secondary);
  flex-shrink: 0;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  margin-top: var(--s-2xl);
  padding: var(--s-md);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  color: var(--c-secondary);
}

/* ========================================
   13. INSTRUCTORS
   ======================================== */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-lg);
}

.instructor-card {
  text-align: center;
  padding: var(--s-xl);
  background: var(--c-light-surface);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.instructor-image {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--s-md);
  border-radius: 50%;
  overflow: hidden;
}

.instructor-image img {
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: white;
}

.instructor-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--s-xs);
}

.instructor-title {
  font-size: var(--fs-sm);
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}

.instructor-bio {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
  line-height: 1.6;
  margin-bottom: var(--s-md);
}

.instructor-stats {
  display: flex;
  justify-content: center;
  gap: var(--s-lg);
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

/* ========================================
   14. FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-lg);
}

.feature-card {
  text-align: center;
  padding: var(--s-xl);
  background: var(--c-dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-base);
}

.feature-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-md);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(99, 102, 241, 0.05)
  );
  border-radius: var(--radius-lg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--c-primary-light);
}

.feature-card h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  line-height: 1.6;
}

/* ========================================
   15. CANCELLATION INFO
   ======================================== */
.cancel-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--s-lg);
  max-width: 900px;
  margin: 0 auto;
}

.cancel-step {
  text-align: center;
  padding: var(--s-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-md);
  background: var(--c-primary);
  color: white;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 700;
}

.cancel-step h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}

.cancel-step p {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.cancel-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  margin-top: var(--s-2xl);
  padding: var(--s-md);
  background: var(--c-light-surface);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.cancel-note svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

/* ========================================
   16. PAYMENT METHODS
   ======================================== */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-lg);
  margin-bottom: var(--s-xl);
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-sm);
  padding: var(--s-lg);
  background: var(--c-dark-surface);
  border-radius: var(--radius-lg);
  min-width: 120px;
}

.payment-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark-muted);
}

.payment-icon svg {
  width: 32px;
  height: 32px;
}

.payment-icon.pix {
  background: #32bcad;
  color: white;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.payment-method span {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-lg);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.security-badge svg {
  width: 20px;
  height: 20px;
  color: var(--c-secondary);
}

/* ========================================
   17. FAQ
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-lg) 0;
  text-align: left;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-light-text);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--c-primary);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--s-lg);
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
  line-height: 1.7;
}

/* ========================================
   18. CTA SECTION
   ======================================== */
.subscribe-now {
  text-align: center;
  padding: var(--s-3xl) var(--s-lg);
}

.cta-content h2 {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: var(--s-md);
}

.cta-content > p {
  font-size: var(--fs-lg);
  color: var(--c-dark-muted);
  margin-bottom: var(--s-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  justify-content: center;
  margin-bottom: var(--s-md);
}

.cta-note {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

/* ========================================
   19. CONTACT SECTION (HOME)
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.contact-item a:hover {
  color: var(--c-primary);
}

/* ========================================
   20. AUTH PAGES
   ======================================== */
.auth-page {
  min-height: 100vh;
  padding-top: calc(73px + var(--s-2xl));
  padding-bottom: var(--s-2xl);
  background: var(--c-light-surface);
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.auth-container-centered {
  grid-template-columns: 1fr;
  max-width: 500px;
}

.auth-container-centered {
  max-width: 500px;
  margin: 0 auto;
}

.auth-content {
  background: white;
  padding: var(--s-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .auth-content {
    margin: 0 var(--s-md);
    padding: var(--s-lg);
  }
}

.auth-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.auth-header h1 {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--s-sm);
}

.auth-header p {
  color: var(--c-light-muted);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-light-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--s-md);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}

.form-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: var(--s-md);
  top: 50%;
  transform: translateY(-50%);
  padding: var(--s-xs);
  color: var(--c-light-muted);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition-fast);
  position: relative;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label a {
  color: var(--c-primary);
  text-decoration: underline;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xs);
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
  margin-top: var(--s-md);
}

.form-note svg {
  color: var(--c-secondary);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  margin: var(--s-xl) 0;
  color: var(--c-light-muted);
  font-size: var(--fs-sm);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.social-auth {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: var(--s-md);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--c-light-text);
  transition: var(--transition-fast);
}

.btn-social:hover {
  background: var(--c-light-surface);
}

.btn-social svg {
  width: 20px;
  height: 20px;
}

.auth-switch {
  text-align: center;
  margin-top: var(--s-xl);
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.auth-switch a {
  color: var(--c-primary);
  font-weight: 600;
}

.forgot-link {
  font-size: var(--fs-sm);
  color: var(--c-primary);
}
.plan-selector {
  margin-bottom: var(--s-xl);
}

.plan-selector h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--s-md);
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.plan-option {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.plan-option:hover,
.plan-option.selected {
  border-color: var(--c-primary);
  background: rgba(99, 102, 241, 0.05);
}

.plan-option.popular {
  border-color: var(--c-primary);
}

.plan-option input {
  display: none;
}

.plan-radio {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.plan-option.selected .plan-radio {
  border-color: var(--c-primary);
}

.plan-option.selected .plan-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--c-primary);
  border-radius: 50%;
}

.plan-info {
  flex: 1;
}

.plan-name {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.plan-name .badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--c-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  margin-left: var(--s-xs);
}

.plan-price {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.plan-save {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-secondary);
  font-weight: 600;
}
.auth-sidebar {
  display: none;
  padding: var(--s-2xl);
  background: var(--c-dark-surface);
  border-radius: var(--radius-xl);
}

.sidebar-content h3 {
  color: white;
  font-size: var(--fs-lg);
  margin-bottom: var(--s-lg);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  margin-bottom: var(--s-2xl);
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  color: var(--c-dark-muted);
  font-size: var(--fs-sm);
}

.benefits-list svg {
  width: 20px;
  height: 20px;
  color: var(--c-secondary);
  flex-shrink: 0;
}

.testimonial-mini {
  padding: var(--s-lg);
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--c-primary);
}

.testimonial-mini p {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  font-style: italic;
  margin-bottom: var(--s-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.author-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: white;
  border-radius: 50%;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.author-info strong {
  display: block;
  color: white;
  font-size: var(--fs-sm);
}

.author-info span {
  font-size: var(--fs-xs);
  color: var(--c-dark-muted);
}

/* ========================================
   21. CONTACT PAGE
   ======================================== */
.contact-page {
  padding-top: calc(73px + var(--s-2xl));
  padding-bottom: var(--s-2xl);
}

.contact-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2xl);
}

.contact-form-section {
  background: white;
  padding: var(--s-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.contact-card {
  background: white;
  padding: var(--s-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--s-lg);
}

.contact-card .contact-item {
  padding: var(--s-sm) 0;
}

.contact-card .contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-card .contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
}

.contact-card .contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact-card .contact-icon.whatsapp svg {
  color: #25d366;
}

.contact-details h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-details a,
.contact-details p {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
}

.faq-quick ul {
  margin-bottom: var(--s-lg);
}

.faq-links li {
  padding: var(--s-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-links a {
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
  transition: var(--transition-fast);
}

.faq-links a:hover {
  color: var(--c-primary);
}

.social-card .social-links {
  display: flex;
  gap: var(--s-md);
}

.social-card .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-light-surface);
  border-radius: var(--radius-md);
  color: var(--c-light-muted);
  transition: var(--transition-fast);
}

.social-card .social-links a:hover {
  background: var(--c-primary);
  color: white;
}

.social-card .social-links svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   22. FOOTER
   ======================================== */
.site-footer {
  background: var(--c-dark-bg);
  color: var(--c-dark-text);
  padding: var(--s-3xl) var(--s-lg) var(--s-xl);
}

.footer-container {
  max-width: 95%;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2xl);
  margin-bottom: var(--s-2xl);
}

.footer-col h4 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--s-lg);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-bottom: var(--s-md);
}

.footer-description {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  line-height: 1.7;
  margin-bottom: var(--s-lg);
}

.footer-social {
  display: flex;
  gap: var(--s-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--c-dark-muted);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--c-primary);
  color: white;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links li {
  margin-bottom: var(--s-sm);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--c-primary-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  margin-bottom: var(--s-md);
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: var(--c-dark-muted);
}

.footer-contact a:hover {
  color: var(--c-primary-light);
}

.footer-cnpj {
  font-size: var(--fs-xs);
  color: var(--c-dark-muted);
  margin-top: var(--s-md);
}

.footer-bottom {
  padding-top: var(--s-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  margin-bottom: var(--s-lg);
}

.footer-legal p {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  margin-bottom: var(--s-sm);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
}

.footer-legal-links a {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--c-primary-light);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-md);
}

.footer-payments span {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.payment-icons {
  display: flex;
  gap: var(--s-sm);
}

.payment-icons .payment-icon {
  padding: var(--s-xs) var(--s-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
}

/* ========================================
   23. COOKIE CONSENT
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-dark-surface);
  padding: var(--s-lg);
  z-index: var(--z-modal);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.5s ease;
}

.cookie-content {
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.cookie-text h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--s-sm);
}

.cookie-text p {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
}

.cookie-text a {
  color: var(--c-primary-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
}

.cookie-settings-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-dark-surface);
  padding: var(--s-xl);
  z-index: calc(var(--z-modal) + 1);
  max-height: 80vh;
  overflow-y: auto;
  animation: fadeInUp 0.3s ease;
}

.cookie-settings-content {
  max-width: 600px;
  margin: 0 auto;
}

.cookie-settings-content h4 {
  margin-bottom: var(--s-lg);
}

.cookie-category {
  padding: var(--s-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  cursor: pointer;
}

.cookie-toggle input {
  display: none;
}

.toggle-slider {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition-fast);
}

.toggle-slider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition-fast);
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--c-primary);
}

.cookie-toggle input:checked + .toggle-slider::after {
  left: 23px;
}

.cookie-toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-label {
  font-weight: 500;
}

.cookie-category p {
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  margin-top: var(--s-sm);
  margin-left: calc(44px + var(--s-md));
}

.cookie-settings-actions {
  margin-top: var(--s-lg);
}

/* ========================================
   24. ALERTS
   ======================================== */
.alert {
  padding: var(--s-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--s-lg);
  font-size: var(--fs-sm);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--c-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--c-error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ========================================
   25. RESPONSIVE - TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
  section {
    padding: var(--s-3xl) var(--s-xl);
  }

  .section-header h2 {
    font-size: var(--fs-4xl);
  }

  .header-container {
    padding: var(--s-md) var(--s-xl);
  }

  .main-nav {
    display: block;
  }

  .header-actions {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav-overlay {
    display: none;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

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

  .cancel-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-auth {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-container {
    grid-template-columns: 1fr 350px;
    gap: var(--s-2xl);
  }

  .auth-container-centered {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .auth-sidebar {
    display: block;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr 350px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

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

  .footer-legal {
    margin-bottom: 0;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
  }

  .cookie-text {
    flex: 1;
  }
}

/* ========================================
   26. RESPONSIVE - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .video-banner {
    padding-left: var(--s-2xl);
    padding-right: var(--s-2xl);
  }

  .hero-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3xl);
  }

  .hero-content {
    text-align: left;
    max-width: 600px;
    flex: 1;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .video-thumbnail {
    width: 350px;
    height: 230px;
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .instructors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-form-wrapper {
    text-align: center;
  }
}

/* ========================================
   27. RESPONSIVE - LARGE DESKTOP (1280px+)
   ======================================== */
@media (min-width: 1280px) {
  .video-thumbnail {
    width: 400px;
    height: 280px;
  }
}

/* ========================================
   28. LEGAL PAGES (Privacy & Terms)
   ======================================== */
.section--hero-small {
  padding: 8vh 0 4vh;
  min-height: auto;
}

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

.hero-small__title {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  margin-bottom: var(--s-sm);
}

.hero-small__subtitle {
  font-size: var(--fs-base);
  color: var(--c-dark-muted);
}

.legal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.legal-nav {
  background: var(--c-light-surface);
  padding: var(--s-lg);
  border-radius: var(--radius-lg);
  top: calc(70px + var(--s-lg));
  height: fit-content;
}

.legal-nav__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--s-md);
  color: var(--c-light-text);
}

.legal-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}

.legal-nav__list li a {
  display: block;
  padding: var(--s-sm) var(--s-md);
  font-size: var(--fs-sm);
  color: var(--c-light-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.legal-nav__list li a:hover {
  background: rgba(99, 102, 241, 0.1);
  color: var(--c-primary);
}

.legal-article {
  line-height: 1.8;
}

.legal-section {
  margin-bottom: var(--s-2xl);
  padding-bottom: var(--s-2xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  scroll-margin-top: 100px;
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--s-lg);
  color: var(--c-light-text);
}

.legal-section h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-top: var(--s-xl);
  margin-bottom: var(--s-md);
  color: var(--c-light-text);
}

.legal-section p {
  margin-bottom: var(--s-md);
  color: var(--c-light-muted);
}

.legal-section ul,
.legal-section ol {
  margin-bottom: var(--s-md);
  padding-left: var(--s-xl);
}

.legal-section ul {
  list-style: disc;
}

.legal-section ol {
  list-style: decimal;
}

.legal-section li {
  margin-bottom: var(--s-sm);
  color: var(--c-light-muted);
}

.legal-section a {
  color: var(--c-primary);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--c-primary-dark);
}

.legal-section strong {
  color: var(--c-light-text);
  font-weight: 600;
}

.legal-contact {
  background: var(--c-light-surface);
  padding: var(--s-lg);
  border-radius: var(--radius-md);
  margin-top: var(--s-lg);
}

.legal-contact p {
  margin-bottom: var(--s-sm);
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-small__title {
    font-size: var(--fs-5xl);
  }

  .legal-content {
    grid-template-columns: 250px 1fr;
  }
}

@media (min-width: 1024px) {
  .legal-content {
    grid-template-columns: 280px 1fr;
  }
}

/* ========================================
   29. PRINT STYLES
   ======================================== */
@media print {
  .site-header,
  .mobile-nav,
  .cookie-consent,
  .btn,
  .footer-social {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }

  section {
    padding: 1rem;
    page-break-inside: avoid;
  }
}

/* ========================================
   29. REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
