@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --navy: #172033;
  --muted: #5b657a;
  --border: #e5eaf0;
  --cyan: #00a89f;
  --cyan-dark: #008f88;
  --coral: #ff5c7c;
  --coral-dark: #e84a6a;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 12px 40px rgba(23, 32, 51, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--navy);
  background: #ffffff;
  overflow-x: hidden;
}

a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 168, 159, 0.55);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

.store-badge {
  display: inline-block;
  opacity: 0.92;
  cursor: default;
}

img { max-width: 100%; display: block; height: auto; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.site-header.scrolled { border-bottom-color: var(--border); }

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

/* Terms/privacy pages use header without .container */
.site-header > .site-header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.brand:hover { text-decoration: none; }
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.nav-center {
  display: none;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-center a { color: var(--muted); text-decoration: none; }
.nav-center a:hover { color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--navy);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
}

@media (min-width: 960px) {
  .nav-center { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 92, 124, 0.28);
}
.btn-coral:hover { background: var(--coral-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--navy); }

.btn-cyan {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 168, 159, 0.25);
}
.btn-cyan:hover { background: var(--cyan-dark); color: #fff; }

.btn-link {
  background: transparent;
  color: var(--muted);
  padding: 0.55rem 0.75rem;
  font-weight: 600;
}
.btn-link:hover { color: var(--navy); }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 78% 35%, rgba(159, 240, 234, 0.45), transparent 70%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(255, 194, 207, 0.35), transparent 65%),
    #ffffff;
}

.hero-blobs { display: none; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1.08fr;
    gap: 1.5rem;
    min-height: 520px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(23, 32, 51, 0.04);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 168, 159, 0.18);
}

.hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 1.1rem;
  font-weight: 800;
  color: #1a1f2e;
}

.hero h1 .line2 { color: var(--cyan); }

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn-lg {
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-size: 0.95rem;
}

.btn-coral {
  background: linear-gradient(135deg, #ff5c7c, #ff7a5c);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 92, 124, 0.35);
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: #d9e0ea;
  box-shadow: 0 4px 12px rgba(23, 32, 51, 0.04);
}

.play-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 1px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-proof p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.av-1 { background: #00a89f; }
.av-2 { background: #ff5c7c; }
.av-3 { background: #3b82f6; }
.av-4 { background: #172033; }

/* Hero visual — match ref floating cards */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  width: min(88%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 168, 159, 0.28);
  animation: spinSlow 48s linear infinite;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}
.orb-teal {
  width: 14px;
  height: 14px;
  background: var(--cyan);
  top: 18%;
  right: 18%;
  box-shadow: 0 0 16px rgba(0, 168, 159, 0.5);
  animation: floatCard 4s ease-in-out infinite;
}
.orb-coral {
  width: 10px;
  height: 10px;
  background: var(--coral);
  bottom: 22%;
  left: 16%;
  box-shadow: 0 0 14px rgba(255, 92, 124, 0.45);
  animation: floatCard 5s ease-in-out infinite reverse;
}

.hero-core {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: pulseSoft 4s ease-in-out infinite;
}

.hero-core img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(23, 32, 51, 0.14));
}

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid rgba(229, 234, 240, 0.95);
  border-radius: 18px;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.1);
  font-size: 0.9rem;
  color: var(--navy);
  white-space: nowrap;
  animation: floatCard 5.5s ease-in-out infinite;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-teal { background: rgba(0, 168, 159, 0.12); color: var(--cyan-dark); }
.fc-coral { background: rgba(255, 92, 124, 0.12); color: var(--coral); }
.fc-green { background: rgba(37, 211, 102, 0.14); color: #128c7e; }
.fc-blue { background: rgba(66, 133, 244, 0.14); color: #1a73e8; }

.fc-text { min-width: 0; }

.float-card small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #8b93a7;
  margin-bottom: 0.15rem;
}

.float-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1f2e;
}

.float-card .accent { color: var(--cyan); font-weight: 800; }
.float-card .coral { color: var(--coral); font-weight: 800; }

.fc-1 { top: 6%; left: 2%; animation-delay: 0s; }
.fc-2 { top: 14%; right: 0; animation-delay: -1.2s; }
.fc-3 { bottom: 14%; left: 0; animation-delay: -2.4s; }
.fc-4 { bottom: 4%; right: 6%; animation-delay: -3.2s; }
.fc-5 { top: 46%; right: -4%; animation-delay: -1.8s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 960px) {
  .hero-visual { min-height: 500px; }
  .hero-core { width: 240px; height: 240px; }
  .hero-core img { width: 200px; height: 200px; }
  .fc-1 { left: 0; }
  .fc-5 { right: -2%; }
}

@media (max-width: 719px) {
  .fc-2, .fc-5 { display: none; }
  .hero-visual { min-height: 340px; }
  .hero-core { width: 160px; height: 160px; }
  .hero-core img { width: 132px; height: 132px; }
  .brand img { height: 48px; width: 48px; }
}

/* Trust strip under hero */
.trust-strip {
  padding: 1.25rem 0 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9aa3b5;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-logos span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #b0b8c9;
  letter-spacing: -0.02em;
}

/* —— Sections —— */
.section {
  padding: 2.25rem 0;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

/* Integrations */
.integrations {
  background: linear-gradient(180deg, transparent, rgba(0, 168, 159, 0.04), transparent);
}

.integ-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .integ-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .integ-grid { grid-template-columns: repeat(5, 1fr); }
}

.integ-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.85rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(23, 32, 51, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.integ-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.65rem;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.integ-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pill-live { background: rgba(0, 168, 159, 0.12); color: var(--cyan-dark); }
.pill-soon { background: rgba(91, 101, 122, 0.1); color: var(--muted); }

/* Features */
.feature-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 4px 16px rgba(23, 32, 51, 0.03);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  background: rgba(0, 168, 159, 0.1);
  color: var(--cyan-dark);
}

.feature-card:nth-child(2) .feature-icon { background: rgba(255, 92, 124, 0.1); color: var(--coral); }
.feature-card:nth-child(3) .feature-icon { background: rgba(23, 32, 51, 0.06); color: var(--navy); }
.feature-card:nth-child(4) .feature-icon { background: rgba(0, 168, 159, 0.1); color: var(--cyan); }

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Product tour — Dashboard & Leads */
.product-tour {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.product-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.product-row:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .product-row {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
  .product-row-reverse .product-copy { order: 2; }
  .product-row-reverse .product-visual { order: 1; }
}

.product-copy .pill { margin-bottom: 0.75rem; }
.product-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}
.product-copy > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

.product-points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}
.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

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

