/* ============================================================
   ReviewFlow — Product-Led Landing Page Stylesheet
   Design system matches the actual ReviewFlow application
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Brand */
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;

  /* Slate (App UI) */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* Accents */
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --red-500:   #ef4444;
  --red-50:    #fef2f2;
  --purple-600:#7c3aed;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm:  6px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-2xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px -1px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.1),  0 8px 10px -6px rgba(15,23,42,0.04);
  --shadow-2xl: 0 40px 60px -12px rgba(15,23,42,0.18);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 900px; }
.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--slate-600); line-height: 1.7; }
.text-lead { font-size: 1.125rem; color: var(--slate-600); line-height: 1.65; }
.text-muted { color: var(--slate-500); font-size: 0.875rem; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  color: var(--blue-600);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-badge::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-header h2 { margin-bottom: 10px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all 160ms ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(37,99,235,0.3), 0 4px 10px rgba(37,99,235,0.2);
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 2px 6px rgba(37,99,235,0.35), 0 6px 16px rgba(37,99,235,0.3);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-600);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--slate-50); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: 0.8125rem; }

/* ============================================================
   01. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-brand img { height: 32px; width: auto; }
.nav-brand-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 140ms;
}
.nav-links a:hover { color: var(--slate-900); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-login {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: all 140ms;
}
.nav-login:hover { background: var(--slate-100); color: var(--slate-900); }
.nav-hamburger {
  display: none;
  padding: 8px;
  color: var(--slate-700);
  border-radius: var(--r-md);
}
.nav-hamburger:hover { background: var(--slate-100); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--slate-900);
  color: var(--white);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.announce-bar a {
  color: var(--amber-400);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.announce-bar a:hover { text-decoration: underline; }

/* ============================================================
   02. HERO
   ============================================================ */
.hero {
  padding: 64px 0 0;
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(37,99,235,0.045) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(34,197,94,0.03) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23cbd5e1' fill-opacity='0.45'/%3E%3C/svg%3E");
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.75); }
}
h1 .accent {
  color: var(--blue-600);
  position: relative;
  white-space: nowrap;
}
h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), rgba(37,99,235,0));
  border-radius: 2px;
}
.hero-copy h1 { margin-bottom: 22px; line-height: 1.08; }
.hero-copy .text-lead { margin-bottom: 36px; max-width: 500px; }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--slate-400);
  font-weight: 500;
}
.proof-sep { color: var(--slate-300); }
.proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

/* App chrome mockup — perspective floating effect */
.app-chrome-hero {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  box-shadow:
    0 2px 4px rgba(15,23,42,0.06),
    0 8px 16px rgba(15,23,42,0.08),
    0 24px 48px rgba(15,23,42,0.12),
    0 48px 80px rgba(37,99,235,0.08);
  border-radius: var(--r-xl);
  transition: transform 400ms ease, box-shadow 400ms ease;
  animation: float-up 3s ease-in-out infinite alternate;
}
.app-chrome-hero:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
  box-shadow:
    0 2px 4px rgba(15,23,42,0.06),
    0 12px 24px rgba(15,23,42,0.1),
    0 32px 64px rgba(15,23,42,0.14),
    0 64px 96px rgba(37,99,235,0.12);
}
@keyframes float-up {
  from { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0px); }
  to   { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

/* ============================================================
   APP MOCKUP — reusable components across all sections
   ============================================================ */

/* Browser chrome wrapper */
.app-chrome {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}
.chrome-titlebar {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.chrome-dot.red   { background: #ff5f57; }
.chrome-dot.amber { background: #ffbd2e; }
.chrome-dot.green { background: #28c840; }
.chrome-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--slate-500);
  text-align: center;
  font-weight: 500;
}
.chrome-body { display: flex; }

/* App sidebar */
.app-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--slate-200);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 14px;
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 8px;
}
.app-sidebar-logo img { height: 22px; }
.app-sidebar-logo span {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.sidebar-section-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  padding: 8px 10px 4px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: all 120ms;
}
.sidebar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.sidebar-item.active {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
}
.sidebar-item:not(.active):hover {
  background: var(--slate-50);
  color: var(--slate-900);
}

/* App content area */
.app-content {
  flex: 1;
  background: var(--slate-50);
  min-height: 420px;
  overflow: hidden;
}
.app-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-topbar-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-900);
}
.app-topbar-subtitle {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 1px;
}
.app-main { padding: 18px 20px; }

