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

/* ==================== SELF-HOSTED FONTS ==================== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==================== 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;
}

/* ==================== NAVBAR TOP GRADIENT ACCENT ==================== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #06B6D4, #10B981);
  z-index: 10001;
}

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;
  flex-shrink: 0;
  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(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 8px 20px rgba(16,185,129,0.35);
}
.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);
}

/* ==================== FOCUS-VISIBLE ==================== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}
.nav-mobile-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== 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;
  text-wrap: balance;
}
h1, h2, h3 {
  text-wrap: balance;
}
.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,
#sm-hero,
#gb-hero,
#bew-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-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-email-btn {
  border-color: var(--border);
  color: var(--text);
}
.hero-email-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.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;
}
.has-js .stat {
  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);
}
.has-js .problem-card {
  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-color: var(--wa-chat-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4cdc4' fill-opacity='0.25'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1'/%3E%3Ccircle cx='30' cy='60' r='1.2'/%3E%3Ccircle cx='70' cy='50' r='0.8'/%3E%3Ccircle cx='60' cy='75' r='1'/%3E%3Ccircle cx='20' cy='35' r='0.7'/%3E%3Ccircle cx='75' cy='15' r='1.1'/%3E%3Ccircle cx='40' cy='45' r='0.9'/%3E%3C/g%3E%3C/svg%3E");
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  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: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  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-service-emoji {
  font-size: 18px;
  line-height: 1;
}
.mini-gallery {
  display: flex;
  gap: 3px;
  padding: 0 8px;
  margin: 8px 0;
}
.mini-gallery img {
  flex: 1;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}
.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); }
}

/* Screenshot-based website mockup image */
.mini-website-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ==================== 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);
}
.has-js .feature-card {
  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;
  transition: all 0.4s var(--ease-out);
}
.has-js .proof-card {
  opacity: 0;
  transform: translateY(30px);
}
.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;
}

/* ==================== PORTFOLIO ==================== */
/* v2 multi-pillar portfolio 2x2 grid */
.v2-portfolio {
  padding: 120px 0;
  background: var(--bg);
}
.v2-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.v2-portfolio-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.has-js .v2-portfolio-card {
  opacity: 0;
  transform: translateY(20px);
}
.v2-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.v2-portfolio-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
}
.v2-portfolio-info {
  padding: 20px 24px;
}
.v2-portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.v2-portfolio-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Browser mockup frame */
.portfolio-browser {
  position: relative;
  overflow: hidden;
}
.portfolio-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
}
.portfolio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
}
.portfolio-dot:first-child { background: #FCA5A5; }
.portfolio-dot:nth-child(2) { background: #FDE68A; }
.portfolio-dot:nth-child(3) { background: #86EFAC; }
.portfolio-url {
  font-size: 11px;
  color: #64748B;
  font-family: var(--font-body);
  margin-left: 8px;
  background: #E2E8F0;
  padding: 2px 10px;
  border-radius: 4px;
  flex: 1;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portfolio-browser img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 900;
  object-fit: cover;
  object-position: top;
}

/* ==================== PORTFOLIO HTML MOCKUPS ==================== */
.portfolio-mockup {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

/* Review Before/After */
.portfolio-mockup-reviews {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  justify-content: center;
}
.portfolio-review-before,
.portfolio-review-after {
  text-align: center;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 140px;
}
.portfolio-review-after {
  box-shadow: 0 4px 16px rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.2);
}
.portfolio-review-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ef4444;
  margin-bottom: 8px;
}
.portfolio-review-label-after { color: var(--primary); }
.portfolio-review-score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #202124;
  line-height: 1;
}
.portfolio-review-score-after { color: var(--primary); }
.portfolio-review-stars-mini {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-top: 4px;
}
.portfolio-review-count {
  font-size: 12px;
  color: #70757a;
  margin-top: 4px;
}
.portfolio-review-count-after { color: var(--primary); font-weight: 600; }
.portfolio-review-arrow {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
}

/* Instagram Post */
.portfolio-mockup-social {
  background: white;
}
.portfolio-ig-post {
  font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.portfolio-ig-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}
.portfolio-ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.portfolio-ig-name {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
}
.portfolio-ig-location {
  font-size: 11px;
  color: #8e8e8e;
}
.portfolio-ig-actions {
  display: flex;
  gap: 14px;
  padding: 10px 12px 4px;
}
.portfolio-ig-likes {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  padding: 2px 12px 4px;
}
.portfolio-ig-caption {
  font-size: 13px;
  color: #262626;
  padding: 0 12px 12px;
  line-height: 1.4;
}

/* Google Business Profile */
.portfolio-mockup-gbp {
  background: white;
}
.portfolio-gbp {
  font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  padding: 20px;
}
.portfolio-gbp-name {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 4px;
}
.portfolio-gbp-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #70757a;
}
.portfolio-gbp-stars {
  display: inline-flex;
  gap: 1px;
}
.portfolio-gbp-category {
  font-size: 13px;
  color: #70757a;
  margin-top: 2px;
}
.portfolio-gbp-details {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-gbp-row {
  font-size: 13px;
  color: #4d5156;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portfolio-gbp-icon {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .portfolio-mockup-reviews { padding: 20px 16px; gap: 12px; }
  .portfolio-review-before, .portfolio-review-after { min-width: 110px; padding: 12px 14px; }
  .portfolio-review-score { font-size: 26px; }
}


/* ==================== MIGRATION ==================== */
#migration {
  padding: 100px 0;
}
.migration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.migration-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
}
.has-js .migration-item {
  opacity: 0;
  transform: translateY(30px);
}
.migration-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.migration-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.migration-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.migration-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* ==================== 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;
  transition: all 0.4s var(--ease-out);
}
.has-js .pricing-card {
  opacity: 0;
  transform: translateY(30px);
}
.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;
}
.has-js .pricing-note {
  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;
}

