/* ================================================================
   naKlaro Landing Page — Award-Winning Scroll Experience
   ================================================================ */

/* ==================== CUSTOM PROPERTIES ==================== */
:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --primary-light: #D1FAE5;
  --primary-50: #ECFDF5;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --dark: #0F172A;
  --text: #334155;
  --text-light: #64748B;
  --text-lighter: #94A3B8;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --wa-green: #25D366;
  --wa-dark: #075E54;
  --wa-teal: #128C7E;
  --wa-light: #DCF8C6;
  --wa-bg: #ECE5DD;
  --wa-chat-bg: #EFEAE2;
  --danger: #EF4444;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* scroll-behavior handled by Lenis */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==================== UTILITIES ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 800px; }

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: none;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-na { color: var(--text-light); }
.logo-klaro { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 14px !important; }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-xl { padding: 20px 48px; font-size: 19px; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-50);
}
.v2-page .btn-ghost {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.v2-page .btn-ghost:hover {
  color: white;
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-50);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #0EA5E9 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* ==================== HERO ==================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  top: -200px;
  right: -100px;
  animation: blob-float-1 20s ease-in-out infinite;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: #DBEAFE;
  bottom: -100px;
  left: -100px;
  animation: blob-float-2 25s ease-in-out infinite;
}
.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  top: 50%;
  left: 40%;
  animation: blob-float-3 18s ease-in-out infinite;
}
@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.15); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-50);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}
.badge-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 24px;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub strong { color: var(--primary-dark); font-weight: 700; }
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-note {
  font-size: 13px;
  color: var(--text-lighter);
  padding-left: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.hero-visual .phone {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
/* Floating elements */
.float-element {
  position: absolute;
  opacity: 0;
  z-index: 2;
}
.float-1 {
  top: 10%;
  right: -20px;
  animation: float-y 6s ease-in-out infinite;
}
.float-2 {
  bottom: 15%;
  left: -10px;
  animation: float-y 8s ease-in-out infinite 2s;
}
.float-3 {
  top: 60%;
  right: 10%;
  animation: float-y 7s ease-in-out infinite 1s;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-lighter);
  opacity: 0;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
/* Hero chat message animation */
.hero-msg {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
}

/* ==================== STATS ==================== */
#stats {
  padding: 48px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-top: 4px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ==================== PROBLEM ==================== */
#problem {
  padding: 120px 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEF2F2;
  border-radius: 12px;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.problem-transition {
  text-align: center;
  font-size: 22px;
  color: var(--dark);
  opacity: 0;
  transform: translateY(20px);
}
.problem-transition strong {
  color: var(--primary);
  position: relative;
}
.problem-transition strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out) 0.3s;
}
.problem-transition.visible strong::after {
  transform: scaleX(1);
}

/* ==================== HOW IT WORKS (STICKY) ==================== */
#how {
  padding: 80px 0 0;
}
.how-scroll-container {
  height: 350vh;
  position: relative;
}
.how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  opacity: 0.3;
  transform: translateX(-20px);
  transition: all 0.6s var(--ease-out);
}
.how-step.active {
  opacity: 1;
  transform: translateX(0);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  transition: all 0.4s var(--ease-out);
}
.how-step.active .step-number {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.how-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==================== PHONE MOCKUP ==================== */
.phone {
  width: 280px;
  flex-shrink: 0;
}
.phone-frame {
  background: #1A1A2E;
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    var(--shadow-xl),
    0 0 80px rgba(16, 185, 129, 0.1);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #1A1A2E;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #2D2D44;
  border-radius: 50%;
}
.phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}
.phone-screen-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.phone-screen-layer.active {
  opacity: 1;
  pointer-events: auto;
}