/* Stat Cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--slate-200);
  transition: border-color 200ms;
}
.stat-card:first-child { border-left-color: var(--amber-400); }
.stat-card:nth-child(2){ border-left-color: var(--green-500); }
.stat-card:nth-child(3){ border-left-color: var(--blue-600); }
.stat-card:nth-child(4){ border-left-color: var(--purple-600); }
.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  margin-bottom: 6px;
}
.stat-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-sub {
  font-size: 0.6875rem;
  color: var(--slate-400);
  margin-top: 3px;
}
.stat-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 2px 6px;
  border-radius: var(--r-full);
  margin-top: 4px;
}

/* Bar Chart in Dashboard */
.mini-chart {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.mini-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mini-chart-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
}
.mini-chart-legend {
  display: flex;
  gap: 12px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  color: var(--slate-500);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.chart-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 64px;
}
.chart-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
}
.chart-bar-track {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 3px;
  transition: opacity 200ms;
}
.chart-bar.blue { background: var(--blue-600); }
.chart-bar.green { background: var(--green-500); }
.chart-month-label {
  font-size: 0.6rem;
  color: var(--slate-400);
}

/* Recent Activity List */
.activity-list {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.activity-list-header {
  padding: 10px 16px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.activity-row {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  gap: 12px;
  border-bottom: 1px solid var(--slate-50);
  transition: background 120ms;
}
.activity-row:last-child { border-bottom: none; }
.activity-row:hover { background: var(--slate-50); }
.activity-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.av-blue { background: var(--blue-50); color: var(--blue-700); }
.av-green { background: var(--green-50); color: var(--green-600); }
.av-amber { background: #fffbeb; color: #b45309; }
.activity-info { flex: 1; min-width: 0; }
.activity-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.activity-meta {
  font-size: 0.6875rem;
  color: var(--slate-400);
}
.activity-right { text-align: right; flex-shrink: 0; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-green { background: var(--green-50); color: var(--green-600); border: 1px solid var(--green-100); }
.badge-blue  { background: var(--blue-50);  color: var(--blue-700);  border: 1px solid var(--blue-100); }
.badge-slate { background: var(--slate-100); color: var(--slate-600); }
.badge-new   { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* Stars */
.stars { color: var(--amber-400); letter-spacing: 1px; }
.stars-sm { font-size: 0.75rem; }
.stars-md { font-size: 0.9375rem; }
.stars-lg { font-size: 1.35rem; }
.stars-xl { font-size: 2rem; letter-spacing: 4px; }

/* ============================================================
   03. CORE FLOW SECTION
   ============================================================ */
.flow-section { background: var(--white); }

.flow-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.flow-node {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 18px 28px;
  text-align: center;
  min-width: 240px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow-node.center { min-width: 280px; }
.flow-node-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.flow-node-icon.blue { background: var(--blue-50); color: var(--blue-600); }
.flow-node-icon.amber { background: #fffbeb; color: var(--amber-500); }
.flow-node-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 3px;
}
.flow-node-sub {
  font-size: 0.8rem;
  color: var(--slate-500);
}
.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  color: var(--slate-300);
}
.flow-branch-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  width: 100%;
  gap: 0;
}
.flow-branch-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-branch-mid { display: flex; justify-content: center; }
.flow-branch-spacer {
  width: 1.5px;
  background: var(--slate-200);
  flex: 1;
}
.flow-branch-h {
  height: 1.5px;
  background: var(--slate-200);
  width: 100%;
}
.branch-outcome-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.flow-outcome-node {
  border-radius: var(--r-xl);
  padding: 20px 20px;
  text-align: center;
}
.flow-outcome-node.google {
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
}
.flow-outcome-node.private {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
}
.outcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
}
.outcome-tag.green { background: var(--green-100); color: var(--green-600); }
.outcome-tag.blue  { background: var(--blue-100);  color: var(--blue-700); }
.outcome-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.outcome-sub { font-size: 0.8125rem; color: var(--slate-600); line-height: 1.4; }

/* ============================================================
   04. CUSTOMER EXPERIENCE (Interactive Phone Mockup)
   ============================================================ */
.customer-exp-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.customer-exp-copy h2 { margin-bottom: 14px; }
.customer-exp-copy .text-lead { margin-bottom: 24px; }
/* centered copy */
.hero-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.hero-center h1 { margin-bottom: 22px; line-height: 1.08; }
.hero-center .text-lead {
  margin: 0 auto 36px;
  max-width: 580px;
  font-size: 1.125rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--slate-400);
  font-weight: 500;
}
.proof-sep { color: var(--slate-300); }
.proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

/* Full-width mockup */
.hero-mockup-wrap {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-mockup-chrome {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow:
    0 0 0 1px rgba(226,232,240,0.5),
    0 8px 24px rgba(15,23,42,0.07),
    0 24px 48px rgba(15,23,42,0.08),
    0 0 80px rgba(37,99,235,0.06);
  overflow: hidden;
}

/* Steps list */
.flow-steps { display: flex; flex-direction: column; gap: 16px; }
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.flow-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-step h4 { font-size: 0.9375rem; margin-bottom: 2px; }
.flow-step p { font-size: 0.875rem; color: var(--slate-500); }

/* Mobile phone frame */
.phone-frame {
  width: 340px;
  flex-shrink: 0;
  background: var(--slate-900);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-2xl), inset 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.phone-notch {
  width: 100px;
  height: 26px;
  background: var(--slate-900);
  border-radius: 0 0 18px 18px;
  margin: 0 auto -4px;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
}
.phone-screen-inner {
  padding: 20px 18px;
  height: 100%;
}

/* Customer Gate UI */
.gate-business-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 24px;
}
.gate-business-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-lg);
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-100);
  flex-shrink: 0;
}
.gate-business-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}
.gate-business-sub {
  font-size: 0.75rem;
  color: var(--slate-400);
}
.gate-question {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 24px;
}