/* 2-column pricing grid variant (website.html) */
.pricing-grid.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefit-style outcome bullets */
.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.pricing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.pricing-benefits li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Expandable feature details */
.pricing-details-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}
.pricing-details-toggle:hover {
  color: var(--primary-dark);
}
.pricing-details-toggle svg {
  transition: transform 0.3s var(--ease-out);
}
.pricing-details-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.pricing-details {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pricing-details.open {
  display: flex;
}
.pricing-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

/* Pricing guarantee line */
.pricing-guarantee {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

/* ==================== 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;
  transition: all 0.3s var(--ease-out);
}
.has-js .faq-item {
  opacity: 0;
  transform: translateY(20px);
}
.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-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.pricing-email-btn {
  margin-top: 8px;
  font-size: 14px;
  padding: 10px 18px;
}
.final-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  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 strong {
  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;
}

/* ==================== WHATSAPP FLOAT BUTTON ==================== */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  text-decoration: none;
}
.wa-float.visible {
  opacity: 1;
  transform: scale(1);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
@media (max-width: 1024px) {
  .wa-float { display: flex; }
}
@media (min-width: 1025px) {
  .wa-float { display: none !important; }
}

/* ==================== 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-cta-wa,
.mobile-cta-email {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  justify-content: center;
}
.mobile-cta-email {
  border-color: var(--border);
  color: var(--text);
}
.mobile-cta-email:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-ctas { align-items: center; }
  .hero-visual { min-height: 300px; }
  .phone { width: 220px; }
  .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 32px;
  }
  .how-step {
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .has-js .how-step {
    opacity: 0;
    transform: translateY(20px);
    transition: none;
  }
  body:not(.has-js) .how-step {
    opacity: 1 !important;
    transform: none !important;
  }
  .how-step .step-number {
    background: var(--primary-50);
    color: var(--primary);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  }
  .how-step.step-revealed .step-number {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  }
  body:not(.has-js) .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; }
  .migration-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; }

  /* Force visibility on all animated elements — no GSAP dependency on mobile */
  .final-line,
  .final-sub,
  #final-cta .btn,
  .trust-item,
  .has-js .lead-form-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
    z-index: 100;
  }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .v2-navbar .nav-links {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .v2-navbar .nav-links a {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.1);
  }
  .nav-mobile-toggle { display: flex; }
  .nav-cta { display: none; }
  .mobile-sticky-cta { display: block; }
  .mobile-sticky-cta.visible { display: flex; gap: 8px; }
  .footer { padding-bottom: 80px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  #hero, #sm-hero, #gb-hero, #bew-hero { padding: 80px 0 40px; min-height: auto; }
  .hero-title { margin-bottom: 16px; }
  .hero-sub { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
  .hero-badge { font-size: 13px; padding: 6px 16px; margin-bottom: 12px; }
  .hero-grid { gap: 16px; }
  .hero-visual { min-height: 260px; }
  .phone { width: 200px; }
  /* Compact hero phone notification items on small screens */
  .v2-notif-screen { padding: 28px 10px 10px; }
  .v2-notif-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
    gap: 4px;
  }
  .v2-notif-avatar { width: 30px; height: 30px; }
  .v2-notif-title { font-size: 11px; }
  .v2-notif-subtitle { font-size: 9px; }
  .v2-notif-item { padding: 7px 10px; font-size: 10px; gap: 6px; border-radius: 8px; }
  .v2-notif-check { font-size: 11px; }
  .v2-notif-list { gap: 5px; }
  .v2-notif-footer { display: none; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .feature-grid { grid-template-columns: 1fr; }
  .migration-item { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn-lg { padding: 14px 28px; font-size: 16px; max-width: 100%; }
  .btn-xl { padding: 16px 32px; font-size: 17px; max-width: 100%; }
}

/* ================================================================
   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;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.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-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 40px;
  padding-left: 50px;
  overflow: visible;
}
.v2-browser-mockup {
  width: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
  position: relative;
  z-index: 1;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f1f3f5;
  border-bottom: 1px solid #e2e4e6;
}
.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.browser-dot-red, .browser-dot-yellow, .browser-dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot-red { background: #ff5f57; }
.browser-dot-yellow { background: #febc2e; }
.browser-dot-green { background: #28c840; }
.browser-url {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-light);
  flex: 1;
}
.browser-lock { flex-shrink: 0; }
.browser-viewport {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.mini-website-desktop .mini-nav {
  padding: 10px 20px;
}
.mini-website-desktop .mini-nav-links {
  display: flex;
  gap: 16px;
  font-size: 9px;
  color: var(--text-light);
  font-weight: 600;
}
.mini-website-desktop .mini-hero-text {
  padding: 24px;
}
.mini-website-desktop .mini-heading {
  font-size: 16px;
}
.mini-website-desktop .mini-service-row {
  grid-template-columns: repeat(4, 1fr);
}
.v2-bridge-visual .v2-bridge-phone {
  position: absolute;
  bottom: -40px;
  left: -50px;
  transform: rotate(-3deg);
  z-index: 2;
}
.v2-bridge-visual .v2-bridge-phone .phone {
  width: 120px !important;
  flex-shrink: 1;
}
.v2-bridge-visual .v2-bridge-phone .phone-frame {
  padding: 5px;
  border-radius: 20px;
}
.v2-bridge-visual .v2-bridge-phone .phone-notch {
  width: 40px;
  height: 12px;
  border-radius: 0 0 6px 6px;
}
.v2-bridge-visual .v2-bridge-phone .phone-screen {
  border-radius: 16px;
}
.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: 450vh;
  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 {
  max-height: 80vh;
  overflow: hidden;
}
.v2-stories-left-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}
.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;
}

/* ==================== PRODUCT SHOWCASE ==================== */
#v2-showcase {
  padding: 80px 0 0;
  background: var(--bg);
}
#v2-showcase .section-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 8px;
}
.ps-scroll-container {
  height: 500vh;
  position: relative;
}
.ps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 40px 1fr;
  gap: 0 24px;
  align-items: center;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.ps-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.ps-progress::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
.ps-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);
}
.ps-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);
}
.ps-dot:hover:not(.active) {
  border-color: var(--primary-light);
  color: var(--primary);
}
.ps-layout {
  display: grid;
  grid-template-columns: 35% 8% 57%;
  gap: 0;
  align-items: center;
  height: 80vh;
  max-height: 700px;
}

/* Chat area */
.ps-chat-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ps-chat-area .phone {
  width: 260px;
}
.ps-scene-chat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.ps-scene-chat.active {
  opacity: 1;
  pointer-events: auto;
}
/* Message hidden state */
.ps-msg {
  opacity: 0;
  transform: translateY(8px) scale(0.95);
}
/* Typing indicator */
.ps-typing {
  display: flex;
  gap: 4px;
  align-self: flex-start;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.1);
}
.ps-typing span {
  width: 6px;
  height: 6px;
  background: #90959a;
  border-radius: 50%;
  animation: ps-typing-bounce 1.4s ease-in-out infinite;
}
.ps-typing span:nth-child(2) { animation-delay: 0.2s; }
.ps-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ps-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}
/* Proaktiv badge inside chat */
.ps-proaktiv-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  padding: 2px 8px;
  border-radius: 10px;
}

/* SVG Connector */
.ps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ps-svg {
  width: 100%;
  height: 60%;
}
.ps-path {
  transition: none;
}
.ps-glow-dot {
  filter: drop-shadow(0 0 6px rgba(16,185,129,0.6));
}

/* Result area */
.ps-result-area {
  position: relative;
  height: 80vh;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-result {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}
.ps-result.active {
  pointer-events: auto;
}
.ps-result-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-50);
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
}

/* Mobile-only chat context (hidden on desktop) */
.ps-mobile-chat {
  display: none;
}

/* Browser mockup inside showcase */
.ps-browser {
  width: 100%;
  max-width: 420px;
}

/* Social media card */
.ps-social-card {
  width: 100%;
  max-width: 340px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ps-social-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}
.ps-social-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #b76e79, #d4a574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.ps-social-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ps-social-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.ps-social-loc {
  font-size: 10px;
  color: var(--text-light);
}
.ps-social-icon-ig {
  flex-shrink: 0;
}
.ps-social-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f0f0f0;
}
.ps-social-actions {
  display: flex;
  gap: 14px;
  padding: 10px 14px 6px;
}
.ps-social-caption {
  padding: 0 14px 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--dark);
}
.ps-social-likes {
  padding: 0 14px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}