/* WhatsApp UI inside phone */
.wa-header {
  background: var(--wa-dark);
  color: white;
  padding: 32px 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-back {
  font-size: 16px;
  opacity: 0.8;
}
.wa-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.wa-info { flex: 1; }
.wa-name { font-size: 14px; font-weight: 600; }
.wa-status { font-size: 10px; opacity: 0.7; }
.wa-body {
  flex: 1;
  background: var(--wa-chat-bg);
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d5cfc3' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-bubble {
  max-width: 82%;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
}
.wa-bubble.received {
  background: #fff;
  border-top-left-radius: 0;
  align-self: flex-start;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.1);
}
.wa-bubble.sent {
  background: var(--wa-light);
  border-top-right-radius: 0;
  align-self: flex-end;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.1);
}
.wa-bubble.small {
  font-size: 13px;
  padding: 8px 12px;
  max-width: 90%;
  border-radius: 12px;
}
.wa-bubble.small.received { border-top-left-radius: 0; }
.wa-bubble.small.sent { border-top-right-radius: 0; }
.wa-time {
  display: block;
  font-size: 9px;
  color: #667781;
  text-align: right;
  margin-top: 1px;
}
.wa-input-bar {
  background: #F0F2F5;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-input-placeholder {
  flex: 1;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #667781;
}
.wa-mic-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Chat message animation for sticky section */
.chat-msg {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.4s var(--ease-spring);
}
.chat-msg.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Build screen inside phone */
.build-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
  text-align: center;
  gap: 16px;
}
.build-icon {
  animation: build-pulse 2s ease-in-out infinite;
}
@keyframes build-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}
.build-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.build-tasks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  padding: 0 8px;
}
.build-task {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-lighter);
  transition: all 0.3s;
}
.build-task.done { color: var(--primary); }
.build-task.active { color: var(--dark); font-weight: 600; }
.task-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.task-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.task-dot {
  width: 6px;
  height: 6px;
  background: var(--border);
  border-radius: 50%;
  margin: 0 4px;
}
.build-progress {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0 8px;
}
.build-progress-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.build-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #0EA5E9);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}
.build-progress-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  min-width: 36px;
}

/* Mini website preview inside phone */
.mini-website {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}
.mini-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 12px 8px;
  border-bottom: 1px solid var(--border);
}
.mini-logo {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}
.mini-nav-dots {
  display: flex;
  gap: 3px;
}
.mini-nav-dots span {
  width: 4px;
  height: 4px;
  background: var(--text-lighter);
  border-radius: 50%;
}
.mini-hero {
  height: 40%;
  background: linear-gradient(135deg, #b76e79, #d4a574);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.mini-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.5));
}
.mini-hero-text {
  position: relative;
  z-index: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mini-tag {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
}
.mini-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: white;
}
.mini-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.8);
}
.mini-btn {
  margin-top: 6px;
  background: var(--primary);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}
