/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --brand: #0d9488;
  --brand-dark: #0f766e;
  --brand-light: #f0fdfa;
  --gold: #f59e0b;
  --gold-light: #fff4cf;
  --crimson: #dc2626;
  --indigo: #4f46e5;
  --ink: #1d1d1b;
  --ink2: #1d1d1b;
  --fog: #f6f6f6;
  --fog2: #f0f4f8;
  --mid: #323b4b;
  --lite: #64748b;
  --white: #ffffff;
  --accent: #4fc3ff;
  --border: #eef2f6;
  --hero-bg: #0d1117;
  --hero-surface: #161b22;
  --hero-text: #f8fafc;
  --hero-muted: #b7c2d0;
  --hero-border: rgba(255,255,255,0.1);
  --shadow-card: 0 24px 70px rgba(15,23,42,0.08);
  --shadow-hover: 0 28px 80px rgba(15,23,42,0.12);
  --shadow-brand: 0 8px 24px rgba(13,148,136,0.24);
  --radius-btn: 12px;
  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-large: 28px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --transition-fast: all .2s;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --icon-green: rgba(34,197,94,0.1);
  --icon-gold: rgba(251,191,36,0.1);
  --icon-red: rgba(239,68,68,0.1);
  --icon-blue: rgba(59,130,246,0.1);
  --icon-purple: rgba(139,92,246,0.1);
  --icon-amber: rgba(245,158,11,0.1);
  --icon-mint: rgba(52,211,153,0.1);
  --icon-rose: rgba(244,63,94,0.1);
  --avatar-emerald: #059669;
  --avatar-violet: #7c3aed;
  --avatar-pink: #db2777;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  position: relative;
  z-index: 200;
}

