@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors — dark theme, aligned with /app (see css/tokens.css). The landing
     page keeps its own variable NAMES, but their VALUES are remapped onto the
     shared dark palette so there is a single source of truth for the theme:
       bg #161616 · midnight-violet surface #4B3F72 · lavender accent #B8A4FF
       off-white text #F0EDFA · muted lavender-grey #A89FC4 */
  --primary-color: #B8A4FF;                                   /* --color-accent */
  --primary-gradient: linear-gradient(135deg, #CAB9FF 0%, #B8A4FF 100%);
  --primary-glow: rgba(184, 164, 255, 0.35);
  --bg-color: #161616;                                        /* near-black bg */
  --surface-color: #4B3F72;                                   /* midnight violet */
  --text-color: #F0EDFA;                                      /* off-white */
  --muted-color: #A89FC4;                                     /* lavender-grey */
  --border-color: rgba(184, 164, 255, 0.18);
  /* --white is kept as a LIGHT color for text sitting on accent/gradient fills.
     Card/panel surfaces now use --card-color (dark) instead of --white. */
  --white: #F0EDFA;
  --card-color: #1F1D2B;   /* dark card surface (violet-tinted charcoal) */
  --card-raised: #2A2740;  /* slightly lighter raised card */
  --glass-bg: rgba(22, 22, 22, 0.72);
  --glass-border: rgba(184, 164, 255, 0.18);
  --success-color: #7BFFC4;
  --success-bg: rgba(123, 255, 196, 0.12);
  --danger-color: #FF7B7B;
  --danger-bg: rgba(255, 123, 123, 0.12);

  /* Typography */
  --font-family: 'Instrument Sans', 'Inter', sans-serif;
  --font-fallback: 'Inter', sans-serif;
  
  /* Size values scaled for desktop defaults */
  --fs-hero: 64px;
  --fs-h2: 48px;
  --fs-h3: 28px;
  --fs-body: 18px;
  --fs-small: 15px;
  --fs-xs: 13px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(27, 27, 27, 0.02);
  --shadow-md: 0 12px 32px rgba(123, 104, 238, 0.05);
  --shadow-lg: 0 20px 48px rgba(123, 104, 238, 0.08);
  --shadow-btn: 0 8px 24px rgba(123, 104, 238, 0.25);
  
  /* Borders and Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Spacing */
  --space-unit: 8px;
  --section-padding: 120px;

  /* Transition */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;   /* lock horizontal scroll at the root, not just body */
  width: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Ambient page glows so the flat dark background feels alive. Fixed, behind
   everything, non-interactive. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.65;
  background:
    radial-gradient(60% 40% at 50% -5%, rgba(184, 164, 255, 0.16), transparent 70%),
    radial-gradient(45% 35% at 12% 22%, rgba(139, 120, 220, 0.12), transparent 70%),
    radial-gradient(45% 35% at 88% 60%, rgba(232, 148, 106, 0.08), transparent 70%),
    radial-gradient(50% 40% at 50% 110%, rgba(184, 164, 255, 0.12), transparent 70%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* -------------------------------------------------------------
   Layout Utilities
------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

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

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Section Headers */
.section-header {
  max-width: 700px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-color);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--muted-color);
  font-weight: 400;
}

/* -------------------------------------------------------------
   Buttons
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--primary-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--card-color);
  border-color: var(--primary-color);
}

.btn-icon {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.btn-secondary:hover .btn-icon {
  transform: translateX(3px);
}

.mobile-only {
  display: none !important;
}

/* -------------------------------------------------------------
   Sticky Navbar
------------------------------------------------------------- */
.header-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 24px;          /* keep the pill off the viewport edges */
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  max-width: 1152px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

/* Compact layout when page is scrolled */
.header-wrapper.scrolled {
  top: 10px;
}

.header-wrapper.scrolled .navbar {
  padding: 8px 24px;
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
  background: rgba(22, 22, 22, 0.92);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--text-color);
}

.logo-dot {
  color: var(--primary-color);
}

.logo-img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  margin-right: 10px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-color);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  padding: 8px 16px;
}

.btn-login:hover {
  color: var(--primary-color);
}

/* Darker (but not too dark) violet gradient — used by the nav CTA and the hero
   primary button so they match. */