.mini-services {
  padding: 12px;
  flex: 1;
}
.mini-section-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
}
.mini-service-row {
  display: flex;
  gap: 6px;
}
.mini-service-item {
  flex: 1;
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 8px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mini-service-icon {
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 50%;
}
.mini-footer {
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  color: var(--text-light);
}
.mini-live-badge {
  background: var(--primary);
  color: white;
  font-size: 7px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 1px;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ==================== FEATURES ==================== */
#features {
  padding: 120px 0;
  background: var(--surface);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--surface);
}
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.icon-photos { background: #EDE9FE; color: #7C3AED; }
.icon-legal { background: var(--primary-50); color: var(--primary); }
.icon-seo { background: #DBEAFE; color: #2563EB; }
.icon-changes { background: #FEF3C7; color: var(--accent); }
.icon-domain { background: #FCE7F3; color: #DB2777; }
.icon-voice { background: #ECFDF5; color: var(--primary-dark); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==================== SOCIAL PROOF ==================== */
#proof {
  padding: 120px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s var(--ease-out);
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.proof-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.proof-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.proof-type {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ==================== PRICING ==================== */
#pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--primary-50) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}
.pricing-price {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.price-period {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.pricing-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
}
.pricing-note p { font-size: 14px; color: var(--text); }
.pricing-anchor {
  margin-bottom: 48px;
}
.pricing-anchor-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-anchor-old {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: var(--danger);
}
.pricing-anchor-old small {
  font-size: 13px;
  display: block;
  text-decoration: none;
}
.pricing-anchor-vs {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.pricing-anchor-new {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.pricing-anchor-new small {
  font-size: 13px;
  font-weight: 400;
  display: block;
  color: var(--text-light);
}
.pricing-trial-badge {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ==================== FAQ ==================== */
#faq {
  padding: 120px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-out);
}
.faq-item:hover {
  border-color: var(--primary-light);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--text-lighter);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
#final-cta {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.final-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}
.final-sub {
  opacity: 0;
  transform: translateY(20px);
}
#final-cta .btn {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}
.trust-item {
  opacity: 0;
  transform: translateY(10px);
}
.final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#final-cta .btn-primary {
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}
#final-cta .btn-primary:hover {
  box-shadow: 0 8px 40px rgba(16, 185, 129, 0.6);
}
.final-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #0B1120;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand p {
  font-size: 14px;
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

/* ==================== MOBILE STICKY CTA ==================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-sticky-cta.visible {
  transform: translateY(0);
}
.mobile-sticky-cta .btn {
  padding: 14px 24px;
  font-size: 15px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-ctas { align-items: center; }
  .hero-visual { min-height: 400px; }
  .phone { width: 240px; }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-phone-wrapper { display: none; }
  .how-scroll-container { height: auto; }
  .how-sticky {
    position: relative;
    height: auto;
    padding: 0 0 80px;
  }
  .how-step {
    opacity: 1 !important;
    transform: none !important;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .how-step .step-number {
    background: var(--primary);
    color: white;
  }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .stats-grid { gap: 24px; }
  .stat-number { font-size: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .final-trust { flex-direction: column; align-items: center; gap: 12px; }
  .hero-badge,
  .title-line,
  .hero-sub,
  .hero-ctas,
  .hero-visual .phone,
  .float-element,
  #scrollIndicator,
  .hero-msg,
  .stat,
  .problem-card,
  .problem-transition,
  .feature-card,
  .proof-card,
  .pricing-card,
  .pricing-note,
  .faq-item,
  .final-line,
  .final-sub,
  #final-cta .btn,
  .trust-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-sticky-cta { display: block; }
  .footer { padding-bottom: 80px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .phone { width: 200px; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn-lg { padding: 14px 28px; font-size: 16px; }
  .btn-xl { padding: 16px 32px; font-size: 17px; }
}

/* ================================================================
   V2 VISION PAGE — Styles (prefixed .v2-)
   ================================================================ */

/* ==================== V2 HERO (DARK) ==================== */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0B1120 0%, #0F172A 40%, #0d2818 100%);
}
.v2-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.v2-hero-mesh {
  position: absolute;
  inset: -50%;
  background:
    conic-gradient(from 0deg at 30% 40%, rgba(16,185,129,0.08) 0deg, transparent 90deg),
    conic-gradient(from 180deg at 70% 60%, rgba(14,165,233,0.06) 0deg, transparent 90deg);
  animation: v2-mesh-rotate 30s linear infinite;
}
@keyframes v2-mesh-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.v2-hero .hero-content { max-width: 560px; }
.v2-hero .hero-title {
  color: white;
}
.v2-hero .hero-sub {
  color: rgba(255,255,255,0.6);
}
.v2-hero .hero-sub strong {
  color: var(--primary);
}
.v2-hero .hero-note {
  color: rgba(255,255,255,0.4);
}
.v2-hero .scroll-indicator {
  color: rgba(255,255,255,0.4);
}

/* V2 Hero Badge */
.v2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}
.v2-badge-text {
  transition: opacity 0.3s, transform 0.3s;
}

/* V2 Floating Channel Icons */
.v2-channel-icon {
  position: absolute;
  z-index: 1;
  opacity: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.v2-ci-1 { top: 15%; right: 8%; animation: float-y 7s ease-in-out infinite; }
.v2-ci-2 { top: 25%; left: 5%; animation: float-y 9s ease-in-out infinite 1s; }
.v2-ci-3 { bottom: 20%; right: 15%; animation: float-y 6s ease-in-out infinite 2s; }
.v2-ci-4 { bottom: 30%; left: 10%; animation: float-y 8s ease-in-out infinite 0.5s; }

/* V2 Notification Screen (Hero Phone) */
.v2-notif-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0F172A 0%, #1a2744 100%);
  padding: 40px 16px 16px;
  color: white;
}
.v2-notif-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.v2-notif-avatar {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.v2-notif-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.v2-notif-subtitle {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 2px;
}
.v2-notif-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-notif-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(20px);
}
.v2-notif-check {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.v2-notif-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.v2-notif-time {
  font-size: 10px;
  opacity: 0.4;
}
.v2-notif-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(16,185,129,0.15);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ==================== V2 CHAOS NOTIFICATIONS (PROBLEM) ==================== */
.v2-chaos-section {
  padding: 0;
  background: var(--bg);
}
.v2-chaos-scroll-container {
  height: 350vh;
  position: relative;
}
.v2-chaos-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.v2-chaos-header {
  margin-bottom: 24px;
}
.v2-chaos-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 8px;
}
.v2-chaos-pile {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  min-height: 420px;
}
/* Individual notification card */
.v2-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: absolute;
  width: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity, filter;
}
/* Colored left accent bar */
.v2-notif-accent {
  width: 4px;
  align-self: stretch;
  border-radius: 4px;
  flex-shrink: 0;
}
.v2-accent-red { background: #EF4444; }
.v2-accent-pink { background: #EC4899; }
.v2-accent-blue { background: #3B82F6; }
.v2-accent-yellow { background: #F59E0B; }
.v2-accent-orange { background: #F97316; }
.v2-accent-purple { background: #8B5CF6; }
/* Icon circle */
.v2-notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-ni-red { background: #FEE2E2; color: #EF4444; }
.v2-ni-pink { background: #FCE7F3; color: #EC4899; }
.v2-ni-blue { background: #DBEAFE; color: #3B82F6; }
.v2-ni-yellow { background: #FEF3C7; color: #F59E0B; }
.v2-ni-orange { background: #FFEDD5; color: #F97316; }
.v2-ni-purple { background: #EDE9FE; color: #8B5CF6; }
/* Text content */
.v2-notif-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v2-notif-source {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.v2-notif-msg {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2-notif-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Counter overlay */
.v2-chaos-counter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  opacity: 0;
  z-index: 20;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(255,255,255,0.8);
}
.v2-chaos-count {
  font-size: 48px;
  color: var(--danger);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.v2-chaos-counter em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 20px;
}
/* Resolution bubble */
.v2-chaos-result {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 30;
}
.v2-conv-wa-bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  box-shadow: 0 20px 60px rgba(16,185,129,0.2), var(--shadow-xl);
  white-space: nowrap;
}
.v2-conv-wa-bubble .wa-avatar {
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
}
.v2-conv-wa-text {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.4;
}
.v2-conv-wa-text strong {
  font-family: var(--font-display);
  font-weight: 800;
}

/* ==================== V2 MID CTA ==================== */
.v2-mid-cta {
  padding: 40px 0;
  background: var(--primary-50);
  border-top: 1px solid var(--primary-light);
  border-bottom: 1px solid var(--primary-light);
}
.v2-mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.v2-mid-cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

/* ==================== V2 BRIDGE ==================== */
.v2-bridge {
  padding: 100px 0 60px;
  background: var(--surface);
  text-align: center;
  position: relative;
}
.v2-bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}
.v2-bridge-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.v2-bridge-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.v2-bridge-link:hover { color: var(--primary-dark); }
.v2-bridge-hint {
  font-size: 18px;
  color: var(--text-light);
  font-style: italic;
}
.v2-bridge-phone {
  display: flex;
  justify-content: center;
}
.v2-bridge-arrow {
  text-align: center;
  margin-top: 40px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ==================== V2 STORIES (MEGA STICKY) ==================== */
#v2-stories {
  padding: 80px 0 0;
}
.v2-stories-container {
  height: 600vh;
  position: relative;
}
.v2-stories-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Chapter Dots */
.v2-chapter-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.v2-chapter-dots::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
.v2-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-lighter);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-spring);
}
.v2-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
}
.v2-dot:hover:not(.active) {
  border-color: var(--primary-light);
  color: var(--primary);
}

/* Story Cards (Left Column) */
.v2-stories-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 80vh;
  overflow: hidden;
}
.v2-story-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  opacity: 0.3;
  transform: scale(0.97);
  transition: all 0.5s var(--ease-out);
  position: relative;
}
.v2-story-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.v2-story-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-lighter);
  margin-bottom: 8px;
}
.v2-story-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.v2-story-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.v2-story-results {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v2-result-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-50);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Proaktiv Badge */
.v2-proaktiv-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  animation: v2-proaktiv-glow 2s ease-in-out infinite;
}
@keyframes v2-proaktiv-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 12px 2px rgba(245,158,11,0.2); }
}

/* Stories Phone (Right Column) */
.v2-stories-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Voice message waveform (inside phone) */
.v2-voice-msg {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-voice-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}
.v2-voice-bars span {
  width: 3px;
  background: #075E54;
  border-radius: 2px;
  animation: v2-bar-anim 1.2s ease-in-out infinite;
}
.v2-voice-bars span:nth-child(1) { height: 6px; animation-delay: 0s; }
.v2-voice-bars span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.v2-voice-bars span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.v2-voice-bars span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.v2-voice-bars span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
.v2-voice-bars span:nth-child(6) { height: 18px; animation-delay: 0.5s; }
.v2-voice-bars span:nth-child(7) { height: 7px; animation-delay: 0.6s; }
.v2-voice-bars span:nth-child(8) { height: 14px; animation-delay: 0.7s; }
.v2-voice-bars span:nth-child(9) { height: 9px; animation-delay: 0.8s; }
.v2-voice-bars span:nth-child(10) { height: 15px; animation-delay: 0.9s; }
.v2-voice-bars span:nth-child(11) { height: 5px; animation-delay: 1.0s; }
.v2-voice-bars span:nth-child(12) { height: 11px; animation-delay: 1.1s; }
@keyframes v2-bar-anim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}
.v2-voice-duration {
  font-size: 10px;
  color: #667781;
  font-weight: 600;
}

/* ==================== V2 CAPABILITIES ==================== */
.v2-capabilities {
  padding: 120px 0;
  background: var(--surface);
}
.v2-cap-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.v2-cap-tab {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.v2-cap-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}
.v2-cap-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.v2-cap-panels {
  min-height: 200px;
}
.v2-cap-panel {
  display: none;
}
.v2-cap-panel.active {
  display: block;
}
.v2-cap-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.v2-cap-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s var(--ease-out);
}
.v2-cap-feature:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.v2-cap-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.v2-cap-soon {
  position: relative;
}
.v2-soon-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 4px;
}
.v2-cap-coming-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ==================== V2 VOICE ==================== */
.v2-voice {
  padding: 100px 0;
  background: var(--bg);
}
.v2-voice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.v2-voice-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.v2-waveform-large {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 120px;
  opacity: 0.3;
  transition: opacity 0.6s;
}
.v2-waveform-large.active {
  opacity: 1;
}
.v2-waveform-large span {
  width: 6px;
  background: var(--primary);
  border-radius: 4px;
  transition: height 0.3s;
}
.v2-waveform-large.active span {
  animation: v2-wave-large 1.5s ease-in-out infinite;
}
.v2-waveform-large span:nth-child(1) { height: 20px; animation-delay: 0s; }
.v2-waveform-large span:nth-child(2) { height: 40px; animation-delay: 0.08s; }
.v2-waveform-large span:nth-child(3) { height: 60px; animation-delay: 0.16s; }
.v2-waveform-large span:nth-child(4) { height: 80px; animation-delay: 0.24s; }
.v2-waveform-large span:nth-child(5) { height: 50px; animation-delay: 0.32s; }
.v2-waveform-large span:nth-child(6) { height: 100px; animation-delay: 0.40s; }
.v2-waveform-large span:nth-child(7) { height: 70px; animation-delay: 0.48s; }
.v2-waveform-large span:nth-child(8) { height: 110px; animation-delay: 0.56s; }
.v2-waveform-large span:nth-child(9) { height: 45px; animation-delay: 0.64s; }
.v2-waveform-large span:nth-child(10) { height: 90px; animation-delay: 0.72s; }
.v2-waveform-large span:nth-child(11) { height: 55px; animation-delay: 0.80s; }
.v2-waveform-large span:nth-child(12) { height: 75px; animation-delay: 0.88s; }
.v2-waveform-large span:nth-child(13) { height: 30px; animation-delay: 0.96s; }
.v2-waveform-large span:nth-child(14) { height: 65px; animation-delay: 1.04s; }
.v2-waveform-large span:nth-child(15) { height: 85px; animation-delay: 1.12s; }
.v2-waveform-large span:nth-child(16) { height: 35px; animation-delay: 1.20s; }
@keyframes v2-wave-large {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}
.v2-voice-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.v2-voice-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==================== V2 DIGEST ==================== */
.v2-digest {
  padding: 120px 0;
  background: var(--surface);
}
.v2-digest-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--wa-chat-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.v2-digest-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.v2-digest-header strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--dark);
  display: block;
}
.v2-digest-date {
  font-size: 12px;
  color: var(--text-lighter);
}
.v2-digest-body {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.v2-digest-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.v2-digest-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.v2-digest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.v2-digest-row:last-child { border-bottom: none; }
.v2-digest-row strong {
  font-family: var(--font-display);
  color: var(--dark);
}
.v2-digest-change {
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
}
.v2-digest-highlight {
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--primary);
}
.v2-digest-top {
  font-size: 13px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.v2-digest-tip {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==================== V2 FAQ ==================== */
.v2-faq {
  padding: 100px 0;
  background: var(--bg);
}

/* ==================== V2 PRICING (4 COLUMNS) ==================== */
.v2-pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-50) 100%);
}
.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.v2-pricing-card {
  padding: 28px;
}
.v2-pricing-card .pricing-features li { font-size: 13px; }
.v2-pricing-card .price-amount { font-size: 40px; }

