:root {
  --white: #fff;
  --bg: #fff;
  --bg-alt: #f8f9fa;
  --bg-hover: #f1f3f4;
  --text: #202124;
  --text-secondary: #5f6368;
  --text-tertiary: #80868b;
  --border: #dadce0;
  --border-light: #e8eaed;
  --blue: #1a73e8;
  --blue-hover: #1557b0;
  --blue-bg: #e8f0fe;
  --blue-text: #174ea6;
  --green: #1e8e3e;
  --green-bg: #e6f4ea;
  --red: #d93025;
  --red-bg: #fce8e6;
  --yellow: #f9ab00;
  --yellow-bg: #fef7e0;
  --purple: #a142f4;
  --purple-bg: #f3e8fd;
  --shadow-1: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  --shadow-2: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
  --font: 'Google Sans', sans-serif;
  --font-text: 'Google Sans Text', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-text); font-size: 14px; background: var(--bg); color: var(--text); line-height: 1.58; display: flex; flex-direction: column; min-height: 100vh; }
body > .footer { margin-top: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font); font-weight: 400; line-height: 1.25; color: var(--text); }
h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 16px; font-weight: 500; }
.section-header { text-align: center; max-width: 540px; margin: 0 auto 40px; }
.section-sub { color: var(--text-secondary); font-size: 16px; margin-top: 8px; line-height: 1.5; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-bg);
  border-radius: 100px;
  letter-spacing: .25px;
}

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .25px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  padding: 0 24px;
  height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
  transition: background .2s, box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover { background: var(--blue-hover); box-shadow: var(--shadow-1); }
.btn-secondary {
  padding: 0 24px;
  height: 36px;
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: var(--blue-bg); border-color: var(--border); }
.btn-ghost {
  padding: 0 16px;
  height: 36px;
  background: none;
  color: var(--text-secondary);
  border-radius: 4px;
  transition: background .2s;
}
.btn-ghost:hover { background: var(--bg-alt); }
.btn-sm { height: 32px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 40px; padding: 0 24px; font-size: 14px; }
.btn-block { width: 100%; }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
}
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login { color: var(--text-secondary); font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 6px; transition: color .2s, background .2s; }
.nav-login:hover { color: var(--text); background: var(--bg-alt); }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.nav-mobile-toggle:hover { background: var(--bg-alt); }
.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-secondary);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height .3s ease, padding .3s ease;
}
.nav-mobile a {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: background .2s;
}
.nav-mobile a:hover { background: var(--bg-alt); }
.nav-mobile a.btn-primary {
  color: #fff;
  margin: 4px 16px 0;
  padding: 0 24px;
  height: 40px;
  border-radius: 4px;
}
.nav-mobile a.btn-primary:hover { background: var(--blue-hover); }
.nav-mobile.open { max-height: 320px; padding: 8px 0; }

/* HERO */
.hero {
  padding: 88px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 520px; }
.hero h1 { margin-top: 16px; }
.hero-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  border-right: 1px solid var(--border-light);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-number {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.hero-stat span { font-size: 12px; color: var(--text-tertiary); line-height: 1.3; }
.hero-stat-divider { display: none; }

/* HERO BLOBS */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.blob-1 {
  width: 400px;
  height: 400px;
  background: #e8f0fe;
  top: -100px;
  right: -60px;
}
.blob-2 {
  width: 300px;
  height: 300px;
  background: #e6f4ea;
  bottom: -80px;
  right: 20%;
}
.blob-3 {
  width: 250px;
  height: 250px;
  background: #f3e8fd;
  top: 40%;
  left: -80px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* PHONE MOCKUP */
.phone-mockup {
  width: 280px;
  background: #000;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.1);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  background: #000;
  object-fit: contain;
}

/* Soft brand-color glow behind the device — adds depth without text */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(26,115,232,.18), transparent 70%),
    radial-gradient(50% 50% at 80% 80%, rgba(124,77,255,.14), transparent 70%);
  filter: blur(20px);
}

/* Phone device frame — wraps the live demo video. Frame aspect
   matches the content area inside the recorded video (551×720) so
   object-fit: cover clips the baked-in side letterboxing exactly. */
