/* Font fallback while Google Fonts loads */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700 800;
  src: local('Georgia'), local('Times New Roman');
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --bg-void:       #08080f;
  --bg-deep:       #0d0d1f;
  --bg-surface:    #111127;
  --bg-card:       rgba(255,255,255,0.035);
  --bg-card-hover: rgba(255,255,255,0.065);

  --brand-1: #FF6B35;
  --brand-2: #E8165A;
  --brand-3: #AA0077;
  --brand-gradient: linear-gradient(135deg, #FF6B35, #E8165A, #AA0077);
  --brand-gradient-90: linear-gradient(90deg, #FF6B35, #E8165A, #AA0077);

  --purple: #7c3aed;
  --purple-glow: rgba(124,58,237,0.25);

  --text-primary:   #ffffff;
  --text-secondary: #c8c8d8;
  --text-muted:     #888899;
  --text-dim:       #44445a;

  --border:       rgba(255,255,255,0.07);
  --border-glow:  rgba(255,107,53,0.25);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  --shadow-glow: 0 0 60px rgba(232,22,90,0.12), 0 0 120px rgba(124,58,237,0.08);
  --shadow-btn:  0 4px 24px rgba(232,22,90,0.3);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:var(--font-body); border:none; outline:none; }

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,22,90,0.08);
  border: 1px solid rgba(232,22,90,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6b9d;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E8165A;
  box-shadow: 0 0 8px #E8165A;
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,15,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--brand-gradient);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 16px rgba(232,22,90,0.4);
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.btn-nav {
  background: var(--brand-gradient);
  color: white;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nav:hover { opacity: 0.85; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Animated orb background */
.orb-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.5) 0%, transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.6) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  animation: orbFloat2 22s ease-in-out infinite;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,22,90,0.4) 0%, transparent 70%);
  bottom: -50px; left: 40%;
  animation: orbFloat3 16s ease-in-out infinite;
}

.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(170,0,119,0.35) 0%, transparent 70%);
  top: 20%; left: 55%;
  animation: orbFloat2 25s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.1); }
  66% { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(calc(-50% + 80px)) scale(1.15); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-80px, -60px) scale(1.1); }
}

/* Hero grid line overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
  opacity: 0.3;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #ff8c5a;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 20px; height: 20px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gradient);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,22,90,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: white;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeUp 0.6s 0.4s ease both;
}

.trust-avatars {
  display: flex;
}
.trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-void);
  margin-left: -8px;
  overflow: hidden;
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.trust-avatars .trust-avatar:first-child { margin-left: 0; }

/* Hero Mockup */
.hero-mockup {
  position: relative;
  animation: fadeUp 0.7s 0.2s ease both;
  padding: 24px 20px;
}

.demo-phone {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 40px;
  background: #1a1a2e;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(232,22,90,0.15), inset 0 0 0 2px rgba(255,255,255,0.04);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.demo-phone:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.demo-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0d0d1f;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-wrap {
  position: relative;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.mockup-wrap:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.mockup-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(232,22,90,0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.mockup-card {
  background: rgba(13,13,31,0.9);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}

.mockup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.5), rgba(232,22,90,0.5), transparent);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}