/* Interactive Stars */
.gate-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}
.gate-star-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: transform 150ms;
}
.gate-star-btn:hover { transform: scale(1.2); }
.gate-star-btn svg {
  width: 40px;
  height: 40px;
  fill: var(--slate-200);
  stroke: var(--slate-300);
  stroke-width: 1.5px;
  transition: fill 120ms, stroke 120ms;
}
.gate-star-btn.lit svg {
  fill: var(--amber-400);
  stroke: var(--amber-400);
}
.gate-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-bottom: 20px;
}

/* Gate result screens */
.gate-result { display: none; flex-direction: column; text-align: center; }
.gate-result.visible { display: flex; }
.gate-result-stars { margin-bottom: 12px; }
.gate-result h3 { font-size: 1.1rem; margin-bottom: 6px; }
.gate-result p { font-size: 0.875rem; color: var(--slate-500); margin-bottom: 20px; }

.gate-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-xs);
}
.gate-google-icon { width: 20px; height: 20px; }
.gate-private-form { text-align: left; }
.gate-input {
  width: 100%;
  padding: 9px 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  color: var(--slate-700);
  margin-bottom: 8px;
  font-family: var(--font);
}
.gate-textarea {
  min-height: 64px;
  resize: none;
}
.gate-submit {
  width: 100%;
  padding: 11px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   05. PRODUCT SHOWCASE — Tab Navigation
   ============================================================ */
.product-showcase-section { background: var(--slate-50); }
.product-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 5px;
  width: fit-content;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-xs);
}
.product-tab {
  padding: 9px 20px;
  border-radius: var(--r-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-500);
  cursor: pointer;
  transition: all 160ms;
  border: none;
  background: none;
  font-family: var(--font);
}
.product-tab.active {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.product-tab:not(.active):hover {
  background: var(--slate-100);
  color: var(--slate-700);
}
.product-panel { display: none; }
.product-panel.active { display: block; }

/* ============================================================
   06. REVIEW LINK PREVIEW
   ============================================================ */
.review-link-preview {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rl-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rl-header-title { font-size: 0.9375rem; font-weight: 700; color: var(--slate-900); }
.rl-body { padding: 20px; }
.rl-link-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.rl-link-url {
  font-family: 'SF Mono', 'Monaco', 'Fira Code', monospace;
  font-size: 0.8125rem;
  color: var(--blue-600);
  font-weight: 500;
}
.rl-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.rl-mini-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: all 140ms;
}
.rl-mini-btn:hover { background: var(--slate-50); }
.rl-mini-btn.primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.rl-qr-area {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 16px;
}
.qr-placeholder {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.qr-placeholder svg {
  width: 100%;
  height: 100%;
}
.rl-qr-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.rl-qr-info p { font-size: 0.8125rem; color: var(--slate-500); line-height: 1.4; }

/* ============================================================
   07. REVIEWS TABLE PREVIEW
   ============================================================ */
.reviews-preview {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.preview-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.preview-title { font-size: 0.9375rem; font-weight: 700; color: var(--slate-900); }
.preview-stats { display: flex; gap: 16px; }
.preview-stat {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 5px;
}
.preview-stat .dot-google { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }
.preview-stat .dot-private { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-600); }
.preview-filters {
  padding: 10px 20px;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  gap: 8px;
}
.filter-pill {
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--slate-200);
  color: var(--slate-500);
  cursor: pointer;
  background: var(--white);
  transition: all 120ms;
}
.filter-pill.active {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
}
.preview-table { width: 100%; }
.preview-table thead th {
  padding: 8px 20px;
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}
.preview-table tbody td {
  padding: 11px 20px;
  font-size: 0.8125rem;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-50);
}
.preview-table tbody tr:hover { background: var(--slate-50); }
.preview-table tbody tr:last-child td { border-bottom: none; }
.customer-cell { display: flex; align-items: center; gap: 10px; }
.customer-avatar-sm {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   08. PRIVATE FEEDBACK INBOX
   ============================================================ */
.private-fb-inbox {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.fb-inbox-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fb-inbox-title { font-size: 0.9375rem; font-weight: 700; color: var(--slate-900); }
.fb-card {
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-50);
  display: flex;
  gap: 12px;
  transition: background 120ms;
}
.fb-card:hover { background: var(--slate-50); }
.fb-card:last-child { border-bottom: none; }
.fb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-content { flex: 1; min-width: 0; }
.fb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.fb-name { font-size: 0.875rem; font-weight: 700; color: var(--slate-900); }
.fb-email { font-size: 0.75rem; color: var(--slate-400); margin-bottom: 5px; }
.fb-quote {
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.45;
  font-style: italic;
  background: var(--slate-50);
  border-left: 2px solid var(--slate-200);
  padding: 6px 10px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 6px 0;
}
.fb-time { font-size: 0.6875rem; color: var(--slate-400); }

/* ============================================================
   09. CUSTOMERS SECTION
   ============================================================ */
.customers-table {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   10. ANALYTICS SECTION
   ============================================================ */
.analytics-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.analytics-funnel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.funnel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-50);
}
.funnel-row:last-child { border-bottom: none; }
.funnel-label { flex: 1; font-size: 0.875rem; color: var(--slate-600); font-weight: 500; }
.funnel-bar-track {
  width: 120px;
  height: 8px;
  background: var(--slate-100);
  border-radius: 4px;
  overflow: hidden;
}
.funnel-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--blue-600);
  transition: width 800ms ease;
}
.funnel-bar-fill.green { background: var(--green-500); }
.funnel-bar-fill.amber { background: var(--amber-400); }
.funnel-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
  min-width: 40px;
  text-align: right;
}
.analytics-chart-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.analytics-chart-title { font-size: 0.9rem; font-weight: 700; color: var(--slate-900); margin-bottom: 16px; }
.line-chart-area {
  height: 120px;
  position: relative;
}
.line-chart-svg { width: 100%; height: 100%; overflow: visible; }