.device-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 551 / 720;
  background: linear-gradient(150deg, #1c1c1e 0%, #2c2c2e 50%, #1c1c1e 100%);
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 30px 80px rgba(15,23,42,.28),
    0 8px 24px rgba(15,23,42,.18);
  z-index: 2;
}
.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
}
.device-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  max-width: 110px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 4;
}
.device-side-btn {
  position: absolute;
  background: #0e0e10;
  border-radius: 2px;
}
.device-side-btn--vol-up   { left:  -2px; top: 22%; width: 3px; height: 36px; }
.device-side-btn--vol-down { left:  -2px; top: 32%; width: 3px; height: 36px; }
.device-side-btn--power    { right: -2px; top: 28%; width: 3px; height: 50px; }
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
}
.phone-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 8px;
  background: #075e54;
  color: #fff;
}
.phone-chat-avatar {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-chat-info { flex: 1; }
.phone-chat-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}
.phone-chat-status {
  display: block;
  font-size: 10px;
  opacity: .7;
}
.phone-chat-body {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ece5dd;
  min-height: 280px;
}
.phone-bubble {
  max-width: 88%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text);
}
.phone-bubble--in {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}
.phone-bubble--out {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 2px;
}
.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #ece5dd;
}
.phone-input-field {
  flex: 1;
  padding: 6px 12px;
  background: #fff;
  border-radius: 18px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.phone-send-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #075e54;
  border-radius: 50%;
}

/* FLOATING CARDS */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  z-index: 3;
  white-space: nowrap;
  animation: float-in .6s ease both;
}
.hero-float-card--1 {
  top: 12%;
  right: -20px;
  animation-delay: .3s;
}
.hero-float-card--2 {
  bottom: 28%;
  left: -30px;
  animation-delay: .5s;
}
.hero-float-card--3 {
  bottom: 8%;
  right: -10px;
  animation-delay: .7s;
}

/* Hero pills — minimal floating badges around the video */
.hero-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  z-index: 3;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  animation: float-in .6s ease both;
}
.hero-pill--live {
  top: 8%;
  right: -28px;
  animation-delay: .3s;
}
.hero-pill--channels {
  bottom: 22%;
  left: -36px;
  animation-delay: .5s;
}
.hero-pill--channels svg:first-of-type { color: #25d366; }
.hero-pill--channels svg:last-of-type { color: var(--primary, #1a73e8); }
.hero-pill--langs {
  bottom: 6%;
  right: -16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  animation-delay: .7s;
}
.hero-pill--langs .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c7c9cc;
  display: inline-block;
}
.hero-pill--langs .muted { color: #80868b; }
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34a853;
  display: inline-block;
  position: relative;
}
.hero-pill-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #34a853;
  opacity: .5;
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.8); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.float-card-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-card-icon--green { background: var(--green-bg); color: var(--green); }
.float-card-icon--blue { background: var(--blue-bg); color: var(--blue); }
.float-card-icon--purple { background: var(--purple-bg); color: var(--purple); }
.float-card-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.float-card-detail {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
}

/* PROBLEMS */
.problems {
  padding: 64px 0;
  background: var(--bg-alt);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.problem-card {
  padding: 24px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.problem-card:hover { box-shadow: var(--shadow-1); }
.problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  margin-bottom: 16px;
}
.problem-card h3 { margin-bottom: 8px; }
.problem-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.54; }

/* FEATURES */
.features { padding: 64px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover { box-shadow: var(--shadow-1); }
.feature-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
  background: var(--bg-alt);
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  margin-bottom: 16px;
}
.feature-icon--whatsapp {
  background: var(--green-bg);
  color: #25D366;
}
.feature-icon--web {
  background: var(--blue-bg);
  color: var(--blue);
}
.feature-icon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.feature-icon-row .feature-icon { margin-bottom: 0; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.58; }

/* CHAT PREVIEWS */
.feature-previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.preview-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-light);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* WEB WIDGET */
.web-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--blue);
  color: #fff;
}
.widget-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-avatar {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}
.widget-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.widget-status {
  display: block;
  font-size: 10px;
  opacity: .75;
}
.widget-header svg { opacity: .6; color: #fff; }
.widget-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.widget-msg {
  max-width: 88%;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.46;
  color: var(--text);
}
.widget-msg--bot {
  align-self: flex-start;
  background: var(--bg-alt);
  border-bottom-left-radius: 2px;
}
.widget-msg--user {
  align-self: flex-end;
  background: var(--blue-bg);
  color: var(--blue-text);
  border-bottom-right-radius: 2px;
}
.widget-msg-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 2px;
}
.widget-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-tertiary);
}
.widget-input svg { color: var(--blue); }

/* STANDALONE FEATURE PREVIEW */
.feature-preview--standalone {
  max-width: 100%;
  margin-top: 8px;
}

/* EMBED LIST */
.feature-embed-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-embed-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feature-embed-list svg {
  flex-shrink: 0;
}