.btn-nav-cta,
.hero-ctas .btn-primary {
  background: linear-gradient(135deg, #7160C4 0%, #4C3F8C 100%);
  color: #F0EDFA;
  box-shadow: 0 6px 18px rgba(76, 63, 140, 0.4);
}

.btn-nav-cta:hover,
.hero-ctas .btn-primary:hover {
  background: linear-gradient(135deg, #8070D6 0%, #574896 100%);
  box-shadow: 0 10px 26px rgba(76, 63, 140, 0.5);
}

.btn-nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   Hero Section
------------------------------------------------------------- */
.hero {
  padding-top: 180px;
  padding-bottom: 90px;
  overflow: hidden;
  position: relative;
}

/* Extra focused glow right behind the hero headline. */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  max-width: 120%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(184, 164, 255, 0.22), transparent 75%);
  filter: blur(20px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 24px auto;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted-color);
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 400;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 14px;
  color: var(--muted-color);
  font-weight: 500;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
}

.hero-trust span:not(:last-child)::after {
  content: '•';
  margin-left: 12px;
  color: var(--border-color);
  font-weight: 700;
}

/* Hero Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.stat-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 104, 238, 0.2);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted-color);
  font-weight: 500;
}

/* -------------------------------------------------------------
   Features Section
------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(123, 104, 238, 0.25);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(184, 164, 255, 0.14);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text-color);
}

.feature-card p {
  font-size: 15px;
  color: var(--muted-color);
  line-height: 1.6;
}

/* -------------------------------------------------------------
   How It Works Section
------------------------------------------------------------- */
.how-it-works {
  background-color: var(--card-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

/* Connection line */
.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-step {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon-container {
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-color);
  border: 2px solid var(--border-color);
  color: var(--muted-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .step-number {
  border-color: var(--primary-color);
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.5;
}

/* -------------------------------------------------------------
   Privacy Section
------------------------------------------------------------- */
.privacy-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.privacy-content {
  text-align: left;
}

.privacy-content .section-title {
  text-align: left;
}

.privacy-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.privacy-item-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background-color: rgba(123, 104, 238, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-item-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.privacy-item-text p {
  font-size: 15px;
  color: var(--muted-color);
}

/* CSS Mock Browser Illustration */
.privacy-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mock-browser {
  width: 100%;
  max-width: 440px;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.browser-header {
  background-color: var(--card-raised);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.browser-url-bar {
  flex-grow: 1;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 12px;
  color: var(--muted-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lock-icon-svg {
  color: var(--success-color);
}

.browser-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(142, 125, 255, 0.04), transparent);
}

.privacy-shield-container {
  position: relative;
  margin-bottom: 24px;
}

.shield-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: var(--radius-pill);
  background-color: rgba(123, 104, 238, 0.08);
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

.shield-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-pill);
  background: var(--primary-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(123, 104, 238, 0.3);
}

.local-tag {
  background-color: var(--success-bg);
  color: var(--success-color);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.browser-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.browser-content p {
  font-size: 14px;
  color: var(--muted-color);
  max-width: 280px;
}

/* -------------------------------------------------------------
   Caption Styles Section
------------------------------------------------------------- */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* ── Style showcase carousel (coverflow) ─────────────────────────────────── */
.style-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.carousel-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  /* Taller stage + padding so the active card and its label are never cut off
     at the top/bottom; overflow hides the side cards spilling past the edges. */
  overflow: hidden;
  padding: 24px 0;
}

/* Each card: a 9:16 frame + label. Positioned/scaled by JS via transform. */
.showcase-card {
  position: absolute;
  width: 260px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.5s ease,
              filter 0.5s ease;
  will-change: transform, opacity;
}

.showcase-frame {
  width: 260px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0B0A0F;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card.is-active .showcase-frame {
  border-color: var(--primary-color);
  box-shadow: 0 24px 60px rgba(184, 164, 255, 0.28);
}

.showcase-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.showcase-label {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--muted-color);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-card.is-active .showcase-label {
  opacity: 1;
  color: var(--text-color);
}

/* Arrow buttons */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background-color: var(--card-raised);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 20;
}

.carousel-arrow:hover {
  background: var(--primary-gradient);
  color: #1D1B24;
  border-color: transparent;
  transform: scale(1.08);
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  border: none;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--primary-color);
  width: 26px;
}

.inline-link {
  color: var(--primary-color);
  font-weight: 600;
  white-space: nowrap;
}

.inline-link:hover {
  text-decoration: underline;
}

.style-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 380px;
  position: relative;
}

.style-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 104, 238, 0.2);
}

.caption-preview-container {
  flex-grow: 1;
  background-color: #0F0F13;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Background video abstraction using gradients */
.style-card:nth-child(1) .caption-preview-container {
  background: linear-gradient(to bottom, rgba(184, 164, 255, 0.28), #0B0A0F);
}
.style-card:nth-child(2) .caption-preview-container {
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.25), #0B0A0F);
}
.style-card:nth-child(3) .caption-preview-container {
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.25), #0B0A0F);
}
.style-card:nth-child(4) .caption-preview-container {
  background: linear-gradient(to bottom, rgba(232, 148, 106, 0.25), #0B0A0F);
}
.style-card:nth-child(5) .caption-preview-container {
  background: linear-gradient(to bottom, rgba(255, 230, 0, 0.18), #0B0A0F);
}

.preview-avatar {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.avatar-line {
  width: 60px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

.style-label-bottom {
  padding: 20px;
  background-color: var(--card-color);
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-color);
  transition: var(--transition-smooth);
}

.style-card:hover .style-label-bottom {
  background: var(--primary-gradient);
  color: var(--white);
  border-top-color: transparent;
}

/* Captions Mocking */
.caption-mock {
  text-align: center;
  width: 90%;
  z-index: 2;
}

/* 1. TikTok Bold Style */
.caption-tiktok {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #FFFF00;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000;
  letter-spacing: -0.02em;
}

/* 2. Alex Hormozi Style */
.caption-hormozi {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 3px 3px 0px #000;
}

.caption-hormozi span.green-word {
  color: #27C93F;
  display: inline-block;
  transform: rotate(-3deg) scale(1.1);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2px 8px;
  border-radius: 4px;
}

/* 3. Clean Minimal Style */
.caption-minimal {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

/* 4. Gradient Glow Style */
.caption-glow {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #00FFFF 0%, #8E7DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 2px 8px rgba(142, 125, 255, 0.8));
}

/* -------------------------------------------------------------
   Languages Section
------------------------------------------------------------- */
.languages-wrapper {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 64px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.languages-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 104, 238, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0 auto;
  position: relative;
  z-index: 2;
}

.lang-pill {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-pill:hover {
  background-color: var(--card-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lang-flag {
  font-size: 18px;
}

/* -------------------------------------------------------------
   Comparison Table Section
------------------------------------------------------------- */
.comparison-table-wrapper {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 960px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--card-raised);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}

.comparison-table th:nth-child(2) {
  color: var(--primary-color);
}

.comparison-table td {
  font-size: 16px;
  color: var(--muted-color);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-color);
}

.comparison-table td:nth-child(2) {
  font-weight: 500;
  background-color: rgba(123, 104, 238, 0.01);
}

.comparison-table td:nth-child(3) {
  border-left: 1px solid var(--border-color);
}

.comparison-table td:nth-child(2) {
  border-left: 1px solid var(--border-color);
}

.check-icon, .cross-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  background-color: var(--success-bg);
  color: var(--success-color);
}

.cross-icon {
  background-color: var(--danger-bg);
  color: var(--danger-color);
}

/* -------------------------------------------------------------
   Final CTA Section
------------------------------------------------------------- */
.cta-banner {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner .section-title {
  color: var(--white);
  font-size: 40px;
  max-width: 700px;
  margin: 0 auto 20px auto;
  line-height: 1.2;
}

.cta-banner p {
  font-size: var(--fs-body);
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 40px auto;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  background-color: var(--bg-color);
}

/* -------------------------------------------------------------
   FAQ Section (SEO)
------------------------------------------------------------- */
.faq-list {
  max-width: 780px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: var(--primary-color);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  list-style: none;
}

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

/* Plus / minus icon */
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 0 24px 22px 24px;
  color: var(--muted-color);
  font-size: 16px;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   Footer Section (minimal: logo + name + credit line)
------------------------------------------------------------- */
.footer {
  background-color: var(--card-color);
  border-top: 1px solid var(--border-color);
  padding: 29px 0;
}

.footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  font-size: 22px;
}

.footer-credit {
  font-size: 15px;
  color: var(--muted-color);
}

.footer-heart {
  display: inline-block;
  vertical-align: middle;
}

.footer-credit-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-credit-link:hover {
  color: var(--white);
  text-decoration: underline;
}