/* ============================================================
   11. BENEFITS
   ============================================================ */
.benefits-section { background: var(--white); }
.benefits-4up {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 28px 22px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  transition: all 180ms;
}
.benefit-card:hover {
  background: var(--white);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon.blue   { background: var(--blue-50);  color: var(--blue-600); border: 1px solid var(--blue-100); }
.benefit-icon.green  { background: var(--green-50); color: var(--green-600); border: 1px solid var(--green-100); }
.benefit-icon.amber  { background: #fffbeb; color: var(--amber-500); border: 1px solid #fde68a; }
.benefit-icon.purple { background: #faf5ff; color: var(--purple-600); border: 1px solid #e9d5ff; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; }

/* ============================================================
   12. QR / REAL WORLD
   ============================================================ */
.qr-real-section { background: var(--slate-50); }
.qr-real-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.qr-touchpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.qr-touch-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  box-shadow: var(--shadow-xs);
}
.qr-stand-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 320px;
  margin: 0 auto;
}
.qr-stand-card h4 { font-size: 1.1rem; margin-bottom: 5px; }
.qr-stand-card p { font-size: 0.8125rem; color: var(--slate-400); margin-bottom: 20px; }
.qr-vector {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 12px;
  display: inline-block;
  margin-bottom: 14px;
}
.qr-vector svg { display: block; width: 150px; height: 150px; }

/* ============================================================
   13. INDUSTRIES
   ============================================================ */
.industries-section { background: var(--white); }
.industries-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.industry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  transition: all 160ms;
}
.industry-card:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  transform: translateX(3px);
}
.industry-emoji { font-size: 1.5rem; }
.industry-name { font-size: 0.9375rem; font-weight: 600; color: var(--slate-800); }

