*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #3972a5;
  --navy-mid: #4d84bb;
  --blue: #3972a5;
  --blue-hover: #2e5f8c;
  --blue-lt: #d2effa;
  --blue-mid: #c4e3f5;
  --accent: #3972a5;
  --accent-lt: #d2effa;
  --gray-50: #f5f7fa;
  --gray-100: #e1e8ee;
  --gray-200: #e1e8ee;
  --gray-400: #94a3b8;
  --gray-600: #616462;
  --gray-800: #484a49;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(57, 114, 165, 0.1);
  --shadow-lg: 0 12px 40px rgba(57, 114, 165, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", "Open Sans", Roboto, sans-serif;
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  color: var(--gray-600);
}
a {
  text-decoration: none;
  color: inherit;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-head {
  color: var(--navy);
}
.section-sub {
  max-width: 580px;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ── LAYOUT ─────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  padding: 96px 0;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(57, 114, 165, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.nav-logo .logo-badge {
  background: var(--navy);
  color: var(--white);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.nav-logo .logo-sub {
  color: var(--gray-400);
  font-weight: 400;
  font-size: 0.8rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── NAV DROPDOWNS ──────────────────────────────── */
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links .caret {
  width: 10px;
  height: 10px;
  stroke: var(--gray-400);
  transition: transform 0.2s;
}
.nav-links > li:hover .caret {
  transform: rotate(180deg);
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -1rem;
  min-width: 270px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-links > li:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: background 0.15s;
}
.dropdown a:hover {
  background: var(--gray-50);
  color: var(--navy);
}
.dropdown .dd-label {
  padding: 0.4rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  pointer-events: none;
}
.dropdown .dd-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.35rem 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta .btn-outline {
    display: none;
  }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  background: linear-gradient(
    150deg,
    #2b5b8e 0%,
    var(--navy) 55%,
    var(--navy-mid) 100%
  );
  color: var(--white);
  padding: 96px 0 56px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}
.hero-text .section-label {
  color: #93c5fd;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-proof-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* UI mockup */
.hero-visual {
  position: relative;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  width: 100%;
  max-width: 420px;
}
.suite-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.suite-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1.1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  transition: background 0.2s;
}
.suite-card:hover {
  background: rgba(255, 255, 255, 0.18);
}
.suite-card.span-full {
  grid-column: 1 / -1;
}
.suite-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.suite-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.suite-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}
.ui-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}
.ui-card-bar {
  background: var(--gray-800);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ui-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ui-body {
  padding: 0;
  display: flex;
  height: 320px;
}
.ui-sidebar {
  width: 52px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
}
.ui-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-icon.active {
  background: var(--blue);
}
.ui-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}
.ui-main {
  flex: 1;
  padding: 1rem;
  background: var(--gray-50);
  overflow: hidden;
}
.ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ui-topbar-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}
.ui-chip {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  background: #dcfce7;
  color: #166534;
}
.ui-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ui-stat {
  background: var(--white);
  border-radius: 8px;
  padding: 0.6rem;
  border: 1px solid var(--gray-200);
  text-align: center;
}
.ui-stat-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
}
.ui-stat-lbl {
  font-size: 0.55rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ui-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.ui-table-head span {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
}
.ui-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.4rem;
  background: var(--white);
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.3rem;
  border: 1px solid var(--gray-200);
  align-items: center;
}
.ui-row span {
  font-size: 0.62rem;
  color: var(--gray-600);
}
.ui-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 99px;
  display: inline-block;
}
.badge-green {
  background: #dcfce7;
  color: #166534;
}
.badge-yellow {
  background: #fef9c3;
  color: #854d0e;
}
.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

/* floating pill */
.ui-float {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-left: 4px solid #4ade80;
  z-index: 10;
}
.ui-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-float-text .val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
}
.ui-float-text .lbl {
  font-size: 0.65rem;
  color: var(--gray-400);
}

/* ── TRUSTED BAR ─────────────────────────────── */
.trusted {
  background: var(--gray-50);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2rem;
}
.trusted-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
}
.org-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}
.org-pill .pin {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pin-blue {
  background: var(--blue);
}
.pin-orange {
  background: var(--blue-hover);
}
.pin-teal {
  background: #0d9488;
}

/* ── POSITIONING ────────────────────────────────── */
.positioning {
  background: var(--white);
}
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 800px) {
  .positioning-grid {
    grid-template-columns: 1fr;
  }
}
.pos-card {
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  border-top: 3px solid var(--blue);
}
.pos-card .pos-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pos-card .pos-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
}
.pos-card p {
  font-size: 0.9rem;
}