.chat-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.46;
  color: var(--text);
}
.chat-bubble--incoming {
  align-self: flex-start;
  background: var(--bg-alt);
  border-bottom-left-radius: 2px;
}
.chat-bubble--outgoing {
  align-self: flex-end;
  background: var(--green-bg);
  border-bottom-right-radius: 2px;
}
.chat-name { display: block; font-size: 11px; font-weight: 500; color: var(--text-tertiary); margin-bottom: 2px; }
.chat-label { display: block; font-size: 11px; font-weight: 500; color: var(--green); margin-bottom: 2px; }

/* WORKFLOW */
.workflow {
  padding: 64px 0;
  background: var(--bg-alt);
}
.workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.workflow-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
}
.workflow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}
.workflow-step-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--blue);
  margin-bottom: 16px;
}
.workflow-step h3 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.workflow-step p { font-size: 13px; color: var(--text-tertiary); line-height: 1.46; }
.workflow-connector {
  display: flex;
  align-items: center;
  padding-top: 56px;
  flex-shrink: 0;
  margin: 0 4px;
}

/* DASHBOARD PREVIEW */
.dashboard-section { padding: 64px 0; }
.dash-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
}
.dash {
  display: flex;
  min-height: 440px;
  background: var(--bg-alt);
  font-family: var(--font-text);
  font-size: 13px;
}
.dash-sidebar {
  width: 48px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.dash-sidebar-logo {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.dash-sidebar-nav { display: flex; flex-direction: column; width: 100%; }
.dash-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: var(--text-tertiary);
  transition: background .2s;
  position: relative;
}
.dash-sidebar-item:hover { background: var(--bg-alt); color: var(--text-secondary); }
.dash-sidebar-item.active { color: var(--blue); background: var(--blue-bg); }
.dash-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dash-topbar {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}
.dash-search {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 13px;
}
.dash-topbar-right { display: flex; align-items: center; gap: 12px; }
.dash-notif { position: relative; color: var(--text-tertiary); }
.dash-notif-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 7px;
  padding: 0 3px;
}
.dash-avatar {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-bg);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
}
.dash-content { padding: 12px 16px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.dash-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dash-stat-card {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.dash-stat-label { font-size: 11px; color: var(--text-tertiary); letter-spacing: .1px; }
.dash-stat-bottom { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.dash-stat-value { font-family: var(--font); font-size: 20px; font-weight: 400; color: var(--text); }
.dash-stat-change { font-size: 11px; font-weight: 500; }
.dash-stat-change.positive { color: var(--green); }
.dash-stat-change.neutral { color: var(--text-tertiary); }

.dash-panels { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; flex: 1; }
.dash-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.dash-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dash-panel-header h4 { font-size: 13px; font-weight: 500; }
.dash-panel-link { font-size: 12px; color: var(--blue); font-weight: 500; }

.dash-conv-list { display: flex; flex-direction: column; }
.dash-conv-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background .2s;
}
.dash-conv-item:hover { background: var(--bg-alt); }
.dash-conv-item.unread { background: var(--blue-bg); }
.dash-conv-avatar {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-conv-avatar.wa { background: var(--green-bg); color: #25D366; }
.dash-conv-avatar.email { background: var(--blue-bg); color: var(--blue); }
.dash-conv-info { flex: 1; min-width: 0; }
.dash-conv-top { display: flex; justify-content: space-between; align-items: center; }
.dash-conv-name { font-size: 13px; font-weight: 500; }
.dash-conv-time { font-size: 11px; color: var(--text-tertiary); }
.dash-conv-preview { display: block; font-size: 12px; color: var(--text-tertiary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-conv-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--green-bg);
  color: var(--green);
}
.dash-conv-badge.replied { background: var(--blue-bg); color: var(--blue); }
.dash-conv-badge.qualified { background: var(--purple-bg); color: var(--purple); }
.dash-conv-badge.pending { background: var(--yellow-bg); color: #e37400; }

.dash-chart { flex: 1; }
.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding-top: 8px;
}
.dash-chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.dash-chart-col span { font-size: 11px; color: var(--text-tertiary); }
.dash-chart-bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
  background: var(--blue);
  opacity: .6;
  transition: opacity .2s;
}
.dash-chart-col:hover .dash-chart-bar { opacity: 1; }

.dash-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-appt-list { display: flex; flex-direction: column; gap: 4px; }
.dash-appt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 4px;
}
.dash-appt-time { text-align: center; flex-shrink: 0; width: 48px; }
.dash-appt-hour { display: block; font-family: var(--font); font-size: 14px; font-weight: 400; }
.dash-appt-day { display: block; font-size: 11px; color: var(--text-tertiary); }
.dash-appt-info { flex: 1; }
.dash-appt-name { display: block; font-size: 13px; font-weight: 500; }
.dash-appt-type { display: block; font-size: 12px; color: var(--text-tertiary); }
.dash-appt-status {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
}
.dash-appt-status.confirmed { background: var(--green-bg); color: var(--green); }
.dash-appt-status.pending { background: var(--yellow-bg); color: #e37400; }

.dash-pipeline-stages { display: flex; flex-direction: column; gap: 8px; }
.dash-pipeline-bar-track {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.dash-pipeline-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  opacity: .5;
}
.dash-pipeline-bar.won { background: var(--green); opacity: 1; }
.dash-pipeline-meta { display: flex; justify-content: space-between; margin-top: 2px; }
.dash-pipeline-meta span { font-size: 12px; color: var(--text-tertiary); }
.dash-pipeline-meta strong { font-size: 12px; font-weight: 500; }

/* BEFORE/AFTER */
.before-after {
  padding: 64px 0;
  background: var(--bg-alt);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.ba-col {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
}
.ba-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .25px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.ba-before .ba-label { color: var(--red); }
.ba-after .ba-label { color: var(--green); }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ba-item svg { flex-shrink: 0; margin-top: 2px; }
.ba-before .ba-item svg { color: var(--red); }
.ba-after .ba-item svg { color: var(--green); }

/* COST SECTION */
.cost-section {
  padding: 64px 0;
}
.cost-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cost-content { margin-bottom: 24px; }
.cost-content h2 { font-size: 24px; margin-bottom: 8px; }
.cost-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
.cost-math {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 8px;
}
.cost-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cost-item {
  text-align: center;
  padding: 12px 16px;
}
.cost-number {
  display: block;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.cost-label {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}
.cost-operator {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-tertiary);
}
.cost-item--result {
  background: var(--red-bg);
  border-radius: 8px;
}
.cost-item--result .cost-number {
  color: var(--red);
}
.cost-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* PRICING */
.pricing { padding: 64px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.pricing-card:hover { box-shadow: var(--shadow-1); }
.pricing-card--popular { border-color: var(--blue); border-width: 2px; }
.pricing-card--popular:hover { box-shadow: var(--shadow-2); }
.pricing-popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 12px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: .25px;
}
.pricing-card-header { margin-bottom: 16px; }
.pricing-card-header h3 { font-size: 18px; font-weight: 400; margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--text-tertiary); line-height: 1.46; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-currency { font-family: var(--font); font-size: 20px; font-weight: 400; color: var(--text-secondary); }
.pricing-amount { font-family: var(--font); font-size: 36px; font-weight: 400; color: var(--text); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--text-tertiary); margin-left: 2px; }
.pricing-custom { font-size: 28px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.43;
}
.pricing-features svg { flex-shrink: 0; }
.pricing-soon {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2px;
  background: #f1f3f4;
  color: #5f6368;
  border-radius: 100px;
  vertical-align: middle;
}
.pricing-trial-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Navigation dropdown (Industries) */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-trigger {
  /* Match .nav-links a styling exactly so the button visually belongs */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.nav-dropdown-trigger svg { display: block; }
.nav-dropdown-trigger svg { transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--text); background: var(--bg-alt); }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px 24px;
  min-width: 620px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(15,23,42,.14), 0 4px 16px rgba(15,23,42,.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s, transform .15s ease;
  z-index: 50;
}
.nav-dropdown-panel::before {
  /* hover safety bridge so the panel doesn't close when moving from trigger to panel */
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-col { display: flex; flex-direction: column; gap: 4px; }
.nav-dropdown-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}
.nav-dropdown-col a {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-radius: 4px;
  transition: color .12s ease;
}
.nav-dropdown-col a:hover { color: var(--blue); }

/* Mobile accordion (replaces dropdown on small screens) */
.nav-mobile-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.nav-mobile-accordion svg { transition: transform .2s ease; }
.nav-mobile-accordion[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-mobile-accordion-panel {
  display: none;
  padding: 0 0 6px;
}
.nav-mobile-accordion-panel.open { display: block; }
.nav-mobile-sub {
  display: block;
  padding: 10px 32px;
  color: var(--text-secondary);
  font-size: 14px;
}
@media (max-width: 960px) {
  .nav-dropdown { display: none; }
}

/* Vertical landing pages */
.v-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
}
.v-hero .hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.v-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.v-hero-content .badge { display: inline-block; }
.v-hero-content h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 14px; max-width: 540px; }
.v-hero-content .hero-sub { font-size: 17px; line-height: 1.55; max-width: 520px; }
.v-hero-content .hero-ctas { margin-top: 28px; gap: 12px; }
.v-hero-visual { position: relative; display: flex; justify-content: center; padding: 0; }

.v-card {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.v-card:hover {
  box-shadow: 0 16px 40px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.06);
  transform: translateY(-2px);
}
.v-card h3 { font-size: 17px; font-weight: 600; margin: 14px 0 8px; color: var(--text); letter-spacing: -0.005em; }
.v-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }
.v-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v-card-icon--warn { background: #fff3e0; color: #e07a00; }
.v-card-icon--ok   { background: #e8f0fe; color: #1a73e8; }
.v-card--pain { border-left: 0; }
.v-card--use { border-left: 0; }

.v-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  max-width: 960px;
  margin: 0 auto;
}
.v-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.v-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f8ff;
  color: #1a73e8;
}
.v-feature h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.v-feature p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }

