:root {
  --bg: #FAFAF7;
  --bg-alt: #F3F0EB;
  --fg: #2D3748;
  --fg-muted: #718096;
  --accent: #FF6B6B;
  --accent-dim: rgba(255,107,107,0.10);
  --accent-border: rgba(255,107,107,0.18);
  --secondary: #4ECDC4;
  --secondary-dim: rgba(78,205,196,0.10);
  --border: rgba(45,55,72,0.12);
  --card: #FFFFFF;
  --card-hover: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--fg);
  margin-left: auto;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,250,247,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--fg-muted);
  line-height: 1;
  padding: 0.5rem;
}
.nav-mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-mobile-menu a:hover { color: var(--accent); }
.nav-mobile-menu .btn-nav {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  min-height: 48px;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(78,205,196,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,107,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  background: var(--secondary-dim);
  border: 1px solid rgba(78,205,196,0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 44px;
  box-sizing: border-box;
}
.btn-hero:hover { transform: translateY(-1px); }
.btn-hero:not(.btn-hero-ghost) {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,107,0.35);
}
.btn-hero:not(.btn-hero-ghost):hover {
  background: #ff5252;
  box-shadow: 0 6px 20px rgba(255,107,107,0.45);
}
.btn-hero-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1.5px solid var(--border);
}
.btn-hero-ghost:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: var(--secondary-dim);
}

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Video Preview Stack */
.hero-visuals { position: relative; }
.video-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(45,55,72,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,107,107,0.12);
}
.video-card-1 { margin-left: 0; }
.video-card-2 { margin-left: 1.5rem; }
.video-card-3 { margin-left: 0.75rem; }
.video-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.platform-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.platform-badge-tiktok { background: rgba(0,245,135,0.10); color: #00c97e; }
.platform-badge-yt { background: rgba(255,107,107,0.10); color: #FF6B6B; }
.platform-badge-ig { background: rgba(228,64,95,0.10); color: #e4405f; }
.video-meta { font-size: 0.75rem; color: var(--fg-muted); }
.video-card-visual {
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.video-card-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.preview-play {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.90);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.video-card-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Hero Video Container */
.hero-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* Coral + teal glow border */
  box-shadow:
    0 20px 60px rgba(255, 107, 107, 0.18),
    0 8px 24px rgba(78, 205, 196, 0.10),
    inset 0 0 0 1.5px rgba(255, 107, 107, 0.15),
    inset 0 0 0 3px rgba(78, 205, 196, 0.08);
  background: var(--fg);
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin-left: auto;
}

/* Shimmer / loading skeleton */
.hero-video-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.12) 40%,
    rgba(255,255,255,0.05) 80%
  );
  background-size: 200% 100%;
  animation: shimmer 2.2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
@keyframes shimmer {
  0% { background-position: 200% 0; opacity: 0.7; }
  50% { opacity: 1; }
  100% { background-position: -200% 0; opacity: 0.7; }
}
.shimmer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.shimmer-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shimmer-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* Video element */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play / pause button */
.hero-play-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.20);
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 2;
}
.hero-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(255,107,107,0.30);
}

/* Caption badge */
.hero-caption-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  z-index: 2;
}

/* Mobile generate hint */
.hero-generate-hint {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

/* Platform badges row */
.hero-platform-badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

/* Responsive — mobile: stack above, small video below CTA */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-video-container {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    order: 2;
    overflow: hidden;
  }
  .hero-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-platform-badges {
    justify-content: center;
  }
  .hero-caption-badge,
  .hero-generate-hint {
    display: none !important;
  }
}

.hero-rule {
  max-width: 1200px;
  margin: 4rem auto 0;
  border-top: 1px solid var(--border);
}

/* Stat Bar */
.stat-bar {
  padding: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.stat-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 3rem;
  text-align: center;
}
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-star {
  color: #F6C90E;
  font-size: 1.6rem;
  line-height: 1;
  vertical-align: middle;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 140px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-bar-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .stat-item { padding: 0; }
  .stat-divider { display: none; }
}

/* As Seen In */
.as-seen-in {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.as-seen-in-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.as-seen-in-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  white-space: nowrap;
}
.media-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.media-logo-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: rgba(45,55,72,0.35);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.media-logo-item:hover { color: rgba(45,55,72,0.55); }
@media (max-width: 600px) {
  .as-seen-in-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .media-logos { gap: 1.5rem; }
}

/* Social Proof */
.social-proof {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.social-proof-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  white-space: nowrap;
}
.platform-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.platform-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-muted);
}

/* Section shared */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  background: var(--secondary-dim);
  border: 1px solid rgba(78,205,196,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}
.section-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--fg);
}

