/* =====================================================
   MATEO'S AI — DESIGN SYSTEM
   ===================================================== */

:root {
  --white: #FFFFFF;
  --off-white: #F9F9F9;
  --bg-light: #F4F4F5;
  --bg-dark: #0A0A0A;
  --bg-dark-2: #111111;
  --orange: #EA580C;
  --orange-dark: #C2410C;
  --orange-light: #FFF4EE;
  --orange-mid: rgba(234, 88, 12, 0.12);
  --text: #0A0A0A;
  --text-soft: #6B6B6B;
  --text-xsoft: #A3A3A3;
  --border: #E5E5E5;
  --border-soft: #F0F0F0;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-device: 0 48px 96px rgba(0, 0, 0, 0.18), 0 12px 32px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-device: 48px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.04em; text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; text-wrap: balance; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-xsoft);
  display: inline-block;
  margin-bottom: 16px;
}
.label-orange { color: var(--orange); }

.lead {
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--text-soft);
  line-height: 1.6;
  font-weight: 400;
  text-wrap: pretty;
}

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

.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: #C0C0C0;
  background: var(--off-white);
}
.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  max-width: 100%;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--text);
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-soft);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { padding: 9px 18px; font-size: 13px; }

.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
  margin: 0 auto;
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ===== SCROLL REVEAL ===== */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-delay-1 { transition-delay: 0.08s; }
.sr-delay-2 { transition-delay: 0.16s; }
.sr-delay-3 { transition-delay: 0.24s; }
.sr-delay-4 { transition-delay: 0.32s; }

/* ===== ENTRY ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes deviceIn {
  from { opacity: 0; transform: translateY(40px) scale(0.92); box-shadow: none; }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pulseOrange {
  0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}
@keyframes arrowFlow {
  0% { stroke-dashoffset: 100; opacity: 0.3; }
  50% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-anim-1 { animation: fadeDown 0.5s var(--ease) both; }
.hero-anim-2 { animation: fadeUp 0.7s var(--ease) 0.15s both; }
.hero-anim-3 { animation: fadeUp 0.7s var(--ease) 0.25s both; }
.hero-anim-4 { animation: fadeUp 0.7s var(--ease) 0.35s both; }
.hero-anim-5 { animation: fadeUp 0.7s var(--ease) 0.45s both; }
.hero-anim-device { animation: deviceIn 0.9s var(--ease) 0.5s both; }
.hero-anim-device-2 { animation: deviceIn 0.9s var(--ease) 0.65s both; }

/* ===== HERO ===== */
.hero {
  padding: 56px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseOrange 1.8s infinite;
}
.hero h1 { margin: 0 auto 20px; max-width: 900px; }
.hero .hero-sub {
  margin: 0 auto 32px;
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-soft);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.trust-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-xsoft);
  font-weight: 400;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .dot { color: var(--border); }

/* ===== HERO DEVICE SHOWCASE ===== */
.hero-devices {
  position: relative;
  max-width: 1000px;
  margin: 64px auto 0;
  height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-devices .iphone {
  position: relative;
  z-index: 2;
  margin-right: 0;
}
.hero-devices .macbook {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.hero-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-xsoft);
  margin-top: 32px;
  font-style: italic;
}

/* ===== HERO PHOTO STAGE (real iPhone 15 + MacBook Air) ===== */
.hero-photo-stage {
  position: relative;
  max-width: 1180px;
  margin: 56px auto 0;
  height: clamp(380px, 56vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-photo-macbook {
  position: absolute;
  width: clamp(560px, 76%, 1100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(2%);
  z-index: 1;
  filter: drop-shadow(0 50px 80px rgba(10, 10, 10, 0.18)) drop-shadow(0 18px 30px rgba(10, 10, 10, 0.08));
  animation: floatMac 8s ease-in-out infinite;
}
.hero-photo-iphone {
  position: absolute;
  width: clamp(180px, 24%, 340px);
  top: 50%;
  left: 50%;
  transform: translate(-105%, -10%) rotate(-3deg);
  z-index: 3;
  filter: drop-shadow(0 30px 50px rgba(10, 10, 10, 0.22)) drop-shadow(0 10px 18px rgba(10, 10, 10, 0.1));
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatMac {
  0%, 100% { transform: translate(-50%, -50%) translateY(2%); }
  50% { transform: translate(-50%, -50%) translateY(0%); }
}
@keyframes floatPhone {
  0%, 100% { transform: translate(-105%, -10%) rotate(-3deg); }
  50% { transform: translate(-105%, -13%) rotate(-3deg); }
}
@media (max-width: 760px) {
  .hero-photo-stage { height: clamp(280px, 70vw, 460px); margin-top: 40px; }
  .hero-photo-macbook { width: 100%; }
  .hero-photo-iphone { width: 36%; transform: translate(-130%, -5%) rotate(-4deg); }
}

/* Floating app pills on the photo stage */
.hero-app-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 100px;
  padding: 8px 14px 8px 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.12);
  z-index: 5;
  pointer-events: auto;
  animation: pillFloat 5s ease-in-out infinite;
}
.hero-app-pill svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.hero-app-imessage { top: 12%; right: 8%; animation-delay: 0s; }
.hero-app-whatsapp { top: 38%; right: 4%; animation-delay: 1.2s; }
.hero-app-fergus   { bottom: 16%; right: 12%; animation-delay: 2.1s; }
.hero-app-sms      { bottom: 8%; left: 10%; animation-delay: 0.6s; }
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 760px) {
  .hero-app-pill { font-size: 11px; padding: 6px 12px 6px 6px; }
  .hero-app-pill svg { width: 18px; height: 18px; }
  .hero-app-fergus { display: none; }
  .hero-app-imessage { top: 6%; right: 4%; }
  .hero-app-whatsapp { top: 32%; right: 2%; }
  .hero-app-sms { bottom: 6%; left: 4%; }
}

/* ===== PRODUCT LIST (clean menu rows) ===== */
.product-list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--border);
}
.product-list li {
  border-bottom: 1px solid var(--border);
}
.product-list a {
  display: grid;
  grid-template-columns: 240px 1fr 32px;
  align-items: center;
  gap: 32px;
  padding: 28px 8px;
  color: var(--text);
  transition: background 0.15s ease, padding 0.2s ease;
}
.product-list a:hover {
  background: rgba(234, 88, 12, 0.04);
  padding-left: 16px;
}
.product-list a:hover .product-list-arrow {
  color: var(--orange);
  transform: translateX(4px);
}
.product-list-name {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.product-list-line {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.5;
}
.product-list-arrow {
  font-size: 22px;
  color: var(--text-xsoft);
  font-weight: 400;
  text-align: right;
  transition: color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 720px) {
  .product-list a {
    grid-template-columns: 1fr 28px;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 22px 8px;
  }
  .product-list-name { grid-column: 1; grid-row: 1; }
  .product-list-line { grid-column: 1; grid-row: 2; font-size: 14px; }
  .product-list-arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
}

/* Hide legacy hero app pills if any remain */
.hero-app-pill { display: none !important; }

/* "See it in action" label between photo & CSS devices */
.hero-action-divider {
  text-align: center;
  margin: 56px auto 12px;
  position: relative;
}
.hero-action-divider .label {
  background: var(--white);
  padding: 0 16px;
  position: relative;
  z-index: 1;
  color: var(--orange);
}
.hero-action-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

@media (max-width: 980px) {
  .hero-devices { height: auto; flex-direction: column; gap: 32px; }
  .hero-devices .iphone { margin-right: 0; }
  .hero-devices .macbook { display: none; margin-bottom: 0; }
}

/* ===== IPHONE MOCKUP ===== */
.iphone {
  width: 300px;
  height: 612px;
  background: linear-gradient(145deg, #2A2A2C 0%, #1A1A1C 100%);
  border-radius: 52px;
  padding: 12px;
  box-shadow: var(--shadow-device);
  position: relative;
  flex-shrink: 0;
}
.iphone-inner {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
}
.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}
.iphone-notch::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 2px #0a0a0a;
}
.iphone-screen {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.iphone-statusbar {
  height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 28px 0;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  position: relative;
  z-index: 5;
}
.iphone-statusbar-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
.iphone-statusbar-right svg { width: 16px; height: 11px; }

/* Chat app header */
.chat-header {
  background: rgba(248, 248, 248, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
}
.chat-back {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}
.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #C7C7CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
}
.chat-title-block {
  flex: 1;
  min-width: 0;
}
.chat-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-subtitle {
  font-size: 10px;
  color: #34C759;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-subtitle .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34C759;
}

.chat-body {
  flex: 1;
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.chat-bubble {
  max-width: 78%;
  padding: 8px 13px;
  font-size: 13px;
  line-height: 1.35;
  word-wrap: break-word;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
}
.chat-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}
.chat-bubble.them {
  background: #E9E9EB;
  color: #000;
  border-radius: 18px 18px 18px 4px;
  align-self: flex-start;
}
.chat-bubble.me {
  background: #0A84FF;
  color: white;
  border-radius: 18px 18px 4px 18px;
  align-self: flex-end;
}
.chat-bubble + .chat-bubble.me,
.chat-bubble + .chat-bubble.them { margin-top: 2px; }
.chat-bubble.them + .chat-bubble.me,
.chat-bubble.me + .chat-bubble.them { margin-top: 10px; }

.chat-system {
  align-self: center;
  font-size: 10px;
  color: #8E8E93;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.chat-system.visible { opacity: 1; }
.chat-system::before, .chat-system::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 0.5px;
  background: rgba(0, 0, 0, 0.15);
  vertical-align: middle;
  margin: 0 8px;
}

.chat-timestamp {
  font-size: 9px;
  color: #8E8E93;
  text-align: center;
  margin: 8px 0 4px;
  font-weight: 500;
}

.iphone-homebar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: #000;
  border-radius: 3px;
  opacity: 0.3;
  z-index: 5;
}