.ps-channel-badges {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.ps-channel-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  color: white;
  opacity: 0;
  transform: scale(0.8);
}
.ps-badge-ig { background: #E1306C; }
.ps-badge-fb { background: #1877F2; }

/* Google Review card */
.ps-review-card {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ps-review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ps-review-source {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}
.ps-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ps-review-avatar {
  width: 36px;
  height: 36px;
  background: #e8e0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #6b4f8a;
}
.ps-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.ps-review-stars {
  font-size: 14px;
  letter-spacing: 2px;
}
.ps-review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.ps-review-response {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
  border-left: 3px solid var(--primary);
  opacity: 0;
  transform: translateY(10px);
}
.ps-review-response-header {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.ps-review-response-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  min-height: 20px;
}

/* Multi-channel grid */
.ps-multi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}
.ps-multi-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  opacity: 0;
  transform: translateY(15px) scale(0.9);
}
.ps-multi-icon {
  margin-bottom: 4px;
}
.ps-multi-channel {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.ps-multi-status {
  font-size: 11px;
  color: var(--text-light);
}
.ps-multi-check {
  font-size: 16px;
  opacity: 0;
  transform: scale(0);
}

/* Before/After comparison */
.ps-before-after {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 460px;
}
.ps-ba-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-ba-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-lighter);
  text-align: center;
  margin-bottom: 4px;
}
.ps-ba-label-new {
  color: var(--primary-dark);
}
.ps-ba-card {
  background: white;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.ps-ba-card-new {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.15), var(--shadow-sm);
}
.ps-ba-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.ps-ba-hours {
  font-size: 12px;
  color: var(--text);
  line-height: 1.7;
}
.ps-ba-hours div {
  padding: 1px 0;
}
.ps-ba-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

/* ==================== V2 CAPABILITIES ==================== */
.v2-capabilities {
  padding: 120px 0;
  background: var(--surface);
}
.v2-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.v2-feature-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.04);
}
.v2-feature-card:hover {
  border-color: rgba(16,185,129,0.15);
  box-shadow: 0 0 0 1px rgba(16,185,129,0.1), 0 2px 4px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(16,185,129,0.08);
}
.v2-feature-card-icon {
  margin-bottom: 16px;
}
.v2-feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.v2-feature-card-headline {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
}
.v2-feature-card-stat {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.v2-feature-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.v2-feature-card-points li {
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0 4px 20px;
  position: relative;
}
.v2-feature-card-points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.v2-feature-card-concept {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-color: rgba(16,185,129,0.2);
}
@media (max-width: 768px) {
  .v2-feature-cards {
    grid-template-columns: 1fr;
  }
}

/* ==================== FEATURE CARD VISUALS ==================== */
.v2-feature-card-visual {
  margin: -32px -32px 20px -32px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

/* Browser Mockup */
.feature-browser {
  background: #f8fafc;
  overflow: hidden;
}
.feature-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.feature-browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.feature-browser-dot.red { background: #fca5a5; }
.feature-browser-dot.yellow { background: #fde68a; }
.feature-browser-dot.green { background: #86efac; }
.feature-browser-url {
  font-size: 11px;
  color: #64748b;
  background: #e2e8f0;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 6px;
}
.feature-browser img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
}

/* Google Rating Mockup */
.feature-rating-mockup {
  padding: 24px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  text-align: center;
}
.feature-rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.feature-rating-score {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #202124;
  line-height: 1;
}
.feature-rating-label {
  font-size: 12px;
  color: #70757a;
  font-weight: 500;
  margin-top: 4px;
}
.feature-rating-count {
  font-size: 13px;
  color: #70757a;
  margin-top: 2px;
}
.feature-rating-bar {
  height: 4px;
  background: #e8eaed;
  border-radius: 2px;
  margin-top: 12px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.feature-rating-bar-fill {
  height: 100%;
  background: #fbbc04;
  border-radius: 2px;
}

/* Social Media Mockup */
.feature-social-mockup {
  background: white;
  border-bottom: 1px solid #efefef;
}
.feature-social-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}
.feature-social-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.feature-social-handle {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
}
.feature-social-badge {
  font-size: 10px;
  color: #3897f0;
}
.feature-social-image {
  overflow: hidden;
}
.feature-social-image img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.feature-social-actions {
  display: flex;
  gap: 12px;
  padding: 10px 12px 6px;
  color: #262626;
}
.feature-social-likes {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  padding: 0 12px 10px;
}

/* Sync Visual */
.feature-sync-visual {
  padding: 20px 24px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-sync-msg {
  background: var(--wa-light, #dcf8c6);
  padding: 8px 12px;
  border-radius: 12px 12px 2px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
}
.feature-sync-wa-icon {
  margin-right: 4px;
}
.feature-sync-arrow {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.feature-sync-platforms {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-sync-platform {
  font-size: 12px;
  font-weight: 600;
  color: var(--platform-color, var(--primary));
  background: white;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}

/* Mobile: feature visuals smaller */
@media (max-width: 768px) {
  .feature-browser img { height: 140px; }
  .feature-social-image img { height: 120px; }
  .feature-rating-score { font-size: 36px; }
}

/* ==================== V2 RESULTS ==================== */
.v2-results {
  padding: 100px 0;
  background: white;
}
.v2-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.v2-result-col {
  padding: 32px 24px;
  background: #f8fafa;
  border: 1px solid #e8eded;
  border-radius: 12px;
}
.v2-result-number,
.v2-result-number-text {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline;
}
.v2-result-plus {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}
.v2-result-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}
.v2-result-sub {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
}
@media (max-width: 1024px) {
  .v2-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .v2-results-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==================== TESTIMONIALS ==================== */
.v2-testimonials {
  padding: 80px 0;
  background: white;
}
.v2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.v2-testimonial-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease-out);
}
.v2-testimonial-card:hover {
  box-shadow: 0 0 0 1px rgba(16,185,129,0.1), 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(16,185,129,0.15);
}
.v2-testimonial-stars {
  font-size: 14px;
  margin-bottom: 12px;
}
.v2-testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px 0;
  font-style: normal;
}
.v2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.v2-testimonial-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
}
.v2-testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}

/* Animation */
.has-js .v2-testimonial-card {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive */
@media (max-width: 1024px) {
  .v2-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-testimonial-card { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 768px) {
  .v2-testimonial-grid { grid-template-columns: 1fr; }
}

/* ==================== V2 INDUSTRY VERTICALS ==================== */
.v2-verticals {
  padding: 100px 0;
  background: var(--surface);
}
.v2-verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.v2-vertical-tile {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.v2-vertical-tile:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.v2-vertical-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.v2-vertical-tile h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.v2-vertical-tile p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .v2-verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .v2-verticals-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== V2 FOUNDER ==================== */
.v2-founder {
  padding: 100px 0;
  background: white;
}
.v2-founder-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.v2-founder-photo {
  flex-shrink: 0;
}
.v2-founder-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}
.v2-founder-text blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 16px 0 24px;
  border: none;
  padding: 0;
}
.v2-founder-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.v2-founder-trust span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 50px;
}
@media (max-width: 768px) {
  .v2-founder-inner {
    flex-direction: column;
    text-align: center;
  }
  .v2-founder-trust {
    justify-content: center;
  }
}

/* ==================== V2 KIT PREVIEW ==================== */
.v2-kit {
  padding: 100px 0;
  background: var(--surface);
}
.v2-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.v2-kit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.v2-kit-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 16px;
}
.v2-kit-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.v2-kit-card p {
  font-size: 14px;
  color: var(--text-light);
}
.v2-kit-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}
.v2-kit-cta {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}
.v2-kit-cta a {
  color: var(--primary);
}
@media (max-width: 768px) {
  .v2-kit-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== V2 REVERSE TRIAL CALLOUT ==================== */
.v2-trial-callout {
  padding: 80px 0;
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
  color: white;
}
.v2-trial-callout-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.v2-trial-callout h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}
.v2-trial-callout-sub {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}
.v2-trial-checks {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.v2-trial-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}
.v2-trial-fine {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 24px;
}
.v2-trial-cta {
  background: white !important;
  color: var(--primary) !important;
  font-weight: 700;
}
.v2-trial-cta:hover {
  background: #f0fdf4 !important;
}
.v2-trial-cta svg {
  fill: var(--primary);
}

/* ==================== V2 PRICING TOGGLE ==================== */
.pricing-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.billing-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s;
}
.billing-label.active {
  color: var(--dark);
}
.billing-save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(16,185,129,0.1);
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 4px;
}
.billing-switch {
  width: 48px;
  height: 28px;
  background: var(--border);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.billing-switch.active {
  background: var(--primary);
}
.billing-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.billing-switch.active .billing-switch-thumb {
  transform: translateX(20px);
}
.v2-pricing-3col {
  grid-template-columns: repeat(3, 1fr) !important;
}
.pricing-kit-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .v2-pricing-3col {
    grid-template-columns: 1fr !important;
  }
}

