/* ═══════════════════════════════════════════════════════════════
   AI-SMM Landing v2 — Shared Stylesheet
   Visual style: AI SMM Agent page aesthetic
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #f5f6fa;
  --text: #0f172a;
  --muted: #475569;
  --card: rgba(255, 255, 255, 0.82);
  --border: rgba(148, 163, 184, 0.3);
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #7c3aed;
  --accent-light: rgba(124, 58, 237, 0.08);
  --green: #22c55e;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 40px 80px rgba(15, 23, 42, 0.18);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font-body: "Manrope", "Aptos", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Trebuchet MS", "Aptos", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 50%, #fdf2f8 100%);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.hero-h1,
.section-heading h2,
.nav-logo-text {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.page { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }

/* Reserve shell space before deferred header/footer runtime hydrates placeholders. */
[data-site-header] {
  display: block;
  min-height: 68px;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 28px;
  position: relative;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Flat nav (variant A) */
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { background: rgba(37, 99, 235, 0.07); color: var(--primary); }
.nav-links a.nav-active { color: var(--primary); background: rgba(37, 99, 235, 0.09); font-weight: 600; }

/* Dropdown nav (variant B) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  font-family: inherit;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  background: rgba(37, 99, 235, 0.07);
  color: var(--primary);
}

.nav-dropdown-trigger svg {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}

.nav-dropdown-item:hover { background: rgba(37, 99, 235, 0.05); }

.nav-dropdown-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
}

.nav-dropdown-item-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.nav-dropdown-item-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.language-switcher label { font-weight: 600; font-size: 12px; }

.language-switcher select {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 6px 12px;
  background: rgba(255,255,255,0.85);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.language-switcher select:focus { border-color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.38);
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255,255,255,0.8);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.10);
  background: white;
}

.btn-large { font-size: 17px; padding: 16px 36px; }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(37,99,235,0.3);
}

.btn-ghost:hover {
  background: rgba(37,99,235,0.06);
  border-color: var(--primary);
}

/* ══════════════════════════════════════════
   BADGE / EYEBROW
   ══════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37,99,235,0.09), rgba(124,58,237,0.09));
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
  width: fit-content;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ══════════════════════════════════════════
   SECTION HEADING
   ══════════════════════════════════════════ */

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   HERO — GRADIENT BANNER STYLE
   ══════════════════════════════════════════ */

.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 72px;
}

.hero-v2-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-v2 h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}

.hero-v2-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-v2-stats {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0 0;
  margin-top: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.88);
}
.stat-number { font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.stat-divider { display: none; }

/* ══════════════════════════════════════════
   PHONE MOCKUP
   ══════════════════════════════════════════ */

.hero-v2-visual { display: flex; justify-content: center; }

.hero-v2-home {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 4vw, 56px);
  align-items: start;
  position: relative;
  padding: 44px 38px 48px;
  border-radius: 36px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.24), transparent 26%),
    radial-gradient(circle at bottom right, rgba(14,165,233,0.18), transparent 24%),
    linear-gradient(135deg, rgba(15,23,42,0.98), rgba(30,41,59,0.96) 52%, rgba(16,24,40,0.98));
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.hero-v2-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 85%);
  pointer-events: none;
}

.hero-v2-home::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.28), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-v2-home .hero-v2-content {
  max-width: 544px;
  gap: 14px;
  position: relative;
  padding-left: 22px;
  z-index: 1;
}

.hero-v2-home .hero-v2-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.86), rgba(59, 130, 246, 0.24));
}

.hero-v2-home .badge-group {
  justify-content: flex-start;
  margin-left: 0;
}

.hero-v2-home h1 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #f8fbff;
  text-wrap: balance;
  max-width: 11.5ch;
  text-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

.hero-v2-home .badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(191, 219, 254, 0.18);
  color: rgba(239, 246, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-v2-home .hero-v2-sub {
  max-width: 45ch;
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(226,232,240,0.82);
}

.hero-v2-home .hero-v2-visual {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 10px;
  padding-right: 4px;
  z-index: 1;
  position: relative;
  min-height: 520px;
}

.hero-v2-home .hero-v2-stats {
  gap: 10px;
  max-width: 440px;
}

.hero-v2-home .hero-v2-actions {
  align-items: center;
}

.hero-v2-home .stat-item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(191, 219, 254, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-v2-home .pipeline-mockup {
  transform: scale(0.982);
  transform-origin: top right;
  box-shadow: 0 28px 54px rgba(2, 6, 23, 0.28);
  position: relative;
  z-index: 1;
}

.hero-visual-backdrop {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 560px);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  pointer-events: none;
}

.hero-backdrop-art {
  width: min(100%, 560px);
  height: auto;
  opacity: 0.94;
  transform: translate(26px, -8px);
  filter: saturate(1.02) contrast(1.04);
}

.hero-v2-home .btn-primary {
  min-width: 256px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #0f172a;
  box-shadow: 0 18px 34px rgba(14, 165, 233, 0.16);
}

.hero-v2-home .btn-primary:hover {
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
  color: #020617;
  box-shadow: 0 24px 42px rgba(14, 165, 233, 0.22);
}

.hero-v2-home .btn-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(191, 219, 254, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  color: rgba(226,232,240,0.88);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 16px;
  gap: 6px;
  border-radius: 999px;
}

.hero-v2-home .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transform: none;
  color: #ffffff;
}

.hero-v2-home .btn-secondary::after {
  content: "→";
  font-size: 13px;
  line-height: 1;
  color: rgba(191, 219, 254, 0.88);
}

.hero-microproof {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  width: min(100%, 33rem);
  padding: 11px 14px;
  border-radius: 18px;
  border: 1px solid rgba(191, 219, 254, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 12.5px;
  line-height: 1.56;
  color: rgba(226,232,240,0.76);
}

.hero-microproof::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #0f766e);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.05);
  flex-shrink: 0;
}

.phone-mockup {
  width: 300px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
}

.phone-notch {
  width: 110px; height: 26px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.phone-screen {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  margin-top: -13px;
}

.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.chat-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}

.chat-name { font-weight: 600; font-size: 14px; }
.chat-status { font-size: 11px; opacity: 0.8; }

.chat-messages {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.chat-msg:nth-child(1) { animation-delay: 0.2s; }
.chat-msg:nth-child(2) { animation-delay: 0.7s; }
.chat-msg:nth-child(3) { animation-delay: 1.2s; }
.chat-msg:nth-child(4) { animation-delay: 1.7s; }
.chat-msg:nth-child(5) { animation-delay: 2.2s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
  background: #f0f2f5;
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #9ca3af;
}

/* ══════════════════════════════════════════
   PLATFORMS BAR
   ══════════════════════════════════════════ */

.platforms-bar {
  text-align: center;
  padding: 8px 0 48px;
}

.platforms-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.platform-pill {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(6px);
}

.platforms-bar .platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platform-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,23,42,0.08); }

