/* ============================================================
   FILMAGIA LANDING — ADS OPTIMIZED
   Design System matching the main app
   ============================================================ */

/* ── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Colors */
  --bg-root:       #060608;
  --bg-panel:      #0d0d12;
  --bg-card:       #12121a;
  --bg-hover:      #1a1a26;
  --bg-active:     #1e1e2e;

  /* Glassmorphism */
  --glass-bg:      rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.08);
  --glass-blur:    blur(16px);

  /* Accents */
  --accent-cyan:   #00e5ff;
  --accent-purple: #a855f7;
  --accent-green:  #22c55e;
  --accent-amber:  #f59e0b;
  --accent-red:    #ef4444;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #00e5ff, #a855f7);
  --grad-card:     linear-gradient(135deg, rgba(0,229,255,0.08), rgba(168,85,247,0.08));

  /* Text */
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  /* Borders */
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  /* Radii */
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-normal: 0.25s ease;
  --t-slow:   0.4s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
a { color: var(--accent-cyan); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── Utility Classes ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-padding {
  padding: 6rem 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 6, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-normal), box-shadow var(--t-normal);
}
.nav.scrolled {
  background: rgba(6, 6, 8, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,229,255,0.3));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.5rem;
  background: var(--grad-primary);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
  color: #000 !important;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem;
  border-radius: var(--r-md);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(0,229,255,0.08), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(168,85,247,0.08), transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--bg-root) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both 0.1s;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease both 0.2s;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease both 0.3s;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: var(--grad-primary);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--r-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0,229,255,0.25), 0 0 0 0 rgba(0,229,255,0);
  text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,229,255,0.35), 0 0 0 4px rgba(0,229,255,0.1);
  color: #000;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  animation: fadeInUp 0.6s ease both 0.4s;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Floating Particles ─────────────────────────────────── */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10%  { opacity: 0.3; }
  50%  { transform: translateY(-100px) rotate(180deg) scale(1.2); opacity: 0.15; }
  90%  { opacity: 0.05; }
  100% { transform: translateY(-200px) rotate(360deg) scale(0.8); opacity: 0; }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.social-proof {
  padding: 3rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.social-proof-item svg {
  color: var(--accent-cyan);
  opacity: 0.7;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: 7rem 0;
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,0.06), transparent 70%);
  pointer-events: none;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 1rem;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pipeline Tabs */
.pipeline-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 6px;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pipeline-tab {
  flex: 1;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: calc(var(--r-xl) - 6px);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.pipeline-tab.active {
  background: var(--bg-panel);
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.pipeline-tab[data-stage="pre"].active { color: var(--accent-green); }
.pipeline-tab[data-stage="prod"].active { color: var(--accent-purple); }
.pipeline-tab[data-stage="post"].active { color: var(--accent-amber); }

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  /* Parallax initial state */
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.feature-icon.pre { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: var(--accent-green); }
.feature-icon.prod { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); color: var(--accent-purple); }
.feature-icon.post { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: var(--accent-amber); }

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
.feature-badge.new {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent-cyan);
}
.feature-badge.pro {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--accent-purple);
}

/* ============================================================
   SHOWCASE / SPOTLIGHT
   ============================================================ */
.showcase {
  padding: 7rem 0;
  overflow: hidden;
}
.showcase-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}
.showcase-block:last-child {
  margin-bottom: 0;
}
.showcase-block.reverse {
  direction: rtl;
}
.showcase-block.reverse > * {
  direction: ltr;
}

/* ── Parallax Scroll Animations ─── */
.showcase-text {
  opacity: 0;
  transform: translateX(-80px) translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-text.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.showcase-block.reverse .showcase-text {
  transform: translateX(80px) translateY(40px);
}
.showcase-block.reverse .showcase-text.visible {
  transform: translateX(0) translateY(0);
}

/* Eyebrow slides in separately */
.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease 0.2s;
}
.showcase-text.visible .showcase-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

/* Title slides in with delay */
.showcase-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.showcase-text.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraph fades in with delay */
.showcase-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease 0.45s;
}
.showcase-text.visible p {
  opacity: 1;
  transform: translateY(0);
}