.pricing-safety-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* ==================== 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 rgba(0,0,0,0.06);
}
.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 (2 COLUMNS, BENEFIT-FIRST) ==================== */
.v2-pricing {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-50) 100%);
}
.v2-pricing .section-header {
  margin-bottom: 32px;
}
.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.v2-pricing-card {
  padding: 36px;
}
.v2-pricing-card .price-amount { font-size: 48px; }

/* ==================== 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 */
/* Only hide when JS is available (progressive enhancement) */
.has-js .v2-feature-card {
  opacity: 0;
  transform: translateY(30px);
}
.has-js .v2-result-col {
  opacity: 0;
  transform: translateY(30px);
}
.has-js .v2-vertical-tile {
  opacity: 0;
  transform: translateY(20px);
}
.has-js .v2-kit-card {
  opacity: 0;
  transform: translateY(20px);
}
.has-js .v2-pricing-card,
.has-js .v2-pricing .pricing-note {
  opacity: 0;
  transform: translateY(20px);
}
.v2-bridge-text > * {
  opacity: 0;
  transform: translateY(30px);
}
.v2-bridge-visual {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.v2-bridge-visual .v2-bridge-phone {
  opacity: 0;
  transform: translateX(-40px);
}
.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; display: block; }
  .v2-chaos-pile { min-height: auto; max-width: 100%; }
  .v2-notif {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    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;
  }
  .has-js .v2-chaos-counter {
    opacity: 0;
    transform: translateY(10px);
  }
  .has-js .v2-chaos-result {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  .v2-conv-wa-bubble { white-space: normal; }

  /* Bridge */
  .v2-bridge { padding: 60px 0 20px; }
  .v2-bridge-inner { grid-template-columns: 1fr; text-align: center; }
  .v2-bridge-visual { display: block; max-width: 100%; margin: 0 auto; overflow: hidden; }
  .v2-browser-mockup { width: 100%; max-width: 480px; }
  .v2-bridge-visual .v2-bridge-phone { display: none; }
  .v2-bridge-arrow { display: none; }

  /* Stories: no sticky */
  #v2-stories { padding: 40px 0 0; }
  .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-stories-left-inner {
    transform: none !important;
  }
  .v2-story-card {
    opacity: 0;
    transform: translateY(20px);
  }
  .v2-stories-phone { display: none; }

  /* Product Showcase: no sticky */
  .ps-scroll-container { height: auto; }
  .ps-sticky {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px 24px;
  }
  .ps-progress { display: none; }
  .ps-connector { display: none; }
  .ps-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    max-height: none;
  }
  .ps-chat-area { display: none; }

  /* Mobile chat context — compact WhatsApp bubbles per result */
  .ps-mobile-chat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--wa-chat-bg, #ECE5DD);
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateY(12px);
  }
  .ps-mobile-bubble {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 88%;
    position: relative;
  }
  .ps-mobile-bubble.sent {
    background: var(--wa-green, #DCF8C6);
    color: var(--dark);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
  }
  .ps-mobile-bubble.received {
    background: white;
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  }
  .ps-mobile-bubble .ps-proaktiv-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 4px;
  }
  .ps-result-area {
    position: relative;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .ps-result {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    inset: auto;
  }
  .ps-result-label {
    opacity: 1;
    transform: none;
  }
  .ps-msg,
  .ps-channel-badge,
  .ps-multi-card,
  .ps-multi-check,
  .ps-review-response,
  .ps-ba-arrow {
    opacity: 1;
    transform: none;
  }
  .has-js .ps-result {
    opacity: 0;
    transform: translateY(20px);
  }
  .has-js .ps-result-label {
    opacity: 0;
    transform: translateY(10px);
  }
  .has-js .ps-channel-badge,
  .has-js .ps-multi-card,
  .has-js .ps-multi-check,
  .has-js .ps-review-response {
    opacity: 0;
  }
  .has-js .ps-ba-arrow {
    opacity: 0;
  }
  .has-js .ps-mobile-bubble {
    opacity: 0;
    transform: translateY(8px);
  }
  .ps-social-card,
  .ps-review-card,
  .ps-multi-grid,
  .ps-browser {
    max-width: 100%;
  }
  .ps-before-after {
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
  }
  .ps-ba-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  /* Force visibility on all V2 animated elements — no GSAP dependency on mobile */
  .hero-visual .phone,
  .v2-notif-item,
  .v2-bridge-visual,
  .v2-bridge-text > *,
  .v2-voice-text > *,
  .v2-digest-card,
  .v2-digest-row,
  .v2-digest-highlight,
  .v2-feature-card,
  .v2-result-col,
  .v2-vertical-tile,
  .v2-kit-card,
  .v2-pricing-card,
  .v2-pricing .pricing-note,
  .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;
  }

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


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

@media (max-width: 640px) {
  .v2-hero-title { font-size: 32px; }
  .v2-notif-msg { font-size: 13px; }
  .v2-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .v2-pricing-card.featured { transform: none; }
  .pricing-grid.pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .v2-digest-card { padding: 16px; }
  .v2-digest-body { padding: 14px; }
  .v2-waveform-large span { width: 4px; }
  .v2-waveform-large { gap: 3px; height: 80px; }
  .ps-multi-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ps-multi-card { padding: 12px; }
  .ps-social-card .ps-social-image { aspect-ratio: 4/3; }
}