/* ══════════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════════ */

.features-section { padding: 44px 0; }

.pipeline-section {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  padding: 56px 32px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.038);
}

.pipeline-section .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pipeline-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.04) 62%, transparent);
}

.pipeline-section-steps {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,250,252,0.94));
}

.pipeline-section-flow {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(246,250,255,0.94));
}

.section-heading-story {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 32px;
  padding-left: 18px;
  position: relative;
}

.section-heading-story::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.42), rgba(15, 118, 110, 0.12));
}

.section-heading-story p {
  margin: 0;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.72;
}

.section-heading-story-center {
  text-align: center;
  padding-top: 14px;
  padding-left: 0;
}

.section-heading-story-center::before {
  left: 50%;
  top: 0;
  bottom: auto;
  width: 64px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.34), rgba(37, 99, 235, 0.08));
}

.section-heading-story-center h2,
.section-heading-story-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading-story-center h2 {
  max-width: 18ch;
}

.section-heading-left {
  text-align: left;
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-heading-left p {
  margin: 0;
  max-width: 640px;
}

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

#benefits .features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

#benefits .feature-highlight {
  grid-column: span 1;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(219,234,254,0.35));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }

.feature-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(124,58,237,0.06));
  border-color: rgba(37,99,235,0.18);
}

.feature-icon { font-size: 32px; }
.feature-card h3 { font-size: 16px; font-weight: 700; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.feature-tag {
  display: inline-flex;
  width: fit-content;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  margin-top: auto;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.pipeline-section-flow .flow-track {
  position: relative;
  gap: 18px;
}

.pipeline-section-flow .flow-track::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.14), rgba(37, 99, 235, 0.26), rgba(37, 99, 235, 0.14));
}

.flow-step-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.94));
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
}

.flow-step-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.28), rgba(124, 58, 237, 0.12));
}

.flow-step-card:last-child::after {
  display: none;
}

.flow-step-primary {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(219,234,254,0.42));
  border-color: rgba(37, 99, 235, 0.22);
}

.pipeline-section-flow .flow-step-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,252,0.94));
}

.pipeline-section-flow .flow-step-primary {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(232,242,255,0.56));
}

.flow-step-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.flow-step-card h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 750;
}

.flow-step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
}

.extensions-section {
  padding: 20px 0 44px;
}

.extensions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.extension-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,250,252,0.96));
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.026);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.extension-card-lead {
  position: relative;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  padding: 26px 26px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,248,251,0.95));
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.028);
}

.extension-card-lead::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0.06) 58%, transparent);
}

.extension-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  color: #1e3a8a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(37,99,235,0.14);
}

.extension-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.extension-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.038);
  border-color: rgba(37, 99, 235, 0.16);
}

.extension-card strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.extension-card-lead strong {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 680px;
}

.extension-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.extension-icon,
.extension-visual {
  position: relative;
  width: 78px;
  min-height: 78px;
  border-radius: 22px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(239,246,255,0.9), rgba(255,255,255,0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.extension-card-lead .extension-visual {
  width: 100%;
  min-height: 236px;
  border-radius: 26px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.94), rgba(15,23,42,0.86));
  border-color: rgba(96, 165, 250, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 34px rgba(15, 23, 42, 0.12);
}

.extension-icon::before,
.extension-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.24), rgba(37, 99, 235, 0.04) 62%, transparent);
}

.extension-icon-symbol {
  display: none;
}

.extension-icon {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.9), rgba(15,23,42,0.82));
  border-color: rgba(96, 165, 250, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 12px 24px rgba(15, 23, 42, 0.08);
}

.extension-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 8px 20px rgba(15, 23, 42, 0.22);
}

.extension-icon-telegram::after {
  background-position: center;
}

.extension-icon-topics::after {
  background-position: center;
}

.extension-icon-languages::after {
  background-position: center, left bottom;
}

.extension-icon-analytics::after {
  background-position: center, right bottom;
}

.extension-visual {
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  gap: 0;
}

.extension-visual-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extension-visual-chip {
  width: 34px;
  height: 34px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.74);
}

.extension-visual-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.extension-visual-line-main {
  width: 82px;
  background: rgba(37, 99, 235, 0.18);
}

.extension-visual-line-short {
  width: 58px;
}

/* ══════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════ */

.steps-section { padding: 44px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 28px 24px 26px;
  text-align: left;
  display: grid;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-number {
  width: 38px; height: 38px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em;
}

.step-card h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

.step-connector {
  display: none;
}

/* ══════════════════════════════════════════
   PROBLEM / SOLUTION CARDS
   ══════════════════════════════════════════ */

.problem-solution {
  padding: 44px 0;
}

.pipeline-bridge {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  padding: 48px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,250,252,0.94));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.038);
}

.pipeline-bridge .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pipeline-bridge .section-heading-story h2 {
  max-width: 18ch;
}

.pipeline-bridge .section-heading-story p {
  max-width: 62ch;
}

.pipeline-bridge::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.04) 62%, transparent);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ps-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 24px 24px 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.045);
}

.ps-card.problem { border-left: 4px solid #ef4444; }
.ps-card.solution { border-left: 4px solid var(--green); }

.ps-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}

.ps-card h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}

.ps-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.ps-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.ps-card.problem li::before {
  content: "✕";
  width: 24px; height: 24px;
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

.ps-card.solution li::before {
  content: "✓";
  width: 24px; height: 24px;
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   BENEFITS / CHECK GRID
   ══════════════════════════════════════════ */

.benefits-section { padding: 44px 0; }

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

.check-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(6px);
}

.check-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.check-item-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.check-item h3 { font-size: 16px; font-weight: 700; }
.check-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */

.pricing-section { padding: 44px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 26px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 22px rgba(15,23,42,0.03);
}

.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(15,23,42,0.06); }

.pricing-card.featured {
  border-color: rgba(37,99,235,0.22);
  box-shadow: 0 18px 38px rgba(37,99,235,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,255,0.78));
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 20px; font-weight: 700; }
.pricing-subtitle { font-size: 14px; color: var(--muted); }
.pricing-context {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, 0.82);
}
.pricing-note {
  max-width: 760px;
  margin: 12px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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

.price-amount { font-size: 40px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.price-currency { font-size: 16px; color: var(--muted); font-weight: 500; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pricing-feature::before {
  content: "✓";
  width: 20px; height: 20px;
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.pricing-feature.is-limit::before {
  content: "–";
  background: rgba(148, 163, 184, 0.16);
  color: rgba(71, 85, 105, 0.84);
}
.pricing-card.entry {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.82));
  border-color: rgba(148,163,184,0.16);
  box-shadow: 0 10px 24px rgba(15,23,42,0.03);
}
.pricing-card.scale {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,245,249,0.9));
}

.pricing-button { width: 100%; justify-content: center; }