.phone-frame {
  width: min(100%, 340px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 20px 50px rgba(23, 32, 51, 0.1);
}

.phone-bar {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.app-frame { background: #f4f7fb; }

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.app-head strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.app-head small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.today-pulse {
  background: var(--cyan);
  color: #fff;
  border-radius: 16px;
  padding: 0.85rem 0.9rem 0.95rem;
  margin-bottom: 0.9rem;
}
.today-pulse > small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}
.today-pulse > strong {
  display: block;
  font-size: 0.95rem;
  margin: 0.15rem 0 0.7rem;
}
.pulse-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.pulse-tile {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
}
.pulse-tile b {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}
.pulse-tile span {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.85;
}

.app-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}

.pipe-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.65rem 0.35rem;
  margin-bottom: 0.65rem;
}
.pipe-stat {
  text-align: center;
  border-left: 1px solid var(--border);
  padding: 0.15rem 0.2rem;
}
.pipe-stat:first-child { border-left: none; }
.pipe-stat small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
}
.pipe-stat strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.pipe-stat .accent { color: #059669; }
.pipe-stat strong span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
}

.meta-strip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
}
.meta-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.meta-strip strong { display: block; font-size: 0.8rem; }
.meta-strip small { display: block; font-size: 0.68rem; color: var(--muted); }
.meta-strip em {
  margin-left: auto;
  font-style: normal;
  font-weight: 800;
  font-size: 1rem;
}

.shortcut-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.shortcut-row span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.2rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
}

.lead-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 12px rgba(23, 32, 51, 0.05);
}
.lead-card .lead-item {
  padding: 0.7rem 0.75rem 0.55rem;
  border-top: none;
}
.lead-actions {
  display: flex;
  gap: 0.35rem;
  padding: 0 0.75rem 0.65rem;
  border-top: 1px dashed #e8ecf0;
  padding-top: 0.5rem;
}
.lead-actions span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan-dark);
  background: rgba(0, 168, 159, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.leads-search {
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: #9aa3b5;
  margin-bottom: 0.65rem;
}

.leads-filters {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #eef1f5;
  color: var(--muted);
}
.chip-on {
  background: rgba(0, 168, 159, 0.14);
  color: var(--cyan-dark);
}

.lead-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-top: 1px solid #eef1f5;
}
.lead-item:first-of-type { border-top: none; }
.lead-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.av-coral { background: var(--coral); }
.av-navy { background: var(--navy); }
.lead-item strong {
  display: block;
  font-size: 0.88rem;
}
.lead-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}
.lead-tag {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 168, 159, 0.12);
  color: var(--cyan-dark);
  white-space: nowrap;
}
.tag-soft {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}
.tag-warn {
  background: rgba(255, 92, 124, 0.12);
  color: var(--coral);
}

/* How it works */
.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.step h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Solutions */
.solutions-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
}