/* ==================== V2 FINAL CTA ==================== */
.v2-final-cta {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.v2-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ==================== V2 NAVBAR (DARK VARIANT) ==================== */
.v2-navbar:not(.scrolled) .nav-logo .logo-na { color: rgba(255,255,255,0.5); }
.v2-navbar:not(.scrolled) .nav-logo .logo-klaro { color: var(--primary); }
.v2-navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.6); }
.v2-navbar:not(.scrolled) .nav-links a:hover { color: white; }
.v2-navbar:not(.scrolled) .nav-mobile-toggle span { background: white; }

/* V2 Cross-link styling */
.v2-crosslink {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

/* ==================== V2 ANIMATION INITIAL STATES ==================== */
/* Elements that gsap.to will reveal — hidden by default, visible after trigger */
.v2-cap-tabs {
  opacity: 0;
  transform: translateY(20px);
}
.v2-cap-feature {
  opacity: 0;
  transform: translateY(15px);
}
.v2-bridge-text > * {
  opacity: 0;
  transform: translateY(30px);
}
.v2-bridge-phone {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.v2-voice-text > * {
  opacity: 0;
  transform: translateY(25px);
}
.v2-digest-card {
  opacity: 0;
  transform: translateY(30px);
}
.v2-digest-row {
  opacity: 0;
  transform: translateX(-20px);
}
.v2-digest-highlight {
  opacity: 0;
  transform: translateY(15px);
}
.v2-final-cta .final-line {
  opacity: 0;
  transform: translateY(40px);
}
.v2-final-cta .final-sub {
  opacity: 0;
  transform: translateY(20px);
}
.v2-final-cta .btn-xl {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}
.v2-final-cta .trust-item {
  opacity: 0;
  transform: translateY(10px);
}

/* ==================== V2 RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .v2-hero .hero-content { max-width: 100%; }
  .v2-hero .hero-ctas { align-items: center; }
  .v2-channel-icon { display: none; }

  /* Chaos notifications: no sticky, vertical list */
  .v2-chaos-scroll-container { height: auto; }
  .v2-chaos-sticky { position: relative; height: auto; padding: 60px 0 40px; overflow: visible; }
  .v2-chaos-pile { min-height: auto; }
  .v2-notif {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    margin-bottom: 10px;
  }
  .v2-chaos-counter {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    margin-top: 24px;
    white-space: normal;
  }
  .v2-chaos-result {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }
  .v2-conv-wa-bubble { white-space: normal; }

  /* Bridge */
  .v2-bridge-inner { grid-template-columns: 1fr; text-align: center; }
  .v2-bridge-phone { display: none; }

  /* Stories: no sticky */
  .v2-stories-container { height: auto; }
  .v2-stories-sticky {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
  }
  .v2-chapter-dots { display: none; }
  .v2-stories-left {
    max-height: none;
    overflow: visible;
  }
  .v2-story-card {
    opacity: 1;
    transform: none;
  }
  .v2-stories-phone { display: none; }

  /* Capabilities — visible by default on mobile (no GSAP reveal) */
  .v2-cap-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-cap-tabs { opacity: 1; transform: none; }
  .v2-cap-feature { opacity: 1; transform: none; }

  /* Voice */
  .v2-voice-inner { grid-template-columns: 1fr; text-align: center; }
  .v2-waveform-large { justify-content: center; margin-bottom: 32px; }

  /* Ensure all animated elements are visible on mobile/tablet (no GSAP dependency) */
  .v2-notif,
  .v2-chaos-counter,
  .v2-chaos-result,
  .v2-bridge-text > *,
  .v2-bridge-phone,
  .v2-voice-text > *,
  .v2-digest-card,
  .v2-digest-row,
  .v2-digest-highlight,
  .v2-final-cta .final-line,
  .v2-final-cta .final-sub,
  .v2-final-cta .btn-xl,
  .v2-final-cta .trust-item {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Pricing */
  .v2-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .v2-hero-title { font-size: 32px; }
  .v2-notif-msg { font-size: 13px; }
  .v2-cap-feature-grid { grid-template-columns: 1fr; }
  .v2-cap-tabs { gap: 4px; }
  .v2-cap-tab { padding: 8px 14px; font-size: 12px; }
  .v2-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .v2-pricing-card.featured { transform: none; }
  .v2-digest-card { padding: 16px; }
  .v2-digest-body { padding: 14px; }
  .v2-waveform-large span { width: 4px; }
  .v2-waveform-large { gap: 3px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