.homepage-closing {
  position: relative;
  margin-top: 28px;
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,0.14), transparent 30%),
    linear-gradient(180deg, rgba(232,240,255,0.8), rgba(244,248,255,0.98));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.038);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.homepage-closing::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.04) 64%, transparent);
}

.homepage-closing > section,
.closing-top-grid > section {
  padding: 32px 28px;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.95));
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.022);
}

.closing-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   WHO IT'S FOR
   ══════════════════════════════════════════ */

.who-section { padding: 44px 0; }

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  backdrop-filter: blur(6px);
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.08);
  background: white;
}

.homepage-closing .who-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,250,252,0.88));
}

.homepage-closing .who-section .section-heading,
.homepage-closing .faq-section .section-heading {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.homepage-closing .section-heading-left {
  position: relative;
  padding-left: 18px;
  margin-bottom: 28px;
}

.homepage-closing .section-heading-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.34), rgba(15, 118, 110, 0.1));
}

.homepage-closing .section-heading-left p {
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.68;
  color: #526072;
}

.homepage-closing .pill-grid {
  max-width: none;
  justify-content: flex-start;
}

.homepage-closing .pill {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,250,252,0.94));
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: none;
}

.closing-bridge {
  margin: 18px 0 0;
  max-width: none;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   VIDEO CAROUSEL
   ══════════════════════════════════════════ */

.video-section { padding: 44px 0; }

.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.carousel-track::-webkit-scrollbar { display: none; }

.video-card {
  flex-shrink: 0;
  width: 320px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}

.video-card iframe { width: 100%; height: 100%; border: none; }

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
}

.carousel-btn:hover { transform: scale(1.08); box-shadow: 0 8px 20px rgba(15,23,42,0.12); }

/* ══════════════════════════════════════════
   FAQ (AEO)
   ══════════════════════════════════════════ */

.faq-section { padding: 44px 0; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  gap: 16px;
  transition: background 0.15s;
}

.faq-question:hover { background: rgba(37,99,235,0.03); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.homepage-closing .faq-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.9));
}

.homepage-closing .faq-list {
  max-width: 100%;
}

.homepage-closing .faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.96));
  border-radius: 22px;
  box-shadow: none;
}

.homepage-closing .faq-section .section-heading p {
  margin-left: 0;
}

/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */

.final-cta {
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(124,58,237,0.10));
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(37,99,235,0.10), transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 640px;
}

.final-cta p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.homepage-closing .pricing-section {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,249,255,0.96));
}

.homepage-closing .pricing-section .section-heading {
  max-width: 840px;
}

.homepage-closing .final-cta {
  margin-top: 0;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.12), transparent 34%),
    linear-gradient(135deg, rgba(15,23,42,0.92), rgba(30,41,59,0.9));
  border-color: rgba(96,165,250,0.2);
  box-shadow: 0 18px 36px rgba(15,23,42,0.14);
  padding: 56px 38px;
}

.homepage-closing .final-cta::before,
.homepage-closing .final-cta::after {
  opacity: 0.45;
}

.homepage-closing .final-cta h2,
.homepage-closing .final-cta #cta-badge {
  color: #f8fafc;
}

.homepage-closing .final-cta p {
  color: rgba(226,232,240,0.82);
  max-width: 620px;
}

.homepage-closing .final-cta .badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.final-cta-note {
  margin: 0;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS
   ══════════════════════════════════════════ */

.social-proof { padding: 56px 0; }

.pipeline-section-proof {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  padding: 56px 32px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(246,250,255,0.94));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.pipeline-section-proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.04) 64%, transparent);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.proof-featured {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.048);
}

.proof-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0.08) 58%, transparent);
}

.proof-featured-head {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.proof-scene {
  margin: 12px 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.16);
  background:
    linear-gradient(180deg, rgba(15,23,42,0.94), rgba(15,23,42,0.84));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 36px rgba(15, 23, 42, 0.12);
}

.proof-scene-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 1024;
  object-fit: cover;
}

.proof-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e40af;
}

.proof-featured h3 {
  font-size: clamp(23px, 2.8vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 17.5ch;
}

.proof-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: #526072;
  max-width: 39rem;
}

.proof-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
}

.proof-points::before {
  display: none;
}

.proof-point {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.82));
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.03);
}

.proof-point:first-child {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(240,249,255,0.88));
}

.proof-point-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(37, 99, 235, 0.18);
  position: relative;
  z-index: 1;
}

.proof-point:not(:last-child)::after {
  display: none;
}

.proof-point strong {
  font-size: 13px;
  line-height: 1.45;
}

.proof-point p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

.proof-voices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.testimonial-card-compact {
  padding: 20px 20px 18px;
  gap: 12px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
}

.testimonial-card-voice {
  position: relative;
  padding: 20px 20px 18px;
  gap: 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,250,255,0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.03);
}

.testimonial-card-voice::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.22), rgba(37, 99, 235, 0.06) 62%, transparent);
}

.testimonial-card-voice-primary {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,246,255,0.9));
  border-color: rgba(37, 99, 235, 0.18);
}

.testimonial-context {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1e3a8a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.testimonial-context::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.72);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--text);
  font-style: normal;
}

.testimonial-text-featured {
  font-size: 14.5px;
  line-height: 1.62;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #475569);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 12px; color: var(--muted); }

.proof-author {
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 56px 0;
}

.stats-bar-item {
  background: var(--card);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.stats-bar-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
}

.stats-bar-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--primary); }

.footer-meta { font-size: 13px; }