.mockup-prompt-area {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.mockup-prompt-area strong { color: white; display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 6px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

.mockup-image-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-img-slot {
  flex: 1;
  height: 70px;
  background: rgba(255,107,53,0.08);
  border: 1px dashed rgba(255,107,53,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.mockup-img-uploaded {
  flex: 1;
  height: 70px;
  background: var(--brand-gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  position: relative;
  overflow: hidden;
}

.mockup-img-uploaded::after {
  content: '✓';
  position: absolute;
  top: 4px; right: 6px;
  font-size: 10px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
  font-weight: bold;
}

.mockup-generate-btn {
  width: 100%;
  background: var(--brand-gradient);
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,22,90,0.3);
}

.mockup-generate-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
}

.mockup-result {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.mockup-video-thumb {
  width: 60px; height: 100px;
  border-radius: 8px;
  background: var(--brand-gradient);
  flex-shrink: 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  overflow: hidden;
}

.mockup-video-thumb::after {
  content: '▶';
  position: absolute;
  font-size: 16px;
  color: white;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.mockup-meta { flex: 1; }
.mockup-meta-title { font-size: 12px; font-weight: 700; color: white; margin-bottom: 6px; }
.mockup-meta-sub { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.4; }

.mockup-post-btns {
  display: flex;
  gap: 6px;
}

.mockup-platform-btn {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid;
}

.mockup-platform-btn.tiktok {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.mockup-platform-btn.fb {
  background: rgba(24,119,242,0.15);
  border-color: rgba(24,119,242,0.4);
  color: #60a5fa;
}
.mockup-platform-btn.ig {
  background: rgba(232,22,90,0.1);
  border-color: rgba(232,22,90,0.3);
  color: #ff6b9d;
}

/* Floating badge */
.mockup-float-badge {
  position: absolute;
  top: -16px; right: -20px;
  background: rgba(13,13,31,0.95);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}
.mockup-float-badge::before { content: '●'; font-size: 8px; }

.mockup-float-badge-2 {
  position: absolute;
  bottom: -16px; left: -20px;
  background: rgba(13,13,31,0.95);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #ff8c5a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  white-space: nowrap;
  animation: floatBadge 4s 2s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.step-card {
  background: var(--bg-deep);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.step-card:hover { background: var(--bg-surface); }

.step-number {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.step-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: transform 0.3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.step-card:hover .step-icon-wrap {
  transform: scale(1.05);
  background: rgba(255,107,53,0.12);
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

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

.step-connector {
  position: absolute;
  top: 50%; right: -24px;
  transform: translateY(-50%);
  width: 48px; height: 2px;
  background: var(--brand-gradient);
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   SEGMENTS
═══════════════════════════════════════════════ */
.segments {
  padding: 0 0 120px;
  position: relative;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.segment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.segment-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(255,107,53,0.2);
  box-shadow: var(--shadow-card), 0 12px 40px rgba(232,22,90,0.08);
}

.segment-emoji {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.segment-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.segment-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   PIPELINE SECTION
═══════════════════════════════════════════════ */
.pipeline {
  padding: 0 0 120px;
}

.pipeline-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.pipeline-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.5), rgba(124,58,237,0.5), transparent);
}

.pipeline-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pipeline-step {
  flex: 1;
  text-align: center;
}

.pipeline-step-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.pipeline-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pipeline-step-value {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.pipeline-arrow {
  color: var(--text-dim);
  font-size: 18px;
  flex-shrink: 0;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing {
  padding: 0 0 120px;
}

.pricing-inner {
  max-width: 560px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 20px 60px rgba(232,22,90,0.12);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-gradient);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,22,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  background: var(--brand-gradient);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0 8px;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feat-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: #4ade80;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  background: var(--brand-gradient);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  position: relative;
  z-index: 1;
}
.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,22,90,0.45);
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
}

/* PintarRPH bundle */
.pricing-bundle {
  margin-top: 16px;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.bundle-icon { font-size: 20px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SOCIAL PROOF STRIP
═══════════════════════════════════════════════ */
.proof-strip {
  padding: 0 0 120px;
}

.proof-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}

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

.proof-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.footer-logo-icon {
  width: 28px; height: 28px;
  background: var(--brand-gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.footer-ssm {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-mockup { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .segments-grid .segment-card:last-child { grid-column: span 2; }
  .pipeline-grid { flex-direction: column; }
  .pipeline-arrow { transform: rotate(90deg); }
  .nav-links { display: none; }
  .proof-inner { justify-content: center; }
  .proof-divider { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .segments-grid .segment-card:last-child { grid-column: span 1; }
  .pricing-card { padding: 32px 24px; }
  .pipeline-inner { padding: 32px 24px; }
  .hero-title { font-size: 34px; }
  .step-card { padding: 28px 20px; }
  .section-title { font-size: 28px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .section-title { font-size: 24px; }
  .section-label { font-size: 11px; }
  .step-card { padding: 24px 16px; }
  .pricing-card { padding: 24px 16px; }
  .pipeline-inner { padding: 24px 16px; }
  .segment-card { padding: 20px 12px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .pricing-price { gap: 2px; }
  .price-amount { font-size: 52px; }
  .orb-1, .orb-2, .orb-3, .orb-4 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .orb-1, .orb-2, .orb-3, .orb-4 { display: none; }
}

/* Hamburger & mobile nav drawer */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(8,8,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  z-index: 999;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  min-height: 52px;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.nav-mobile-menu .mobile-cta {
  margin: 12px 24px 8px;
  background: var(--brand-gradient);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: block;
  border-bottom: none;
  box-shadow: var(--shadow-btn);
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .btn-nav { display: none !important; }
  .nav-hamburger { display: flex; }
}