/* ============================================================
   14. BUSINESS JOURNEY
   ============================================================ */
.journey-section { background: var(--slate-50); }
.journey-timeline {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journey-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.journey-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  flex-shrink: 0;
}
.journey-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--blue-600);
  flex-shrink: 0;
  z-index: 1;
  background: var(--white);
}
.journey-dot.outcome-g { border-color: var(--green-500); color: var(--green-600); }
.journey-dot.outcome-p { border-color: var(--blue-600); color: var(--blue-700); }
.journey-line {
  width: 2px;
  background: var(--slate-200);
  flex: 1;
  min-height: 28px;
}
.journey-content {
  flex: 1;
  padding-bottom: 28px;
}
.journey-content h4 { font-size: 1rem; margin-bottom: 4px; }
.journey-content p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.5; }
.journey-outcome-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.journey-outcome {
  padding: 12px 16px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
}
.journey-outcome.google { background: var(--green-50); border-color: var(--green-100); }
.journey-outcome.private { background: var(--blue-50); border-color: var(--blue-100); }
.journey-outcome .oj-title { font-size: 0.875rem; font-weight: 700; color: var(--slate-900); margin-bottom: 3px; }
.journey-outcome p { font-size: 0.8125rem; color: var(--slate-500); }

/* ============================================================
   15. FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 160ms;
}
.faq-item.open { border-color: var(--blue-200); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.faq-q:hover { background: var(--slate-50); }
.faq-chevron { color: var(--slate-400); flex-shrink: 0; transition: transform 240ms ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue-600); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 20px 18px; }
.faq-a p { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.65; }

/* ============================================================
   16. FINAL CTA
   ============================================================ */
.final-cta-section { background: var(--slate-50); padding: 96px 0; }
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-copy h2 { margin-bottom: 16px; }
.cta-copy .text-lead { margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta-visual {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; color: var(--slate-500); margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--slate-500); transition: color 120ms; }
.footer-links a:hover { color: var(--blue-600); }
.footer-bottom {
  border-top: 1px solid var(--slate-100);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 100%; }
  .customer-exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-frame { width: 300px; margin: 0 auto; }
  .analytics-preview { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-4up { grid-template-columns: repeat(2, 1fr); }
  .qr-real-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .app-sidebar { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .navbar.menu-open .nav-right {
    position: fixed;
    top: calc(64px + 170px);
    left: 0; right: 0;
    padding: 16px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .navbar.menu-open .nav-right .btn { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .product-tabs { flex-wrap: wrap; width: 100%; }
  .benefits-4up { grid-template-columns: 1fr; }
  .industries-9 { grid-template-columns: repeat(2, 1fr); }
  .journey-outcome-pair { grid-template-columns: 1fr; }
  .branch-outcome-pair { grid-template-columns: 1fr; }
  .flow-branch-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .final-cta-visual { display: none; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