.footer-bottom a,
.footer-meta a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover,
.footer-meta a:hover { color: var(--primary); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 960px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 8px);
    left: 0; right: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 0;
    box-shadow: 0 12px 32px rgba(15,23,42,0.12);
    z-index: 200;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 20px; font-size: 15px; border-radius: 0; color: var(--text); }
  .nav-links a:hover { background: rgba(37,99,235,0.05); }

  .nav-dropdown-menu { display: none; }
  .nav-dropdown-trigger { padding: 13px 20px; font-size: 15px; border-radius: 0; color: var(--text); width: 100%; }

  .nav { flex-wrap: wrap; position: relative; }
  .nav-actions { gap: 8px; }
  .language-switcher label { display: none; }
  .btn.btn-primary { padding: 8px 16px; font-size: 13px; }

  .hero-v2 { grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 24px 0 40px; }
  .hero-v2-content { align-items: center; }
  .hero-v2 h1 { font-size: clamp(26px, 8vw, 36px); }
  .hero-v2-sub { max-width: 100%; }
  .hero-v2-actions { justify-content: center; }
  .hero-v2-stats { justify-content: center; gap: 16px; flex-wrap: wrap; }
  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-highlight { grid-column: span 2; }
  .flow-track { grid-template-columns: 1fr 1fr; }
  .pipeline-section-flow .flow-track::before { display: none; }
  .flow-step-card::after { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .problem-solution-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .proof-featured { grid-template-columns: 1fr; }
  .proof-layout,
  .proof-points { grid-template-columns: 1fr; }
  .proof-voices { grid-template-columns: 1fr; }
  .pipeline-track::before,
  .proof-points::before { display: none; }
  .proof-point:not(:last-child)::after { display: none; }
  .extension-card,
  .extension-card-lead {
    grid-template-columns: 1fr;
  }
  .extension-icon,
  .extension-card-lead .extension-visual {
    width: 100%;
    min-height: 74px;
  }
  .extension-card-lead .extension-visual {
    min-height: 96px;
  }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-v2-home .hero-v2-content {
    padding-left: 0;
  }
  .hero-v2-home .hero-v2-content::before,
  .section-heading-story::before {
    display: none;
  }
  .hero-v2-home .hero-v2-content,
  .hero-v2-home .hero-v2-sub,
  .hero-v2-home .hero-v2-stats,
  .hero-v2-home .badge-group,
  .hero-v2-home .hero-v2-actions {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-v2-home h1 {
    color: #f8fbff;
  }
  .hero-v2-home .hero-v2-visual {
    min-height: 0;
  }
  .hero-visual-backdrop {
    position: static;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
  }
  .hero-backdrop-art {
    width: min(100%, 460px);
    transform: none;
  }
  .hero-v2-home .pipeline-mockup {
    transform: none;
  }
  .hero-v2-home .btn-primary {
    min-width: 0;
  }
  .section-heading-story {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .page { padding: 0 16px 64px; }
  .section-heading { margin-bottom: 28px; }
  .hero-v2-home {
    gap: 18px;
    padding: 22px 18px 28px;
    border-radius: 28px;
  }
  .hero-v2-home .hero-v2-content {
    display: grid;
    gap: 14px;
    grid-template-areas:
      "badges"
      "title"
      "actions"
      "sub"
      "stats";
  }
  .hero-v2-home .badge-group { grid-area: badges; }
  .hero-v2-home .badge-group .badge:nth-child(n + 2) { display: none; }
  .hero-v2-home h1 {
    grid-area: title;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.04;
    background: none;
    -webkit-text-fill-color: currentColor;
    color: #f8fbff;
  }
  .hero-v2-home .hero-v2-actions {
    grid-area: actions;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
  }
  .hero-v2-home .hero-v2-actions .btn {
    width: 100%;
  }
  .hero-v2-home .btn-secondary {
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(191, 219, 254, 0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(239,246,255,0.9);
  }
  .hero-v2-home .hero-v2-sub {
    grid-area: sub;
    font-size: 16px;
    line-height: 1.5;
    max-width: 32rem;
    color: rgba(226,232,240,0.84);
  }
  .hero-v2-home .hero-v2-stats {
    grid-area: stats;
    width: 100%;
    max-width: 340px;
    padding-top: 4px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-v2-home .stat-item {
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(191, 219, 254, 0.12);
    background: rgba(255,255,255,0.06);
  }
  .hero-v2-home .stat-number { font-size: 24px; }
  .hero-v2-home .stat-label { font-size: 12px; }
  .hero-v2-home .hero-answer-strip {
    display: none;
  }
  .hero-v2-home ~ .platforms-bar {
    padding: 18px 14px 22px;
    margin-bottom: 14px;
  }
  .hero-v2-home ~ .platforms-bar .platforms-list {
    gap: 8px;
  }
  .hero-v2-home ~ .platforms-bar .platform-pill {
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero-v2-home ~ .social-proof,
  .hero-v2-home ~ .pricing-section,
  .hero-v2-home ~ .extensions-section {
    padding: 28px 16px;
    border-radius: 22px;
  }
  .hero-v2-home ~ .social-proof .section-heading p,
  .hero-v2-home ~ .pricing-section .section-heading p,
  .hero-v2-home ~ .extensions-section .section-heading p {
    font-size: 15px;
  }
  .hero-v2-home ~ .pricing-section .pricing-card {
    padding: 28px 20px;
  }
  .section-heading-left {
    text-align: center;
    margin-bottom: 24px;
  }
  .section-heading-left p {
    margin: 0 auto;
  }
  .features-grid { grid-template-columns: 1fr; }
  .feature-highlight { grid-column: span 1; }
  .flow-track { grid-template-columns: 1fr; }
  .pipeline-section-flow .flow-track::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .extensions-grid { grid-template-columns: 1fr; }
  .section-heading-story { margin-bottom: 28px; }
  .check-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 260px; }
  .final-cta { padding: 36px 20px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .video-card { width: 260px; }
}

/* ══════════════════════════════════════════
   NAV-V2 — used by index-v2.html, index-v3.html and solution pages
   ══════════════════════════════════════════ */

.nav-v2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148,163,184,0.15);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav-v2.scrolled {
  box-shadow: 0 4px 24px rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.98);
}
.nav-v2 .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-v2 .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-v2 .nav-link {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-v2 .nav-link:hover { background: rgba(37,99,235,0.07); color: #2563eb; }
.nav-v2 .nav-link.active { color: #2563eb; font-weight: 600; }

/* Dropdown wrap */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-wrap:hover .nav-link svg,
.nav-dropdown-wrap.open .nav-link svg {
  transform: rotate(180deg);
}
.nav-dropdown-wrap .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 320px;
  background: #fff;
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: rgba(37,99,235,0.05); }
.nav-dropdown-item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
}
.nav-dropdown-item-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.nav-dropdown-item-desc { font-size: 12px; color: #64748b; line-height: 1.4; }

/* Nav actions */
.nav-v2 .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language switcher (button style) */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(248,250,252,1);
  border: 1px solid rgba(148,163,184,0.3);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.lang-btn:hover { background: #fff; border-color: #2563eb; color: #2563eb; }
.lang-btn svg { transition: transform 0.2s; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 300;
}
.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border: none;
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  border-radius: 10px;
  font-family: inherit;
  transition: background 0.12s;
}
.lang-option:hover { background: rgba(37,99,235,0.06); color: #2563eb; }

/* CTA button in nav */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37,99,235,0.28);
  white-space: nowrap;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(37,99,235,0.38); }

/* Hamburger (nav-burger) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid rgba(148,163,184,0.3);
  border-radius: 10px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-burger:hover { background: rgba(37,99,235,0.06); }
.nav-burger span { display: block; width: 20px; height: 2px; background: #475569; border-radius: 2px; transition: transform 0.25s, opacity 0.2s; transform-origin: center; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Body offset for fixed nav */
.nav-v2 ~ * { }
body:has(.nav-v2) { padding-top: 68px; }

/* Ghost / outline button used in v2/v3 heroes */
.btn-ghost-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost-v2:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }

/* Primary button used in v2/v3 heroes */
.btn-primary-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2563eb;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.btn-primary-v2:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }

/* Cost card rows (v2 hero) */
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.cost-row .label { color: rgba(255,255,255,0.65); }
.cost-row .value { font-weight: 700; color: rgba(255,255,255,0.9); }
.cost-row .value.red { color: #fca5a5; }
.cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  font-size: 15px;
}
.cost-total .label { color: rgba(255,255,255,0.85); font-weight: 600; }
.cost-total .value { font-weight: 800; font-size: 1.2rem; color: #86efac; }
.cost-card .card-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* Responsive for nav-v2 */
@media (max-width: 900px) {
  body { padding-top: 68px; }
  
  /* Nav v1 mobile */
  .nav.nav-v1 { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(148,163,184,0.15); height: 68px; padding: 12px 16px; }
  .nav.nav-v1 .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid rgba(148,163,184,0.2); flex-direction: column; align-items: stretch; padding: 12px 16px 20px; gap: 2px; z-index: 999; box-shadow: 0 12px 32px rgba(15,23,42,0.10); }
  .nav.nav-v1 .nav-links.open { display: flex; }
  .nav.nav-v1 .nav-links a, .nav.nav-v1 .nav-links button { padding: 12px 16px; font-size: 15px; border-radius: 10px; }
  .nav.nav-v1 .nav-dropdown-menu { display: none; }
  .nav.nav-v1 .hamburger { display: flex; }
  .nav.nav-v1 .nav-actions { font-size: 13px; }
  .nav.nav-v1 .nav-actions .btn { padding: 8px 14px; }
  .nav.nav-v1 .logo { font-size: 18px; }
  
  /* Nav v2 mobile */
  .nav-v2 .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(148,163,184,0.2);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    z-index: 999;
    box-shadow: 0 12px 32px rgba(15,23,42,0.10);
  }
  .nav-v2 .nav-links.open { display: flex; }
  .nav-v2 .nav-link { padding: 12px 16px; font-size: 15px; border-radius: 10px; }
  .nav-dropdown-wrap .nav-dropdown-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-v2 .nav-actions .btn-nav-cta { font-size: 13px; padding: 8px 14px; }
}

/* Unified footer variant aligned with index-v4 */
.footer-v2 {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(96,165,250,0.12), transparent 28%),
    linear-gradient(180deg, rgba(235,243,255,0.82), rgba(247,250,255,0.98));
  margin-top: 24px;
}