.announce-bar {
  background: linear-gradient(90deg, var(--brand-light) 0%, #f0fdf4 100%);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(15,23,42,0.05);
}
.announce-bar a {
  color: var(--brand-dark);
  padding: 0.12rem 0;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(15,118,110,0.28);
}
.announce-bar a:hover { color: var(--ink); border-bottom-color: rgba(29,29,27,0.35); }

nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.04rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.36), transparent 42%),
    linear-gradient(135deg, var(--brand) 0%, #14b8a6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #06361f;
  box-shadow: 0 12px 26px rgba(13,148,136,0.22);
}
.nav-pills { display: flex; gap: 0.3rem; }
.nav-pills a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}
.nav-pills a:hover { background: rgba(79,70,229,0.08); color: var(--ink); }
.nav-actions { display: flex; gap: 0.6rem; align-items: center; }
.nav-docs {
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-docs:hover { color: var(--ink); }
.nav-cta {
  min-height: 44px;
  background: var(--brand);
  color: var(--ink);
  padding: 0.58rem 1.32rem;
  border-radius: var(--radius-btn);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-brand);
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-drawer {
  position: fixed;
  inset: 72px 1rem auto 1rem;
  z-index: 198;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 24px 70px rgba(15,23,42,0.16);
  backdrop-filter: blur(20px);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-drawer[hidden] { display: none !important; }
.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-drawer a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  background: rgba(15,23,42,0.03);
}
.mobile-drawer .btn { margin-top: 0.25rem; }
.mobile-drawer .full-width { width: 100%; }

.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 72% 48% at 18% 30%, rgba(13,148,136,0.18) 0%, transparent 56%),
    radial-gradient(ellipse 46% 34% at 76% 24%, rgba(79,70,229,0.12) 0%, transparent 68%),
    linear-gradient(180deg, #0d1117 0%, #121821 100%);
}
.hero-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), transparent 100%);
  pointer-events: none;
}
.hero {
  position: relative;
  z-index: 1;
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  padding: 4.6rem 5% 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 1; }
.hero-visual {
  display: grid;
  gap: 1rem;
  justify-items: end;
  position: relative;
}
.hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.16) 0%, rgba(13,148,136,0.03) 46%, transparent 72%);
  filter: blur(22px);
  animation: orbFloat 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-node {
  position: absolute;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.68);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.16);
  pointer-events: none;
  opacity: 0.78;
}
.hero-node.one { top: 128px; right: 13%; animation: nodeFloat 7s ease-in-out infinite; }
.hero-node.two { top: 346px; right: 44%; animation: nodeFloat 8s ease-in-out infinite 1s; }
.hero-node.three { bottom: 68px; right: 8%; animation: nodeFloat 6.5s ease-in-out infinite 0.6s; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #baf7dd;
  padding: 0.38rem 0.95rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease both;
  backdrop-filter: blur(12px);
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
  color: var(--hero-text);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand) 0%, #a7f3d0 100%);
  color: #062c1c;
  padding: 0.08em 0.24em;
  border-radius: 12px;
  display: inline;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(13,148,136,0.2);
}
.hero-sub {
  font-size: 1rem;
  color: var(--hero-muted);
  line-height: 1.72;
  font-weight: 500;
  max-width: 560px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-journey {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 22px 54px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
  animation: fadeUp 0.6s 0.34s ease both;
}
.journey-step {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.journey-arrow {
  color: rgba(186,247,221,0.72);
  font-size: 0.88rem;
}

.logo-footer {
  font-size: 1.1rem;
  color: white;
}

.logo-mark-footer {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.5rem;
  border-radius: var(--radius-btn);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}
.btn-green {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(13,148,136,0.22);
}
.btn-green:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13,148,136,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(15,23,42,0.08);
}
.btn-outline:hover { border-color: var(--ink); background: var(--fog); }
.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}
.btn-outline-light {
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}
.hero .btn-outline {
  color: var(--hero-text);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
}
.hero .btn-outline:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}
.hero-chips {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeUp 0.6s 0.35s ease both;
}
.chip {
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hero-muted);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.chip:hover { border-color: rgba(13,148,136,0.5); color: white; background: rgba(13,148,136,0.08); }
.trust-badges {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.45s ease both;
}
.badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--hero-text);
  backdrop-filter: blur(10px);
}
.badge-g2 {
  border-color: rgba(13,148,136,0.3);
  background: rgba(13,148,136,0.12);
  color: #ccfbf1;
}
.badge-g2 .g2-star { color: #99f6e4; }
.hero-proof-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-proof-card {
  min-width: 200px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 26px 60px rgba(0,0,0,0.2);
  backdrop-filter: blur(18px);
}
.hero-proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.hero-proof-value {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: white;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}
.hero-proof-card p {
  margin-top: 0.5rem;
  color: var(--hero-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}
.customer-logos {
  margin-top: 1rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeUp 0.6s 0.5s ease both;
}
.customer-logos-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex-basis: 100%;
  margin-bottom: 0.2rem;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.34rem 0.74rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.logo-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.phone-frame {
  padding: 0.9rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}
.chat-window {
  background: #fff;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.6s 0.15s ease both;
}
.chat-status-bar {
  background: var(--fog);
  padding: 0.45rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.chat-topbar {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.chat-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}
.chat-av-info .name { font-weight: 600; font-size: 0.88rem; color: white; }
.chat-av-info .status { font-size: 0.7rem; color: rgba(255,255,255,0.8); }
.chat-menu { margin-left: auto; color: rgba(255,255,255,0.7); font-size: 1rem; letter-spacing: 2px; }
.chat-feed {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='rgba(0,0,0,0.03)'/%3E%3C/svg%3E");
  padding: 1.25rem 1rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}
.bubble {
  max-width: 80%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.bubble.show { opacity: 1; transform: translateY(0); }
.bubble-them {
  background: white;
  color: #111;
  align-self: flex-start;
  border-radius: 0 14px 14px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.bubble-me {
  background: #d9fdd3;
  color: #111;
  align-self: flex-end;
  border-radius: 14px 0 14px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.bubble-time {
  font-size: 0.62rem;
  opacity: 0.5;
  margin-top: 3px;
  display: block;
  text-align: right;
}
.typing-indicator {
  align-self: flex-start;
  background: white;
  padding: 0.6rem 0.85rem;
  border-radius: 0 14px 14px 14px;
  display: flex;
  gap: 4px;
  align-items: center;
  opacity: 0;
  transition: opacity .3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.typing-indicator.show { opacity: 1; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa;
  animation: typingBounce 1.2s infinite;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
.chat-input-bar {
  background: var(--fog);
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}
.chat-input-fake {
  flex: 1;
  background: white;
  border-radius: 100px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  color: var(--lite);
  border: 1px solid var(--border);
}
.chat-send {
  width: 32px;
  height: 32px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--ink);
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(13,148,136,0.3);
}
.chat-send:hover { transform: scale(1.05); }
.hero-outcome-card {
  width: min(100%, 410px);
  margin-top: -92px;
  margin-right: 24px;
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.74) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 1;
}
.hero-outcome-card::before {
  content: '';
  position: absolute;
  left: 34px;
  top: -34px;
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, rgba(13,148,136,0.8), rgba(13,148,136,0));
}
.hero-outcome-body {
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(13,148,136,0.18), rgba(79,70,229,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem;
  display: grid;
  gap: 0.9rem;
}
.hero-outcome-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}
.hero-outcome-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  max-width: 300px;
}
.hero-outcome-list {
  display: grid;
  gap: 0.65rem;
}
.hero-outcome-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}
.hero-outcome-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.18);
  color: #baf7dd;
  font-size: 0.85rem;
}
.hero-outcome-copy strong {
  display: block;
  color: white;
  font-size: 0.83rem;
  margin-bottom: 0.14rem;
}
.hero-outcome-copy span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.74rem;
  line-height: 1.55;
}
.hero-outcome-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hero-outcome-meta span {
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 0.68rem;
  font-weight: 600;
}
.metrics-strip {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5% 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.metric {
  padding: 1.25rem 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  color: white;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
}
.metric-value {
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  margin-bottom: 0.45rem;
}
.metric-num {
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.metric-suffix {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d1fae5;
}
.metric-label {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--hero-muted);
}

.ticker-wrap {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
  overflow: hidden;
  padding: 0.55rem 0;
  box-shadow: 0 2px 10px rgba(13,148,136,0.15);
}
.ticker {
  display: flex;
  gap: 3rem;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section {
  padding: 5rem 5%;
  max-width: 1320px;
  margin: 0 auto;
}
.section-full { padding: 5rem 5%; }
.label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.85rem;
  display: block;
}
.label-brand { color: var(--brand); }
.subhead-spacious { margin-bottom: 3rem; }
.heading {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.heading .dim { color: var(--mid); }
.subhead {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.72;
  max-width: 540px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-kicker {
  display: flex;
  flex-direction: column;
}

.glass-card {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-card);
  box-shadow:
    0 8px 16px rgba(15,23,42,0.04),
    0 20px 60px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.78);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 14px 22px rgba(15,23,42,0.06),
    0 24px 70px rgba(13,148,136,0.12),
    inset 0 1px 0 rgba(255,255,255,0.82);
  border-color: rgba(13,148,136,0.28);
}

.how-section { background: var(--fog); }
.how-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 5%;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.step-cell {
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num-big {
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  pointer-events: none;
  user-select: none;
}
.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-light);
  border: 1px solid rgba(13,148,136,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.step-cell h3 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.step-cell p { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.feat {
  padding: 2rem 1.75rem;
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform .25s ease;
}
.feat-icon--green,
.feat-icon--gold,
.feat-icon--red,
.feat-icon--blue,
.feat-icon--purple,
.feat-icon--amber,
.feat-icon--mint,
.feat-icon--rose {
  background: var(--brand-light);
  border: 1px solid rgba(13,148,136,0.16);
}
.feat:hover .feat-icon { transform: translateY(-3px) rotate(-7deg) scale(1.06); }
.feat h3 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.feat p { font-size: 0.82rem; color: var(--mid); line-height: 1.64; }

.industries-section { background: var(--fog2); }
.industries-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 5%;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.ind-card {
  padding: 1rem 1rem 1.6rem;
}
.proof-media {
  width: 100%;
  min-height: 152px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ecfeff 0%, #f8fafc 100%);
  border: 1px solid rgba(13,148,136,0.12);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.proof-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.proof-media--placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}
.proof-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.18);
  box-shadow: 0 14px 28px rgba(13,148,136,0.08);
}
.proof-placeholder-copy {
  display: grid;
  gap: 0.25rem;
  max-width: 240px;
}
.proof-placeholder-copy strong {
  font-size: 0.9rem;
  color: var(--ink);
}
.proof-placeholder-copy span {
  font-size: 0.76rem;
  color: var(--mid);
  line-height: 1.5;
}
.proof-pill {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(15,23,42,0.12);
}
.proof-media--compact {
  min-height: 188px;
}
.proof-caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 18px 30px rgba(15,23,42,0.12);
}
.proof-caption span {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  background: rgba(13,148,136,0.1);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-caption p {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.5;
}
.ind-card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.ind-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }
.ind-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.conv-section { background: var(--fog); }
.conv-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 5%;
}
.conv-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: white;
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
}
.tab-btn.active {
  background: var(--brand-light);
  color: var(--brand-dark);
  border-color: var(--brand);
}
.tab-btn:hover:not(.active) { background: var(--fog2); color: var(--ink); }
.conv-panel { display: none; }
.conv-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.conv-chat {
  background: #e5ddd5;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.conv-chat-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cch-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
}
.cch-info .n { font-size: 0.8rem; font-weight: 600; color: white; }
.cch-info .s { font-size: 0.65rem; color: rgba(255,255,255,0.8); }
.conv-chat-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #e5ddd5;
}
.cb {
  max-width: 80%;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
}
.cb-them {
  background: white;
  color: #111;
  align-self: flex-start;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.cb-me {
  background: #d9fdd3;
  color: #111;
  align-self: flex-end;
  border-radius: 8px 0 8px 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.conv-analysis { padding: 0.4rem 0; }
.conv-analysis h3 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.conv-analysis .tagline {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.analysis-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.analysis-badge {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(245,158,11,0.14);
  color: #a16207;
  font-size: 0.68rem;
  font-weight: 800;
}
.tactic {
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.55rem;
}
.tactic-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}
.tactic p { font-size: 0.78rem; color: var(--mid); line-height: 1.5; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.price-card {
  padding: 2rem;
  position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, #0f172a 0%, #121c2b 100%);
  color: white;
  border: 2px solid var(--brand);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.featured-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--ink);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.price-card.featured .price-tier { color: rgba(255,255,255,0.72); }
.price-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.price-period { font-size: 0.8rem; color: var(--mid); margin-bottom: 1rem; }
.price-card.featured .price-period { color: rgba(255,255,255,0.7); }
.price-stat {
  margin: 1rem 0 1.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: rgba(245,158,11,0.12);
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 700;
}
.price-card.featured .price-stat {
  background: rgba(13,148,136,0.12);
  color: #bbf7d0;
}
.price-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.price-list li {
  font-size: 0.85rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.price-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .price-list li { color: #d1d5db; }
.price-card:not(.featured) .price-list li { color: var(--mid); }
.price-btn {
  display: block;
  text-align: center;
  padding: 0.82rem;
  border-radius: var(--radius-btn);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all .2s;
  font-family: var(--sans);
}
.price-btn-lime { background: var(--brand); color: var(--ink); }
.price-btn-lime:hover { background: var(--brand-dark); }
.price-btn-ghost { background: transparent; color: var(--mid); border: 1.5px solid rgba(15,23,42,0.08); }
.price-btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.testimonials-shell {
  background: var(--fog);
  max-width: 100%;
  padding: 7rem 5%;
}
.testimonials-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.testi { padding: 1.5rem; }
.testi-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(13,148,136,0.12);
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testi-stars {
  color: #fbbf24;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}
.testi-preview {
  margin-bottom: 1rem;
}
.testi-quote {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.testi-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
}
.testi-av--emerald { background: var(--avatar-emerald); }
.testi-av--violet { background: var(--avatar-violet); }
.testi-av--pink { background: var(--avatar-pink); }
.testi-name { font-weight: 700; font-size: 0.82rem; color: var(--ink); }
.testi-role { font-size: 0.72rem; color: var(--mid); }
.wa-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 0.35rem;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(13,148,136,0.16) 0%, transparent 70%),
    linear-gradient(180deg, #0d1117 0%, #101723 100%);
}
.cta-bubble {
  position: absolute;
  padding: 0.55rem 0.95rem;
  border-radius: 16px;
  background: rgba(13,148,136,0.06);
  border: 1px solid rgba(13,148,136,0.12);
  font-size: 0.76rem;
  color: rgba(196,255,224,0.72);
  animation: floatUp 6s ease-in infinite;
  pointer-events: none;
}
.cta-bubble.one { left: 12%; bottom: 16%; animation-delay: 0s; }
.cta-bubble.two { right: 14%; bottom: 8%; animation-delay: 1.4s; }
.cta-bubble.three { left: 55%; bottom: 10%; animation-delay: 2.8s; }
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 5%;
}
.cta-inner .heading { color: white; }
.cta-inner .subhead { color: var(--lite); margin: 0 auto 2.5rem; max-width: 480px; }
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.cta-note { margin-top: 1rem; font-size: 0.75rem; color: #6b7280; }
.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--hero-text);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 rgba(13,148,136,0.6);
  animation: pulse 1.8s infinite;
}

footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 5% 2rem;
  color: #95a4b8;
}
.footer-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(120px, 1fr));
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-copy {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #95a4b8;
  max-width: 280px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
footer a { color: #95a4b8; text-decoration: none; font-size: 0.8rem; }
footer a:hover { color: var(--brand); }
.footer-bottom {
  max-width: 1320px;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.ask-bar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--ink);
  padding: 0.72rem 1.78rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  box-shadow: 0 6px 24px rgba(13,148,136,0.35);
  cursor: pointer;
  text-decoration: none;
  z-index: 500;
  transition: all .2s;
  white-space: nowrap;
}
.ask-bar:hover {
  background: var(--brand-dark);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 35px rgba(13,148,136,0.45);
}
.ask-bar .ask-dots {
  display: flex;
  gap: 3px;
  align-items: center;
}
.ask-bar .ask-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  animation: typingBounce 1.2s infinite;
}
.ask-bar .ask-dot:nth-child(2) { animation-delay: 0.2s; }
.ask-bar .ask-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(32px, -18px) scale(1.04); }
  66% { transform: translate(-18px, 20px) scale(0.97); }
}
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatUp {
  0% { transform: translateY(30px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-90px); opacity: 0; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,148,136,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(13,148,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .ticker { animation: none !important; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { justify-items: center; }
  .hero-outcome-card {
    margin-top: -64px;
    margin-right: 0;
  }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .proof-media--compact { min-height: 204px; }
  .conv-panel.active { grid-template-columns: 1fr; }
  .nav-pills, .nav-docs { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-drawer { display: flex; }
  .footer-shell { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  .hero { text-align: center; }
  .hero-actions,
  .hero-chips,
  .trust-badges,
  .customer-logos,
  .hero-proof-row,
  .hero-journey { justify-content: center; }
  .hero-proof-card { text-align: left; }
  .footer-shell { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .announce-bar { flex-direction: column; gap: 0.45rem; }
  .hero { padding-top: 3.4rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-journey {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  .metrics-strip { grid-template-columns: 1fr; padding-bottom: 2.4rem; }
  .steps-row, .features-grid, .ind-grid { grid-template-columns: 1fr; }
  .cta-btns, .hero-actions { flex-direction: column; }
  .cta-btns .btn, .hero-actions .btn, .mobile-drawer .btn { width: 100%; }
  .hero-outcome-card {
    margin-top: 0;
    width: 100%;
  }
  .section-header { align-items: start; }
  .footer-bottom { flex-direction: column; }
  .cta-bubble { display: none; }
  .proof-media,
  .proof-media--compact { min-height: 176px; }
  .proof-caption {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }
}
