@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* ==========================================================================
   Kavioo Marketing Storefront — Modern Design System (kavioo.io)
   Theme: Envato Elements Neutral Dark Charcoal + Lime Green Accent (#76D843)
   ========================================================================== */

:root {
  --bg-darkest: #0A0A0A;
  --bg-main: #121212;
  --bg-surface: #181818;
  --bg-card: #1E1E1E;
  --bg-card-hover: #262626;
  --bg-glass: rgba(18, 18, 18, 0.94);

  --primary: #76D843;
  --primary-hover: #85E24A;
  --primary-glow: transparent;
  --primary-subtle: rgba(118, 216, 67, 0.12);

  --text-main: #FFFFFF;
  --text-muted: #A0A0A0;
  --text-dim: #666666;

  --border-subtle: #2C2C2C;
  --border-medium: #383838;
  --border-glow: #76D843;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  background-image: none;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Navigation Bar (Sticky Glassmorphic)
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.brand-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid rgba(118, 216, 67, 0.25);
  letter-spacing: 0.06em;
}

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

.nav-item {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
  color: #FFFFFF;
}

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

/* Buttons — Exact Kavioo App & Plugin Style (Rounded Squircle + Green Elevation Glow) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #181818;
  color: var(--text-main);
  border: 1px solid #333333;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-secondary:hover {
  background: #252525;
  border-color: #4A4A4A;
  color: #FFFFFF;
}

/* ==========================================================================
   Navigation Action Buttons
   ========================================================================== */
.btn-nav-plain {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 16px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.btn-nav-plain:hover {
  color: #FFFFFF;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #0A0F06;
  border: 1px solid var(--primary);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #0A0F06;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(118, 216, 67, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 9999px;
}

/* ==========================================================================
   Minimalist Hero Section (Centered High-Impact Typography)
   ========================================================================== */
.hero-minimal-section,
.hero-section.hero-minimal {
  padding: 105px 24px 72px;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
}

.hero-minimal-headline,
.hero-giant-headline {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 74px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 28px;
  text-align: center;
}

.hero-minimal-headline .highlight-green,
.hero-giant-headline .highlight-green {
  color: var(--primary);
}

.hero-minimal-subheadline {
  color: #94A3B8;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.subheadline-line {
  display: block;
  font-size: 17.5px;
  line-height: 1.62;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .subheadline-line {
    white-space: normal;
    font-size: 15.5px;
  }
}

.hero-cta-standalone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 46px auto 86px;
  position: relative;
}

.hero-cta-interactive-anchor {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Authentic Handwritten Doodle Callout ("Access Web App Free" + Looped Curly Arrow) */
.hero-cta-doodle-callout {
  position: absolute;
  left: calc(100% + 14px);
  top: -24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 10;
  animation: doodleSubtleFloat 4s ease-in-out infinite alternate;
}

.doodle-callout-text {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #76D843;
  transform: rotate(-6deg);
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(118, 216, 67, 0.45);
  margin-left: 18px;
  margin-bottom: -4px;
}

.doodle-loop-arrow-svg {
  width: 72px;
  height: 58px;
  margin-left: 10px;
  filter: drop-shadow(0 0 6px rgba(118, 216, 67, 0.5));
}

@keyframes doodleSubtleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-3px); }
}

@media (max-width: 860px) {
  .hero-cta-doodle-callout {
    left: calc(100% + 8px);
    transform: scale(0.88);
    transform-origin: left center;
  }
}

@media (max-width: 580px) {
  .hero-cta-standalone-wrap {
    margin-top: 52px;
  }
  .hero-cta-doodle-callout {
    left: 50%;
    top: -48px;
    transform: translateX(-50%) scale(0.85);
    transform-origin: center bottom;
    align-items: center;
  }
  .doodle-callout-text {
    margin-left: 0;
    font-size: 20px;
  }
  .doodle-loop-arrow-svg {
    margin-left: 0;
  }
}

.btn-hero-standalone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #11141A;
  color: #FFFFFF;
  border: 1.5px solid #76D843;
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.btn-hero-standalone:hover {
  background: #181D26;
  border-color: #89E659;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
}

.btn-hero-standalone .pill-arrow {
  color: #76D843;
  transition: transform 0.2s ease;
  font-size: 17px;
  font-weight: 800;
}

.btn-hero-standalone:hover .pill-arrow {
  transform: translateX(4px);
}

/* Legacy pill fallback */
.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #161616;
  color: #FFFFFF;
  border: 1px solid #2C2C2C;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 700;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

/* ==========================================================================
   Minimalist Multi-Style Mountain Collage & Transform Selection
   ========================================================================== */
.hero-mountain-stage {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 26px 20px 28px;
  border-radius: 22px;
  /* Mild Dot Graph Grid + 2% Dark Green Gaussian Color Effect (Only this area) */
  background-color: rgba(14, 18, 24, 0.45);
  background-image: 
    radial-gradient(ellipse 75% 65% at 50% 50%, rgba(118, 216, 67, 0.055) 0%, rgba(118, 216, 67, 0.018) 50%, transparent 80%),
    radial-gradient(rgba(255, 255, 255, 0.085) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 24px 24px;
  background-position: center center, 0 0;
  border: 1px solid rgba(118, 216, 67, 0.12);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.65),
    inset 0 0 45px rgba(118, 216, 67, 0.025);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mountain-collage-wrap {
  position: relative;
  width: 950px;
  height: 280px;
}

/* Subtitle Item Base Styles */
.subtitle-item {
  position: absolute;
  cursor: pointer;
  user-select: none;
  text-align: left;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s;
  white-space: nowrap;
  display: inline-block;
  width: fit-content;
}

.subtitle-item:hover {
  transform: rotate(var(--rot, 0deg)) translateY(-4px) scale(1.04) !important;
  z-index: 50 !important;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.95)) !important;
}