/* Homepage shell + hero specifics */
.dashboard-mockup {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.pipeline-mockup {
  max-width: 420px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.95));
}

.dm-header {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.9));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.dm-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.08) 58%, transparent);
}

.dm-header-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.dm-status {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.07em;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1e3a8a;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.dm-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: rgba(37, 99, 235, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.pipeline-track {
  position: relative;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.pipeline-track::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 28px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(148, 163, 184, 0.08));
}

.pipeline-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248,250,252,0.84));
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.032);
}

.pipeline-stage-no {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  position: relative;
  z-index: 1;
}

.pipeline-stage-main {
  display: grid;
  gap: 4px;
}

.pipeline-stage-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.pipeline-stage-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.pipeline-stage-state {
  grid-column: 2;
  justify-self: start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.pipeline-stage-state.stage-ideas {
  color: #334155;
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.24);
}

.pipeline-stage-state.stage-build {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.22);
}

.pipeline-stage-state.stage-queue {
  color: #1e40af;
  background: rgba(59, 130, 246, 0.10);
  border-color: rgba(59, 130, 246, 0.20);
}

.dm-footer {
  padding: 0 18px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.dm-metric {
  text-align: left;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.dm-metric-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.nav-v1 .nav-links { display: flex; }

.hero-v2:not(.hero-v2-home) .badge-group {
  justify-content: flex-end;
  margin-left: auto;
  width: fit-content;
}

.hero-answer-strip {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.hero-answer-title {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-answer-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.hero-answer-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text);
}

.hero-answer-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.hero-v2-home ~ .platforms-bar {
  margin: 4px auto 18px;
  padding: 14px 8px 24px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-v2-home ~ .platforms-bar .platforms-label {
  margin-bottom: 12px;
  color: #475569;
}

.hero-v2-home ~ .platforms-bar .platform-pill {
  padding: 8px 15px;
  background: rgba(255,255,255,0.78);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: none;
}

.hero-v2-home ~ .social-proof,
.hero-v2-home ~ .pricing-section,
.hero-v2-home ~ .extensions-section {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 34px;
  padding: 56px 32px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.06);
}

.hero-v2-home ~ .social-proof::before,
.hero-v2-home ~ .pricing-section::before,
.hero-v2-home ~ .extensions-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.04) 64%, transparent);
}

.hero-v2-home ~ .social-proof {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.12), transparent 26%),
    linear-gradient(140deg, rgba(15,23,42,0.98), rgba(30,41,59,0.96) 52%, rgba(15,23,42,0.98));
}

.hero-v2-home ~ .pricing-section {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(239,246,255,0.96));
}

.hero-v2-home ~ .extensions-section {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(245,249,255,0.9), rgba(238,246,255,0.98));
}

.hero-v2-home ~ .social-proof .section-heading,
.hero-v2-home ~ .pricing-section .section-heading,
.hero-v2-home ~ .extensions-section .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-v2-home ~ .social-proof .section-heading h2,
.hero-v2-home ~ .social-proof .section-heading p,
.hero-v2-home ~ .social-proof .section-heading .eyebrow {
  color: #f8fbff;
}

.hero-v2-home ~ .social-proof .section-heading p {
  color: rgba(226,232,240,0.78);
}

.hero-v2-home ~ .social-proof .section-heading .eyebrow {
  color: rgba(191,219,254,0.92);
}

.hero-v2-home ~ .social-proof .testimonial-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.92));
  border-color: rgba(191, 219, 254, 0.16);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.12);
}

.hero-v2-home ~ .extensions-section .extension-card {
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,250,255,0.98));
}

.hero-v2-home ~ .extensions-section .extension-card:hover {
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.08);
}

.hero-v2-home ~ .social-proof .testimonial-author {
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-v2-home ~ .pricing-section .pricing-grid {
  max-width: 920px;
  gap: 16px;
}

.hero-v2-home ~ .pricing-section .pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.96));
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.035);
}

.hero-v2-home ~ .pricing-section .pricing-card.entry {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,250,252,0.92));
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.025);
}

.hero-v2-home ~ .pricing-section .pricing-card.featured {
  border-color: rgba(37,99,235,0.24);
  box-shadow: 0 14px 28px rgba(37,99,235,0.065);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,255,0.84));
}

.hero-v2-home ~ .pricing-section .pricing-card.scale {
  background: rgba(248,250,252,0.9);
  border-color: rgba(148, 163, 184, 0.22);
}

.hero-v2-home ~ .pricing-section .pricing-subtitle {
  min-height: 42px;
}