/* ===== MACBOOK MOCKUP ===== */
.macbook {
  width: 540px;
  flex-shrink: 0;
  position: relative;
}
.macbook-lid {
  background: linear-gradient(145deg, #E8E8EA 0%, #C8C8CA 100%);
  border-radius: 12px 12px 4px 4px;
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow-device);
}
.macbook-lid::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 0 0 4px 4px;
}
.macbook-screen {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.macbook-base {
  position: relative;
  height: 14px;
  background: linear-gradient(180deg, #D4D4D6 0%, #A8A8AA 50%, #888 100%);
  border-radius: 0 0 12px 12px;
  margin: 0 -16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}
.macbook-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: linear-gradient(180deg, #888 0%, #555 100%);
  border-radius: 0 0 8px 8px;
}
.macbook-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

/* MacBook dark variant */
.macbook-dark .macbook-lid {
  background: linear-gradient(145deg, #2A2A2C 0%, #1A1A1C 100%);
}
.macbook-dark .macbook-base {
  background: linear-gradient(180deg, #2A2A2C 0%, #1A1A1C 50%, #0A0A0A 100%);
}
.macbook-dark .macbook-base::before {
  background: linear-gradient(180deg, #111 0%, #000 100%);
}

/* ===== JOB DASHBOARD (inside MacBook) ===== */
.dash {
  position: absolute;
  inset: 0;
  background: #FAFAFA;
  display: flex;
  font-size: 10px;
  color: #1a1a1a;
  font-family: var(--font);
}
.dash-sidebar {
  width: 22%;
  background: #fff;
  border-right: 1px solid #E5E5E5;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-logo {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.03em;
  padding: 4px 8px 12px;
  color: #1a1a1a;
}
.dash-logo span { color: var(--orange); }
.dash-nav-item {
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  color: #6B6B6B;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dash-nav-item.active {
  background: #FFF4EE;
  color: var(--orange);
  font-weight: 600;
}
.dash-nav-icon {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.4;
}
.dash-nav-item.active .dash-nav-icon { opacity: 1; }
.dash-nav-section {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A3A3A3;
  padding: 12px 8px 4px;
}

.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dash-topbar {
  height: 32px;
  border-bottom: 1px solid #E5E5E5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.dash-tabs {
  display: flex;
  gap: 4px;
}
.dash-tab {
  font-size: 9px;
  font-weight: 500;
  color: #6B6B6B;
  padding: 5px 8px;
  border-radius: 3px;
}
.dash-tab.active {
  background: #F4F4F5;
  color: #1a1a1a;
  font-weight: 600;
}
.dash-search {
  font-size: 9px;
  color: #A3A3A3;
  background: #F4F4F5;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-content {
  flex: 1;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-page-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dash-stat {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 8px 10px;
}
.dash-stat-label {
  font-size: 8px;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 2px;
}
.dash-stat-value {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dash-stat-delta {
  font-size: 8px;
  color: #16A34A;
  font-weight: 600;
}

.dash-jobs {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dash-jobs-header {
  display: grid;
  grid-template-columns: 50px 1.4fr 1fr 70px 60px;
  padding: 6px 10px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B6B6B;
  background: #FAFAFA;
  border-bottom: 1px solid #E5E5E5;
}
.dash-job-row {
  display: grid;
  grid-template-columns: 50px 1.4fr 1fr 70px 60px;
  padding: 7px 10px;
  font-size: 9px;
  border-bottom: 1px solid #F0F0F0;
  align-items: center;
  transition: background 0.3s;
}
.dash-job-row.new {
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.08) 0%, transparent 100%);
  animation: jobIn 0.6s var(--ease);
}
@keyframes jobIn {
  from { background: rgba(234, 88, 12, 0.25); transform: translateX(-8px); opacity: 0; }
  to { background: linear-gradient(90deg, rgba(234, 88, 12, 0.08) 0%, transparent 100%); transform: translateX(0); opacity: 1; }
}
.dash-job-id { font-family: 'SF Mono', Monaco, monospace; color: var(--orange); font-weight: 600; font-size: 9px; }
.dash-job-customer { font-weight: 600; }
.dash-job-sub { color: #6B6B6B; font-size: 8px; }
.dash-job-status {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-scheduled { background: #DBEAFE; color: #1E40AF; }
.status-new { background: #FFF4EE; color: var(--orange); }
.status-progress { background: #FEF3C7; color: #92400E; }
.status-done { background: #DCFCE7; color: #166534; }

/* AI badge */
.dash-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #FFF4EE, #FFE4D1);
  border: 1px solid rgba(234, 88, 12, 0.2);
  color: var(--orange);
  font-size: 8px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Dashboard bar chart */
.dash-chart {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.dash-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-chart-title {
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.dash-chart-legend {
  font-size: 8px;
  font-weight: 500;
  color: #6B6B6B;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dash-chart-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--orange);
}
.dash-chart-bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  align-items: end;
  min-height: 0;
}
.dash-chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.dash-chart-bar span {
  display: block;
  width: 100%;
  max-width: 18px;
  background: linear-gradient(180deg, var(--orange), #F97316);
  border-radius: 3px 3px 0 0;
  animation: chartGrow 1s var(--ease) both;
  transform-origin: bottom;
}
.dash-chart-bar:nth-child(1) span { animation-delay: 0.05s; }
.dash-chart-bar:nth-child(2) span { animation-delay: 0.12s; }
.dash-chart-bar:nth-child(3) span { animation-delay: 0.19s; }
.dash-chart-bar:nth-child(4) span { animation-delay: 0.26s; }
.dash-chart-bar:nth-child(5) span { animation-delay: 0.33s; }
.dash-chart-bar:nth-child(6) span { animation-delay: 0.40s; }
.dash-chart-bar:nth-child(7) span { animation-delay: 0.47s; }
@keyframes chartGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
.dash-chart-bar em {
  font-size: 7px;
  font-style: normal;
  color: #A3A3A3;
  font-weight: 500;
}

/* ===== DASHBOARD V2 — dark, simple, no tables ===== */
.dash-v2 {
  position: absolute;
  inset: 0;
  background: #0F0F12;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  gap: 16px;
  color: #fff;
  font-family: var(--font);
}
.dash-v2-topbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-v2-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.dash-v2-live {
  font-size: 10px;
  font-weight: 600;
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dash-v2-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulseDot 1.8s infinite;
}
.dash-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dash-v2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-v2-stat-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.dash-v2-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.dash-v2-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.dash-v2-bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 0;
}
.dash-v2-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.dash-v2-bar span {
  display: block;
  width: 100%;
  max-width: 22px;
  background: #EA580C;
  border-radius: 3px 3px 0 0;
  animation: chartGrow 1s var(--ease) both;
  transform-origin: bottom;
}
.dash-v2-bar:nth-child(1) span { animation-delay: 0.05s; }
.dash-v2-bar:nth-child(2) span { animation-delay: 0.12s; }
.dash-v2-bar:nth-child(3) span { animation-delay: 0.19s; }
.dash-v2-bar:nth-child(4) span { animation-delay: 0.26s; }
.dash-v2-bar:nth-child(5) span { animation-delay: 0.33s; }
.dash-v2-bar:nth-child(6) span { animation-delay: 0.40s; }
.dash-v2-bar:nth-child(7) span { animation-delay: 0.47s; }
.dash-v2-bar em {
  font-size: 9px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.dash-v2-activity {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-v2-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 12px;
  padding: 9px 0;
  align-items: center;
  font-size: 11px;
}
.dash-v2-row + .dash-v2-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-v2-row-name {
  font-weight: 600;
  color: #fff;
}
.dash-v2-row-job {
  color: rgba(255, 255, 255, 0.6);
}
.dash-v2-row-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 3px;
}
.dash-v2-row-status.status-new {
  background: rgba(234, 88, 12, 0.18);
  color: #EA580C;
}
.dash-v2-row-status.status-scheduled {
  background: rgba(59, 130, 246, 0.18);
  color: #60A5FA;
}
.dash-v2-row-status.status-progress {
  background: rgba(245, 158, 11, 0.18);
  color: #FBBF24;
}
.dash-v2-row-time {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  min-width: 42px;
  text-align: right;
}

/* ===== HERO GRID BACKGROUND ===== */
.hero-grid-bg {
  background-color: #FFFFFF;
  position: relative;
}
.hero-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, #F0F0F0 1px, transparent 1px),
    linear-gradient(to bottom, #F0F0F0 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 35%, transparent 80%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 35%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid-bg > .container {
  position: relative;
  z-index: 1;
}

/* ===== PREMIUM iPHONE OVERRIDES (hero only) ===== */
.hero-devices .iphone {
  background: linear-gradient(145deg, #1C1C1E 0%, #161618 100%);
  box-shadow: none;
  position: relative;
}
.hero-devices .iphone::before {
  /* Subtle specular highlight on left edge */
  content: '';
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 1px;
  pointer-events: none;
  z-index: 4;
}
.hero-devices .iphone::after {
  /* Warm ambient glow beneath device */
  content: '';
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 400px;
  height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(234, 88, 12, 0.18) 0%, rgba(234, 88, 12, 0.04) 40%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

/* ===== 3D MACBOOK PERSPECTIVE (hero only) ===== */
.hero-devices .macbook {
  perspective: 1400px;
}
.hero-devices .macbook .macbook-lid {
  transform: rotateX(8deg);
  transform-origin: bottom center;
  background: linear-gradient(145deg, #2A2A2C 0%, #1A1A1C 100%);
  box-shadow:
    0 60px 80px -20px rgba(10, 10, 10, 0.35),
    0 30px 40px -15px rgba(10, 10, 10, 0.2);
}
.hero-devices .macbook .macbook-base {
  transform: perspective(1400px) rotateX(-2deg);
  transform-origin: top center;
}
/* Ambient glow under macbook to match */
.hero-devices .macbook::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 80%;
  height: 80px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.18) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

/* ===== DISPATCH BOARD ===== */
.dispatch-board {
  position: absolute;
  inset: 0;
  background: #0F0F12;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
}
.db-topbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.db-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.db-active {
  font-size: 11px;
  font-weight: 600;
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.db-active-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulseDot 1.8s infinite;
}
.db-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.db-row {
  display: grid;
  grid-template-columns: 110px 1fr 160px 70px;
  gap: 18px;
  align-items: center;
  font-size: 13px;
}
.db-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  text-align: center;
  justify-self: start;
}
.db-pill-urgent {
  background: rgba(234, 88, 12, 0.16);
  color: #FB923C;
}
.db-pill-scheduled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.db-pill-progress {
  background: rgba(59, 130, 246, 0.18);
  color: #60A5FA;
}
.db-job-main {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.db-tech {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.db-tech-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.db-tech-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.db-tech-status.on-it {
  color: #22C55E;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.db-eta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

/* ===== FEATURES PAGE — CLEAN PRODUCT SECTIONS ===== */
/* Alternate backgrounds: white, grey, white, grey, white */
.product-section { background: #FFFFFF; }
#dispatch, #reputation { background: #FAFAFA; }
#receptionist, #missed-call, #dashboard { background: #FFFFFF; }

/* Two-column row, right column capped */
.product-section .product-row {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .product-section .product-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Text column — flex column, 40px between every element */
.product-section .product-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}
.product-section .product-text > * { margin: 0 !important; }
.product-section .product-text .label { margin-bottom: 0 !important; }
.product-section .product-text h2 { letter-spacing: -0.03em; }
.product-section .product-text > p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 520px;
}

/* Feature list — plain text rows, NO borders or backgrounds */
.product-section .carousel,
.product-section .carousel-viewport {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible;
  border-radius: 0;
}
.product-section .carousel { position: static; }
.product-section .carousel-track {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  transform: none !important;
  transition: none !important;
}
.product-section .carousel-card {
  min-width: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.product-section .carousel-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: transparent !important;
  color: var(--orange);
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.product-section .carousel-icon svg { width: 18px; height: 18px; }
.product-section .carousel-text { flex: 1; }
.product-section .carousel-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.product-section .carousel-body,
.product-section .carousel-text p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}
.product-section .carousel-prev,
.product-section .carousel-next,
.product-section .carousel-dots { display: none !important; }

/* Tier pills, no inline-style hacks */
.product-section .tier-pills {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-section .tier-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--bg-light);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Buttons — always on one row, never stacked */
.product-section .product-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}
.product-section .product-actions .btn {
  flex: 0 0 auto;
}

/* Device column — capped, centred */
.product-section .product-device {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-section .product-device .iphone,
.product-section .product-device .iphone-mini,
.product-section .product-device .macbook {
  max-width: 100%;
  width: 100%;
}
.product-section .product-device .iphone {
  width: 280px;
  height: 572px;
  margin: 0 auto;
}

/* ===== HERO POINTS (3 lines with orange dash) ===== */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.hero-points li {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #4B5563;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero-point-dash {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 1px;
}

/* "Coming soon" note under products */
.coming-soon-note {
  text-align: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: #A3A3A3;
  margin: 16px auto 0;
}

/* ===== DISPATCH VAN SVG (features page) ===== */
.dispatch-van {
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.dispatch-van svg {
  width: 100%;
  height: auto;
  display: block;
}
.dispatch-van-label {
  margin-top: 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.van-anim {
  animation: vanDrive 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes vanDrive {
  0% { transform: translateX(-30px); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(-30px); }
}
.van-pin {
  animation: pinPulse 2s ease-in-out infinite;
  transform-origin: 295px 108px;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.van-road-dash {
  animation: roadMove 1.2s linear infinite;
}
@keyframes roadMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -28; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .stat-item:nth-child(n+3) { padding-top: 20px; }
}

/* 3-column hero stats with big orange numbers */
.stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-grid-3 .stat-item {
  text-align: center;
  padding: 24px 32px;
}
.stats-grid-3 .stat-num-xl {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: #EA580C;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stats-grid-3 .stat-label-lg {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #6B6B6B;
  margin-top: 8px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .stats-grid-3 { grid-template-columns: 1fr; }
  .stats-grid-3 .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 16px; }
  .stats-grid-3 .stat-item:last-child { border-bottom: none; }
}

/* ===== HOW IT WORKS ===== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .label { margin-bottom: 12px; }
.section-head h2 { margin-bottom: 16px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 24px 8px;
  box-shadow: none;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.step-num {
  position: relative;
  top: 0;
  right: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.06em;
  pointer-events: none;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.step h3 {
  margin-bottom: 12px;
  position: relative;
}
.step p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  position: relative;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

.center-cta { text-align: center; margin-top: 48px; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s var(--ease);
  position: relative;
  border-left: 3px solid var(--border-soft);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--orange);
}
.product-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(5) { max-width: 100%; }
}
.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.tier-pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tier-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--bg-light);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-xsoft);
  margin-bottom: 8px;
}
.product-head-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-copy {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}
.product-link::after { content: ' →'; transition: transform 0.2s; display: inline-block; }
.product-card:hover .product-link::after { transform: translateX(3px); }

.cta-strip {
  background: var(--orange-light);
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-text {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .cta-strip { flex-direction: column; text-align: center; padding: 24px; }
}

/* ===== SCENARIOS ===== */
.scenarios {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.scenario-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}
.scenario-card:nth-child(even) {
  grid-template-columns: 1fr 1.3fr;
}
.scenario-card:nth-child(even) .scenario-text {
  order: 2;
}
.scenario-card:nth-child(even) .scenario-visual {
  order: 1;
}
@media (max-width: 768px) {
  .scenario-card, .scenario-card:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .scenario-card:nth-child(even) .scenario-text { order: 1; }
  .scenario-card:nth-child(even) .scenario-visual { order: 2; }
}
.scenario-text .label { color: var(--orange); }
.scenario-text h3 { margin-bottom: 14px; font-size: clamp(20px, 2vw, 26px); }
.scenario-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.outcome-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.outcome-pill {
  background: var(--orange-light);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
}
.scenario-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Mini iPhone for scenario */
.iphone-mini {
  width: 200px;
  height: 408px;
  background: linear-gradient(145deg, #2A2A2C, #1A1A1C);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.iphone-mini .iphone-inner { border-radius: 28px; }
.iphone-mini .iphone-notch { width: 80px; height: 22px; top: 8px; }
.iphone-mini .iphone-notch::after { width: 5px; height: 5px; }
.iphone-mini .iphone-statusbar { height: 32px; padding: 12px 18px 0; font-size: 9px; }
.iphone-mini .chat-header { padding: 6px 10px 8px; }
.iphone-mini .chat-avatar { width: 22px; height: 22px; font-size: 10px; }
.iphone-mini .chat-title { font-size: 10px; }
.iphone-mini .chat-subtitle { font-size: 8px; }
.iphone-mini .chat-body { padding: 8px; gap: 3px; }
.iphone-mini .chat-bubble { font-size: 10px; padding: 6px 10px; }

/* Dispatch flow diagram */
.flow-diagram {
  width: 100%;
  max-width: 320px;
  position: relative;
  padding: 20px;
}
.flow-node {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.flow-node.source {
  background: #0a0a0a;
  color: white;
  border-color: #0a0a0a;
  width: 140px;
  margin: 0 auto 32px;
}
.flow-techs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}
.flow-tech {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.4s var(--ease);
}
.flow-tech.assigned {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
  transform: scale(1.05);
}
.flow-tech-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-light);
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-soft);
}
.flow-tech.assigned .flow-tech-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.flow-svg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}
.flow-svg path {
  stroke: var(--border);
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}
.flow-svg path.active {
  stroke: var(--orange);
  stroke-dasharray: none;
  stroke-width: 2;
}

/* WhatsApp-style bubble */
.whatsapp-card {
  background: #ECE5DD;
  border-radius: 18px;
  padding: 16px;
  width: 240px;
  box-shadow: var(--shadow-md);
}
.whatsapp-header {
  background: #075E54;
  color: white;
  padding: 8px 12px;
  border-radius: 8px 8px 0 0;
  font-size: 12px;
  font-weight: 600;
  margin: -16px -16px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.whatsapp-bubble {
  background: #DCF8C6;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #0A0A0A;
  line-height: 1.4;
  margin-bottom: 4px;
  max-width: 85%;
  margin-left: auto;
}
.whatsapp-bubble.them {
  background: white;
  margin-left: 0;
  margin-right: auto;
}
.whatsapp-time {
  font-size: 9px;
  color: rgba(0, 0, 0, 0.4);
  text-align: right;
  margin-top: -2px;
}

/* ===== LOCAL ===== */
.section-dark {
  background: var(--bg-dark);
  color: white;
}
.section-dark .label { color: rgba(255, 255, 255, 0.4); }
.section-dark .lead { color: rgba(255, 255, 255, 0.6); }

.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto 56px;
}
.region-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.region-pill:hover {
  border-color: var(--orange);
  color: white;
}
.region-pill.hq {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
  color: white;
}
.region-pill.hq .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseOrange 2s infinite;
}

.local-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  max-width: 880px;
  margin: 0 auto 48px;
}
.local-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 880px;
  margin: 0 auto 48px;
}
.local-cols p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .local-cols { grid-template-columns: 1fr; gap: 24px; }
}
.section-dark .center-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== PROOF ===== */
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
}
.proof-stat-num {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-stat-label {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}
.proof-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.proof-card p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.proof-card p:last-of-type { margin-bottom: 24px; }
.honest-badge {
  display: inline-flex;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin: 24px auto 0;
}
.proof-bottom { text-align: center; margin-top: 32px; }

/* ===== DEMO LINES ===== */
.demo-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .demo-lines { grid-template-columns: 1fr; }
}
.demo-line-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.2s;
}
.demo-line-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #16A34A;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}
.demo-trade {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.demo-number {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.demo-card-copy {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(234, 88, 12, 0.18), transparent 70%);
  pointer-events: none;
}
.final-cta .container {
  position: relative;
  z-index: 1;
}
.final-cta h2 { color: white; max-width: 720px; margin: 0 auto 20px; }
.final-cta .sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta .hero-ctas { margin-bottom: 24px; }
.final-cta .trust-row { color: rgba(255, 255, 255, 0.3); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.5);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 14px;
}
.footer-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}
.footer-demos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-demo-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-demo-link {
  font-size: 14px;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-demo-link:hover { color: var(--orange); }
.demo-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseOrange 2s infinite;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #060606;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== FEATURES PAGE ===== */
.feature-hero {
  text-align: center;
  padding: 80px 0 48px;
}
.product-tabs {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: rgba(249, 249, 249, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 24px;
  margin-bottom: 0;
}
.product-tabs::-webkit-scrollbar { display: none; }
.tab {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 18px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
  flex-shrink: 0;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--orange); border-bottom-color: var(--orange); }

.product-section {
  padding: 96px 0;
}
.product-section:nth-child(even) {
  background: var(--off-white);
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.product-section:nth-child(odd) .product-row {
  grid-template-columns: 1fr 1fr;
}
.product-section:nth-of-type(2n) .product-text { order: 2; }
.product-section:nth-of-type(2n) .product-device { order: 1; }
@media (max-width: 900px) {
  .product-row { grid-template-columns: 1fr; gap: 40px; padding: 0 16px; }
  .product-section:nth-of-type(2n) .product-text { order: 1; }
  .product-section:nth-of-type(2n) .product-device { order: 2; }
}
.product-text .label { color: var(--orange); }
.product-text h2 { margin-bottom: 16px; }
.product-text > p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.product-device {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  margin: 24px 0;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-card {
  min-width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.carousel-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.carousel-icon svg { width: 18px; height: 18px; }
.carousel-text { flex: 1; }
.carousel-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.carousel-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.15s;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}
.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }
.carousel-prev:hover, .carousel-next:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.carousel-prev:active, .carousel-next:active { transform: translateY(-50%) scale(0.93); }
.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.3s var(--ease);
  padding: 0;
}
.carousel-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 3px;
}
@media (max-width: 600px) {
  .carousel-prev { left: 6px; }
  .carousel-next { right: 6px; }
}

/* ===== PRICING ===== */
.config {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .config { grid-template-columns: 1fr; }
}
.config-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.config-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
}
.config-step h3 {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}
.config-step-num {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
.config-step-hint {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
  margin-left: 38px;
}
.config-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.config-options-2 { grid-template-columns: repeat(3, 1fr); }
.config-options-products { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) {
  .config-options, .config-options-products { grid-template-columns: 1fr 1fr; }
}
.config-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.config-card:hover {
  border-color: rgba(234, 88, 12, 0.4);
  background: var(--orange-light);
}
.config-card.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.config-card-icon { font-size: 18px; margin-bottom: 6px; line-height: 1; }
.config-card-title { font-size: 14px; font-weight: 600; }
.config-card-sub { font-size: 12px; color: var(--text-soft); }

.config-result {
  position: sticky;
  top: 80px;
  background: white;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.config-result-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.config-result-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}
.config-result-price small {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
}
.config-result-setup {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.config-result-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.config-result-list li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
}
.config-result-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* Empty / Let's talk states */
.config-empty { padding: 8px 0; }
.config-empty-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-xsoft);
  margin-bottom: 12px;
}
.config-empty-msg {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.config-result-letstalk {
  font-size: 32px;
  letter-spacing: -0.03em;
}
.config-result-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 14px;
}
.config-result-foot a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
}

/* TIER TABLE */
.tier-table-wrap {
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
}
.tier-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  min-width: 720px;
}
.tier-table th, .tier-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.tier-table th {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-soft);
  background: var(--off-white);
}
.tier-table th:first-child { background: transparent; border-radius: var(--radius-md) 0 0 0; }
.tier-table th.tier-head {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  padding: 24px 18px;
  position: relative;
}
.tier-table th.tier-head.featured {
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.tier-table td.tier-cell { text-align: center; font-weight: 500; }
.tier-table td.tier-cell.featured { background: var(--off-white); }
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier-price-large {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.tier-price-large small { font-size: 13px; color: var(--text-soft); font-weight: 500; }
.dash-cell { color: var(--text-xsoft); }
.check-cell { color: var(--orange); font-weight: 700; }

/* ===== FAQ ===== */
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 20px;
}

/* ===== INTEGRATIONS PAGE ===== */
.int-hero {
  text-align: center;
  padding: 80px 0 48px;
}
.int-flow {
  max-width: 1100px;
  margin: 0 auto 80px;
  position: relative;
}
.int-flow-stage {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 32px;
  align-items: center;
  padding: 0 24px;
}
@media (max-width: 980px) {
  .int-flow-stage { grid-template-columns: 1fr; gap: 24px; }
  .int-flow-arrow { transform: rotate(90deg); }
}
.int-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--orange);
}
.int-flow-arrow-line {
  width: 80px;
  position: relative;
}
.int-flow-arrow-line svg {
  width: 100%;
  display: block;
}
.int-arrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

.int-categories {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.int-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.int-cat-head h3 { font-size: 24px; }
.int-cat-head .count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-xsoft);
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .int-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .int-grid { grid-template-columns: 1fr; } }
.int-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.2s;
}
.int-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, 0.3);
}
.int-card-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.int-card-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.int-card-desc { font-size: 13px; color: var(--text-soft); line-height: 1.5; margin-bottom: 12px; }
.int-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}
.int-status.live { background: #DCFCE7; color: #166534; }
.int-status.progress { background: #FEF3C7; color: #92400E; }
.int-status.enterprise { background: var(--orange-light); color: var(--orange); }

.whatsapp-callout {
  background: var(--orange-light);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 32px auto 0;
}
.whatsapp-callout-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-callout-icon svg { width: 32px; height: 32px; }
.whatsapp-callout-text h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.whatsapp-callout-text p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .whatsapp-callout { flex-direction: column; text-align: center; padding: 24px; }
}

.int-custom-cta {
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 1100px;
  margin: 80px auto 0;
}
.int-custom-cta h3 { color: white; margin-bottom: 12px; }
.int-custom-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* ===== DEMO PAGE ===== */
.demo-form {
  max-width: 720px;
  margin: 0 auto;
}
.demo-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.demo-progress-bar {
  height: 4px;
  flex: 1;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.3s;
}
.demo-progress-bar.active { background: var(--orange); }
.demo-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: none;
}
.demo-step.active { display: block; animation: fadeUp 0.4s var(--ease); }
.demo-step h3 { margin-bottom: 24px; }
.demo-step-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.demo-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
.demo-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
textarea.demo-input { min-height: 80px; resize: vertical; }
.demo-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}
.demo-thanks {
  text-align: center;
  padding: 48px 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: none;
}
.demo-thanks.show { display: block; animation: fadeUp 0.5s var(--ease); }
.demo-thanks h2 { margin-bottom: 12px; }
.demo-thanks .demo-callout {
  background: var(--orange-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px auto 0;
  max-width: 460px;
}
.demo-callout-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.demo-callout-line {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0;
}
.demo-callout-line span { color: var(--text-soft); font-weight: 500; }

/* ===== HERO SHORT SUB COPY ===== */
.hero-sub {
  max-width: 620px;
  margin: 24px 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
}

/* ===== ROAD SCENE (full-width landscape) ===== */
.road-scene {
  position: relative;
  width: 100%;
  height: 260px;
  background: #F0FDF4;
  overflow: hidden;
}
.road-scene-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.road-scene-dashes-row {
  animation: road-scene-dash 1.4s linear infinite;
  transform-box: fill-box;
}
@keyframes road-scene-dash {
  from { transform: translateX(0); }
  to   { transform: translateX(-88px); }
}

/* Van wrapper drives across; starts off-screen */
.road-scene-van {
  position: absolute;
  top: 92px;
  left: 0;
  width: 180px;
  height: 90px;
  transform: translateX(-180px);
  z-index: 2;
  will-change: transform;
}
.road-scene.driving .road-scene-van {
  animation: road-scene-drive 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes road-scene-drive {
  from { transform: translateX(-180px); }
  to   { transform: translateX(calc(52vw - 90px)); }
}

/* Notification card */
.road-scene-notif {
  position: absolute;
  top: 18px;
  right: 36px;
  width: 248px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-8px);
  z-index: 3;
  font-family: 'Inter', sans-serif;
}
.road-scene.notified .road-scene-notif {
  animation: road-scene-notif-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes road-scene-notif-in {
  to { opacity: 1; transform: translateY(0); }
}
.road-scene-notif-top {
  display: flex;
  align-items: center;
  gap: 0;
}
.road-scene-notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.road-scene-notif-icon svg { width: 16px; height: 16px; }
.road-scene-notif-title {
  font-weight: 700;
  font-size: 13px;
  color: #111111;
  margin-left: 8px;
}
.road-scene-notif-time {
  font-weight: 400;
  font-size: 12px;
  color: #9CA3AF;
  margin-left: auto;
}
.road-scene-notif-sender {
  margin-top: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #111111;
}
.road-scene-notif-body {
  margin-top: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
}
.road-scene-notif-pills {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.road-scene-pill {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 100px;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 11px;
  color: #166534;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .road-scene { height: 220px; }
  .road-scene-notif { right: 16px; top: 16px; width: 220px; padding: 12px 14px; }
  .road-scene-van { transform: translateX(-180px) scale(0.85); transform-origin: left center; }
  .road-scene.driving .road-scene-van { animation: road-scene-drive-sm 3s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  @keyframes road-scene-drive-sm {
    from { transform: translateX(-180px) scale(0.85); }
    to   { transform: translateX(calc(52vw - 80px)) scale(0.85); }
  }
}

/* ===== METRIC STRIP (Calls · Admin · Revenue) ===== */
.metric-strip {
  background: #FFFFFF;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  padding: 28px 0;
}
.metric-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metric-strip-col {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid #EEEEEE;
}
.metric-strip-col:last-child { border-right: none; }
.metric-strip-lbl {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #9CA3AF;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.metric-strip-val {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0A0A0A;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .metric-strip-grid { grid-template-columns: 1fr; }
  .metric-strip-col { border-right: none; border-bottom: 1px solid #EEEEEE; padding: 16px 8px; }
  .metric-strip-col:last-child { border-bottom: none; }
}

/* ===== OVERHAUL (Before / After) ===== */
.overhaul {
  background: #FFFFFF;
  padding: 80px 32px;
}
.overhaul-head { text-align: center; max-width: 720px; margin: 0 auto; }
.overhaul-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #EA580C;
  text-transform: uppercase;
}
.overhaul-h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  margin: 12px 0 14px;
}
.overhaul-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #6B6B6B;
  margin: 0 auto 48px;
}
.overhaul-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.overhaul-col { padding: 40px; }
.overhaul-col-old { background: #FFF5F5; }
.overhaul-col-new { background: #F0FDF4; }
.overhaul-col-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.overhaul-col-label-old { color: #EF4444; }
.overhaul-col-label-new { color: #16A34A; }
.overhaul-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.overhaul-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.overhaul-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.overhaul-icon-x { background: #FEE2E2; }
.overhaul-icon-check { background: #DCFCE7; }
.overhaul-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  color: #374151;
}

/* Right-column stagger animation */
.overhaul-rows-anim .overhaul-row {
  opacity: 0;
  transform: translateX(20px);
}
.overhaul.in .overhaul-rows-anim .overhaul-row {
  animation: overhaul-row-in 0.5s ease forwards;
}
.overhaul.in .overhaul-rows-anim .overhaul-row:nth-child(1) { animation-delay: 0ms; }
.overhaul.in .overhaul-rows-anim .overhaul-row:nth-child(2) { animation-delay: 120ms; }
.overhaul.in .overhaul-rows-anim .overhaul-row:nth-child(3) { animation-delay: 240ms; }
.overhaul.in .overhaul-rows-anim .overhaul-row:nth-child(4) { animation-delay: 360ms; }
.overhaul.in .overhaul-rows-anim .overhaul-row:nth-child(5) { animation-delay: 480ms; }
@keyframes overhaul-row-in {
  to { opacity: 1; transform: translateX(0); }
}

/* Centre divider with lightning bolt */
.overhaul-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.overhaul-foot {
  text-align: center;
  margin: 32px auto 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6B6B6B;
}
.overhaul-link-wrap { text-align: center; margin: 0; }
.overhaul-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #EA580C;
  text-decoration: none;
}
.overhaul-link:hover { text-decoration: underline; }

/* ===== MOBILE PREMIUM COMPONENTS (index) ===== */
.overhaul-toggle {
  display: none;
}

.mobile-toggle {
  position: relative;
  display: inline-flex;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 20px;
  padding: 4px;
  border-radius: 999px;
  background: oklch(0.96 0.008 55);
  border: 1px solid oklch(0.9 0.01 55);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.65);
}

.mobile-toggle-pill {
  flex: 1;
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: oklch(0.45 0.02 55);
  background: transparent;
  cursor: pointer;
  transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle-pill.is-active {
  color: oklch(0.18 0.02 55);
}

.mobile-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: oklch(1 0.004 55);
  box-shadow:
    0 1px 2px oklch(0.2 0.02 55 / 0.06),
    0 6px 16px oklch(0.2 0.02 55 / 0.08);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.overhaul-toggle:has(.mobile-toggle-pill[data-overhaul-panel="autopilot"].is-active)::after {
  transform: translateX(100%);
}

.proof-status-box {
  display: none;
}

.flow-snap-hint {
  display: none;
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

/* ===== PARTNER LOGOS ===== */
.partner-strip {
  padding: 40px 0 48px;
  background: oklch(0.985 0.004 55);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.partner-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.partner-strip-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}

.partner-strip-logos li { display: flex; }

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: oklch(0.995 0.003 55);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.partner-logo:hover {
  border-color: oklch(0.85 0.04 55);
  transform: translateY(-1px);
}

.partner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.partner-logo--fergus { background: #1A56DB; border-color: #1A56DB; color: #fff; }
.partner-logo--fergus .partner-name { color: #fff; }
.partner-logo--simpro { background: #0D2B8E; border-color: #0D2B8E; }
.partner-logo--simpro .partner-name { color: #fff; }
.partner-logo--jobber { background: linear-gradient(135deg, #1e90ff, #0066cc); border-color: transparent; color: #fff; }
.partner-logo--jobber .partner-name { color: #fff; }
.partner-logo--xero { background: #13B5EA; border-color: #13B5EA; }
.partner-logo--xero .partner-name { color: #fff; }
.partner-logo--whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.partner-logo--whatsapp .partner-name { color: #fff; }
.partner-logo--google { background: oklch(0.99 0.004 55); }

.overhaul-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.overhaul-logos .partner-logo {
  padding: 6px 8px;
  border-radius: 10px;
}

.overhaul-logos .partner-logo svg { width: 22px; height: 22px; }

.overhaul-logos .partner-name { display: none; }

.partner-strip-foot {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
}

.partner-strip-foot a { color: var(--orange); }

.partner-strip-foot a:hover { text-decoration: underline; }

/* ===== FLOW MOBILE + MINI PHONES ===== */
.flow-section-head {
  text-align: center;
  padding: 64px 0 12px;
  max-width: 720px;
  margin: 0 auto;
}

.flow-section-head h2 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  margin-top: 8px;
}

.flow-section-lead {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
}

.flow-mobile-head {
  display: none;
  padding: 48px 0 8px;
  text-align: center;
}

.flow-mobile-head h2 {
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  margin-top: 8px;
}

.flow-mobile-lead {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.flow-snap-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0 20px;
}

.flow-snap-dots span {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: oklch(0.88 0.01 55);
  transition: width 0.28s var(--ease), background 0.28s var(--ease);
}

.flow-snap-dots span.on {
  width: 32px;
  background: var(--text);
}

.snap-card-visual {
  margin-bottom: 18px;
}

.snap-mini-phone {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  padding: 6px;
  background: linear-gradient(155deg, #4a4a4d 0%, #1d1d1f 45%, #2a2a2c 100%);
  box-shadow: 0 16px 36px oklch(0.2 0.02 55 / 0.14);
}

.snap-mini-phone--dark .snap-mini-screen {
  background: linear-gradient(180deg, #1a3158 0%, #0d1f2d 100%);
}

.snap-mini-screen {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #F2F2F7;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.snap-mini-bar {
  height: 4px;
  width: 36%;
  margin: 0 auto 4px;
  border-radius: 2px;
  background: oklch(0.9 0.01 55);
}

.snap-mini-bubble {
  font-size: 10px;
  line-height: 1.35;
  padding: 6px 8px;
  border-radius: 12px;
  max-width: 88%;
}

.snap-mini-bubble--them {
  align-self: flex-start;
  background: #E9E9EB;
  color: #0a0a0a;
}

.snap-mini-bubble--me {
  align-self: flex-end;
  background: #007AFF;
  color: #fff;
}

.snap-mini-time {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin: 8px 0 4px;
  letter-spacing: -0.03em;
}

.snap-mini-notif {
  margin-top: auto;
  padding: 10px;
  border-radius: 14px;
  background: oklch(0.22 0.02 260 / 0.72);
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}

.snap-mini-notif strong { display: block; font-size: 11px; margin-bottom: 2px; }

.snap-mini-wa-head {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #128C7E;
  margin-bottom: 4px;
}

.snap-mini-bubble--quote {
  align-self: flex-end;
  background: #DCF8C6;
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.snap-mini-bubble--quote strong { font-size: 11px; }

.snap-mini-bubble--quote span { font-size: 9px; color: #5a5a5a; }

.snap-mini-stars {
  text-align: center;
  font-size: 14px;
  color: #F5A623;
  letter-spacing: 0.12em;
  margin-top: auto;
}

/* ===== LOCAL VISUAL ===== */
.local-visual {
  position: relative;
  overflow: hidden;
}

.local-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, oklch(0.1 0.03 260 / 0.94) 0%, oklch(0.12 0.04 260 / 0.82) 45%, oklch(0.14 0.05 45 / 0.75) 100%),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80') center 30% / cover no-repeat;
  pointer-events: none;
}

.local-visual > .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .scroll-sequence {
    height: 400vh !important;
    background: #ffffff !important;
  }

  .scroll-sequence .ss-sticky {
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    padding: 0 !important;
  }

  .scroll-sequence .ss-inner {
    display: grid !important;
    grid-template-columns: 55% 45% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    gap: 80px !important;
    align-items: center !important;
  }

  .scroll-sequence .ss-steps {
    position: relative !important;
    min-height: 340px !important;
    display: block !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .scroll-sequence .ss-step {
    position: absolute !important;
    inset: 0 !important;
    flex: none !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }

  .scroll-sequence .ss-step.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .scroll-sequence .ss-phone-wrap {
    display: flex !important;
  }

  .scroll-sequence .ss-progress {
    display: flex !important;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .scroll-sequence .ss-inner { gap: 40px !important; padding: 0 24px !important; }
  .scroll-sequence .ss-phone { width: 260px !important; height: 536px !important; }
  .scroll-sequence .ss-title { font-size: 36px !important; }
}

.demo-call-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.demo-call-cta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-call-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-call-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--orange);
  color: oklch(0.99 0.004 55);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-call-cta:hover .demo-call-action {
  box-shadow: 0 10px 28px oklch(0.55 0.18 45 / 0.28);
  transform: translateY(-1px);
}

@media (min-width: 769px) {
  .demo-call-cta {
    text-align: center;
    pointer-events: auto;
  }

  .demo-call-cta-top {
    justify-content: center;
    flex-wrap: wrap;
  }

  .demo-call-icon { display: none; }

  .demo-call-body { align-items: center; }

  .demo-call-action {
    margin-top: 8px;
    max-width: 100%;
  }
}

/* ===== DISPATCH PREVIEW (Linear-style) ===== */
.dispatch-preview {
  background: #0A0A0A;
  padding: 96px 32px 120px;
  position: relative;
  overflow: hidden;
}
.dispatch-preview-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.dispatch-preview-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #10B981;
  text-transform: uppercase;
}
.dispatch-preview-h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 12px 0 14px;
}
.dispatch-preview-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.dispatch-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.dispatch-frame-glow {
  position: absolute;
  inset: -60px -60px -120px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(16,185,129,0.28), rgba(16,185,129,0) 70%),
              radial-gradient(50% 50% at 30% 70%, rgba(234,88,12,0.18), rgba(234,88,12,0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.dispatch-window {
  position: relative;
  z-index: 1;
  background: #0F1115;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 80px rgba(16,185,129,0.08);
}
.dispatch-window-bar {
  height: 38px;
  background: #14171C;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}
.dispatch-window-dots { display: flex; gap: 6px; }
.dispatch-window-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.dispatch-window-dots span:nth-child(1) { background: #FF5F57; }
.dispatch-window-dots span:nth-child(2) { background: #FEBC2E; }
.dispatch-window-dots span:nth-child(3) { background: #28C840; }
.dispatch-window-url {
  flex: 1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 4px 10px;
  max-width: 260px;
  margin: 0 auto;
}

.dispatch-window-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 460px;
  background: #FFFFFF;
}

/* Sidebar (dark) */
.dispatch-side {
  background: #0B1220;
  color: #E5E7EB;
  padding: 18px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.dispatch-side-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 4px 14px;
}
.dispatch-side-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(16,185,129,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dispatch-side-name { font-weight: 700; font-size: 13px; color: #FFFFFF; }
.dispatch-side-loc { font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; }
.dispatch-side-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.12);
  color: #10B981;
  font-weight: 600;
  font-size: 11px;
  border-radius: 100px;
  padding: 4px 10px;
  margin: 4px 4px 16px;
}
.dispatch-side-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
}
.dispatch-side-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  margin-bottom: 18px;
}
.dispatch-side-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 12px;
}
.dispatch-side-stat-num {
  font-weight: 800; font-size: 22px; line-height: 1; color: #FFFFFF;
}
.dispatch-side-stat-num.red { color: #F87171; }
.dispatch-side-stat-num.green { color: #34D399; }
.dispatch-side-stat-lbl {
  font-size: 10px; color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.dispatch-side-section {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  padding: 0 6px 6px;
  margin-top: 6px;
}
.dispatch-side-nav { list-style: none; padding: 0; margin: 0 0 8px; }
.dispatch-side-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.dispatch-side-nav-item.active {
  background: rgba(16,185,129,0.12);
  color: #10B981;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(16,185,129,0.35);
}
.dispatch-side-nav-count {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 1px 7px;
}
.dispatch-side-nav-item.active .dispatch-side-nav-count {
  color: #10B981;
  background: rgba(16,185,129,0.15);
}

/* Main board (light) */
.dispatch-main {
  background: #FAFAFA;
  padding: 20px 24px 24px;
}
.dispatch-main-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.dispatch-main-title { display: flex; align-items: center; gap: 14px; }
.dispatch-main-title-h {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0A0A0A;
}
.dispatch-main-title-tag {
  background: #ECFDF5;
  color: #047857;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.dispatch-main-tabs {
  display: flex;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 4px;
}
.dispatch-main-tab {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6B7280;
  padding: 5px 10px;
  border-radius: 6px;
}
.dispatch-main-tab.active {
  background: #F3F4F6;
  color: #0A0A0A;
  font-weight: 600;
}

.dispatch-job-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.dispatch-job-card-bar {
  width: 4px;
  background: #3B82F6;
  flex-shrink: 0;
}
.dispatch-job-card-inner { padding: 16px 20px; flex: 1; }
.dispatch-job-row1 {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.dispatch-job-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.dispatch-job-pill.time { background: #ECFDF5; color: #047857; border-color: #A7F3D0; }
.dispatch-job-pill.new  { background: #FFFFFF; color: #0A0A0A; border-color: #D1D5DB; }
.dispatch-job-pill.flag { background: #FFF7ED; color: #C2410C; border-color: #FED7AA; }
.dispatch-job-date {
  margin-left: auto;
  font-size: 12px; color: #6B7280; font-weight: 500;
}
.dispatch-job-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0A0A0A;
  margin-bottom: 4px;
}
.dispatch-job-addr {
  font-size: 12px; color: #6B7280; margin-bottom: 8px;
}
.dispatch-job-desc {
  font-size: 13px; line-height: 1.5; color: #374151;
  margin: 0 0 14px;
}
.dispatch-job-row2 {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.dispatch-job-mapbtn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #374151;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
}
.dispatch-job-actions {
  display: flex; align-items: center; gap: 10px;
}
.dispatch-job-assigned {
  font-size: 12px; color: #9CA3AF;
}
.dispatch-job-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #0A0A0A;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
}
.dispatch-job-btn.primary {
  color: #FFFFFF;
  background: #0A0A0A;
  border-color: #0A0A0A;
}

@media (max-width: 820px) {
  .dispatch-preview { padding: 64px 16px 80px; }
  .dispatch-window-body { grid-template-columns: 1fr; min-height: 0; }
  .dispatch-side { display: none; }
  .dispatch-main-tabs { display: none; }
  .dispatch-job-row1 { gap: 6px; }
  .dispatch-job-date { margin-left: auto; }
}

/* =====================================================
   MOBILE FIXES — Product sections, less clutter
   ===================================================== */

@media (max-width: 768px) {

  /* Product sections — tighter padding */
  .product-section { padding: 56px 0; }

  /* Shrink body copy on product pages */
  .product-text > p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  /* iPhone in product sections — smaller on mobile */
  .product-section .product-device .iphone {
    width: 200px !important;
    height: 408px !important;
  }

  /* Shrink chat bubbles inside product iPhones */
  .product-section .product-device .chat-bubble {
    font-size: 10px !important;
    padding: 6px 9px !important;
  }

  /* Carousel on mobile — show as simple pill list instead */
  .product-section .carousel-prev,
  .product-section .carousel-next { display: none; }

  /* Reduce carousel card padding */
  .carousel-card { padding: 16px; gap: 12px; }
  .carousel-title { font-size: 13px !important; }
  .carousel-body, .carousel-text p { font-size: 12px !important; }

  /* Device visuals — show but smaller */
  .product-device { margin-top: 16px; }

  /* Timeline on mobile */
  .timeline { padding: 18px; }
  .timeline-item { grid-template-columns: 58px 1fr; gap: 10px; }
  .timeline-time { font-size: 10px; }
  .timeline-event { font-size: 12px; }

  /* Rep flow on mobile */
  .rep-flow { padding: 18px; }
  .rep-flow-node { font-size: 12px; padding: 10px 12px; }
  .rep-flow-path { padding: 12px 8px; }
  .rep-flow-path-label { font-size: 10px; }
  .rep-flow-path-result { font-size: 12px; }

  /* Integration badges — wrap tighter */
  .integration-badges { gap: 12px !important; }

  /* Overhaul — pill toggle + single panel */
  .overhaul-toggle {
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }

  .overhaul-card {
    display: block;
    max-width: 100%;
    margin: 0 20px;
    border-radius: 20px;
    box-shadow:
      0 1px 0 oklch(1 0 0 / 0.8) inset,
      0 16px 40px oklch(0.2 0.02 55 / 0.08);
  }

  .overhaul-card .overhaul-divider { display: none; }

  .overhaul-col {
    padding: 24px 20px;
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .overhaul-card.overhaul-card--chaos .overhaul-col-new,
  .overhaul-card.overhaul-card--autopilot .overhaul-col-old {
    display: none;
  }

  .overhaul-card.overhaul-card--chaos .overhaul-col-old,
  .overhaul-card.overhaul-card--autopilot .overhaul-col-new {
    display: block;
    animation: mobile-panel-in 0.36s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes mobile-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Flow — mobile header + horizontal snap */
  .flow-section-head { display: none; }
  .flow-mobile-head { display: block; }

  .scroll-sequence {
    height: auto !important;
    background: oklch(0.97 0.006 55) !important;
  }

  .scroll-sequence .ss-sticky {
    position: relative !important;
    height: auto !important;
    padding: 0 0 36px !important;
  }

  .scroll-sequence .ss-inner {
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .scroll-sequence .ss-phone-wrap { display: none !important; }

  .flow-snap-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 20px 12px;
    scroll-padding-inline: 20px;
  }

  .flow-snap-scroll::-webkit-scrollbar { display: none; }

  .scroll-sequence .ss-step.snap-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 min(88vw, 320px);
    scroll-snap-align: center;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    min-height: auto;
    margin: 0;
    padding: 22px 20px 24px;
    border-radius: 20px;
    background: oklch(0.995 0.003 55);
    border: 1px solid oklch(0.9 0.01 55);
    box-shadow:
      0 1px 0 oklch(1 0 0 / 0.92) inset,
      0 14px 40px oklch(0.2 0.02 55 / 0.09);
  }

  .scroll-sequence .ss-title { font-size: 22px !important; line-height: 1.2 !important; }
  .scroll-sequence .ss-body { font-size: 14px !important; margin-top: 12px !important; line-height: 1.6 !important; }
  .scroll-sequence .ss-label { margin-bottom: 10px !important; font-size: 11px !important; }
  .scroll-sequence .ss-progress { display: none !important; }

  .flow-snap-hint { display: block; }
  .flow-snap-dots { display: flex; }

  .snap-card-visual { display: block; }

  /* Partner strip — compact chips on phone */
  .partner-strip { padding: 32px 0 36px; }
  .partner-strip-logos { gap: 8px; }
  .partner-logo { padding: 8px 10px; gap: 0; }
  .partner-name { display: none; }
  .partner-logo svg { width: 26px; height: 26px; }

  .overhaul-logos { margin-bottom: 14px; }
  .overhaul-card.overhaul-card--chaos .overhaul-logos { display: none; }

  /* Steps section — tighter */
  .step { padding: 20px 0; }
  .step-num { font-size: 52px; }

  /* Product list rows — tighter */
  .product-list li a {
    flex-wrap: wrap;
    gap: 4px;
  }
  .product-list-name { font-size: 15px; }
  .product-list-line { font-size: 13px; }

  /* CTA strip — stack */
  .cta-strip { flex-direction: column; gap: 16px; text-align: center; }
  .cta-strip-text { font-size: 16px; }

  /* Section heads — less margin */
  .section-head { margin-bottom: 32px; }

  /* Hero on mobile — less padding */
  .hero { padding: 72px 0 48px; }
  .hero-sub { font-size: 16px !important; }

  /* Trust row — wrap */
  .trust-row { flex-wrap: wrap; gap: 8px; justify-content: center; }

  /* Demo line cards — tactile call CTAs */
  .demo-lines {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
    padding: 0 4px;
  }

  .demo-line-card.demo-call-cta {
    padding: 22px 20px;
    text-align: left;
    border-radius: 18px;
    background: linear-gradient(165deg, oklch(0.22 0.03 260) 0%, oklch(0.16 0.025 260) 100%);
    border-color: oklch(0.32 0.03 260);
    box-shadow:
      0 1px 0 oklch(1 0 0 / 0.06) inset,
      0 14px 36px oklch(0.12 0.03 260 / 0.35);
  }

  .demo-line-card.demo-call-cta:hover {
    transform: translateY(-2px);
    box-shadow:
      0 1px 0 oklch(1 0 0 / 0.08) inset,
      0 18px 44px oklch(0.12 0.03 260 / 0.42);
  }

  .demo-call-cta .live-tag { color: #4ade80; margin-bottom: 0; }
  .demo-call-cta .demo-trade { color: oklch(0.78 0.08 55); margin-bottom: 0; }
  .demo-call-cta .demo-number {
    font-size: 22px !important;
    color: oklch(0.98 0.004 55);
    margin-bottom: 0;
    letter-spacing: -0.02em;
  }

  .demo-call-cta .demo-card-copy {
    color: oklch(0.72 0.02 260);
    margin-bottom: 0;
    font-size: 14px;
  }

  .demo-call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: oklch(0.28 0.04 260);
    color: oklch(0.95 0.08 55);
    flex-shrink: 0;
  }

  .demo-call-action {
    background: oklch(0.62 0.19 45);
    margin-top: 4px;
  }

  /* Proof — status box instead of zero counters */
  .proof-stats--desktop { display: none !important; }

  .proof-status-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 100%;
    margin: 0 auto 28px;
    padding: 22px 20px;
    border-radius: 16px;
    background: oklch(0.99 0.006 85);
    border: 1px solid oklch(0.9 0.04 85);
    box-shadow: 0 8px 24px oklch(0.55 0.12 85 / 0.08);
  }

  .proof-status-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: oklch(0.95 0.06 85);
    color: oklch(0.55 0.14 75);
  }

  .proof-status-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 6px;
    line-height: 1.35;
  }

  .proof-status-copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
  }

  .proof-status-logos {
    display: flex;
    gap: 8px;
    margin-top: 14px;
  }

  .proof-status-logos .partner-logo {
    padding: 6px 8px;
  }

  /* Metric strip — stack */
  .metric-strip-grid { flex-direction: column; gap: 20px; }
  .metric-strip-col:not(:last-child) { border-bottom: 1px solid var(--border); border-right: none; padding-bottom: 20px; }

  /* Local section — tag cloud pills */
  .region-grid {
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    padding: 0 8px;
  }

  .region-pill {
    flex: 0 1 auto;
    font-size: 12px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 999px;
    background: oklch(0.22 0.02 260 / 0.55);
    border-color: oklch(0.35 0.02 260 / 0.5);
    color: oklch(0.88 0.02 260);
  }

  .region-pill.hq {
    background: oklch(0.55 0.16 45 / 0.2);
    border-color: oklch(0.62 0.16 45 / 0.45);
    color: oklch(0.98 0.02 55);
  }

  /* Config on mobile */
  .config { flex-direction: column; }
  .config-result-wrap { position: static; width: 100%; }
  .config-options { grid-template-columns: 1fr 1fr; }
  .config-options-2 { grid-template-columns: 1fr; }

  /* Integrations grid — 2 cols on mobile */
  .int-grid { grid-template-columns: 1fr 1fr; }
  .int-card { padding: 16px; }
  .int-card-logo { width: 36px; height: 36px; }
  .int-card-name { font-size: 13px; }
  .int-card-desc { font-size: 11px; }

  /* Int flow — stack */
  .int-flow-stage { flex-direction: column; align-items: center; gap: 24px; }
  .int-flow-arrow { display: none; }

  /* FAQ items */
  .faq-q { font-size: 15px; }

  /* Tier table — scrollable */
  .tier-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tier-table { min-width: 520px; }
}

@media (max-width: 480px) {
  /* Tightest screens — single column integrations */
  .int-grid { grid-template-columns: 1fr; }
  .config-options { grid-template-columns: 1fr; }

  /* Product iPhones even smaller */
  .product-section .product-device .iphone {
    width: 170px !important;
    height: 347px !important;
  }


  /* Hero h1 */
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.5rem; }
}

/* ===== PRICING CARD PRICE DISPLAY ===== */
.config-card-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}
.config-card.selected .config-card-price {
  color: var(--orange);
}
.config-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ===== MOBILE COPY TRIMMING ===== */
@media (max-width: 768px) {
  .hide-mobile { display: none; }

  /* Section leads — hide on mobile, headline is enough */
  .section-head .lead { display: none; }

  /* Overhaul section — tighter on mobile */
  .overhaul-sub { display: none; }
  .overhaul-head { padding: 0 16px 24px; }
  .overhaul-h2 { font-size: 1.5rem; }

  /* Proof card — less padding */
  .proof-card { padding: 20px; }
  .proof-card p { font-size: 14px; line-height: 1.55; }

  /* Hero sub — one line max */
  .hero-sub {
    font-size: 15px !important;
    line-height: 1.55;
  }

  /* Local section — hide lead, keep pills */
  .local .lead { display: none; }

  /* Steps — tighter */
  .steps { gap: 24px; }
  .step-body { font-size: 14px; }

  /* Product list on index — tighter */
  .product-list-line { display: none; }

  /* Metric strip — labels only */
  .metric-strip-val { font-size: 1.1rem; }

  /* Scroll sequence body text — shorter */
  .ss-body { font-size: 14px !important; line-height: 1.5; }

  /* Section heads — tighter spacing */
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 1.5rem; }

  /* CTA section — tighter */
  .final-cta .sub { display: none; }

  .hero-product-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-product-tab { flex: 0 0 auto; min-width: 108px; }

  .build-banner-inner { flex-direction: column; text-align: center; }
  .build-banner-stats { justify-content: center; }

  .product-suite { grid-template-columns: 1fr 1fr; }
  .product-card p { font-size: 13px; }
}

/* ===== HOME: HERO PRODUCT SHOWCASE ===== */
.hero-showcase {
  max-width: 520px;
  margin: 48px auto 0;
}

.hero-product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-product-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: oklch(0.995 0.003 55);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  text-align: left;
}

.hero-product-tab:hover {
  border-color: oklch(0.85 0.06 45);
  transform: translateY(-1px);
}

.hero-product-tab.is-active {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 8px 24px oklch(0.55 0.16 45 / 0.12);
}

.hero-product-tab-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.hero-product-tab-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-showcase .hero-devices {
  height: auto;
  margin-top: 0;
}

.hero-showcase-caption {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.hero-showcase-product-label {
  color: var(--text);
  font-weight: 700;
}

.hero-phone-states {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero-phone-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1), transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-phone-state.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hero-phone-state .chat-body {
  flex: 1;
  overflow: hidden;
}

.chat-body-animated .chat-bubble,
.chat-body-animated .chat-system {
  opacity: 1;
  transform: none;
}

.chat-header--dispatch .chat-avatar--dispatch { background: linear-gradient(135deg, #F59E0B, #EA580C); }
.chat-header--invoice .chat-avatar--invoice { background: #13B5EA; color: #fff; font-weight: 800; font-size: 12px; }
.chat-header--reputation .chat-avatar--reputation { background: linear-gradient(135deg, #4285F4, #34A853); color: #fff; font-weight: 800; font-size: 12px; }

.dispatch-card {
  background: oklch(0.97 0.006 55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}

.dispatch-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.dispatch-pill {
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dispatch-card strong { display: block; font-size: 14px; margin-bottom: 4px; }
.dispatch-card p { font-size: 12px; color: var(--text-soft); margin: 0 0 10px; }

.dispatch-winner {
  font-size: 12px;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 8px 10px;
  border-radius: 8px;
}

.dispatch-card--muted {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-xsoft);
  background: transparent;
  border-style: dashed;
  padding: 10px 14px;
}

.invoice-card {
  margin: auto 12px;
  padding: 20px 16px;
  border-radius: 16px;
  background: linear-gradient(165deg, #13B5EA 0%, #0D8FB8 100%);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 32px oklch(0.5 0.12 220 / 0.25);
}

.invoice-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.invoice-amount { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.invoice-meta { font-size: 12px; opacity: 0.9; }
.invoice-status { font-size: 11px; margin-top: 6px; padding-top: 10px; border-top: 1px solid oklch(1 0 0 / 0.2); opacity: 0.85; }

.review-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: oklch(0.97 0.02 85);
  border: 1px solid oklch(0.9 0.06 85);
  text-align: center;
}

.review-stars { color: #F5A623; font-size: 16px; letter-spacing: 0.1em; display: block; margin-bottom: 6px; }
.review-card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.review-card span:last-child { font-size: 12px; color: var(--text-soft); }

.hero-phone-state--dark {
  background: linear-gradient(180deg, #1a3158 0%, #0d1f2d 100%);
}

.afterhours-lock {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  color: #fff;
  text-align: center;
}

.afterhours-time {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.afterhours-date {
  font-size: 14px;
  opacity: 0.75;
  margin: 4px 0 20px;
}

.afterhours-notif {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  background: oklch(0.22 0.02 260 / 0.65);
  border: 1px solid oklch(1 0 0 / 0.1);
  text-align: left;
  font-size: 12px;
  line-height: 1.45;
}

.afterhours-notif strong { display: block; font-size: 13px; margin-bottom: 4px; }
.afterhours-notif p { margin: 0; opacity: 0.82; }
.afterhours-foot { margin-top: 16px; font-size: 11px; opacity: 0.55; max-width: 22ch; }

/* ===== BUILD BANNER ===== */
.build-banner {
  background: var(--bg-dark);
  color: oklch(0.95 0.01 55);
  padding: 56px 0;
  border-top: 1px solid oklch(1 0 0 / 0.06);
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
}

.build-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.build-banner-copy h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 12px;
  max-width: 18ch;
}

.build-banner-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: oklch(0.75 0.02 55);
  max-width: 42ch;
}

.build-banner-stats {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.build-banner-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 72px;
}

.build-banner-stats strong {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
}

.build-banner-stats span {
  font-size: 12px;
  color: oklch(0.65 0.02 55);
  margin-top: 6px;
}

/* ===== PRODUCT SUITE CARDS ===== */
.section-products {
  background: var(--off-white);
}

.product-suite {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: oklch(0.995 0.003 55);
  box-shadow: var(--shadow-xs);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--product-accent, var(--orange));
}

.product-card:hover,
.product-card.is-highlight {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(0.85 0.08 45);
}

.product-card--receptionist { --product-accent: #EA580C; }
.product-card--dispatch { --product-accent: #F59E0B; }
.product-card--invoice { --product-accent: #13B5EA; }
.product-card--reputation { --product-accent: #22C55E; }
.product-card--afterhours { --product-accent: #6366F1; }

.product-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--product-accent, var(--orange));
}

.product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: oklch(0.96 0.02 55);
  color: var(--product-accent, var(--orange));
}

.product-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-card p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-soft);
  flex: 1;
}

.product-card-badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-card-badge--live {
  background: #DCFCE7;
  color: #15803D;
}

.product-card-badge--soon {
  background: oklch(0.95 0.04 85);
  color: oklch(0.45 0.1 75);
}

.product-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--product-accent, var(--orange));
}

.product-suite-cta {
  text-align: center;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: oklch(0.99 0.004 55);
  border: 1px solid var(--border);
}

.product-suite-cta p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.product-suite-cta strong { color: var(--text); }

/* ===== BUILD PROCESS ===== */
.build-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.build-step {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: oklch(0.995 0.003 55);
}

.build-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}

.build-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.build-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  .product-suite { grid-template-columns: repeat(3, 1fr); }
  .product-card--afterhours { grid-column: span 1; }
}

@media (max-width: 720px) {
  .product-suite { grid-template-columns: 1fr; }
  .build-process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INLINE CTA STRIP
   ============================================================ */
.inline-cta-strip {
  background: #0A0A0A;
  padding: 48px 0;
}

.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.inline-cta-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inline-cta-text strong {
  font: 700 24px/1.2 'Inter', sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
}

.inline-cta-text span {
  font: 400 15px/1.5 'Inter', sans-serif;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
}

.inline-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.inline-cta-call {
  font: 500 14px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
}

.inline-cta-call:hover { color: #fff; }

@media (max-width: 720px) {
  .inline-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .inline-cta-text strong { font-size: 20px; }
  .inline-cta-actions { flex-direction: column; align-items: flex-start; gap: 12px; width: 100%; }
  .inline-cta-actions .btn { width: 100%; text-align: center; }
}