.sub-phrase-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.sub-phrase-lines.format-single-line {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.sub-line {
  line-height: 1.35;
  white-space: nowrap;
  text-align: center;
}

/* Multi-Lingual Font Script Bindings */
.lang-ta { font-family: 'Noto Sans Tamil', 'Plus Jakarta Sans', sans-serif; }
.lang-hi { font-family: 'Noto Sans Devanagari', 'Inter', sans-serif; }
.lang-kn { font-family: 'Noto Sans Kannada', 'Outfit', sans-serif; }
.lang-ml { font-family: 'Playfair Display', 'Noto Sans Malayalam', Georgia, serif; }
.lang-bn { font-family: 'Outfit', 'Noto Sans Bengali', sans-serif; }
.lang-te { font-family: 'Plus Jakarta Sans', 'Noto Sans Telugu', sans-serif; }
.lang-mr { font-family: 'Noto Sans Devanagari', sans-serif; }
.lang-gu { font-family: 'Noto Sans Gujarati', sans-serif; }
.lang-en { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

/* ── 1. Style: Hormozi High-Impact Punch (Summit — 1 of 2 with container) ── */
.style-hormozi-punch {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Tamil', -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  background: rgba(14, 18, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  padding: 7px 15px 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.85);
}

.highlight-punch-box {
  background: #7C3AED;
  color: #FFFFFF;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.55);
}

/* ── 2. Style: Pure Floating Title with Glowing Cyan Accent ── */
.style-glossy-glass {
  font-family: 'Outfit', 'Noto Sans Kannada', sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

.gloss-cyan-word {
  color: #38BDF8;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
}

/* ── 3. Style: Pure Title Design (NO BIG WHITE BOX) with Royal Blue Badge Pill ── */
.style-white-pill {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Devanagari', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: #FFFFFF;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

.badge-blue-pill {
  background: #2563EB;
  color: #FFFFFF;
  padding: 1px 7px;
  border-radius: 5px;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

/* ── 4. Style: Luxe Champagne Editorial Serif Glow ── */
.style-luxe-glow {
  font-family: 'Playfair Display', 'Noto Sans Malayalam', Georgia, serif;
  font-size: 16.5px;
  font-style: italic;
  font-weight: 600;
  color: #FFF2CD;
  letter-spacing: 0.01em;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-shadow: 
    0 0 16px rgba(255, 235, 175, 0.5),
    0 3px 10px rgba(0, 0, 0, 0.95);
}

/* ── 5. Style: Pure Title Design with Electric Lime Glow ── */
.style-black-obsidian {
  font-family: 'Space Grotesk', 'Noto Sans Telugu', sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

.style-black-obsidian .text-lime {
  color: #76D843;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(118, 216, 67, 0.6);
}

/* ── 6. Style: Pure Title Design (NO BIG ORANGE BOX) with Sunset Gradient Text ── */
.style-gradient-sunset {
  font-family: 'Outfit', 'Noto Sans Bengali', sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

.sunset-gradient-word {
  background: linear-gradient(135deg, #FF6B4A, #FF2A54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  filter: drop-shadow(0 0 10px rgba(255, 80, 80, 0.6));
}

/* ── 7. Style: Clean Floating Plain White ── */
.style-plain-white {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Devanagari', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

/* ── 8. Style: Sleek Dark Creator Style with Yellow Accent (Ref Image 1 — 2 of 2 with container) ── */
.style-creator-yellow,
.style-gradient-indigo {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  background: rgba(14, 18, 24, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  padding: 9px 24px 10px;
  box-shadow: 
    0 10px 28px rgba(0, 0, 0, 0.8),
    0 0 18px rgba(255, 230, 0, 0.15);
}

.highlight-yellow-word {
  color: #FFE600;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255, 230, 0, 0.55);
}

/* ── 9. Style: Pure Title Design with Glowing Cyan Accent ── */
.style-glass-card {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

.cyan-accent {
  color: #38BDF8;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

/* ── Compact Overlapping Mountain Collage Coordinates (950px × 280px) ── */
/* Summit / Peak (Apex: center top) */
.item-summit { left: 275px; top: 6px; z-index: 30; }

/* Upper Shoulders (Tucked closely into apex flanks) */
.item-upper-left { left: 15px; top: 38px; z-index: 22; }
.item-upper-right { left: 685px; top: 32px; z-index: 20; }

/* Middle Layer (Center pocket & interlocking flanks) */
.item-mid-left { left: 0px; top: 120px; z-index: 18; }
.item-mid-center { left: 355px; top: 112px; z-index: 28; }
.item-mid-right { left: 640px; top: 118px; z-index: 22; }

/* Lower Bedrock Base Layer (Interconnected foundation) */
.item-lower-left { left: 55px; top: 212px; z-index: 22; }
.item-lower-center { left: 285px; top: 196px; z-index: 32; }
.item-lower-right { left: 650px; top: 210px; z-index: 24; }

/* Dynamic Transform Selection Frame (No top green card) */
.transform-selection-frame {
  position: absolute;
  border: 1.5px dashed #76D843;
  border-radius: 8px;
  pointer-events: none;
  opacity: 1;
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s;
  z-index: 45;
}

.t-handle {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #FFFFFF;
  border: 1.5px solid #76D843;
  border-radius: 1px;
}
.t-tl { top: -4px; left: -4px; }
.t-tr { top: -4px; right: -4px; }
.t-bl { bottom: -4px; left: -4px; }
.t-br { bottom: -4px; right: -4px; }

/* Dynamic Animated Mouse Cursor */
.animated-cursor-tracker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 60;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

.animated-cursor-tracker svg {
  transition: transform 0.15s ease;
}

.animated-cursor-tracker.cursor-clicking svg {
  transform: scale(0.85);
}

.cursor-tag-label {
  background: #111419;
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2.5px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .hero-minimal-headline,
  .hero-giant-headline { font-size: 48px; }
  .hero-minimal-subheadline { font-size: 15px; }
  .hero-mountain-stage {
    transform: scale(0.78);
    transform-origin: center top;
    margin-bottom: -25px;
  }
}

@media (max-width: 480px) {
  .hero-minimal-headline,
  .hero-giant-headline { font-size: 36px; }
  .hero-mountain-stage {
    transform: scale(0.58);
    transform-origin: center top;
    margin-bottom: -60px;
  }
}


/* ==========================================================================
   Section Intro & Envato Elements Badges
   ========================================================================== */
.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

.envato-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A1A1A;
  color: var(--primary);
  border: 1px solid #2A2A2A;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.envato-badge .material-symbols-outlined {
  font-size: 15px;
  color: var(--primary);
}

.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subheadline {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.6;
}

/* ==========================================================================
   Multi-Video Cards Showcase Container (Pure Black 9:16 Reel Carousel)
   ========================================================================== */
.video-showcase-section.pure-black-showcase {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 110px 0 130px;
  margin: 0;
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pure-black-showcase .section-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}

.reel-carousel-master-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reel-carousel-toolbar {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.monitor-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94A3B8;
  text-transform: uppercase;
}

.status-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #76D843;
  box-shadow: 0 0 8px rgba(118, 216, 67, 0.8);
  animation: pulseLiveDot 2s infinite ease-in-out;
}

@keyframes pulseLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.reel-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-reel-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-reel-nav:hover {
  background: rgba(118, 216, 67, 0.15);
  border-color: #76D843;
  color: #76D843;
  transform: scale(1.08);
}

.reel-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 35px 0 45px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reel-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.reel-carousel-viewport:active {
  cursor: grabbing;
}

.reel-carousel-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 0 calc(50vw - 150px);
}

.reel-slide-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 300px;
  height: 533px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  opacity: 0.35;
  transform: scale(0.90);
  filter: blur(1.5px);
}

.reel-slide-item:hover {
  opacity: 0.65;
  transform: scale(0.93);
  filter: blur(0.5px);
}

.reel-slide-item.is-active {
  opacity: 1;
  transform: scale(1.05);
  filter: blur(0);
  cursor: default;
  z-index: 10;
}

/* Phone Bezel & Screen Chassis */
.reel-device-bezel {
  width: 100%;
  height: 100%;
  background: #080B0F;
  border-radius: 28px;
  padding: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.reel-slide-item.is-active .reel-device-bezel {
  border-color: rgba(118, 216, 67, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95),
              0 0 35px rgba(118, 216, 67, 0.18),
              inset 0 0 12px rgba(118, 216, 67, 0.1);
}

.reel-screen-chassis {
  position: relative;
  width: 100%;
  flex: 1;
  background: #000000;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Phone Dynamic Island / Camera Notch */
.reel-camera-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 12px;
  border-radius: 9999px;
  background: #05070A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 30;
  pointer-events: none;
}

.notch-lens {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.notch-mic {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #1E293B;
}

/* Status Bar HUD */
.reel-phone-hud {
  position: absolute;
  top: 8px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 28;
  pointer-events: none;
  font-size: 9.5px;
}

.hud-time {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
}

.hud-indicators {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hud-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.hud-battery {
  width: 13px;
  height: 6.5px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1px;
  display: flex;
  align-items: center;
}

.hud-battery-fill {
  width: 75%;
  height: 100%;
  background: #76D843;
  border-radius: 1px;
}

/* Top Bar (Sound Toggle) */
.reel-top-bar {
  position: absolute;
  top: 26px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 25;
}

.btn-reel-sound {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reel-sound:hover {
  background: rgba(118, 216, 67, 0.2);
  border-color: #76D843;
  color: #76D843;
  transform: scale(1.08);
}

/* Video Container & Vignette */
.reel-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reel-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-video-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 22%, transparent 60%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 15;
}

/* Instagram Side Actions */
.reel-side-actions {
  position: absolute;
  right: 10px;
  bottom: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 22;
}

.reel-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #FFFFFF;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.reel-action-btn svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.85));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), fill 0.2s ease, stroke 0.2s ease;
}

.reel-action-btn span {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.reel-action-btn:hover {
  transform: scale(1.12);
}

.reel-action-btn.is-liked,
.reel-action-btn[data-liked="true"] {
  color: #FF2D55;
}

.reel-action-btn.is-liked svg,
.reel-action-btn[data-liked="true"] svg {
  fill: #FF2D55;
  stroke: #FF2D55;
  filter: drop-shadow(0 2px 8px rgba(255, 45, 85, 0.7));
}

.reel-action-btn.is-saved svg,
.reel-action-btn[data-saved="true"] svg {
  fill: #FFFFFF;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
}

.reel-spinning-disc {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1E293B;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.reel-spinning-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-spinning-disc.spinning-active {
  animation: discSpin 4s linear infinite;
}

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

/* Instagram Bottom Creator Strip */
.reel-bottom-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 24;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reel-creator-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.reel-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #76D843;
  object-fit: cover;
  flex-shrink: 0;
}

.reel-creator-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.reel-creator-handle {
  font-size: 10.5px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.reel-preset-title {
  font-size: 9px;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-use-preset {
  background: rgba(118, 216, 67, 0.18);
  border: 1px solid rgba(118, 216, 67, 0.4);
  color: #76D843;
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-use-preset:hover {
  background: #76D843;
  color: #000000;
}

.reel-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  overflow: hidden;
}

.reel-progress-fill {
  width: 45%;
  height: 100%;
  background: #76D843;
  border-radius: 9999px;
  animation: progressFill 8s linear infinite;
}

@keyframes progressFill {
  0% { width: 5%; }
  100% { width: 100%; }
}

/* Bottom Monitor Tag */
.monitor-brand-tag {
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  text-transform: uppercase;
  padding-top: 5px;
  pointer-events: none;
}

/* Subtitle Kinetic Caption Overlay (Positioned for Reels Layout) */
.reel-caption-overlay {
  position: absolute;
  bottom: 78px;
  left: 12px;
  right: 46px;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  z-index: 20;
  pointer-events: none;
}

.kinetic-caption-box {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.k-word {
  display: inline-block;
  color: #FFFFFF;
  transition: transform 0.15s ease, color 0.15s ease;
}

.style-beast { font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; }
.style-beast .word-highlight.lime {
  color: #76D843;
  transform: scale(1.15);
  text-shadow: 0 0 14px rgba(118, 216, 67, 0.8);
}

.style-luxe { font-family: 'Playfair Display', serif; font-style: italic; }
.style-luxe .word-highlight.gold {
  color: #FBBF24;
  transform: scale(1.12);
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.7);
}

.style-punch { font-family: 'Plus Jakarta Sans', sans-serif; text-transform: uppercase; }
.style-punch .word-highlight.box-punch {
  background: #7C3AED;
  color: #FFFFFF;
  padding: 1px 6px;
  border-radius: 4px;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
}

.style-minimal { font-family: 'Plus Jakarta Sans', sans-serif; }
.style-minimal .word-highlight.frosted {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 1px 6px;
  border-radius: 4px;
}

.style-sunset { font-family: 'Outfit', sans-serif; text-transform: uppercase; }
.style-sunset .word-highlight.sunset {
  background: linear-gradient(135deg, #FF6B4A, #FF2A54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.14);
}

.style-cyber { font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; }
.style-cyber .word-highlight.cyan {
  color: #38BDF8;
  transform: scale(1.15);
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
}





.reel-carousel-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reel-pagination-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-dot.is-active {
  width: 24px;
  background: #76D843;
  box-shadow: 0 0 10px rgba(118, 216, 67, 0.6);
}

.reel-trackpad-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
}

.video-container-meta-note {
  margin-top: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

/* ==========================================================================
   Adobe Premiere Pro Integration Spotlight Card (Envato Minimalist)
   ========================================================================== */
.btn-premiere-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pr-mini-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
}

/* ==========================================================================
   Unified Platform Showcase (Sandalwood Container Reference Design)
   ========================================================================== */
.platform-showcase-section {
  width: 100%;
  padding: 40px 24px 100px;
  background: transparent;
  display: flex;
  justify-content: center;
}

/* Master Sandal-Colored Container */
.sandal-showcase-container {
  width: 100%;
  max-width: 1240px;
  background: #F6F1E8; /* Authentic rich sandalwood cream / ivory tone */
  border-radius: 40px;
  padding: 56px 48px;
  border: 1px solid rgba(214, 202, 184, 0.75);
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.75), 
              0 2px 8px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

/* Top Header inside Sandal Container */
.sandal-header-top {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.sandal-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.sandal-envato-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #11141B;
  color: #76D843;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sandal-sub-tag {
  background: rgba(17, 20, 27, 0.06);
  color: #475569;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 20, 27, 0.1);
}

.sandal-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #11141B;
  margin-bottom: 12px;
}

.sandal-subheadline {
  font-size: 16px;
  line-height: 1.6;
  color: #525E71;
  font-weight: 450;
  max-width: 720px;
  margin: 0 auto;
}

/* Comparison Grid */
.platform-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
  align-items: stretch;
}

/* Individual Platform Cards */
.platform-card {
  border-radius: 28px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
}

/* Left Card: Web App (Clean Ivory Card) */
.card-webapp {
  background: #FFFFFF;
  border: 1.5px solid #E6DED0;
  box-shadow: 0 12px 36px rgba(18, 22, 31, 0.06);
}

.card-webapp:hover {
  box-shadow: 0 20px 48px rgba(18, 22, 31, 0.1);
  border-color: #D6CAB6;
}

/* Right Card: Premiere Pro Plugin (Dark Contrast Card as in reference image) */
.card-plugin {
  background: #0E121A;
  border: 1.5px solid #232B39;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-plugin:hover {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(118, 216, 67, 0.08);
  border-color: rgba(118, 216, 67, 0.4);
}

/* Top Identity & Logos */
.card-top-identity {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  min-height: 108px;
}

.brand-logo-badge {
  display: flex;
  align-items: center;
}

/* Left Card (Web App): 3D Black Logo */
.webapp-logo-3d {
  width: 96px;
  height: 96px;
  border-radius: 23px;
  object-fit: contain;
  /* Pure BOTTOM-ONLY 3D Drop Shadow */
  box-shadow: 0 20px 18px -6px rgba(0, 0, 0, 0.35),
              0 8px 10px -4px rgba(0, 0, 0, 0.20);
}

/* Right Card (Plugin): Crossed 3D Overlapping Logos */
.overlapping-logos-cross-cluster {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 16px 20px 6px;
}

/* Left Logo: Green Kavioo tilted ~-10deg */
.logo-3d-badge.logo-cross-left {
  width: 96px;
  height: 96px;
  border-radius: 23px;
  object-fit: contain;
  transform: rotate(-10deg);
  transform-origin: center center;
  position: relative;
  z-index: 2;
  /* Pure BOTTOM-ONLY 3D Drop Shadow without any black outline */
  box-shadow: 0 22px 22px -6px rgba(0, 0, 0, 0.78),
              0 10px 12px -4px rgba(0, 0, 0, 0.55);
}

/* Right Logo: Blue Adobe Premiere Pro tilted ~+10deg */
.adobe-pr-logo-3d-badge.logo-cross-right {
  margin-left: -22px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transform: rotate(10deg);
  transform-origin: center center;
}

.adobe-pr-svg-3d {
  width: 96px;
  height: 96px;
  border-radius: 23px;
  /* Pure BOTTOM-ONLY 3D Drop Shadow without any black outline */
  box-shadow: 0 22px 22px -6px rgba(0, 0, 0, 0.78),
              0 10px 14px -4px rgba(0, 0, 91, 0.75);
}

.card-pill-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 11px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.tag-webapp {
  background: rgba(118, 216, 67, 0.15);
  color: #15803D;
  border: 1px solid rgba(118, 216, 67, 0.35);
}

.tag-plugin {
  background: rgba(153, 153, 255, 0.15);
  color: #A5B4FC;
  border: 1px solid rgba(153, 153, 255, 0.35);
}

/* Card Titles */
.card-title-group {
  margin-bottom: 24px;
}

.card-platform-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #11141B;
  margin-bottom: 8px;
}

.card-platform-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #64748B;
}

.dark-card-text {
  color: #FFFFFF !important;
}

.dark-card-sub {
  color: #94A3B8 !important;
}

/* Highlight Pointers List */
.platform-pointers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
  flex-grow: 1;
}

.pointer-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pointer-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E8F5E4;
  color: #15803D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.pointer-bullet-icon.icon-green {
  background: rgba(118, 216, 67, 0.18);
  color: #76D843;
}

.pointer-highlight {
  font-size: 14.5px;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.dark-pointers .pointer-highlight {
  color: #F8FAFC;
}

/* Card CTA Action */
.card-action-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.btn-sandal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

.btn-sandal-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-webapp-cta {
  background: #76D843;
  color: #0A0F06;
  border: 1px solid #76D843;
}

.btn-webapp-cta:hover {
  background: #89E45B;
  color: #000000;
  border-color: #89E45B;
  box-shadow: 0 10px 24px rgba(118, 216, 67, 0.4);
  transform: translateY(-2px);
}

.btn-plugin-cta {
  background: #76D843;
  color: #0A0F06;
  border: 1px solid #76D843;
}

.btn-plugin-cta:hover {
  background: #89E45B;
  color: #000000;
  box-shadow: 0 12px 30px rgba(118, 216, 67, 0.45);
  transform: translateY(-2px);
}

.card-footer-note {
  font-size: 11.5px;
  text-align: center;
  color: #64748B;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .sandal-showcase-container {
    padding: 44px 32px;
    border-radius: 32px;
  }
  .platform-comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .platform-showcase-section {
    padding: 24px 16px 60px;
  }
  .sandal-showcase-container {
    padding: 32px 20px;
    border-radius: 24px;
  }
  .sandal-headline {
    font-size: 26px;
  }
  .platform-card {
    padding: 26px 20px;
  }
}

/* ==========================================================================
   3-Step Simple Creator Workflow
   ========================================================================== */
.workflow-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workflow-card {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 36px 30px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: #383838;
}

.workflow-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.workflow-title {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.workflow-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Core Frontend Features Grid
   ========================================================================== */
.features-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

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

.feature-card {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 32px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: #1C1C1C;
  border-color: #383838;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(118, 216, 67, 0.1);
  border: 1px solid rgba(118, 216, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
  max-width: 860px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: #383838;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

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

.faq-icon {
  font-size: 20px;
  color: var(--text-dim);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid #222222;
}

.faq-item.active .faq-answer {
  display: block;
  padding-top: 14px;
}

/* ==========================================================================
   Bottom Call-to-Action Banner
   ========================================================================== */
.bottom-cta-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.bottom-cta-card {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 18px;
  padding: 56px 32px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.bottom-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.bottom-cta-subtitle {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Pricing Cards Section
   ========================================================================== */
.pricing-section {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto 110px;
  padding: 0 24px;
  scroll-margin-top: 90px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-card.featured {
  background: #1E1E1E;
  border: 2px solid var(--primary);
  box-shadow: none;
  transform: scale(1.03);
}

.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #0E1015;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  box-shadow: none;
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.plan-tagline {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-bottom: 18px;
  min-height: 36px;
}

.plan-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-discount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.price-original {
  text-decoration: line-through;
  color: #737373;
  font-size: 15px;
  font-weight: 500;
}

.price-discount-badge {
  font-size: 11px;
  font-weight: 700;
  color: #76D843;
  background: rgba(118, 216, 67, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(118, 216, 67, 0.25);
  letter-spacing: 0.02em;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
}

.price-period {
  font-size: 14px;
  color: var(--text-dim);
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #E2E8F0;
  line-height: 1.5;
}

.plan-feature-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

.check-icon {
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.cross-icon {
  color: #F87171;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Legal & Static Pages (Privacy, Terms, Refund)
   ========================================================================== */
.legal-container {
  max-width: 860px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.legal-date {
  color: var(--text-dim);
  font-size: 14px;
}

.legal-content {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 36px 0 14px;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul {
  margin: 0 0 20px 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* ==========================================================================
   Contact Us Dedicated Page Styles
   ========================================================================== */
.contact-page-container {
  max-width: 820px;
  margin: 56px auto 100px;
  padding: 0 24px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header .envato-badge {
  display: inline-flex;
  margin-bottom: 14px;
}

.contact-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.contact-subheadline {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--bg-surface); /* #181818 */
  border: 1px solid var(--border-subtle); /* #2C2C2C */
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  position: relative;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.contact-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #121212;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #FFFFFF;
  outline: none;
  transition: all 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #76D843;
  background: #141414;
  box-shadow: 0 0 0 3px rgba(118, 216, 67, 0.18);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #666666;
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-submit-btn {
  width: 100%;
  background: #76D843;
  color: #0A0F06;
  border: 1px solid #76D843;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(118, 216, 67, 0.35);
}

.contact-submit-btn:hover {
  background: #89E45B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(118, 216, 67, 0.45);
}

.contact-success-banner {
  display: none;
  background: rgba(118, 216, 67, 0.1);
  border: 1px solid rgba(118, 216, 67, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  align-items: center;
  gap: 14px;
}

.contact-success-banner.visible {
  display: flex;
}

.contact-success-icon {
  font-size: 28px;
  color: #76D843;
  flex-shrink: 0;
}

.contact-success-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.contact-success-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.contact-info-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
}

.contact-info-tile .tile-icon-sym {
  font-size: 24px;
  color: #76D843;
  margin-bottom: 6px;
  display: block;
}

.contact-info-tile h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.contact-info-tile p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .contact-headline {
    font-size: 30px;
  }
  .contact-form-card {
    padding: 30px 20px;
  }
  .contact-info-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Envato Elements-Style Minimalist Footer (Reference 5)
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: #0A0A0A;
  border-top: 1px solid #1E1E1E;
  padding: 64px 24px 36px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-envato-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand-col {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #141414;
  border: 1px solid #242424;
  color: #999999;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  color: #FFFFFF;
  background: #1F1F1F;
  border-color: #383838;
  transform: translateY(-2px);
}

.footer-envato-nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.col-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.col-links a {
  color: var(--text-muted);
  font-size: 13.5px;
  transition: color var(--transition-fast);
}

.col-links a:hover {
  color: #FFFFFF;
}

.footer-envato-divider {
  border-top: 1px solid #222222;
  margin: 48px 0 28px;
}

.footer-envato-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-brand-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sublink {
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.sublink:hover {
  color: #FFFFFF;
}

.sublink-sep {
  color: #333333;
}

.footer-meta-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright-text {
  color: var(--text-dim);
  font-size: 12.5px;
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-selector:hover {
  color: #FFFFFF;
  background: #1A1A1A;
}

.lang-icon {
  font-size: 14px;
}

.lang-arrow {
  font-size: 10px;
  opacity: 0.7;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 960px) {
  .hero-headline { font-size: 40px; }
  .video-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .premiere-spotlight-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-envato-top { flex-direction: column; gap: 36px; }
  .footer-envato-nav { gap: 36px; width: 100%; justify-content: space-between; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .video-cards-grid { grid-template-columns: 1fr; }
  .footer-envato-nav { flex-direction: column; gap: 24px; }
  .footer-envato-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Sign-In Modal & App Connection Overlay
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 9, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.signin-modal-card {
  background: #1A1A1A;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .signin-modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  border-radius: 50%;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

.signin-header {
  text-align: center;
  margin-bottom: 28px;
}

.signin-logo {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}

.signin-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.signin-subtitle {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.btn-auth-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FFFFFF;
  color: #121212;
  border: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: all var(--transition-fast);
  margin-bottom: 20px;
}

.btn-auth-google:hover {
  background: #E8E8E8;
  transform: translateY(-1px);
  box-shadow: none;
}

.signin-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.signin-divider::before,
.signin-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.signin-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.signin-input-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.signin-input {
  background: #121212;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 14.5px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.signin-input:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.signin-footer-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.5;
}

/* Connecting State */
.connecting-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.connecting-overlay.active {
  display: flex;
}

.connecting-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(118, 216, 67, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 20px;
}

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

/* ==========================================================================
   Matte Dark Charcoal Auth Card & Dynamic Button (Sign Up & Sign In)
   ========================================================================== */
.auth-page-wrap {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vh, 48px) 16px;
  background: var(--bg-main); /* #121212 aligned with landing page */
  overflow-y: auto;
}

.auth-card-box {
  width: 100%;
  max-width: 470px; /* Increased from 380px to provide ample room for long text & details */
  margin: auto 0;
  background: var(--bg-surface); /* #181818 matching landing page surface */
  border: 1px solid var(--border-subtle); /* #2C2C2C */
  border-radius: 22px;
  padding: 38px 34px 30px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
}

#auth-form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.auth-brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 20px auto;
  width: fit-content;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-brand-center:hover {
  opacity: 0.9;
}

.auth-brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-brand-center:hover .auth-brand-logo {
  transform: scale(1.06);
}

.auth-brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1;
}

.auth-header-text {
  width: 100%;
  text-align: center;
  margin-bottom: 22px;
}

.auth-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.auth-subheading {
  font-size: 13.5px;
  color: var(--text-muted); /* #A0A0A0 matching landing page */
  line-height: 1.5;
}

/* Google Dark Pill Button */
.btn-google-pill {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #121212;
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 2px;
}

.btn-google-pill:hover {
  background: #1F1F1F;
  border-color: #383838;
  transform: translateY(-1px);
}

/* Authentication Method Divider Line */
.auth-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 20px;
  color: var(--text-dim); /* #666666 */
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-align: center;
  white-space: nowrap;
}

.auth-or-divider::before,
.auth-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle); /* #2C2C2C */
}

.auth-or-divider span {
  padding: 0 4px;
}

/* Form Groups with spacious vertical gap between containers */
.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-field-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.auth-input {
  width: 100%;
  height: 46px;
  background: #121212;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 0 16px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-input::placeholder {
  color: #666666;
}

.auth-input:focus {
  border-color: var(--primary);
  background: #151515;
  box-shadow: 0 0 0 3px rgba(118, 216, 67, 0.16);
}

/* Phone input container & country code picker */
.auth-phone-wrap {
  width: 100%;
  height: 46px;
  background: #121212;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-phone-wrap:focus-within {
  border-color: var(--primary);
  background: #151515;
  box-shadow: 0 0 0 3px rgba(118, 216, 67, 0.16);
}

.auth-country-picker {
  display: flex;
  align-items: center;
  border-right: 1px solid #333333;
  padding-right: 8px;
  margin-right: 2px;
}

.auth-country-select {
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding-right: 2px;
}

.auth-country-select option {
  background: #181818;
  color: #FFFFFF;
}

.auth-phone-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
  padding: 0;
}

.auth-phone-input::placeholder {
  color: #666666;
}

/* Password hint/limit */
.auth-field-hint {
  font-size: 11.5px;
  color: #777777;
  margin-top: 5px;
  padding-left: 2px;
  transition: color 0.2s ease;
}

.auth-field-hint.valid {
  color: var(--primary);
}

/* Forgot password link */
.auth-forgot-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
  margin-bottom: 2px;
}

.auth-forgot-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

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

/* Action Button - Dynamic State (Dark Charcoal Default -> Green when filled) */
.btn-auth-action {
  width: 100%;
  height: 46px;
  background: #202020;
  border: 1px solid #333333;
  border-radius: 12px;
  color: #666666;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: not-allowed;
  margin-top: 4px;
  box-shadow: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active State: turns into Kavioo signature green once fields are typed */
.btn-auth-action.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0A0F06;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(118, 216, 67, 0.25);
}

.btn-auth-action.active:hover {
  background: #85E24A;
  border-color: #85E24A;
  transform: translateY(-1px);
}

.btn-auth-action.active:active {
  transform: translateY(0);
}

/* Footer Link */
.auth-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.auth-toggle-btn {
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.2s ease;
}

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

@media (max-width: 520px) {
  .auth-card-box {
    max-width: 100%;
    padding: 28px 20px 24px;
    border-radius: 18px;
  }
}

/* Nav Account Chip & Profile Menu */
.btn-account-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 6px 14px 6px 8px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-account-nav-chip:hover {
  background: #222222;
  border-color: #3E3E3E;
  color: #FFFFFF;
}

.nav-avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #76D843;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Profile Round Menu Wrap (Exact Web App Match) */
.user-profile-menu-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.btn-user-profile-round {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #18191D;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  padding: 0;
  overflow: hidden;
  outline: none;
}

.btn-user-profile-round:hover,
.btn-user-profile-round.active {
  border-color: #76D843;
  background: #202227;
  box-shadow: 0 0 14px rgba(118, 216, 67, 0.35);
}

.nav-user-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-user-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #76D843;
  color: #000000;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Settings Dropdown Popup */
.user-settings-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: rgba(22, 23, 27, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-origin: top right;
  animation: dropdownFadeIn 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(-4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.user-settings-dropdown.hidden {
  display: none !important;
}

.user-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
}

.user-avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(118, 216, 67, 0.15);
  border: 1px solid rgba(118, 216, 67, 0.3);
  color: #76D843;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
}

.user-info-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.user-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-plan-badge {
  font-size: 10.5px;
  color: #76D843;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 5px 0;
}

.settings-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  color: #A0A0A0;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.15s ease;
  cursor: pointer;
}

.settings-item .material-symbols-outlined {
  font-size: 18px;
  color: #888888;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
}

.settings-item:hover .material-symbols-outlined {
  color: #76D843;
}

.settings-item.sign-out:hover {
  background: rgba(255, 77, 77, 0.12);
  color: #FF6B6B;
}

.settings-item.sign-out:hover .material-symbols-outlined {
  color: #FF6B6B;
}

/* ==========================================================================
   Premiere Pro Plugin Download & Installation Page Styles
   ========================================================================== */
.plugin-page-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px 110px;
}

/* Hero Section */
.plugin-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.plugin-compat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(118, 216, 67, 0.1);
  border: 1px solid rgba(118, 216, 67, 0.3);
  color: #A3E635;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.plugin-compat-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background: #76D843;
  border-radius: 50%;
  box-shadow: 0 0 10px #76D843;
  animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.plugin-hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.plugin-hero-headline .highlight-pr {
  color: #A5B4FC;
  background: linear-gradient(135deg, #A5B4FC 0%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plugin-hero-subheadline {
  font-size: 17px;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 660px;
  margin: 0 auto 36px;
}

/* 3D Visual Centerpiece */
.plugin-3d-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 36px;
}

.plugin-3d-visual-wrap .overlapping-logos-cross-cluster {
  padding: 10px 20px 24px 10px;
}

/* Primary Download Card */
.plugin-download-hub-card {
  background: radial-gradient(circle at 50% 0%, rgba(118, 216, 67, 0.08) 0%, transparent 70%), var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  padding: 40px 32px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.75);
  position: relative;
}

.plugin-download-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 216, 67, 0.5), transparent);
}

.download-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-plugin-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #76D843;
  color: #060A03;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(118, 216, 67, 0.35);
  transition: all 0.2s ease;
}

.btn-plugin-download:hover {
  background: #86EF4D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(118, 216, 67, 0.5);
  color: #060A03;
}

.btn-plugin-download svg {
  transition: transform 0.2s ease;
}

.btn-plugin-download:hover svg {
  transform: translateY(2px);
}

.btn-plugin-guide-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-plugin-guide-scroll:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
}

/* File Metadata Chips */
.plugin-meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.meta-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta-chip.chip-highlight {
  color: #76D843;
  border-color: rgba(118, 216, 67, 0.25);
  background: rgba(118, 216, 67, 0.08);
}

.plugin-license-note {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.plugin-license-note strong {
  color: #FFFFFF;
}

/* ==========================================================================
   3-Step Quick Installation Section
   ========================================================================== */
.install-guide-section {
  margin-bottom: 84px;
}

.guide-header {
  text-align: center;
  margin-bottom: 44px;
}

.guide-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.guide-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.guide-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* Steps 3-Column Grid */
.install-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.install-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.5);
}

.install-step-card:hover {
  border-color: rgba(118, 216, 67, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -15px rgba(0, 0, 0, 0.65), 0 0 20px rgba(118, 216, 67, 0.06);
}

.step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.step-number-bubble {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(118, 216, 67, 0.12);
  border: 1px solid rgba(118, 216, 67, 0.3);
  color: #76D843;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-duration-chip {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 9999px;
}

.step-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.step-card-action-box {
  background: #121212;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px;
  margin-top: auto;
}

/* Tool Buttons inside Card 2 */
.installer-tool-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-installer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #E2E8F0;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-installer-link:hover {
  background: rgba(118, 216, 67, 0.15);
  border-color: #76D843;
  color: #FFFFFF;
}

.btn-installer-link .badge-free {
  font-size: 10.5px;
  background: rgba(118, 216, 67, 0.2);
  color: #76D843;
  padding: 2px 7px;
  border-radius: 9999px;
}

/* Menu Breadcrumb Trail inside Card 3 */
.menu-nav-trail {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.menu-chip {
  background: #1E1E1E;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 7px;
  border: 1px solid var(--border-subtle);
}

.menu-chip.chip-active {
  background: #76D843;
  color: #060A03;
  border-color: #76D843;
}

.menu-arrow {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
}

.step-card-tip {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.step-card-tip svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   OS-Specific Interactive Tabbed Instructions
   ========================================================================== */
.os-guide-section {
  margin-bottom: 84px;
}

.os-tabs-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
}

.os-tabs-nav {
  display: flex;
  background: #121212;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 12px;
  gap: 8px;
}

.os-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.os-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
}

.os-tab-btn.active {
  background: #1E1E1E;
  color: #76D843;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.os-tab-pane {
  display: none;
  padding: 36px;
}

.os-tab-pane.active {
  display: block;
}

.os-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.os-check-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(118, 216, 67, 0.15);
  color: #76D843;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.os-check-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.os-check-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.code-snippet-box {
  background: #0D0D0D;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'SF Mono', Menlo, Consolas, Monaco, monospace;
  font-size: 13px;
  color: #76D843;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}

.code-snippet-box code {
  user-select: all;
}

/* Callout Box inside OS tab */
.os-callout-info {
  background: rgba(118, 216, 67, 0.06);
  border-left: 3px solid #76D843;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.os-callout-info p {
  font-size: 13.5px;
  color: #E2E8F0;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Plugin Advantages / Why Editors Love It
   ========================================================================== */
.plugin-perks-section {
  margin-bottom: 84px;
}

.plugin-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plugin-perk-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 26px 22px;
  transition: all 0.2s ease;
}

.plugin-perk-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: #202020;
}

.perk-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(118, 216, 67, 0.12);
  border: 1px solid rgba(118, 216, 67, 0.25);
  color: #76D843;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.perk-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.perk-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FAQ Section for Download Page
   ========================================================================== */
.plugin-faq-section {
  margin-bottom: 84px;
}

/* Bottom Download CTA Card */
.plugin-bottom-cta {
  background: linear-gradient(135deg, #181818 0%, #1E1E1E 100%);
  border: 1px solid rgba(118, 216, 67, 0.3);
  border-radius: 26px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(118, 216, 67, 0.08);
  position: relative;
  overflow: hidden;
}

.plugin-bottom-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(118, 216, 67, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.bottom-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.bottom-cta-desc {
  font-size: 16px;
  color: #94A3B8;
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.bottom-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 960px) {
  .install-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .plugin-hero-headline {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .plugin-page-container {
    padding: 32px 16px 80px;
  }

  .plugin-perks-grid {
    grid-template-columns: 1fr;
  }

  .os-tabs-nav {
    flex-direction: column;
  }

  .plugin-hero-headline {
    font-size: 30px;
  }

  .btn-plugin-download {
    width: 100%;
    justify-content: center;
  }

  .btn-plugin-guide-scroll {
    width: 100%;
    justify-content: center;
  }
}