.hero-v2-home ~ .pricing-section .pricing-price {
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-v2-home ~ .pricing-section .pricing-button {
  margin-top: 6px;
}

.hero-v2-home ~ .pricing-section .pricing-card.entry .pricing-button {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.22);
}

.hero-v2-home ~ .problem-solution,
.hero-v2-home ~ .steps-section,
.hero-v2-home ~ .features-section,
.hero-v2-home ~ .homepage-closing {
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.05);
}

.hero-v2-home ~ .problem-solution {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.12), transparent 30%),
    linear-gradient(180deg, rgba(247,250,255,0.92), rgba(241,247,255,0.98));
}

.hero-v2-home ~ .steps-section {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.1), transparent 28%),
    linear-gradient(180deg, rgba(250,252,255,0.94), rgba(245,249,255,0.98));
}

.hero-v2-home ~ .features-section {
  background:
    radial-gradient(circle at top left, rgba(96,165,250,0.1), transparent 28%),
    linear-gradient(180deg, rgba(248,251,255,0.94), rgba(243,248,255,0.98));
}

.hero-v2-home ~ .homepage-closing {
  background:
    radial-gradient(circle at top right, rgba(96,165,250,0.16), transparent 30%),
    linear-gradient(180deg, rgba(233,242,255,0.84), rgba(244,248,255,0.98));
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}

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

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.footer-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 1220px) {
  .hero-v2 .badge-group {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .homepage-closing {
    padding: 10px;
    border-radius: 22px;
    gap: 14px;
    background:
      radial-gradient(circle at top right, rgba(96,165,250,0.12), transparent 34%),
      linear-gradient(180deg, rgba(232,240,255,0.6), rgba(245,249,255,0.84));
    border-color: rgba(148, 163, 184, 0.12);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.03);
  }

  .homepage-closing > section,
  .closing-top-grid > section {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .closing-top-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-answer-grid { grid-template-columns: 1fr; }

  .hero-v2-home ~ .platforms-bar,
  .hero-v2-home ~ .social-proof,
  .hero-v2-home ~ .pricing-section,
  .hero-v2-home ~ .extensions-section {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .hero-v2-home ~ .pricing-section .pricing-subtitle {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .homepage-closing {
    padding: 0;
  }

  .homepage-closing .pricing-section {
    padding: 28px 18px 22px;
    border-radius: 24px;
  }

  .homepage-closing .pricing-section .section-heading {
    margin-bottom: 18px;
  }

  .homepage-closing .pricing-section .section-heading h2 {
    max-width: none;
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .homepage-closing .pricing-section .section-heading p,
  .homepage-closing .pricing-section .pricing-note {
    max-width: none;
    font-size: 14px;
  }

  .homepage-closing .pricing-section .pricing-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .homepage-closing .pricing-section .pricing-card.featured {
    transform: none;
  }

  .homepage-closing .pill-grid {
    gap: 10px;
  }

  .homepage-closing .pill {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .extension-card,
  .extension-card-lead {
    padding: 20px 18px 18px;
  }
}

@media (max-width: 900px) {
  .hero-v2-home .btn-secondary,
  .hero-v2-home .hero-answer-card,
  .hero-v2-home .dashboard-mockup,
  .hero-v2-home ~ .platforms-bar .platform-pill,
  .hero-v2-home ~ .problem-solution .ps-card,
  .hero-v2-home ~ .steps-section .step-card,
  .hero-v2-home ~ .benefits-section .check-item,
  .hero-v2-home ~ .pricing-section .pricing-card,
  .hero-v2-home ~ .who-section .pill,
  .hero-v2-home ~ .faq-section .faq-item,
  .hero-v2-home ~ .social-proof .testimonial-card,
  .hero-v2-home ~ .stats-bar .stats-bar-item {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@supports (content-visibility: auto) {
  .hero-v2-home ~ .platforms-bar,
  .hero-v2-home ~ .stats-bar {
    content-visibility: auto;
    contain-intrinsic-size: 180px;
  }

  .hero-v2-home ~ .problem-solution,
  .hero-v2-home ~ .steps-section,
  .hero-v2-home ~ .features-section,
  .hero-v2-home ~ .social-proof,
  .hero-v2-home ~ .pricing-section,
  .hero-v2-home ~ .who-section,
  .hero-v2-home ~ .faq-section,
  .hero-v2-home ~ .final-cta,
  .hero-v2-home ~ .footer-v2 {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
  }

  .hero-v2-home ~ .problem-solution,
  .hero-v2-home ~ .steps-section,
  .hero-v2-home ~ .features-section,
  .hero-v2-home ~ .social-proof,
  .hero-v2-home ~ .extensions-section,
  .hero-v2-home ~ .homepage-closing {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

/* ══════════════════════════════════════════
   Homepage Light Reset (2026-03-29)
   Keep current copy/structure, return to light visual system
   ══════════════════════════════════════════ */

.hero-v2-home {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
  padding: 34px 34px 38px;
  border-radius: 34px;
  border: 1px solid rgba(191, 219, 254, 0.72);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(196, 181, 253, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(243,247,255,0.98));
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
}

.hero-v2-home::before,
.hero-v2-home::after,
.hero-visual-backdrop {
  display: none;
}

.hero-v2-home .hero-v2-content {
  max-width: 560px;
  gap: 16px;
  padding-left: 0;
}

.hero-v2-home .hero-v2-content::before {
  display: none;
}

.hero-v2-home .badge {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
  border-color: rgba(37,99,235,0.14);
  color: var(--primary);
  box-shadow: none;
}

.hero-v2-home h1 {
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  max-width: 10.5ch;
}

.hero-v2-home .hero-v2-sub {
  max-width: 43ch;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

.hero-v2-home .hero-v2-visual {
  min-height: auto;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}

.hero-v2-home .pipeline-mockup {
  transform: none;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
  max-width: 430px;
}

.hero-v2-home .btn-primary {
  min-width: 248px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.hero-v2-home .btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.hero-v2-home .btn-secondary {
  background: rgba(255,255,255,0.9);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--text);
}

.hero-v2-home .btn-secondary:hover {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.hero-v2-home .btn-secondary::after {
  color: var(--primary);
}

.hero-v2-home .stat-item {
  background: rgba(255,255,255,0.88);
  border-color: rgba(191, 219, 254, 0.72);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.hero-microproof {
  width: min(100%, 34rem);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(191, 219, 254, 0.82);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  color: #526072;
}

.hero-microproof::before {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.pipeline-bridge {
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, 0.38), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,247,255,0.98));
  border-color: rgba(191, 219, 254, 0.72);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.pipeline-section-proof {
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,247,255,0.98));
  border-color: rgba(191, 219, 254, 0.72);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.proof-featured {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.035);
}

.proof-scene {
  display: none;
}

.extensions-section {
  padding: 24px 0 40px;
}

.extensions-grid {
  gap: 16px;
  max-width: 940px;
}

.extension-card,
.extension-card-lead {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 24px 24px 22px;
  border-radius: 26px;
  border-color: rgba(191, 219, 254, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,249,255,0.98));
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.03);
}

.extension-card-lead {
  padding: 28px 26px 24px;
}

.extension-card-lead::before {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.04) 58%, transparent);
}

.extension-icon,
.extension-visual {
  display: none;
}

.extension-icon::after {
  background-image: none;
}

.extension-card strong {
  font-size: 18px;
}

.extension-card-lead strong {
  font-size: 28px;
  max-width: 24ch;
}

.homepage-closing {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.homepage-closing > section,
.closing-top-grid > section {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.96));
  border-color: rgba(191, 219, 254, 0.62);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.022);
}

.closing-top-grid {
  gap: 34px;
  max-width: 760px;
}

.closing-top-grid > section {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.homepage-closing .who-section,
.homepage-closing .faq-section {
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.homepage-closing .who-section .section-heading,
.homepage-closing .faq-section .section-heading {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: left;
}

.homepage-closing .section-heading-left {
  padding-left: 0;
  margin-bottom: 24px;
}

.homepage-closing .section-heading-left::before {
  display: none;
}

.homepage-closing .section-heading-left p {
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.72;
  color: #5e6a7e;
}

.homepage-closing .pill-grid {
  max-width: 560px;
  justify-content: center;
  gap: 10px 12px;
}

.homepage-closing .pill {
  padding: 10px 18px;
  font-size: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,1));
  border-color: rgba(191, 219, 254, 0.72);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.homepage-closing .faq-item {
  border-color: rgba(191, 219, 254, 0.62);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.022);
}

.closing-bridge {
  max-width: 620px;
  margin: 16px auto 0;
  text-align: center;
  color: #66758a;
}

.homepage-closing .pricing-section {
  margin-top: 28px;
  padding: 40px 30px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,249,255,0.98));
}

.homepage-closing .pricing-section .section-heading {
  max-width: 920px;
  margin-bottom: 22px;
}

.homepage-closing .pricing-section .section-heading h2 {
  max-width: 20ch;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.homepage-closing .pricing-section .section-heading p {
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.66;
  color: #5b6880;
}

.homepage-closing .pricing-section .pricing-note {
  max-width: 48ch;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #6d7890;
}

.homepage-closing .pricing-section .pricing-grid {
  max-width: 980px;
  gap: 18px;
  align-items: stretch;
}

.homepage-closing .pricing-section .pricing-card {
  padding: 26px 24px;
  border-radius: 24px;
}

.homepage-closing .pricing-section .pricing-card.featured {
  transform: translateY(-8px);
}

.homepage-closing .pricing-section .pricing-subtitle {
  min-height: 0;
}

.homepage-closing .pricing-section .pricing-price {
  padding: 12px 0;
}

.homepage-closing .pricing-section .price-amount {
  font-size: 38px;
}

.homepage-closing .pricing-section .pricing-badge {
  top: -11px;
}

.homepage-closing .final-cta {
  margin-top: 26px;
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.32), transparent 34%),
    radial-gradient(circle at bottom left, rgba(191, 219, 254, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(243,238,255,0.92), rgba(240,245,255,0.98));
  border-color: rgba(196, 181, 253, 0.5);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.homepage-closing .final-cta::before,
.homepage-closing .final-cta::after {
  opacity: 0.85;
}

.homepage-closing .final-cta h2,
.homepage-closing .final-cta #cta-badge {
  color: var(--text);
}

.homepage-closing .final-cta p {
  color: var(--muted);
}

.homepage-closing .final-cta .badge {
  background: rgba(255,255,255,0.82);
  border-color: rgba(191, 219, 254, 0.72);
  color: var(--primary);
}

.footer-v2 {
  background:
    radial-gradient(circle at top left, rgba(191, 219, 254, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(236,243,255,0.88), rgba(246,249,255,0.98));
}

/* ══════════════════════════════════════════
   Homepage Hero Refresh (2026-03-29)
   Indigo to sky gradient, tighter spacing, stronger visual entry
   ══════════════════════════════════════════ */

.hero-v2-home {
  grid-template-columns: minmax(0, 1.14fr) minmax(400px, 0.9fr);
  gap: clamp(8px, 1vw, 14px);
  align-items: stretch;
  padding: 22px 24px 22px;
  border-radius: 34px;
  border: 1px solid rgba(191, 219, 254, 0.88);
  background:
    radial-gradient(circle at 9% 14%, rgba(99, 102, 241, 0.18), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.18), transparent 28%),
    radial-gradient(circle at 74% 88%, rgba(125, 211, 252, 0.16), transparent 24%),
    linear-gradient(122deg, rgba(245, 247, 255, 0.98) 0%, rgba(235, 242, 255, 0.98) 38%, rgba(235, 246, 255, 0.96) 72%, rgba(248, 251, 255, 1) 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.hero-v2-home::before,
.hero-v2-home::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
}

.hero-v2-home::before {
  left: -58px;
  bottom: -96px;
  width: 320px;
  height: 240px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.18), transparent 70%);
  opacity: 0.82;
}