/* How it Works */
.how-it-works { padding: 6rem 2rem; background: var(--bg-alt); }
.how-it-works-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; max-width: 600px; }
.section-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; max-width: 540px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(45,55,72,0.05);
}
.step-card:hover {
  border-color: rgba(255,107,107,0.3);
  box-shadow: 0 8px 28px rgba(255,107,107,0.10);
  transform: translateY(-2px);
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  opacity: 0.6;
}
.step-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.step-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* Platforms */
.platforms {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platforms-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.platforms-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-top: 0.75rem; }
.platforms-right { display: flex; flex-direction: column; gap: 1.25rem; }
.platform-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(45,55,72,0.05);
}
.platform-item:hover {
  border-color: rgba(78,205,196,0.35);
  box-shadow: 0 4px 16px rgba(78,205,196,0.08);
}
.platform-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.platform-info { display: flex; flex-direction: column; gap: 0.2rem; }
.platform-info strong { font-size: 1rem; font-weight: 700; color: var(--fg); }
.platform-info span { font-size: 0.8125rem; color: var(--fg-muted); }

/* Series */
.series { padding: 6rem 2rem; background: var(--bg-alt); }
.series-inner { max-width: 1200px; margin: 0 auto; }
.series-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; max-width: 620px; }
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.series-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(45,55,72,0.05);
}
.series-card:hover {
  border-color: rgba(255,107,107,0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,107,107,0.10);
}
.series-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.series-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.series-desc { font-size: 0.8125rem; color: var(--fg-muted); line-height: 1.55; }
.series-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* Closing / CTA */
.closing {
  padding: 7rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.closing-headline em { color: var(--accent); font-style: normal; }
.closing-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255,107,107,0.35);
  transition: all 0.2s;
}
.closing-cta:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,107,0.45);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-legal { font-size: 0.75rem; color: rgba(113,128,150,0.6); }

/* Pricing */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(45,55,72,0.05);
}
.pricing-card:hover {
  border-color: rgba(255,107,107,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,107,0.10);
}
.pricing-card--featured {
  border-color: rgba(255,107,107,0.4);
  background: linear-gradient(180deg, rgba(255,107,107,0.04) 0%, var(--card) 100%);
  box-shadow: 0 0 0 1px rgba(255,107,107,0.2), 0 20px 50px rgba(255,107,107,0.08);
}
.pricing-card--featured:hover {
  border-color: rgba(255,107,107,0.65);
}
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-card-header { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-tier-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-period { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.8125rem; color: var(--fg-muted); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
.pricing-feature--included { color: var(--fg); }
.pricing-feature--excluded { color: var(--fg-muted); text-decoration: line-through; }
.pricing-feature--included svg { color: var(--secondary); flex-shrink: 0; }
.pricing-feature--excluded svg { color: rgba(113,128,150,0.4); flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: rgba(255,107,107,0.4);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255,107,107,0.25);
}
.btn-primary:hover {
  background: #ff5252;
  border-color: #ff5252;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(255,107,107,0.35);
}

/* Refund block */
.refund-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem auto 0;
  max-width: 580px;
  padding: 1.75rem 2rem;
  background: var(--card);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(78,205,196,0.06);
}
.refund-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.refund-content { display: flex; flex-direction: column; gap: 0.4rem; }
.refund-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
}
.refund-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto 0;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-muted);
}
.trust-badge svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(45,55,72,0.05);
}
.testimonial-card:hover {
  border-color: rgba(78,205,196,0.35);
  box-shadow: 0 8px 28px rgba(78,205,196,0.08);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #F6C90E;
}
.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: normal;
  flex: 1;
}
.testimonial-quote em { font-style: italic; color: var(--accent); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}
.testimonial-role { font-size: 0.75rem; color: var(--fg-muted); }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 1.25rem; }
}

/* Auth nav buttons */
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: 0.5rem;
}
.btn-nav:hover { transform: translateY(-1px); }
.btn-nav-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,107,107,0.25);
}
.btn-nav-primary:hover {
  background: #ff5252;
  box-shadow: 0 4px 12px rgba(255,107,107,0.35);
}
.btn-nav:not(.btn-nav-primary) {
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: transparent;
}
.btn-nav:not(.btn-nav-primary):hover {
  background: var(--bg-alt);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* Nav actions (desktop) */
.nav-actions { display: flex; align-items: center; gap: 0; }

/* Hamburger hidden on desktop */
.nav-hamburger { display: none; }

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .platforms-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .series-grid { grid-template-columns: 1fr; }
  .social-proof-inner { flex-direction: column; gap: 1rem; }
  .hero { padding: 3rem 1.25rem 2rem; }
  .video-card-2 { margin-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .refund-block { flex-direction: column; text-align: center; }
  /* Auth form inputs: prevent iOS auto-zoom (min 16px is already set) */
  .form-group input { font-size: 16px; padding: 0.875rem 1rem; }
  /* Register form button touch target */
  .btn-primary { min-height: 48px; font-size: 1rem; padding: 0.875rem 1.5rem; }
  /* Dashboard: format tabs touch targets */
  .format-tab { min-height: 44px; padding: 0.5rem 1rem; }
  /* Footer links touch targets */
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
  /* Prevent horizontal overflow sitewide */
  body { overflow-x: hidden; }
  section { overflow: hidden; }
}