/* Feature list items stagger in */
.showcase-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.showcase-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}
.showcase-text.visible .showcase-features-list li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.showcase-text.visible .showcase-features-list li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }
.showcase-text.visible .showcase-features-list li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.7s; }
.showcase-text.visible .showcase-features-list li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.8s; }
.showcase-features-list li svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* Image floats up + rotates in from the side */
.showcase-image {
  opacity: 0;
  transform: translateY(80px) scale(0.88) perspective(800px) rotateY(-8deg);
  transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  will-change: transform, opacity;
}
.showcase-image.visible {
  opacity: 1;
  transform: translateY(0) scale(1) perspective(800px) rotateY(0deg);
}
.showcase-block.reverse .showcase-image {
  transform: translateY(80px) scale(0.88) perspective(800px) rotateY(8deg);
}
.showcase-block.reverse .showcase-image.visible {
  transform: translateY(0) scale(1) perspective(800px) rotateY(0deg);
}
.showcase-image img {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.showcase-image img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(0,229,255,0.08);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 7rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-amber));
  opacity: 0.3;
}
.step-card {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.step-card:nth-child(1) .step-number {
  background: rgba(0,229,255,0.1);
  border: 2px solid rgba(0,229,255,0.3);
  color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0,229,255,0.15);
}
.step-card:nth-child(2) .step-number {
  background: rgba(168,85,247,0.1);
  border: 2px solid rgba(168,85,247,0.3);
  color: var(--accent-purple);
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
}
.step-card:nth-child(3) .step-number {
  background: rgba(245,158,11,0.1);
  border: 2px solid rgba(245,158,11,0.3);
  color: var(--accent-amber);
  box-shadow: 0 0 30px rgba(245,158,11,0.15);
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 7rem 0;
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.06), transparent 70%);
  pointer-events: none;
}
.pricing-card {
  max-width: 480px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--r-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(168,85,247,0.1);
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}
.pricing-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.8rem;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-purple);
  margin-bottom: 1.5rem;
}
.pricing-price {
  margin-bottom: 2rem;
  text-align: center;
}
.pricing-price .old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}
.pricing-price .current-price {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.04em;
}
.pricing-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-feature svg {
  color: var(--accent-green);
  flex-shrink: 0;
}
.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(168,85,247,0.3);
  text-decoration: none;
}
.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.4);
  color: #fff;
}
.pricing-guarantee {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 1rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 7rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}
.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-question svg {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   LIFESTYLE GALLERY — Real production photos
   ============================================================ */
.lifestyle-gallery {
  padding: 7rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translateY(50px) scale(0.93);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-item-large {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4) 60%, transparent);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption-icon {
  font-size: 1.1rem;
}

/* ============================================================
   INSTAGRAM FOLLOW SECTION
   ============================================================ */
.instagram-section {
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.instagram-follow-card {
  max-width: 520px;
  margin: 3rem auto 0;
}
.instagram-follow-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.instagram-follow-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131,58,180,0.06), rgba(225,48,108,0.06), rgba(247,119,55,0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.instagram-follow-link:hover::before {
  opacity: 1;
}
.instagram-follow-link:hover {
  border-color: rgba(225, 48, 108, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.15);
}
.instagram-follow-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  flex-shrink: 0;
}
.instagram-follow-icon svg {
  color: #fff;
  width: 28px;
  height: 28px;
}
.instagram-follow-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.instagram-follow-handle {
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.instagram-follow-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.instagram-follow-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.25);
}
.instagram-follow-link:hover .instagram-follow-btn-inner {
  box-shadow: 0 6px 24px rgba(225, 48, 108, 0.4);
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .instagram-follow-link {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem;
  }
  .instagram-follow-btn-inner {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.08), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(168,85,247,0.08), transparent 60%);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-root);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 28px;
  opacity: 0.6;
}
.footer-brand span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--t-fast);
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* ============================================================
   ANIMATIONS — Parallax scroll-based
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Parallax-aware animate-on-scroll ──────────────────── */
.parallax-element {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Section headers build in */
.section-header {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Social proof bar slides in */
.social-proof-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.social-proof-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Final CTA parallax */
.final-cta-content {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.final-cta-content.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* FAQ items stagger in */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--t-fast);
}
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .showcase-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .showcase-block.reverse {
    direction: ltr;
  }
  .showcase-image {
    order: -1;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .steps-grid::before {
    display: none;
  }
  .hero-stats {
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-large {
    grid-column: span 1;
  }
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .pipeline-tabs {
    flex-direction: column;
  }
  .hero {
    padding: 5rem 1rem 3rem;
    min-height: auto;
  }
  .section-padding {
    padding: 4rem 0;
  }
  .pricing-card {
    padding: 2rem;
  }
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: var(--r-full); }

/* ── Selection ──────────────────────────────────────────── */
::selection {
  background: rgba(0,229,255,0.2);
  color: #fff;
}