.hero-v2-home::after {
  top: -56px;
  right: -26px;
  width: 340px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 72%);
  opacity: 0.9;
}

.hero-v2-home .hero-v2-content {
  max-width: 720px;
  align-self: center;
  gap: 16px;
  padding: 8px 0 6px;
}

.hero-v2-home .badge-group {
  gap: 10px;
  min-height: 34px;
  align-items: flex-start;
}

.hero-v2-home .badge {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62));
  border-color: rgba(99, 102, 241, 0.16);
  color: #3156d8;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.06);
}

.hero-v2-home h1 {
  max-width: 12.8ch;
  font-size: clamp(36px, 4.1vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  min-height: 2.94em;
  color: #16233a;
  background: linear-gradient(135deg, #14213d 0%, #1f3fb7 48%, #2f6cf0 72%, #55b5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v2-home .hero-v2-sub {
  max-width: 49ch;
  font-size: 17px;
  line-height: 1.6;
  min-height: 4.8em;
  color: #52627a;
}

.hero-v2-home .hero-v2-actions {
  gap: 12px;
  margin-top: 2px;
}

.hero-v2-home .btn-primary {
  min-width: 266px;
  background: linear-gradient(135deg, #3156e8 0%, #3b82f6 58%, #5db5ff 100%);
  box-shadow: 0 16px 30px rgba(49, 86, 232, 0.24);
}

.hero-v2-home .btn-primary:hover {
  background: linear-gradient(135deg, #2747d7 0%, #2563eb 56%, #4aa8ff 100%);
  box-shadow: 0 20px 34px rgba(49, 86, 232, 0.28);
}

.hero-v2-home .btn-secondary {
  background: rgba(255,255,255,0.84);
  border-color: rgba(191, 219, 254, 0.94);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
}

.hero-v2-home .btn-secondary:hover {
  background: rgba(255,255,255,0.98);
}

.hero-microproof {
  width: min(100%, 36rem);
  margin-top: 2px;
  padding: 14px 18px 14px 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(247,250,255,0.96));
  border: 1px solid rgba(191, 219, 254, 0.94);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.04);
  color: #5b6b81;
}

.hero-microproof::before {
  top: 16px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #3156e8, #5db5ff);
  box-shadow: 0 0 0 5px rgba(49, 86, 232, 0.08);
}

.hero-v2-home .hero-v2-visual {
  align-items: center;
  justify-content: center;
  padding: 0;
}

.dashboard-mockup {
  border-radius: 30px;
  border: 1px solid rgba(191, 219, 254, 0.92);
  box-shadow: 0 28px 50px rgba(15, 23, 42, 0.08);
}

.pipeline-mockup {
  max-width: 490px;
  margin-left: -12px;
  background:
    radial-gradient(circle at top right, rgba(49, 86, 232, 0.1), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 181, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.98));
}

.pipeline-mockup::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 70%);
  pointer-events: none;
}