/* ==================== MOBILE INLINE STORY PREVIEWS ==================== */
.v2-story-preview-inline {
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-top: 0;
}
.v2-story-preview-inline.revealed {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}
.v2-story-preview-inline .wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--wa-teal);
  color: white;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 13px;
}
.v2-story-preview-inline .wa-back { display: none; }
.v2-story-preview-inline .wa-avatar {
  width: 28px;
  height: 28px;
  font-size: 12px;
}
.v2-story-preview-inline .wa-body {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px 12px;
  background: var(--wa-chat-bg);
}
.v2-story-preview-inline .wa-bubble {
  font-size: 13px;
  padding: 6px 10px;
  max-width: 92%;
}
.v2-story-preview-inline .wa-input-bar { display: none; }
.has-js .v2-story-preview-inline .wa-bubble {
  opacity: 0;
  transform: translateY(8px) scale(0.95);
}

/* ==================== V1 HOW-IT-WORKS INLINE PREVIEWS (MOBILE) ==================== */
.how-preview-inline {
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-top: 0;
}
/* Remove phone-screen-layer absolute positioning in inline context */
.how-preview-inline .phone-screen-layer {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
/* Chat screen inline adjustments */
.how-preview-inline .wa-header {
  padding: 10px 12px;
  gap: 8px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.how-preview-inline .wa-back { display: none; }
.how-preview-inline .wa-avatar {
  width: 28px;
  height: 28px;
  font-size: 12px;
}
.how-preview-inline .wa-body {
  padding: 10px 12px;
  gap: 6px;
  max-height: none;
  overflow: visible;
}
.how-preview-inline .wa-bubble {
  font-size: 13px;
  padding: 7px 10px;
  max-width: 90%;
}
.how-preview-inline .wa-input-bar { display: none; }
/* Build screen inline adjustments */
.how-preview-inline .build-screen {
  height: auto;
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  gap: 12px;
}
.how-preview-inline .build-icon svg {
  width: 36px;
  height: 36px;
}
.how-preview-inline .build-title {
  font-size: 13px;
}
.how-preview-inline .build-task {
  font-size: 13px;
}
.how-preview-inline .build-progress {
  padding: 0;
}
/* Mini website inline adjustments */
.how-preview-inline .mini-website {
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.how-preview-inline .mini-nav {
  padding: 10px 12px;
}
.how-preview-inline .mini-hero {
  height: 140px;
}
.how-preview-inline .mini-services {
  padding: 12px;
}
.how-preview-inline .mini-footer {
  padding: 10px 12px;
}

/* .has-js hidden states for inline preview elements */
.has-js .how-preview-inline .wa-bubble,
.has-js .how-preview-inline .chat-msg {
  opacity: 0;
  transform: translateY(8px) scale(0.95);
}
.has-js .how-preview-inline .build-task {
  opacity: 0;
  transform: translateX(-10px);
}
.has-js .how-preview-inline .build-progress-fill {
  width: 0% !important;
}
.has-js .how-preview-inline .build-progress-text {
  opacity: 0;
}
.has-js .how-preview-inline .mini-nav,
.has-js .how-preview-inline .mini-hero,
.has-js .how-preview-inline .mini-services,
.has-js .how-preview-inline .mini-footer,
.has-js .how-preview-inline .mini-website-img {
  opacity: 0;
  transform: translateY(10px);
}

/* ==================== SOCIAL PROOF BAR ==================== */
.social-proof-bar {
  background: var(--surface, #F8FAFC);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
}
.social-proof-bar .proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-proof-bar .proof-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light, #64748B);
  letter-spacing: 0.02em;
}
.social-proof-bar .proof-divider {
  color: var(--border, #E2E8F0);
  font-size: 13px;
}
@media (max-width: 640px) {
  .social-proof-bar .proof-divider { display: none; }
  .social-proof-bar .proof-items { gap: 8px 16px; }
  .social-proof-bar .proof-item { font-size: 12px; }
}

/* ==================== VOICE EXAMPLE ==================== */
.v2-voice-example {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light, #64748B);
}

/* ==================== LEAD FORM SECTION ==================== */
.lead-form-section {
  padding: 80px 0;
  background: var(--bg);
}

.lead-form-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 520px;
  margin: 0 auto;
}

/* Step indicator */
.lead-form-steps { margin-bottom: 32px; }
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg);
  transition: all 0.3s ease;
}
.step-dot.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.step-dot.done {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  transition: background 0.3s ease;
}
.step-line.active {
  background: var(--primary);
}

/* Form steps */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

/* Form groups */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-optional {
  font-weight: 400;
  color: var(--text-light);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--danger);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-error {
  display: none;
  font-size: 13px;
  color: var(--danger);
  margin-top: 4px;
}
.form-error.visible {
  display: block;
}
.form-hint {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  flex: 1;
}
.form-checkbox label a {
  color: var(--primary);
  text-decoration: underline;
}
.form-checkbox .form-error {
  width: 100%;
}

/* Back button */
.lead-form-back {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}
.lead-form-back:hover {
  color: var(--text);
}

/* Success state */
.lead-form-success {
  text-align: center;
  padding: 24px 0;
}
.success-checkmark {
  margin-bottom: 16px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.lead-form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.lead-form-success p {
  color: var(--text-light);
  font-size: 16px;
}
.lead-success-wa {
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}
.lead-success-cta {
  margin-top: 20px;
  display: inline-block;
}

/* Reveal animation (hidden state for GSAP) */
.has-js .lead-form-card {
  opacity: 0;
  transform: translateY(30px);
}

/* Mobile */
@media (max-width: 768px) {
  .lead-form-card {
    padding: 32px 24px;
  }
  .lead-form-section {
    padding: 60px 0;
  }
}

/* ==================== EMAIL ALTERNATIVE LINKS ==================== */
.email-alt-link {
  color: var(--text-light);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.email-alt-link:hover {
  color: var(--primary);
}
.email-alt-pricing {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
}
.email-alt-final {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.email-alt-final:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ==================== ANTI-SCRAPING (Legal Pages) ==================== */
.legal-protect { position: relative; }
.lp-vis { display: none; }
.legal-protect::after {
  content: attr(data-c);
  display: inline;
}
.lp-rtl {
  direction: rtl;
  unicode-bidi: bidi-override;
  display: inline-block;
}

/* ==================== UPSELL TEASER (website.html) ==================== */
.upsell-section {
  padding: 80px 0 40px;
  background: var(--surface, #F8FAFC);
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.upsell-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border, #E2E8F0);
  transition: box-shadow 0.2s;
}
.upsell-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.upsell-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(16,185,129,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.upsell-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.upsell-card p {
  font-size: 0.9375rem;
  color: var(--text-light, #64748B);
  line-height: 1.6;
}
.upsell-cta {
  text-align: center;
  margin-top: 32px;
}
.has-js .upsell-card {
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .upsell-grid { grid-template-columns: 1fr; gap: 16px; }
  .upsell-section { padding: 60px 0 30px; }
}

/* ==================== 3-COL PRICING GRID (website.html) ==================== */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ==================== BEWERTUNGEN PAGE (.bew- prefix) ==================== */
.bew-hero { padding: 140px 0 80px; text-align: center; }
.bew-hero .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(16,185,129,.1); color: var(--primary); font-size: 14px; font-weight: 600; margin-bottom: 24px; }
.bew-hero .badge-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.bew-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.bew-hero .hero-sub { font-size: 18px; color: var(--text-light); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.bew-hero .hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bew-hero .hero-note { font-size: 13px; color: var(--text-lighter); }

.bew-pain { padding: 80px 0; background: var(--surface); }
.bew-pain .section-header { text-align: center; margin-bottom: 48px; }
.bew-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bew-pain-card { background: var(--bg); border-radius: 16px; padding: 32px; border: 1px solid var(--border); }
.has-js .bew-pain-card { opacity: 0; transform: translateY(20px); }
.bew-pain-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(239,68,68,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bew-pain-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bew-pain-card p { color: var(--text-light); font-size: 15px; line-height: 1.6; }

.bew-solution { padding: 80px 0; }
.bew-solution .section-header { text-align: center; margin-bottom: 48px; }
.bew-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.bew-solution-step { text-align: center; }
.has-js .bew-solution-step { opacity: 0; transform: translateY(20px); }
.bew-solution-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0 auto 16px; }
.bew-solution-step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bew-solution-step p { color: var(--text-light); font-size: 15px; line-height: 1.6; }

.bew-result { padding: 60px 0; background: var(--dark); color: #fff; text-align: center; }
.bew-result-number { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; }
.bew-result-number span { color: var(--primary); }
.bew-result p { font-size: 18px; color: rgba(255,255,255,.7); margin-top: 8px; max-width: 480px; margin-left: auto; margin-right: auto; }
.bew-result-substats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.bew-result-substats span { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.85); }
.bew-result-source { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 12px; }

.bew-demo { padding: 80px 0; background: var(--surface); }
.bew-demo .section-header { text-align: center; margin-bottom: 48px; }
.bew-flow { display: flex; flex-direction: column; gap: 0; max-width: 640px; margin: 0 auto; position: relative; }
.bew-flow::before { content: ''; position: absolute; left: 24px; top: 24px; bottom: 24px; width: 2px; background: var(--border); }
.bew-flow-step { display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; opacity: 0; transform: translateY(20px); position: relative; }
.bew-flow-dot { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--bg); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--primary); z-index: 1; }
.bew-flow-content h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.bew-flow-content p { color: var(--text-light); font-size: 15px; line-height: 1.5; }

.bew-trust { padding: 80px 0; }
.bew-trust .container { max-width: 640px; text-align: center; }
.bew-trust-quote { background: var(--surface); border-radius: 16px; padding: 40px; border: 1px solid var(--border); margin-bottom: 32px; opacity: 0; transform: translateY(20px); }
.bew-trust-quote blockquote { font-size: 18px; line-height: 1.6; font-style: italic; color: var(--text); margin-bottom: 16px; }
.bew-trust-quote cite { font-style: normal; font-weight: 600; color: var(--text-light); }
.bew-trust-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.bew-trust-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-light); }

.bew-pricing { padding: 80px 0; background: var(--surface); }
.bew-pricing .section-header { text-align: center; margin-bottom: 48px; }
.bew-pricing-table { width: 100%; border-collapse: collapse; background: var(--bg); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); opacity: 0; transform: translateY(20px); }
.bew-pricing-table th, .bew-pricing-table td { padding: 14px 16px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--border); }
.bew-pricing-table thead th { background: var(--dark); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.bew-pricing-table thead th:first-child { text-align: left; }
.bew-pricing-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.bew-pricing-table tbody td { color: var(--text-light); }
.bew-pricing-table .bew-highlight { background: rgba(16,185,129,.06); }
.bew-pricing-table thead th.bew-highlight { background: var(--primary); }
.bew-pricing-cta { text-align: center; margin-top: 32px; }

.bew-kontakt { padding: 80px 0; }
.bew-kontakt .section-header { text-align: center; margin-bottom: 32px; }
.bew-email-form { max-width: 480px; margin: 0 auto; }
.bew-form-row { display: flex; gap: 12px; margin-bottom: 16px; }
.bew-form-row input { flex: 1; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; font-family: var(--font-body); background: var(--bg); color: var(--text); }
.bew-form-row input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.bew-form-note { text-align: center; font-size: 13px; color: var(--text-lighter); margin-top: 12px; }
.btn-full { width: 100%; }

@media (max-width: 768px) {
  .bew-pain-grid { grid-template-columns: 1fr; }
  .bew-solution-grid { grid-template-columns: 1fr; }
  .bew-pricing-table { font-size: 13px; }
  .bew-pricing-table th, .bew-pricing-table td { padding: 10px 8px; }
  .bew-form-row { flex-direction: column; }
  .bew-pain-card, .bew-solution-step, .bew-flow-step,
  .bew-trust-quote, .bew-pricing-table { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 1024px) {
  .bew-pain-card, .bew-solution-step, .bew-flow-step,
  .bew-trust-quote, .bew-pricing-table { opacity: 1 !important; transform: none !important; }
}

/* ==================== V2 PORTFOLIO MOBILE ==================== */
@media (max-width: 768px) {
  .v2-portfolio-grid { grid-template-columns: 1fr; }
  .v2-portfolio { padding: 80px 0; }
}
@media (max-width: 1024px) {
  .v2-portfolio-card { opacity: 1 !important; transform: none !important; }
  .v2-how-step { opacity: 1 !important; transform: none !important; }
  .v2-pricing-comparison { opacity: 1 !important; transform: none !important; }
}

/* ==================== PRICING ANCHOR + EXTRAS TOGGLE ==================== */
.v2-pricing-anchor {
  font-style: italic;
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-top: 8px;
}
.v2-pricing-extras {
  text-align: center;
  margin-top: 32px;
}
.v2-pricing-extras-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.v2-pricing-extras-toggle:hover {
  background: var(--primary);
  color: white;
}
.v2-pricing-extras-chevron {
  transition: transform 0.3s var(--ease-out);
}
.v2-pricing-extras-content {
  display: none;
  margin-top: 24px;
}
.v2-pricing-extras-content.open {
  display: block;
}
.v2-pricing-extras-table {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
.v2-pricing-extras-table th,
.v2-pricing-extras-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.v2-pricing-extras-table th {
  background: var(--dark);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.v2-pricing-extras-table th:first-child,
.v2-pricing-extras-table td:first-child {
  text-align: left;
}
.v2-pricing-extras-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}
.v2-pricing-extras-table tbody td {
  color: var(--text-light);
}
.v2-pricing-extras-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 640px) {
  .v2-pricing-extras-table { font-size: 13px; }
  .v2-pricing-extras-table th,
  .v2-pricing-extras-table td { padding: 8px 10px; }
  .v2-pricing-anchor { font-size: 14px; }
}

/* ==================== COMPETITOR COMPARISON ==================== */
.v2-pricing-comparison {
  max-width: 520px;
  margin: 0 auto 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.v2-comparison-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem 0.5rem;
}
.v2-comparison-stack {
  padding: 0 1.5rem;
}
.v2-comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: var(--text);
}
.v2-comparison-row:last-child {
  border-bottom: none;
}
.v2-comparison-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
}
.v2-comparison-total {
  border-top: 2px solid var(--border);
  border-bottom: none;
  padding-top: 0.75rem;
  font-weight: 700;
  color: var(--danger);
}
.v2-comparison-total span:last-child {
  font-size: 1.1rem;
  color: var(--danger);
}
.v2-comparison-vs {
  background: var(--primary-50);
  padding: 1rem 1.5rem;
  text-align: center;
  border-top: 2px solid var(--primary);
}
.v2-comparison-klaro {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.v2-comparison-save {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 700;
}
.has-js .v2-pricing-comparison {
  opacity: 0;
  transform: translateY(20px);
}
@media (max-width: 480px) {
  .v2-pricing-comparison { margin: 0 0 1.5rem; }
  .v2-comparison-row { font-size: 0.85rem; }
  .v2-comparison-title { font-size: 0.8rem; }
}

/* ==================== HOW IT WORKS (v2-how) ==================== */
.v2-how {
  padding: 100px 0;
  background: var(--bg);
}
.v2-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.v2-how-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.has-js .v2-how-step {
  opacity: 0;
  transform: translateY(20px);
}
.v2-how-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.v2-how-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.v2-how-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .v2-how-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ==================== SPOKE NAV CROSSLINK ==================== */
.nav-crosslink {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-crosslink:hover {
  opacity: 0.8;
}

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

/* ==================== TYPING INDICATOR COMPONENT ==================== */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: white;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.typing-dot {
  width: 8px;
  height: 8px;
  background: #94A3B8;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ==================== WORD-BY-WORD HERO REVEAL (SplitText mask) ==================== */
/* SplitText 3.13 with mask:'words' handles overflow clipping automatically.
   We just need to ensure the title-line stays visible (GSAP hides words via mask). */
.has-js .v2-hero-title .title-line {
  opacity: 1;
  transform: none;
}

/* ==================== CLIP-PATH SECTION REVEALS ==================== */
.has-js .clip-reveal {
  clip-path: inset(8% 0 8% 0);
  opacity: 0;
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.has-js .clip-reveal.visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* ==================== INTERACTIVE WHATSAPP DEMO ==================== */
.v2-demo {
  padding: 100px 0;
  background: var(--bg);
}
.v2-demo-phone {
  max-width: 340px;
  margin: 0 auto 32px;
  background: #1A1A2E;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, var(--shadow-xl);
  padding: 8px;
  position: relative;
}
.v2-demo-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #1A1A2E;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.v2-demo-phone::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #2a2a45;
  border-radius: 50%;
  z-index: 11;
}
.v2-demo-phone > .v2-demo-wa-header {
  border-radius: 28px 28px 0 0;
}
.v2-demo-phone > .v2-demo-chat {
  border-radius: 0 0 28px 28px;
}
.v2-demo-wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--wa-teal);
  color: white;
}
.v2-demo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.v2-demo-info { flex: 1; }
.v2-demo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.v2-demo-status {
  font-size: 12px;
  opacity: 0.8;
}
.v2-demo-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  margin-right: 4px;
}
.v2-demo-chat {
  padding: 16px;
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--wa-chat-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4cdc4' fill-opacity='0.25'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1'/%3E%3Ccircle cx='30' cy='60' r='1.2'/%3E%3Ccircle cx='70' cy='50' r='0.8'/%3E%3Ccircle cx='60' cy='75' r='1'/%3E%3Ccircle cx='20' cy='35' r='0.7'/%3E%3Ccircle cx='75' cy='15' r='1.1'/%3E%3Ccircle cx='40' cy='45' r='0.9'/%3E%3C/g%3E%3C/svg%3E");
  scroll-behavior: smooth;
}
.v2-demo-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.6;
  gap: 8px;
}
.v2-demo-welcome-icon {
  font-size: 32px;
  opacity: 0.6;
}
.v2-demo-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.v2-demo-msg.sent {
  align-self: flex-end;
  background: var(--wa-light);
  color: var(--dark);
  border-bottom-right-radius: 2px;
}
.v2-demo-msg.received {
  align-self: flex-start;
  background: white;
  color: var(--dark);
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.v2-demo-msg-enter {
  clip-path: inset(100% 0 0 0);
  animation: demoMsgReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes demoMsgReveal {
  to { clip-path: inset(0 0 0 0); }
}
.v2-demo-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(16,185,129,0.08);
  border-radius: 8px;
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 4px;
}
.v2-demo-result-icon {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.has-js .v2-demo-phone {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}
.has-js .v2-demo-chip {
  opacity: 0;
  transform: translateY(15px);
}
.v2-demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}
.v2-demo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.v2-demo-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}
.v2-demo-chip:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border) !important;
  color: var(--text-lighter) !important;
}
.v2-demo-chip-icon {
  font-size: 18px;
  line-height: 1;
}