.solution-card {
  background: linear-gradient(160deg, #fff, #f3fbfa);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.solution-card h3 { margin: 0 0 0.45rem; }
.solution-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Pricing teaser */
.pricing-band {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-band::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.15;
  top: -80px;
  right: -40px;
}

.pricing-band h2 { margin: 0 0 0.5rem; position: relative; }
.pricing-band p {
  margin: 0 auto 1.4rem;
  max-width: 28rem;
  opacity: 0.8;
  position: relative;
}

.pricing-band .btn { position: relative; }

/* Resources */
.resources-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.resource-link {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.35rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.resource-link:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  text-decoration: none;
}

/* Meta / trust */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.trust-box h2 { margin: 0 0 0.75rem; font-size: 1.2rem; }
.trust-box p { color: var(--muted); font-size: 0.92rem; }

.meta-list {
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.meta-list li { margin: 0.35rem 0; }
.meta-list strong { color: var(--navy); }

.legal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem;
  margin-top: 1rem;
}
.legal-box p {
  margin: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: #ffffff;
  color: #5b657a;
  padding: 2.75rem 0 2rem;
  border-top: 1px solid var(--border);
}

.site-footer--dark {
  background: #0f172a;
  color: #94a3b8;
  border-top: none;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem 1.75rem;
    align-items: start;
  }
  .footer-brand { grid-column: auto; }
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.footer-brand .footer-logo:hover { text-decoration: none; color: #fff; }
.footer-brand .footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.footer-brand p {
  margin: 0 0 1.15rem;
  max-width: 22rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #64748b;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer-social a:hover {
  border-color: #00a89f;
  color: #fff;
  background: rgba(0, 168, 159, 0.12);
  text-decoration: none;
}

.site-footer--dark .badge-row {
  justify-content: flex-start;
  margin-top: 0.25rem;
}
.site-footer--dark .store-badge { opacity: 0.95; }

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.28rem 0;
  line-height: 1.45;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid #1e293b;
  font-size: 0.82rem;
  color: #64748b;
}
.footer-bottom p { margin: 0; }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

.badge-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 40px;
  line-height: 0;
  transition: transform 0.15s, opacity 0.15s;
}
.badge-row a:hover { transform: translateY(-1px); text-decoration: none; opacity: 0.92; }

.badge-row img {
  width: 135px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef1f5;
  color: #4a5568;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.social-btn:hover {
  background: #e2e8f0;
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.88rem;
}
.footer-links a { color: #6b7280; }
.footer-links a:hover { color: var(--cyan-dark); }

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
}

/* Demo modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 22, 36, 0.55);
  backdrop-filter: blur(4px);
}
.modal.open { display: flex; }

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.modal-card h3 { margin: 0 0 0.5rem; }
.modal-card p { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.92rem; }

/* Legal / doc pages (privacy, terms) */
.doc-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.doc-main h1 { font-size: 1.75rem; margin: 0 0 0.25rem; }
.doc-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.doc-main h2 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; }
.doc-main h3 { font-size: 1rem; margin: 1.25rem 0 0.4rem; }
.doc-main p, .doc-main li { color: #333; }
.doc-main ul, .doc-main ol { padding-left: 1.25rem; }
.doc-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.25rem;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.35rem; }
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #b0b8c9;
  margin-left: 0.15rem;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan-dark); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* Legacy header used by terms page */
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.logo span { color: var(--cyan); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.92rem;
}
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--cyan); }
.nav-links a[aria-current="page"] { color: var(--cyan-dark); font-weight: 700; }

/* —— Contact page —— */
.contact-page {
  background: linear-gradient(180deg, #eef8f8 0%, #ffffff 42%);
  padding: 2.5rem 0 4rem;
  min-height: calc(100vh - 72px);
}
.contact-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.contact-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-copy h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
}
.contact-lead { color: var(--muted); margin: 0 0 1.75rem; max-width: 36rem; }
.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}
.contact-details li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 168, 159, 0.12);
  color: var(--cyan-dark);
  display: grid;
  place-items: center;
}
.contact-details strong {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.contact-details a, .contact-details p {
  margin: 0.1rem 0 0;
  color: var(--navy);
  font-weight: 600;
}
.maps-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.maps-btn:hover { color: #fff; text-decoration: none; background: #0f1728; }
.contact-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: grid;
  gap: 1.15rem;
}
.contact-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.contact-label {
  display: block;
  line-height: 1.3;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
}
.contact-card textarea { min-height: 8rem; resize: vertical; }
.contact-submit {
  width: 100%;
  border: none;
  min-height: 2.75rem;
}
.contact-card input.invalid,
.contact-card select.invalid,
.contact-card textarea.invalid {
  border-color: var(--coral);
}
.contact-card .field-error {
  display: none;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 600;
}
.contact-card .field-error.show { display: block; }
.contact-legal {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}
.form-msg { margin: 0; font-size: 0.85rem; color: var(--cyan-dark); font-weight: 600; min-height: 1.2em; }
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}
.wa-float:hover { text-decoration: none; transform: translateY(-2px); }