.dm-header {
  padding: 18px 20px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
  border-bottom: 1px solid rgba(191, 219, 254, 0.54);
}

.dm-header::before {
  height: 5px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.28), rgba(59, 130, 246, 0.18) 52%, rgba(125, 211, 252, 0.08) 82%, transparent);
}

.dm-header-title {
  font-size: 13.5px;
  color: #16233a;
}

.dm-status {
  padding: 8px 12px;
  color: #3156d8;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(236,244,255,0.98));
  border: 1px solid rgba(99, 102, 241, 0.14);
  box-shadow: 0 8px 18px rgba(49, 86, 232, 0.06);
}

.pipeline-track {
  padding: 16px;
  gap: 10px;
}

.pipeline-track::before {
  left: 34px;
  top: 26px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.14), rgba(56, 189, 248, 0.1));
}

.pipeline-stage {
  padding: 15px 16px;
  border-radius: 22px;
  border: 1px solid rgba(191, 219, 254, 0.74);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.032);
}

.pipeline-stage-no {
  width: 38px;
  height: 38px;
  background: linear-gradient(180deg, rgba(238,242,255,1), rgba(229,238,255,0.96));
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 6px 14px rgba(49, 86, 232, 0.05);
}

.pipeline-stage-label {
  font-size: 13.5px;
}

.pipeline-stage-sub {
  font-size: 11.5px;
  color: #63748c;
}

.pipeline-stage-state {
  letter-spacing: 0.05em;
}

.dm-footer {
  padding: 0 16px 16px;
  gap: 8px;
}

.dm-metric {
  padding: 12px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(191, 219, 254, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,1));
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.028);
}

@media (max-width: 900px) {
  .hero-v2-home {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px 22px;
  }

  .hero-v2-home::before {
    left: -44px;
    bottom: -92px;
    width: 240px;
    height: 200px;
  }

  .hero-v2-home::after {
    top: -40px;
    right: -34px;
    width: 220px;
    height: 180px;
  }

  .hero-v2-home .hero-v2-content {
    max-width: none;
    padding: 0;
    gap: 15px;
  }

  .hero-v2-home h1 {
    max-width: 12ch;
    font-size: clamp(34px, 8vw, 50px);
  }

  .hero-v2-home .hero-v2-sub {
    max-width: 42ch;
    font-size: 16px;
    color: #52627a;
  }

  .hero-v2-home .hero-v2-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-v2-home .hero-v2-actions .btn {
    width: 100%;
  }

  .hero-v2-home .btn-secondary {
    justify-content: center;
    color: var(--text);
    background: rgba(255,255,255,0.92);
    border-color: rgba(191, 219, 254, 0.82);
  }

  .hero-v2-home .hero-v2-visual {
    justify-content: center;
  }

  .hero-v2-home .pipeline-mockup {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .hero-v2-home {
    gap: 14px;
    padding: 20px 16px 20px;
    border-radius: 28px;
  }

  .hero-v2-home .badge {
    font-size: 13px;
  }

  .hero-v2-home h1 {
    max-width: 11.4ch;
    font-size: clamp(27px, 7.2vw, 36px);
    line-height: 0.97;
  }

  .hero-v2-home .hero-v2-sub {
    font-size: 15.5px;
    line-height: 1.56;
  }

  .hero-microproof {
    width: 100%;
    padding: 13px 14px 13px 40px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-microproof::before {
    left: 16px;
    top: 15px;
  }

  .dashboard-mockup {
    border-radius: 24px;
  }

  .pipeline-track {
    padding: 14px;
  }

  .pipeline-stage {
    padding: 14px;
  }

  .dm-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dm-metric {
    padding: 10px 10px 9px;
  }
}

@media (max-width: 900px) {
  .hero-v2-home {
    padding: 28px 20px 30px;
    grid-template-columns: 1fr;
  }

  .hero-v2-home .hero-v2-content,
  .hero-v2-home .hero-v2-sub,
  .hero-v2-home .hero-v2-stats,
  .hero-v2-home .badge-group,
  .hero-v2-home .hero-v2-actions {
    max-width: none;
  }

  .hero-v2-home h1 {
    max-width: 12ch;
  }

  .hero-v2-home .hero-v2-visual {
    justify-content: center;
  }

  .hero-v2-home .pipeline-mockup {
    max-width: 100%;
  }

  .closing-top-grid {
    gap: 28px;
  }

  .homepage-closing .who-section .section-heading,
  .homepage-closing .faq-section .section-heading,
  .closing-bridge {
    max-width: none;
  }
}

/* Final homepage hero override: keep RU headline wider and reduce dead space */
.hero-v2-home {
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.82fr);
  gap: clamp(8px, 0.85vw, 12px);
  align-items: stretch;
}

.hero-v2-home .hero-v2-content {
  max-width: 760px;
  width: 100%;
  align-self: center;
}

.hero-v2-home h1 {
  max-width: 16ch;
  font-size: clamp(36px, 3.85vw, 56px);
  line-height: 0.98;
}

.hero-v2-home .hero-v2-sub {
  max-width: 54ch;
}

.hero-v2-home .hero-v2-visual {
  justify-content: flex-end;
}

.hero-v2-home .pipeline-mockup {
  max-width: 440px;
  margin-left: 0;
}

@media (max-width: 900px) {
  .hero-v2-home {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-v2-home .hero-v2-content,
  .hero-v2-home .hero-v2-sub {
    max-width: none;
  }

  .hero-v2-home h1 {
    max-width: 13.5ch;
  }

  .hero-v2-home .hero-v2-visual {
    justify-content: center;
  }

  .hero-v2-home .pipeline-mockup {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-v2-home h1 {
    max-width: 12.4ch;
  }
}