/* ==================== PLATFORM SYNC FLOW ==================== */
.v2-sync {
  padding: 100px 0;
  background: var(--surface);
  overflow: hidden;
}
.v2-sync-container {
  height: 400vh;
}
.v2-sync-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.v2-sync-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.v2-sync-phone {
  max-width: 280px;
  margin: 0 auto;
}
.v2-sync-wa {
  background: #1A1A2E;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, var(--shadow-lg), 0 0 60px rgba(16,185,129,0.08);
  padding: 8px;
  position: relative;
}
.v2-sync-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: #1A1A2E;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}
.v2-sync-wa::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: #2a2a45;
  border-radius: 50%;
  z-index: 11;
}
.v2-sync-wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--wa-teal);
  color: white;
  border-radius: 28px 28px 0 0;
}
.v2-sync-wa-body {
  padding: 16px;
  min-height: 200px;
  background-color: var(--wa-chat-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4cdc4' fill-opacity='0.25'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1'/%3E%3Ccircle cx='30' cy='60' r='1.2'/%3E%3Ccircle cx='70' cy='50' r='0.8'/%3E%3Ccircle cx='60' cy='75' r='1'/%3E%3Ccircle cx='20' cy='35' r='0.7'/%3E%3Ccircle cx='75' cy='15' r='1.1'/%3E%3Ccircle cx='40' cy='45' r='0.9'/%3E%3C/g%3E%3C/svg%3E");
  border-radius: 0 0 28px 28px;
}
.v2-sync-typing {
  opacity: 0;
}
.v2-sync-msg {
  background: var(--wa-light);
  padding: 10px 14px;
  border-radius: 12px 12px 2px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  max-width: 90%;
  margin-left: auto;
  opacity: 0;
}
.v2-sync-msg-time {
  font-size: 11px;
  color: var(--text-lighter);
  text-align: right;
  margin-top: 4px;
}
.v2-sync-ripple {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.v2-sync-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v2-sync-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  opacity: 0.4;
  filter: blur(4px);
  transition: all 0.6s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.v2-sync-card.active {
  opacity: 1;
  filter: blur(0);
}
.v2-sync-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.v2-sync-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-sync-card-icon.website { background: rgba(16,185,129,0.12); color: var(--primary); }
.v2-sync-card-icon.google { background: rgba(66,133,244,0.12); color: #4285F4; }
.v2-sync-card-icon.instagram { background: rgba(225,48,108,0.12); color: #E1306C; }
.v2-sync-card-icon.facebook { background: rgba(24,119,242,0.12); color: #1877F2; }
.v2-sync-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.v2-sync-card-content {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.v2-sync-card-skeleton {
  height: 12px;
  background: linear-gradient(90deg, var(--border) 25%, #f1f5f9 50%, var(--border) 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  margin-bottom: 8px;
  animation: skeletonShimmer 1.5s infinite;
}
.v2-sync-card.active .v2-sync-card-skeleton { display: none; }
.v2-sync-card-text { display: none; }
.v2-sync-card.active .v2-sync-card-text { display: block; }
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.v2-sync-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.v2-sync-card.active .v2-sync-card-glow { opacity: 1; }
.v2-sync-card-glow.website { box-shadow: inset 0 0 0 2px rgba(16,185,129,0.5), 0 0 20px rgba(16,185,129,0.15); }
.v2-sync-card-glow.google { box-shadow: inset 0 0 0 2px rgba(66,133,244,0.5), 0 0 20px rgba(66,133,244,0.15); }
.v2-sync-card-glow.instagram { box-shadow: inset 0 0 0 2px rgba(225,48,108,0.5), 0 0 20px rgba(225,48,108,0.15); }
.v2-sync-card-glow.facebook { box-shadow: inset 0 0 0 2px rgba(24,119,242,0.5), 0 0 20px rgba(24,119,242,0.15); }

.v2-sync-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.v2-sync-path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  opacity: 0.6;
}
.v2-sync-dot {
  fill: var(--primary);
  filter: url(#syncGlow);
}
.v2-sync-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  color: var(--text-light);
  opacity: 0;
}
.v2-sync-caption strong { color: var(--dark); }

/* Sync flow mobile */
@media (max-width: 1024px) {
  .v2-sync-container { height: auto; }
  .v2-sync-sticky {
    position: relative;
    height: auto;
    padding: 0;
  }
  .v2-sync-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v2-sync-svg { display: none; }
  .v2-sync-phone { max-width: 320px; }
  .v2-sync-msg { opacity: 1; }
  .v2-sync-typing { display: none; }
  .v2-sync-cards { gap: 12px; }
  .v2-sync-card {
    filter: none !important;
    border-left: 3px solid var(--border);
    opacity: 1;
  }
  .has-js .v2-sync-card {
    opacity: 0;
    transform: translateY(20px);
  }
  .v2-sync-card.card-website { border-left-color: var(--primary); }
  .v2-sync-card.card-google { border-left-color: #4285F4; }
  .v2-sync-card.card-instagram { border-left-color: #E1306C; }
  .v2-sync-card.card-facebook { border-left-color: #1877F2; }
  .v2-sync-card-skeleton { display: none; }
  .v2-sync-card-text { display: block; }
  .v2-sync-card-glow { display: none; }
  .v2-sync-caption { opacity: 0; }
  .has-js .v2-sync-caption {
    opacity: 0;
    transform: translateY(10px);
  }
  .v2-sync-ripple { display: none; }
}

/* ==================== GOOGLE MAPS RANKING RISE ==================== */
.bew-ranking {
  padding: 100px 0;
  background: var(--surface);
  overflow: hidden;
}
.bew-ranking-container {
  height: 350vh;
}
.bew-ranking-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bew-ranking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.bew-maps-mockup {
  background: var(--surface);
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bew-maps-searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #e8eaed;
  font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.bew-maps-search-icon {
  width: 20px;
  height: 20px;
  color: #4285F4;
  flex-shrink: 0;
}
.bew-maps-search-text {
  font-size: 15px;
  color: #202124;
}
.bew-maps-list {
  padding: 8px 0;
}
.bew-maps-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.bew-maps-item.target {
  border-left: 3px solid var(--primary);
  background: rgba(16,185,129,0.04);
}
.bew-maps-rank {
  font-size: 13px;
  font-weight: 600;
  color: #70757a;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.bew-maps-item.target .bew-maps-rank { color: var(--primary); }
.bew-maps-details { flex: 1; min-width: 0; }
.bew-maps-name {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bew-maps-item.target .bew-maps-name { font-weight: 700; color: var(--dark); }
.bew-maps-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.bew-maps-stars {
  display: inline-flex;
  gap: 1px;
}
.bew-maps-star {
  width: 14px;
  height: 14px;
}
.bew-maps-rating {
  font-size: 13px;
  color: #70757a;
}
.bew-maps-reviews {
  font-size: 13px;
  color: #70757a;
}

/* Review cards (right side) */
.bew-ranking-reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.bew-ranking-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  max-width: 300px;
  opacity: 0;
  transform: translateX(40px) rotate(0deg);
  box-shadow: var(--shadow-sm);
}
.bew-ranking-review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.bew-ranking-review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}
.bew-ranking-review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.bew-ranking-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}
.bew-ranking-review-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}
.bew-ranking-counter {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-light);
  opacity: 0;
}
.bew-ranking-counter strong { color: var(--dark); }

/* Ranking mobile: before/after */
@media (max-width: 1024px) {
  .bew-ranking-container { height: auto; }
  .bew-ranking-sticky {
    position: relative;
    height: auto;
    padding: 0;
  }
  .bew-ranking-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bew-ranking-reviews { display: none; }
  .bew-ranking-ba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
  }
  .bew-ranking-ba-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
  }
  .has-js .bew-ranking-ba-card {
    opacity: 0;
    transform: translateY(20px);
  }
  .bew-ranking-counter { opacity: 0; }
  .has-js .bew-ranking-counter {
    opacity: 0;
    transform: translateY(10px);
  }
  .bew-ranking-ba-card.before { border-top: 3px solid var(--danger); }
  .bew-ranking-ba-card.after { border-top: 3px solid var(--primary); }
  .bew-ranking-ba-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .bew-ranking-ba-card.before .bew-ranking-ba-label { color: var(--danger); }
  .bew-ranking-ba-card.after .bew-ranking-ba-label { color: var(--primary); }
  .bew-ranking-ba-rank {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
  }
  .bew-ranking-ba-rating {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
  }
  .bew-maps-mockup { display: none; }
}
@media (min-width: 1025px) {
  .bew-ranking-ba { display: none; }
}

/* ==================== MAGNETIC CTA BUTTONS ==================== */
.btn-magnetic {
  will-change: transform;
}

@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;
  }
  .has-js .v2-hero-title .split-word { transform: none !important; clip-path: none !important; }
  .has-js .clip-reveal { clip-path: none !important; opacity: 1 !important; }
  body::after { display: none; }
}