.v-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
  counter-reset: stepc;
}
.v-step {
  position: relative;
  padding: 32px 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: left;
}
.v-step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1a73e8 0%, #7c4dff 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.v-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f4f8ff;
  color: #1a73e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 16px;
}
.v-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.v-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.final-cta-trust { margin-top: 16px; font-size: 13px; color: var(--text-tertiary); }

.vertical-stat {
  padding: 36px 0;
  background: linear-gradient(135deg, #1a73e8 0%, #7c4dff 100%);
  color: #fff;
  text-align: center;
}
.vertical-stat-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.vertical-stat-line { font-size: 24px; font-weight: 500; letter-spacing: -0.01em; }
.vertical-stat-line b { font-weight: 700; }
.vertical-stat-sub { margin-top: 10px; font-size: 14px; opacity: 0.85; }

.chat-mockup {
  max-width: 440px;
  margin: 0 auto;
  background: #ece5dd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
}
.chat-mockup-header {
  background: #075e54;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.chat-mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8 0%, #7c4dff 100%);
  display: inline-block;
}
.chat-mockup-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.chat-mockup-status { font-size: 11px; opacity: 0.75; }
.chat-mockup-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 280px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='20' cy='20' r='1' fill='%23dcd5cb'/></svg>");
}
.chat-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.42;
  word-wrap: break-word;
}
.chat-bubble--in {
  align-self: flex-start;
  background: #fff;
  color: #303030;
  border-bottom-left-radius: 2px;
}
.chat-bubble--out {
  align-self: flex-end;
  background: #dcf8c6;
  color: #303030;
  border-bottom-right-radius: 2px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  max-width: 920px;
  margin: 0 auto;
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.includes-item svg { flex-shrink: 0; margin-top: 4px; }
.includes-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.includes-item p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.trust-item {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.trust-item-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.trust-item-body { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; }

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-teaser-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.pricing-teaser-card--popular { border-color: var(--blue); border-width: 2px; }
.pricing-teaser-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 6px; }
.pricing-teaser-price { font-size: 28px; font-weight: 700; color: var(--text); }
.pricing-teaser-price span { font-size: 14px; font-weight: 400; color: var(--text-secondary); margin-left: 2px; }
.pricing-teaser-desc { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }

.vertical-section { padding: 60px 0; }
.vertical-section--alt { background: var(--bg-alt); }
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.vertical-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.vertical-item h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}
.vertical-item p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.vertical-item--use {
  border-left: 3px solid var(--blue);
}
.vertical-demo {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.vertical-demo .device-frame { max-width: 360px; }
@media (max-width: 960px) {
  .vertical-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .v-hero { padding: 64px 0 40px; }
  .v-hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .v-hero-content { max-width: 600px; margin: 0 auto; }
  .v-hero-content h1, .v-hero-content .hero-sub { max-width: none; }
  .v-hero-content .hero-ctas { justify-content: center; }
  .v-hero-visual { max-width: 320px; margin: 0 auto; }
  .v-features-grid { grid-template-columns: 1fr 1fr; }
  .v-steps { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 640px) {
  .vertical-grid { grid-template-columns: 1fr; gap: 14px; }
  .vertical-section { padding: 40px 0; }
  .v-hero-content h1 { font-size: 32px; }
  .v-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .vertical-stat-line { font-size: 18px; }
  .chat-mockup { max-width: 320px; }
}
@media (max-width: 960px) and (min-width: 641px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .pricing-teaser-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* 404 page */
.notfound {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.notfound-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.notfound-code {
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #1a73e8 0%, #7c4dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  user-select: none;
}
.notfound h1 {
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.notfound-links {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--text-tertiary);
}
.notfound-links a {
  color: var(--blue);
  font-weight: 500;
}
.notfound-links a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .notfound-code { font-size: 96px; }
  .notfound h1 { font-size: 24px; }
}

/* FINAL CTA */
.final-cta {
  padding: 64px 0;
  text-align: center;
  background: var(--bg-alt);
}
.final-cta-content { max-width: 540px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { color: var(--text-secondary); font-size: 16px; line-height: 1.5; }
.final-cta-note {
  margin-top: 16px;
  font-size: 12px !important;
  color: var(--text-tertiary) !important;
}
.final-cta .hero-ctas { justify-content: center; }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ACTIVE NAV */
.nav-links a.active { color: var(--blue); }

/* PAGE HERO (subpages) */
.page-hero {
  padding: 120px 0 48px;
  text-align: center;
}
.page-hero-content { max-width: 600px; margin: 0 auto; }
.page-hero h1 { margin-top: 16px; }

/* FEATURE DETAIL (features page) */
.feature-detail { padding: 64px 0; }
.feature-detail--alt { background: var(--bg-alt); }
.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.feature-detail-grid--reverse { direction: rtl; }
.feature-detail-grid--reverse > * { direction: ltr; }
.feature-detail-content h2 { font-size: 24px; margin-bottom: 12px; }
.feature-detail-content > p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.feature-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-detail-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.feature-detail-list svg { flex-shrink: 0; }

/* REMINDER PREVIEW */
.reminder-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reminder-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feature-detail--alt .reminder-card { background: var(--white); }
.reminder-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.reminder-icon--sent { background: var(--blue-bg); color: var(--blue); }
.reminder-icon--confirmed { background: var(--green-bg); color: var(--green); }
.reminder-icon--rescheduled { background: var(--yellow-bg); color: #e37400; }
.reminder-title { display: block; font-size: 13px; font-weight: 500; }
.reminder-meta { display: block; font-size: 12px; color: var(--text-tertiary); }
.reminder-card > div:nth-child(2) { flex: 1; }
.reminder-status {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.reminder-status--sent { background: var(--blue-bg); color: var(--blue); }
.reminder-status--confirmed { background: var(--green-bg); color: var(--green); }
.reminder-status--rescheduled { background: var(--yellow-bg); color: #e37400; }

/* INTAKE FORM PREVIEW */
.intake-form-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.intake-header {
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.intake-field {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.intake-label { color: var(--text-tertiary); }
.intake-value { color: var(--text); font-weight: 500; text-align: right; }
.intake-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}

/* MINI DASHBOARD */
.mini-dash {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-dash-stat {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.mini-dash-label { display: block; font-size: 12px; color: var(--text-tertiary); margin-bottom: 4px; }
.mini-dash-value {
  display: inline;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-right: 8px;
}

/* RETENTION TIMELINE */
.retention-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
}
.timeline-dot--active { background: var(--blue); box-shadow: 0 0 0 2px var(--blue-bg); }
.timeline-dot--green { background: var(--green); box-shadow: 0 0 0 2px var(--green-bg); }
.timeline-content { display: flex; flex-direction: column; }
.timeline-date { font-size: 11px; color: var(--text-tertiary); font-weight: 500; }
.timeline-label { font-size: 13px; color: var(--text); }
.timeline-line {
  width: 2px;
  height: 24px;
  background: var(--border-light);
  margin-left: 5px;
}

/* FAQ */
.faq { padding: 64px 0; background: var(--bg-alt); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}
.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ABOUT PAGE */
.about-section { padding: 64px 0; }
.about-section--alt { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 880px;
  margin: 0 auto;
}
.about-block h2 { font-size: 22px; margin-bottom: 16px; }
.about-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.about-block p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.value-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.value-card:hover { box-shadow: var(--shadow-1); }
.value-num {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 400;
  color: var(--blue);
  opacity: .5;
  margin-bottom: 8px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.54; }

.about-italy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-italy-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  margin-bottom: 16px;
}
.about-italy h2 { margin-bottom: 12px; }
.about-italy > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about-italy-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* DEMO PAGE */
.demo-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 72px 0 48px;
}
.demo-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: start;
}
.demo-info .badge { margin-bottom: 16px; }
.demo-info h1 { text-align: left; margin-bottom: 12px; font-size: 32px; }
.demo-info .hero-sub { text-align: left; margin-bottom: 32px; font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

.demo-expect { margin-bottom: 32px; }
.demo-expect h3 { font-size: 14px; font-weight: 500; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-tertiary); }
.demo-expect-list { display: flex; flex-direction: column; gap: 16px; }
.demo-expect-item { display: flex; align-items: flex-start; gap: 12px; }
.demo-expect-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}
.demo-expect-title { display: block; font-size: 14px; font-weight: 500; line-height: 1.4; }
.demo-expect-desc { display: block; font-size: 13px; color: var(--text-tertiary); line-height: 1.5; margin-top: 2px; }

.demo-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.demo-form-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(60,64,67,.08), 0 1px 4px rgba(60,64,67,.06);
}
.demo-form-card h2 { font-size: 22px; margin-bottom: 6px; }
.demo-form-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.5; }

.demo-form { display: flex; flex-direction: column; gap: 18px; }
.demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form .btn-primary {
  height: 44px;
  font-size: 15px;
  border-radius: 8px;
  margin-top: 4px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.form-optional { color: var(--text-tertiary); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-text);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-bg);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-tertiary); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2380868b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group .iti { width: 100%; }
.form-group .iti__tel-input { width: 100%; }
.demo-form .btn-primary {
  height: 44px;
  font-size: 15px;
  border-radius: 8px;
  margin-top: 4px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* FOOTER */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand p { margin-top: 12px; font-size: 13px; color: var(--text-tertiary); line-height: 1.54; max-width: 240px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text-secondary); transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* LANGUAGE BAR */
.lang-bar {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  font-size: 12px;
  color: var(--text-secondary);
  z-index: 1000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.lang-bar--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-bar--hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.lang-bar-text { white-space: nowrap; }
.lang-bar-link {
  color: var(--blue);
  font-weight: 500;
  white-space: nowrap;
}
.lang-bar-link:hover { text-decoration: underline; }
.lang-bar-sep { color: var(--text-tertiary); margin: 0 2px; }
.lang-bar-close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 16px;
  cursor: pointer;
  padding: 0 0 0 4px;
  line-height: 1;
}
.lang-bar-close:hover { color: var(--text); }

/* BLOG */
.blog-section { padding: 64px 0; }
.blog-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.blog-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover { box-shadow: var(--shadow-1); }
.blog-meta {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.blog-card h2 { font-size: 22px; margin-bottom: 8px; }
.blog-card h2 a { color: var(--text); transition: color .2s; }
.blog-card h2 a:hover { color: var(--blue); }
.blog-card > p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: 14px; font-weight: 500; color: var(--blue); }
.blog-read-more:hover { text-decoration: underline; }

.blog-content { padding: 0 0 64px; }
.blog-article {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.blog-article h2 {
  font-size: 24px;
  margin: 40px 0 16px;
}
.blog-article h3 {
  font-size: 18px;
  margin: 28px 0 12px;
}
.blog-article p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.blog-article ul, .blog-article ol {
  margin: 0 0 16px 24px;
  color: var(--text-secondary);
}
.blog-article li { margin-bottom: 8px; line-height: 1.6; }
.blog-article strong { color: var(--text); font-weight: 500; }
.blog-article a { color: var(--blue); font-weight: 500; }
.blog-article a:hover { text-decoration: underline; }
.blog-article a.btn-primary { color: #fff; text-decoration: none; font-weight: 500; }
.blog-article a.btn-primary:hover { color: #fff; text-decoration: none; }

.blog-cta-box {
  margin: 48px 0 0;
  padding: 32px;
  background: var(--blue-bg);
  border-radius: 12px;
  text-align: center;
}
.blog-cta-box h2, .blog-cta-box h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--text);
}
.blog-cta-box p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.blog-cta-box .btn-primary { margin-top: 0; }

@media (max-width: 640px) {
  .blog-card { padding: 20px; }
  .blog-card h2 { font-size: 18px; }
  .blog-article { font-size: 15px; }
  .blog-article h2 { font-size: 20px; margin-top: 32px; }
  .blog-article h3 { font-size: 16px; }
  .blog-cta-box { padding: 24px 20px; }
}

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
.problems-grid [data-animate]:nth-child(2) { transition-delay: .05s; }
.problems-grid [data-animate]:nth-child(3) { transition-delay: .1s; }
.problems-grid [data-animate]:nth-child(4) { transition-delay: .15s; }
.problems-grid [data-animate]:nth-child(5) { transition-delay: .2s; }
.features-grid [data-animate]:nth-child(2) { transition-delay: .04s; }
.features-grid [data-animate]:nth-child(3) { transition-delay: .08s; }
.features-grid [data-animate]:nth-child(4) { transition-delay: .12s; }
.features-grid [data-animate]:nth-child(5) { transition-delay: .16s; }
.features-grid [data-animate]:nth-child(6) { transition-delay: .2s; }
.features-grid [data-animate]:nth-child(7) { transition-delay: .24s; }
.features-grid [data-animate]:nth-child(8) { transition-delay: .28s; }

/* RESPONSIVE */

/* -- Tablet -- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-float-card--2 { left: 0; }
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .feature-previews { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .workflow-steps { flex-direction: column; align-items: center; gap: 8px; }
  .workflow-connector { transform: rotate(90deg); padding-top: 0; margin: 0; }
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); }
  .dash-panels { grid-template-columns: 1fr; }
  .dash-bottom-row { grid-template-columns: 1fr; }
  .final-cta .hero-ctas { justify-content: center; }
  .trust-row { justify-content: center; }
  .feature-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-detail-grid--reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-layout { grid-template-columns: 1fr; gap: 40px; }
  .demo-info { text-align: center; }
  .demo-info h1, .demo-info .hero-sub { text-align: center; }
  .demo-expect { text-align: left; max-width: 400px; margin: 0 auto 32px; }
  .demo-trust { justify-content: center; }
}

/* -- Mobile -- */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile.open { padding: 12px 0 16px; }
  .nav-mobile a {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
    margin: 0 8px;
  }
  .nav-mobile a:hover { background: var(--bg-alt); }
  .nav-mobile a.btn-primary {
    margin: 8px 16px 0;
    height: 44px;
    padding: 0 24px;
    font-size: 15px;
    border-radius: 8px;
    color: #fff;
  }

  /* Typography */
  h1 { font-size: 26px; line-height: 1.3; }
  h2 { font-size: 22px; }
  .section-sub { font-size: 15px; }
  body { font-size: 15px; }
  .section-header { margin-bottom: 28px; }

  /* Buttons — bigger touch targets */
  .btn-lg { height: 48px; padding: 0 28px; font-size: 15px; border-radius: 8px; }
  .btn-primary.btn-sm, .btn-secondary.btn-sm { height: 36px; }

  /* Hero */
  .hero { padding: 80px 0 40px; }
  .hero-sub { font-size: 15px; }
  .hero-visual { max-width: 100%; }
  .hero-float-card,
  .hero-pill { display: none; }
  .hero-proof { justify-content: center; }
  .hero-stat { padding: 0 16px; gap: 3px; }
  .hero-stat-number { font-size: 22px; }
  .hero-stat span { font-size: 11px; }

  /* Problems */
  .problems-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .problem-card { padding: 20px 16px; }
  .problem-card p { font-size: 13px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-previews { grid-template-columns: 1fr; }
  .feature-card { padding: 20px; }

  /* Workflow */
  .workflow-connector { display: none; }
  .workflow-steps { flex-direction: column; align-items: stretch; gap: 0; }
  .workflow-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 14px;
    text-align: left;
    max-width: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .workflow-step:last-child { border-bottom: none; }
  .workflow-step-num { display: none; }
  .workflow-step-icon { grid-row: 1 / 3; margin-bottom: 0; align-self: center; }
  .workflow-step h3 { align-self: end; }
  .workflow-step p { align-self: start; }

  /* Dashboard — horizontal scroll on mobile */
  .dash-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dash { min-width: 600px; min-height: 360px; }

  /* Before/After */
  .ba-grid { grid-template-columns: 1fr; gap: 12px; }
  .ba-col { padding: 20px 16px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 20px; }

  /* About */
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 20px; }
  .about-block h2 { font-size: 20px; }
  .about-block p { font-size: 14px; }

  /* Demo */
  .demo-section { padding: 68px 0 40px; }
  .demo-info h1 { font-size: 24px; }
  .demo-form-card { padding: 24px 20px; }
  .demo-form-row { grid-template-columns: 1fr; gap: 18px; }
  .demo-form .btn-primary { height: 48px; font-size: 15px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  /* FAQ */
  .faq-question { font-size: 14px; }
  .faq-answer { font-size: 13px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Section spacing */
  .problems, .features, .workflow, .dashboard-section, .before-after, .cost-section, .pricing, .final-cta, .feature-detail, .about-section, .faq { padding: 40px 0; }
  .page-hero { padding: 88px 0 28px; }
  .page-hero-content h1 { font-size: 24px; }
  .page-hero .hero-sub { font-size: 15px; }
  .final-cta h2 { font-size: 22px; }
  .final-cta p { font-size: 15px; }

  /* Lang bar — full width on mobile */
  .lang-bar {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    justify-content: center;
    padding: 10px 16px;
    border: none;
    border-top: 1px solid var(--border);
  }
}

/* -- Small phone -- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 24px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-number { font-size: 20px; }
  .problems-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .cost-card { padding: 24px 16px; }
  .cost-math { padding: 16px; }
  .cost-row { gap: 8px; }
  .cost-number { font-size: 24px; }
  .cost-item { padding: 8px 12px; }
  .cost-operator { font-size: 18px; }
  .trust-row { gap: 12px; }
  .trust-item { font-size: 12px; }
  .demo-trust { flex-direction: column; align-items: center; gap: 12px; }
}