/* ── PROBLEM ─────────────────────────────────── */
.problem {
  background: var(--navy);
  color: var(--white);
}
.problem h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.problem .section-label {
  color: #93c5fd;
}
.problem .section-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.problem-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.problem-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.problem-card .icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: #93c5fd;
}
.problem-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.problem-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ── SOLUTION ────────────────────────────────── */
.solution {
  background: var(--white);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.sol-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.sol-icon svg {
  width: 26px;
  height: 26px;
}
.ic-navy {
  background: var(--blue-lt);
}
.ic-navy svg {
  fill: var(--blue);
}
.ic-orange {
  background: var(--blue-lt);
}
.ic-orange svg {
  fill: var(--blue);
}
.ic-green {
  background: #f0fdf4;
}
.ic-green svg {
  fill: #16a34a;
}
.ic-teal {
  background: #f0fdfa;
}
.ic-teal svg {
  fill: #0d9488;
}
.ic-purple {
  background: #faf5ff;
}
.ic-purple svg {
  fill: #7c3aed;
}
.ic-yellow {
  background: #fffbeb;
}
.ic-yellow svg {
  fill: #d97706;
}
.sol-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.sol-card p {
  font-size: 0.9rem;
}
.sol-tag {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ── PRODUCT SHOWCASE ────────────────────────── */
.showcase {
  background: var(--gray-50);
}
.showcase-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }
}
.tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tab-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: all 0.15s ease;
}
.tab-btn .t-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.tab-btn .t-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0.2rem 0;
}
.tab-btn .t-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
}
.tab-btn.active {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow);
}
.tab-btn.active .t-title {
  color: var(--navy);
}
.tab-btn.active .t-label {
  color: var(--blue);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.panel-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 1.75rem 2rem;
  color: var(--white);
}
.panel-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.panel-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.panel-body {
  padding: 1.75rem 2rem;
}
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
@media (max-width: 640px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg {
  width: 10px;
  height: 10px;
  fill: var(--white);
}
.panel-outcome {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--blue-lt);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--navy);
}

/* ── KEY DIFFERENTIATORS ───────────────────────── */
.key-diff {
  background: var(--gray-50);
}
.key-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.key-diff-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.key-diff-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.key-diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.key-diff-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
}
.key-diff-item h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.key-diff-item p {
  font-size: 0.85rem;
}

/* ── TARGET AUDIENCE ────────────────────────────── */
.target-audience {
  background: var(--white);
}
.target-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) {
  .target-inner {
    grid-template-columns: 1fr;
  }
}
.target-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.target-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.target-stat .val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.target-stat .val span {
  color: var(--blue);
}
.target-stat .lbl {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 0.35rem;
}

/* ── DIFFERENTIATORS ─────────────────────────── */
.diff {
  background: var(--white);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.diff-item {
  text-align: center;
}
.diff-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.diff-num span {
  color: var(--blue);
}
.diff-item h3 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.diff-item p {
  font-size: 0.875rem;
}
.diff-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.pillar {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--blue);
}
.pillar h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.875rem;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials {
  background: var(--gray-50);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.testi-card blockquote {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.65;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
}
.testi-org {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ── COMPARISON ──────────────────────────────── */
.compare {
  background: var(--navy);
  padding: 80px 0;
}
.compare h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.compare .section-label {
  color: #93c5fd;
}
.compare-table {
  margin-top: 3rem;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-row.head {
  background: var(--gray-50);
}
.compare-cell {
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.compare-row.head .compare-cell {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
}
.compare-cell.vantage-col {
  background: var(--blue-lt);
  border-left: 2px solid var(--blue);
  font-weight: 600;
  color: var(--navy);
}
.compare-row.head .vantage-col {
  border-radius: 0;
}
.tick {
  color: #16a34a;
  font-size: 1.1rem;
  font-weight: 900;
}
.cross {
  color: var(--gray-400);
  font-size: 1.1rem;
}
.partial {
  color: #d97706;
  font-size: 0.8rem;
  font-weight: 600;
}
@media (max-width: 600px) {
  .compare-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* ── FINAL CTA ───────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #2e3a48;
  padding: 60px 0 36px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.footer-brand .logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 220px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
}

/* ── MISC UTILS ──────────────────────────────── */
.divider {
  width: 48px;
  height: 4px;
  background: var(--blue);
  border-radius: 99px;
  margin: 1rem 0 1.5rem;
}
.text-center .divider {
  margin-left: auto;
  margin-right: auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ── ROI BAND ────────────────────────────────── */
.roi-band {
  background: var(--gray-50);
  padding: 96px 0;
}
.roi-header {
  margin-bottom: 3rem;
}
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.roi-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.roi-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roi-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}
.roi-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.roi-text span {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── VS LEGACY ───────────────────────────────── */
.vs-legacy {
  background: var(--white);
  padding: 96px 0;
}
.vs-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vs-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}
.vs-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vs-icon svg {
  width: 18px;
  height: 18px;
}
.vs-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.vs-item p {
  font-size: 0.82rem;
  margin: 0;
}

/* ── CIVIC AGENCY CHIPS (hero) ───────────────── */
.agency-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.agency-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.agency-chip svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

/* ── MID-PAGE CTA STRIP ──────────────────────── */
.mid-cta {
  background: var(--blue-lt);
  border-top: 1px solid var(--blue-mid);
  border-bottom: 1px solid var(--blue-mid);
  padding: 40px 0;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.mid-cta-text h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.mid-cta-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
}
.mid-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── IMPLEMENTATION SECTION ──────────────────── */
.impl {
  background: var(--navy);
}
.impl h2 {
  color: var(--white);
}
.impl .section-label {
  color: #93c5fd;
}
.impl .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.impl-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.impl-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.impl-step:last-child {
  border-right: none;
}
@media (max-width: 700px) {
  .impl-steps {
    grid-template-columns: 1fr 1fr;
  }
  .impl-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.impl-step h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.impl-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.impl-reassurance {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.reassure-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.reassure-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reassure-icon svg {
  width: 16px;
  height: 16px;
  stroke: #93c5fd;
}
.reassure-item strong {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}
.reassure-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── COMPARE footnote ────────────────────────── */
.compare-footnote {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  text-align: left;
}

/* ── STICKY DEMO BUTTON ────────────────────────── */
.sticky-demo {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(57, 114, 165, 0.4);
  border-radius: var(--radius);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(57, 114, 165, 0.4);
  }
  50% {
    box-shadow: 0 6px 32px rgba(57, 114, 165, 0.6);
  }
}
