:root {
  --blue-deep: #0b57d0;
  --blue-bright: #2f80ed;
  --green: #7ed957;
  --mint: #a8f06a;
  --navy: #0f172a;
  --text: #1d2b42;
  --muted: #5b6b84;
  --line: #d8e2ee;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --surface-alt: #f4f8fc;
  --shadow-lg: 0 24px 60px rgba(25, 61, 123, 0.12);
  --shadow-md: 0 18px 40px rgba(20, 53, 112, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 240, 106, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(47, 128, 237, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(216, 226, 238, 0.8);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}
.brand-logo { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--navy); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 128, 237, 0.25);
}
.btn-secondary {
  background: rgba(11, 87, 208, 0.08);
  color: var(--blue-deep);
  border-color: rgba(11, 87, 208, 0.14);
}
.btn-ghost {
  background: rgba(255,255,255,0.86);
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.08);
}
.btn-large { min-height: 56px; padding: 0 24px; }
.btn-full { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; padding: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 999px; }
.hero-section { padding: 56px 0 46px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 87, 208, 0.08);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}
.hero-copy h1,
.section-intro h2,
.feature-copy h2,
.pricing-copy h2,
.cta-box h2,
.simple-page h1,
.content-page h1 {
  color: var(--navy);
  letter-spacing: -0.03em;
}
.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.02;
  max-width: 12ch;
}
.hero-lead {
  margin: 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: var(--text);
  font-weight: 600;
}
.hero-point { display: flex; align-items: flex-start; gap: 10px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 0 0 6px rgba(126, 217, 87, 0.12);
  margin-top: 8px;
  flex: 0 0 auto;
}
.hero-visual { position: relative; }
.visual-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(216, 226, 238, 0.85);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,248,252,0.96));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.visual-shell::before {
  content: '';
  position: absolute;
  inset: -30% auto auto 55%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.14) 0%, rgba(47,128,237,0) 72%);
}
.visual-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.visual-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(216, 226, 238, 0.95);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.visual-chip-active { color: var(--navy); background: #fff; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06); }
.visual-stage {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}
.flow-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(216, 226, 238, 0.95);
  box-shadow: var(--shadow-md);
  padding: 18px;
}
.card-heading {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.appointment-row,
.log-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.appointment-row {
  padding: 12px 0;
  border-top: 1px solid rgba(216, 226, 238, 0.8);
}
.appointment-row:first-of-type { border-top: 0; padding-top: 0; }
.appointment-row strong,
.log-row span:first-child,
.log-row span:nth-child(2) { font-size: 14px; }
.appointment-row span,
.log-summary span,
.price-card p,
.footer-copy,
.feature-item p,
.step-card p,
.section-intro p,
.pricing-copy p,
.cta-box p,
.content-page,
.page-content,
.log-row,
.route-stop,
.metric-pill {
  color: var(--muted);
}
.appointment-row span { display: block; margin-top: 4px; font-size: 13px; }
.appointment-row em {
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
}
.appointment-row.selected em { color: #1b5e20; background: rgba(126, 217, 87, 0.16); }
.appointment-row.skipped em { color: #7a4a00; background: rgba(255, 190, 92, 0.17); }
.route-line { display: grid; gap: 12px; }
.route-stop {
  position: relative;
  padding: 12px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(216, 226, 238, 0.95);
  font-weight: 700;
  color: var(--text);
}
.route-stop.start, .route-stop.return { background: rgba(11, 87, 208, 0.08); }
.route-stop.optional { background: rgba(126, 217, 87, 0.12); }
.route-connector {
  width: 2px;
  height: 16px;
  margin-left: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47,128,237,0.25), rgba(47,128,237,0.95));
}
.connector-accent { background: linear-gradient(180deg, rgba(126,217,87,0.3), rgba(126,217,87,0.95)); }
.connector-return { background: linear-gradient(180deg, rgba(11,87,208,0.95), rgba(11,87,208,0.25)); }
.route-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.metric-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(216, 226, 238, 0.95);
  font-size: 13px;
  font-weight: 700;
}
.log-table { display: grid; gap: 8px; }
.log-row {
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(216, 226, 238, 0.8);
  font-size: 13px;
}
.log-head { border-top: 0; padding-top: 0; font-weight: 800; color: var(--navy); }
.log-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.log-summary > div {
  padding: 14px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(216, 226, 238, 0.95);
}
.log-summary strong { display: block; color: var(--navy); font-size: 22px; margin-bottom: 4px; }
.animate-card { animation: floatCard 7.5s ease-in-out infinite; }
.in-2 { animation-delay: 1.2s; }
.in-3 { animation-delay: 2.3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.integrations-section { padding: 4px 0 26px; }
.integrations-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(216, 226, 238, 0.95);
}
.integrations-wrap p { margin: 0; color: var(--muted); font-weight: 700; }
.integration-list { display: flex; flex-wrap: wrap; gap: 10px; }
.integration-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 87, 208, 0.06);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 14px;
}
.section { padding: 80px 0; }
.alt-section { background: linear-gradient(180deg, rgba(244,248,252,0.6), rgba(255,255,255,0)); }
.section-intro { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-intro.left-align { margin-left: 0; text-align: left; }
.section-intro h2,
.feature-copy h2,
.pricing-copy h2,
.cta-box h2,
.simple-page h1,
.content-page h1 { margin: 18px 0 14px; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; }
.section-intro p,
.feature-item p,
.pricing-copy p,
.cta-box p,
.page-content,
.simple-page p { line-height: 1.75; font-size: 18px; }
.steps-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step-card,
.audience-card,
.price-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(216, 226, 238, 0.95);
  box-shadow: var(--shadow-md);
}
.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 87, 208, 0.09);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}
.step-card h3,
.feature-item h3,
.price-card h3 { margin: 16px 0 10px; color: var(--navy); font-size: 22px; }
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 36px;
  align-items: center;
}
.feature-list { display: grid; gap: 18px; }
.feature-item {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(216, 226, 238, 0.95);
}
.stack-visual {
  position: relative;
  min-height: 560px;
}
.screen-card {
  position: absolute;
  width: min(100%, 520px);
  border-radius: 28px;
  border: 1px solid rgba(216, 226, 238, 0.95);
  box-shadow: var(--shadow-lg);
}
.screen-back { top: 24px; left: 0; transform: rotate(-4deg); }
.screen-front { top: 120px; right: 0; transform: rotate(3deg); }
.audience-wrap { display: grid; gap: 24px; }
.audience-card {
  display: flex;
  align-items: center;
  min-height: 132px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.price-card.featured {
  position: relative;
  border-color: rgba(47, 128, 237, 0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,255,0.96));
}
.price-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.12);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 13px;
}
.price { margin: 14px 0 12px; color: var(--navy); font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.price span { color: var(--muted); font-size: 18px; font-weight: 600; }
.cta-section { padding-top: 32px; }
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(11,87,208,0.08), rgba(126,217,87,0.11));
  border: 1px solid rgba(216, 226, 238, 0.95);
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer { padding: 52px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.6fr));
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 226, 238, 0.95);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }
.site-footer h4 { margin: 0 0 12px; color: var(--navy); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; color: var(--muted); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 226, 238, 0.95);
  color: var(--muted);
  font-size: 14px;
}
.simple-page, .content-page { min-height: 50vh; }
.simple-page-wrap, .content-page { max-width: 760px; }
@media (max-width: 1100px) {
  .hero-grid,
  .feature-grid,
  .pricing-wrap,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid,
  .audience-grid,
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stack-visual { min-height: 460px; }
  .screen-card { width: min(100%, 430px); }
  .screen-front { top: 96px; }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .site-nav,
  .header-actions {
    display: none;
  }
  .menu-toggle { display: block; }
  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }
  .site-header.nav-open .site-nav { order: 3; }
  .site-header.nav-open .header-actions {
    order: 4;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .site-header.nav-open .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px 0 14px;
    gap: 14px;
  }
  .hero-copy h1 { max-width: 13ch; }
  .integrations-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero-section { padding-top: 30px; }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 48px); max-width: none; }
  .hero-lead,
  .section-intro p,
  .feature-item p,
  .pricing-copy p,
  .cta-box p,
  .page-content,
  .simple-page p { font-size: 16px; }
  .steps-grid,
  .audience-grid,
  .pricing-cards,
  .log-summary { grid-template-columns: 1fr; }
  .visual-topbar { gap: 8px; }
  .visual-chip { padding: 8px 12px; font-size: 12px; }
  .flow-card { padding: 16px; border-radius: 20px; }
  .log-row { font-size: 12px; }
  .stack-visual {
    min-height: 360px;
  }
  .screen-card { position: relative; width: 100%; transform: none; }
  .screen-back, .screen-front { top: auto; left: auto; right: auto; }
  .screen-front { margin-top: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* Editable theme small fixes */
.hero-lead br,
.section-intro p br,
.feature-item p br,
.price-card p br,
.footer-copy br,
.cta-box p br {
  content: "";
}


body { color: #1d3f8f; }
.hero-lead,
.section-intro p,
.feature-item p,
.pricing-copy p,
.integrations-wrap p,
.appointment-row span,
.log-row,
.metric-pill,
.footer-copy,
.content-page,
.page-content,
.simple-page p { color: #4d6799; }
.nav-links a,
.route-stop,
.hero-points,
.hero-point,
.feature-item h3,
.step-card h3,
.price-card h3,
.log-head,
.card-heading { color: #173b84; }
.hero-section-compact { padding: 42px 0 24px; }
.compact-grid { gap: 30px; align-items: start; }
.compact-copy h1 { font-size: clamp(42px, 5vw, 72px); max-width: 9ch; }
.compact-copy .hero-lead { max-width: 34ch; font-size: 20px; line-height: 1.65; }
.compact-points { gap: 10px; margin-top: 20px; }
.compact-visual { position: sticky; top: 104px; }
.compact-shell { padding: 16px; border-radius: 28px; }
.compact-topbar { margin-bottom: 14px; }
.compact-stage { gap: 12px; }
.compact-route-card .route-line { gap: 10px; }
.compact-log-table .log-row { padding: 8px 0; }
.compact-log-summary { margin-top: 12px; }
.compact-integrations { padding: 0 0 8px; }
.compact-integrations-wrap { padding: 16px 20px; }
.compact-section { padding: 52px 0; }
.compact-intro { margin-bottom: 24px; }
.steps-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-card,
.step-card,
.feature-item,
.price-card { border-radius: 18px; }
.compact-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
}
.compact-feature-copy h2 { max-width: 11ch; }
.compact-feature-list { display: grid; gap: 14px; }
.compact-feature-list .feature-item { padding: 18px 20px; background: #fff; border: 1px solid rgba(216,226,238,0.95); }
.compact-stack-visual { min-height: 0; display: flex; justify-content: center; }
.only-front { position: relative; transform: none; max-width: 540px; border-radius: 24px; box-shadow: var(--shadow-lg); }
.compact-pricing-wrap { display: grid; gap: 20px; }
.compact-pricing-copy { max-width: 560px; }
.compact-pricing-copy h2 { max-width: none; }
.compact-pricing-cards.two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 16px;
}
.compact-price-card { min-height: 0; padding: 24px; }
.compact-final-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.audience-section, .cta-section { display: none; }
.section-intro h2, .feature-copy h2, .pricing-copy h2, .cta-box h2 { font-size: clamp(30px, 3.4vw, 48px); }
.step-card p, .feature-item p, .pricing-copy p, .hero-lead { font-size: 17px; }
@media (max-width: 1100px) {
  .compact-grid,
  .compact-feature-grid { grid-template-columns: 1fr; }
  .compact-visual { position: relative; top: 0; }
  .compact-pricing-cards.two-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .steps-grid-3,
  .compact-pricing-cards.two-cards { grid-template-columns: 1fr; }
  .compact-copy h1 { max-width: 10ch; }
  .compact-copy .hero-lead { max-width: none; }
  .compact-section { padding: 40px 0; }
}
