:root {
  --ink: #14111f;
  --muted: #6f6a80;
  --line: #e5def7;
  --paper: #ffffff;
  --soft: #fff8f0;
  --teal: #00a7a5;
  --teal-dark: #007c89;
  --mint: #d9fff7;
  --coral: #ff5c7a;
  --gold: #ffb000;
  --navy: #25164f;
  --violet: #7c3cff;
  --blue: #246bfe;
  --lime: #b7f02a;
  --pink: #ff3eb5;
  --shadow: 0 22px 70px rgba(37, 22, 79, .10);
  --shadow-strong: 0 30px 96px rgba(37, 22, 79, .22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 62, 181, .12), transparent 32rem),
    radial-gradient(circle at top right, rgba(36, 107, 254, .12), transparent 34rem),
    linear-gradient(#fff, #fff);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

.container {
  width: min(1160px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 229, 231, .72);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 40px rgba(17, 24, 39, .08);
}

.navbar {
  min-height: 74px;
  padding: 12px 0;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.3rem;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.brand-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--pink) 54%, var(--gold));
  box-shadow: 0 10px 24px rgba(255, 62, 181, .24);
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-weight: 720;
  margin: 0 3px;
  padding-inline: 10px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 3px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 14px;
}

.btn {
  border-radius: 8px;
  font-weight: 760;
  padding: 11px 18px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--violet) 52%, var(--pink));
  box-shadow: 0 16px 36px rgba(124, 60, 255, .28);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.btn-outline-dark {
  border-color: #a8b6bd;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  padding: 92px 0 54px;
  background:
    linear-gradient(110deg, rgba(245, 249, 248, .98), rgba(255, 255, 255, .86) 48%, rgba(255, 255, 255, .62)),
    url("https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% 52%;
  height: 58%;
  border-radius: 999px 0 0 0;
  background: linear-gradient(135deg, rgba(8, 127, 122, .16), rgba(216, 100, 74, .13));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  padding-top: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.65rem, 5.8vw, 5.7rem);
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  font-weight: 850;
}

h3 {
  font-size: 1.2rem;
  font-weight: 820;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #42515f;
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.trust-item,
.metric-card,
.feature-card,
.module-card,
.price-card,
.quote-card,
.resource-card,
.form-panel,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover,
.module-card:hover,
.resource-card:hover,
.quote-card:hover,
.price-card:hover,
.trust-item:hover {
  border-color: rgba(8, 127, 122, .34);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.trust-item {
  padding: 16px;
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
}

.trust-item span {
  color: var(--muted);
  font-size: .92rem;
}

.dashboard-card {
  padding: 20px;
}

.product-stage {
  position: relative;
  min-height: 560px;
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
    linear-gradient(135deg, rgba(8, 127, 122, .12), rgba(104, 84, 217, .1));
  box-shadow: 0 32px 100px rgba(17, 24, 39, .2);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 210px;
  height: 210px;
  border: 42px solid rgba(8, 127, 122, .12);
  border-radius: 999px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 750;
  font-size: .82rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.kpi-grid div {
  padding: 16px 14px;
  border: 1px solid #e3ecef;
  border-radius: 8px;
  background: #fff;
}

.kpi-grid strong {
  display: block;
  font-size: 1.45rem;
}

.kpi-grid span {
  color: var(--muted);
  font-size: .84rem;
}

.ward-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ward-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px;
  border-radius: 8px;
  background: var(--soft);
}

.bar {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ecef;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #48b7a9);
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .16);
  backdrop-filter: blur(16px);
}

.floating-panel span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 720;
}

.floating-panel strong {
  font-size: 1.05rem;
}

.schedule-panel {
  top: 54px;
  right: -18px;
}

.claim-panel {
  bottom: 54px;
  left: -18px;
}

.logo-row {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
}

.logo-row .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 84px;
}

.logo-row span {
  color: #6c7b86;
  font-weight: 850;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: #e8f2f2;
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 127, 122, .28), transparent 26rem),
    linear-gradient(135deg, #111b24, #19324f);
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

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

.section.dark .section-head p,
.section.dark p {
  color: #b8c9cf;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-evidence-grid .module-card {
  min-height: 188px;
}

.seo-table {
  overflow: hidden;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card,
.module-card,
.resource-card,
.quote-card {
  padding: 24px;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: linear-gradient(135deg, var(--mint), #edf8f6);
  font-weight: 900;
}

.card-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.card-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--coral);
}

.module-card {
  min-height: 230px;
}

.module-card p,
.feature-card p,
.resource-card p,
.quote-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.workflow-step {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-weight: 850;
}

.workflow-step p {
  color: var(--muted);
}

.section.dark .workflow {
  border-color: rgba(255, 255, 255, .16);
  background: transparent;
}

.section.dark .workflow-step {
  border-right-color: rgba(255, 255, 255, .16);
}

.section.dark .workflow-step span {
  color: #91d9d2;
}

.section.dark .workflow-step p {
  color: #b8c9cf;
}

.price-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 28px;
}

.price {
  margin: 18px 0;
  font-size: 2.35rem;
  font-weight: 880;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 22px 64px rgba(11, 122, 117, .18);
}

.price-card .btn {
  margin-top: auto;
}

.band {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 95, 93, .96), rgba(25, 50, 79, .96)),
    url("https://images.unsplash.com/photo-1504439468489-c8920d796a29?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow-strong);
}

.band p {
  max-width: 720px;
  color: #d5e8e7;
}

.page-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(8, 127, 122, .12), transparent 25rem),
    var(--soft);
}

.page-hero .lead {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.check-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.check-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.check-row:last-child {
  border-bottom: 0;
}

.check-row > div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.check-row > div:last-child {
  border-right: 0;
}

.check-row.header {
  color: #fff;
  background: var(--navy);
  font-weight: 780;
}

.form-panel {
  padding: 28px;
}

.insight-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.insight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.insight-row div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(8, 127, 122, .12);
}

.status-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(181, 139, 34, .14);
}

.status-dot.coral {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(216, 100, 74, .14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 760;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: #b9c7ce;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .2rem rgba(11, 122, 117, .14);
}

.site-footer {
  padding: 62px 0 28px;
  color: #c8d4d8;
  background: #111b24;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #c8d4d8;
}

.footer-brand {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #98a8ae;
}

@media (max-width: 991px) {
  .hero-grid,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

  .grid-3,
  .grid-4,
  .trust-strip,
  .workflow,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-cta {
    margin-left: 0;
  }

  .navbar-nav {
    gap: 8px;
    padding-top: 18px;
  }

  .floating-panel {
    position: static;
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding: 54px 0 34px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .grid-3,
  .grid-4,
  .trust-strip,
  .workflow,
  .footer-grid,
  .form-grid,
  .logo-row .container,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 30px;
  }

  .check-row {
    grid-template-columns: 1fr;
  }

  .check-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom {
    display: block;
  }
}

/* Lead-generation redesign */
.top-banner {
  color: #fff;
  background: linear-gradient(90deg, #14111f, #246bfe, #ff3eb5);
  font-size: .9rem;
  font-weight: 800;
}

.top-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
}

.top-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-banner .contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  color: #14111f;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 17, 31, .18);
  text-decoration: none;
}

.top-banner .contact-pill span {
  color: #d40d8c;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 17, 31, .24);
  white-space: nowrap;
}

.rating-stars,
.footer-rating span {
  color: #ffcf3d;
  letter-spacing: 0;
}

.form-contact-line,
.direct-contact,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.form-contact-line a,
.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(36, 107, 254, .22);
  border-radius: 999px;
  color: #14111f;
  background: #ffffff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 22, 79, .07);
}

.form-contact-line a span {
  color: #0b57d0;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.direct-contact a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.direct-contact span {
  color: #0b57d0;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.direct-contact strong {
  color: #14111f;
  font-size: 1.05rem;
}

.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-contact a {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a span {
  color: #b7f02a;
}

.footer-rating {
  margin: 12px 0;
  color: #ffffff;
  font-weight: 800;
}

.lead-hero {
  overflow: hidden;
  padding: clamp(64px, 7vw, 108px) 0 clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 13% 16%, rgba(255, 62, 181, .18), transparent 24rem),
    radial-gradient(circle at 78% 9%, rgba(36, 107, 254, .22), transparent 29rem),
    linear-gradient(135deg, #fff, #f7f9ff 54%, #fff7ea);
}

.lead-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.lead-hero h1 {
  max-width: 840px;
  font-size: clamp(2.75rem, 5.5vw, 5.45rem);
  line-height: .96;
}

.lead-hero .lead {
  max-width: 700px;
}

.lead-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.lead-proof-row div,
.lead-card,
.lead-grid a,
.software-window,
.conversion-band {
  border: 1px solid rgba(124, 60, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(37, 22, 79, .12);
}

.lead-proof-row div {
  padding: 16px;
}

.lead-proof-row strong,
.lead-proof-row span {
  display: block;
}

.lead-proof-row strong {
  color: var(--violet);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.lead-proof-row span {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 800;
}

.lead-card {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.lead-card h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.lead-card .btn {
  width: 100%;
  justify-content: center;
}

.product-showcase {
  padding: 0 0 var(--section-y);
  background: linear-gradient(180deg, #fff7ea, #fff);
}

.software-window {
  display: grid;
  grid-template-columns: 82px 1fr;
  overflow: hidden;
  min-height: 520px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(37, 22, 79, .18);
}

.window-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #14111f, #25164f);
}

.window-sidebar span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--pink), var(--gold));
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.window-sidebar i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
}

.window-sidebar i:nth-child(3) {
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.window-main {
  padding: clamp(22px, 3vw, 34px);
}

.window-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.window-toolbar small,
.window-toolbar strong {
  display: block;
}

.window-toolbar small,
.window-kpis small,
.window-kpis em {
  color: var(--muted);
  font-weight: 800;
}

.window-toolbar strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
}

.window-toolbar a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-weight: 850;
}

.window-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.window-kpis div,
.window-content article {
  padding: 20px;
  border: 1px solid #eee8ff;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #fbf7ff);
}

.window-kpis strong {
  display: block;
  margin: 6px 0;
  color: var(--violet);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.window-kpis em {
  font-style: normal;
}

.window-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}

.window-content h3 {
  margin-bottom: 14px;
}

.window-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.window-content p span {
  display: inline-block;
  height: 9px;
  max-width: 180px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--gold));
  vertical-align: middle;
}

.lead-section {
  background: #fff;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lead-grid a {
  display: grid;
  min-height: 180px;
  align-content: start;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  transition: transform .22s ease, box-shadow .22s ease;
}

.lead-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.lead-grid strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.32rem;
}

.lead-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.conversion-band-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 62, 181, .16), transparent 24rem),
    #fff8f0;
}

.conversion-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .75fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(246,241,255,.95)),
    radial-gradient(circle at right, rgba(36,107,254,.14), transparent 24rem);
}

.conversion-band p {
  max-width: 760px;
  color: var(--muted);
}

.conversion-stats {
  display: grid;
  gap: 12px;
}

.conversion-stats div {
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--violet));
}

.conversion-stats strong,
.conversion-stats span {
  display: block;
}

.conversion-stats strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
}

.conversion-stats span {
  color: #efeaff;
}

.global-lead-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(37, 22, 79, .22);
}

.global-lead-dock a {
  padding: 12px 16px;
  color: #fff;
  background: var(--navy);
  font-size: .9rem;
  font-weight: 850;
}

.global-lead-dock a:first-child {
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

@media (max-width: 991px) {
  .lead-hero-grid,
  .conversion-band,
  .window-content {
    grid-template-columns: 1fr;
  }

  .lead-grid,
  .window-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .top-banner .container {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding-block: 8px;
    text-align: center;
  }

  .direct-contact {
    grid-template-columns: 1fr;
  }

  .lead-proof-row,
  .lead-grid,
  .window-kpis,
  .software-window {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    display: none;
  }

  .global-lead-dock {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .global-lead-dock a {
    flex: 1;
    text-align: center;
  }
}

/* Hospino modern homepage direction */
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background:
    linear-gradient(115deg, rgba(248, 251, 250, .98), rgba(255, 255, 255, .94) 52%, rgba(226, 244, 240, .72)),
    radial-gradient(circle at 78% 18%, rgba(8, 127, 122, .18), transparent 25rem);
}

.hero-v2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.hero-v2-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: 54px;
  align-items: center;
}

.hero-v2 h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.7vw, 5.55rem);
  line-height: .98;
}

.hero-v2 .lead {
  max-width: 630px;
  color: #4f6070;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.conversion-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.conversion-strip span,
.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 60, 255, .16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(37, 22, 79, .06);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(217, 229, 231, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .75);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.65rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 720;
}

.product-console {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(217, 229, 231, .95);
  border-radius: 8px;
  background: #f7fbfa;
  box-shadow: 0 34px 110px rgba(17, 24, 39, .18);
}

.console-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 18px 14px;
  background: #102033;
}

.mini-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.console-sidebar i {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.console-sidebar i:nth-child(3) {
  background: rgba(8, 127, 122, .9);
}

.console-main {
  padding: 22px;
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.console-topbar span,
.console-topbar strong {
  display: block;
}

.console-topbar span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 760;
}

.console-topbar strong {
  font-size: 1.28rem;
}

.console-topbar em {
  min-width: 58px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.console-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.console-kpis div,
.queue-panel,
.alert-panel {
  border: 1px solid #dfe9ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
}

.console-kpis div {
  padding: 18px;
}

.console-kpis span,
.console-kpis small {
  display: block;
  color: var(--muted);
  font-weight: 720;
}

.console-kpis strong {
  display: block;
  margin: 4px 0;
  font-size: 1.72rem;
}

.console-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}

.queue-panel,
.alert-panel {
  padding: 18px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-title span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 760;
}

.flow-row {
  display: grid;
  grid-template-columns: 104px 1fr 38px;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eef3f4;
}

.flow-row:last-child {
  border-bottom: 0;
}

.flow-row b {
  font-size: .92rem;
}

.flow-row div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eff1;
}

.flow-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #4cb8aa);
}

.flow-row span {
  color: var(--muted);
  font-weight: 820;
  text-align: right;
}

.alert-panel p {
  margin: 0 0 12px;
  padding: 13px;
  border-radius: 8px;
  color: #4b5d6c;
  background: #f5f8f8;
  font-weight: 700;
}

.alert-panel p:last-child {
  margin-bottom: 0;
}

.alert-panel mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--coral);
}

.module-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.module-strip .container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.module-strip span {
  padding: 20px 10px;
  color: #526574;
  font-weight: 850;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.experience-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.experience-card.large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 558px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(16, 32, 51, .94), rgba(8, 127, 122, .82)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.experience-card.large h3,
.experience-card.large p {
  color: #fff;
}

.experience-card h3 {
  margin-top: 14px;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
}

.experience-card p {
  max-width: 620px;
  color: var(--muted);
}

.card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.experience-card.large .card-tag {
  color: #dff4f0;
  background: rgba(255, 255, 255, .14);
}

.operation-section {
  background: var(--soft);
}

.operation-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.signal-board div {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.signal-board strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.signal-board span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 760;
}

.timeline-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-v2 div {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.timeline-v2 div:last-child {
  border-right: 0;
}

.timeline-v2 span {
  display: block;
  margin-bottom: 34px;
  color: #81d8cd;
  font-weight: 900;
}

.timeline-v2 p {
  color: #b8c9cf;
}

.final-cta-section {
  background: #fff;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .95), rgba(229, 246, 242, .9)),
    radial-gradient(circle at right, rgba(216, 100, 74, .16), transparent 24rem);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 720px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-v2-grid,
  .operation-grid {
    grid-template-columns: 1fr;
  }

  .product-console {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 760px) {
  .hero-v2 {
    padding: 58px 0 42px;
  }

  .hero-proof,
  .console-kpis,
  .console-grid,
  .module-strip .container,
  .experience-grid,
  .signal-board,
  .timeline-v2,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .product-console {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .console-sidebar {
    display: none;
  }

  .experience-card.large {
    min-height: 420px;
  }

  .timeline-v2 div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .timeline-v2 div:last-child {
    border-bottom: 0;
  }

  .final-cta {
    padding: 28px;
  }
}

/* Vibrant brand refresh */
.site-header {
  background: rgba(255, 255, 255, .82);
}

.nav-link::after {
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--gold));
}

.hero-v2 {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 62, 181, .16), transparent 22rem),
    radial-gradient(circle at 80% 10%, rgba(36, 107, 254, .20), transparent 27rem),
    radial-gradient(circle at 78% 78%, rgba(255, 176, 0, .18), transparent 23rem),
    linear-gradient(115deg, #fffafd, #f7fbff 52%, #fff8e8);
}

.hero-v2 h1 {
  letter-spacing: 0;
}

.hero-proof div,
.product-console,
.experience-card,
.signal-board div,
.final-cta {
  border-color: rgba(124, 60, 255, .18);
}

.hero-proof strong {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-console {
  background: #fff;
  box-shadow: 0 34px 110px rgba(124, 60, 255, .20);
}

.console-sidebar {
  background: linear-gradient(180deg, #17112d, #341472);
}

.mini-logo,
.console-sidebar i:nth-child(3) {
  background: linear-gradient(135deg, var(--blue), var(--pink), var(--gold));
}

.console-topbar em {
  color: #25164f;
  background: linear-gradient(135deg, var(--lime), #fff2a6);
}

.console-kpis div,
.queue-panel,
.alert-panel {
  border-color: #ece5ff;
}

.console-kpis strong,
.signal-board strong {
  color: var(--violet);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.flow-row i,
.bar span {
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--gold));
}

.alert-panel p {
  background: linear-gradient(135deg, #fff7fb, #f6f9ff);
}

.alert-panel mark {
  background: linear-gradient(135deg, var(--pink), var(--gold));
}

.module-strip {
  border-block-color: rgba(124, 60, 255, .14);
  background: linear-gradient(90deg, #25164f, #246bfe, #ff3eb5, #ffb000);
}

.module-strip span {
  color: #fff;
  text-shadow: 0 1px 16px rgba(20, 17, 31, .24);
}

.experience-card.large {
  background:
    linear-gradient(160deg, rgba(37, 22, 79, .92), rgba(36, 107, 254, .72), rgba(255, 62, 181, .62)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.card-tag,
.icon-box {
  color: var(--navy);
  background: linear-gradient(135deg, #fff0fb, #eaf1ff);
}

.operation-section,
.section.soft {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 176, 0, .17), transparent 23rem),
    radial-gradient(circle at 84% 30%, rgba(0, 167, 165, .16), transparent 24rem),
    #fff8f0;
}

.section.dark {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 62, 181, .34), transparent 26rem),
    radial-gradient(circle at 80% 70%, rgba(36, 107, 254, .34), transparent 26rem),
    linear-gradient(135deg, #14111f, #25164f);
}

.timeline-v2 span,
.section.dark .workflow-step span {
  color: var(--lime);
}

.final-cta,
.band {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(246, 241, 255, .92)),
    radial-gradient(circle at right, rgba(255, 62, 181, .18), transparent 24rem),
    radial-gradient(circle at left, rgba(255, 176, 0, .16), transparent 22rem);
}

.band,
.band h2,
.band p,
.band .eyebrow {
  color: var(--ink);
}

.compact-section {
  padding: 34px 0;
}

.compliance-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.compliance-row span,
.specialty-cloud a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(124, 60, 255, .18);
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff, #fff6fb);
  box-shadow: 0 14px 36px rgba(37, 22, 79, .07);
  font-weight: 850;
  text-align: center;
}

.specialty-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.security-list {
  display: grid;
  gap: 14px;
}

.security-list article {
  padding: 20px;
  border: 1px solid rgba(124, 60, 255, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.security-list strong,
.security-list span {
  display: block;
}

.security-list span {
  margin-top: 6px;
  color: var(--muted);
}

.content-card {
  display: flex;
  flex-direction: column;
}

.content-card a {
  margin-top: auto;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.vibrant-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 62, 181, .16), transparent 22rem),
    radial-gradient(circle at 80% 10%, rgba(36, 107, 254, .20), transparent 27rem),
    linear-gradient(115deg, #fffafd, #f7fbff 52%, #fff8e8);
}

.city-hero {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 62, 181, .18), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(36, 107, 254, .22), transparent 28rem),
    radial-gradient(circle at 72% 82%, rgba(255, 176, 0, .16), transparent 24rem),
    linear-gradient(115deg, #fffafd, #f7fbff 52%, #fff8e8);
}

.best-hero {
  position: relative;
  overflow: hidden;
}

.best-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(124, 60, 255, .14);
}

.best-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.best-hero h1 {
  max-width: 920px;
}

.best-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.best-hero-proof span,
.best-market-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 60, 255, .16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .76);
  font-weight: 850;
  line-height: 1.2;
}

.best-score-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(124, 60, 255, .20);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .9)),
    radial-gradient(circle at top right, rgba(255, 62, 181, .16), transparent 18rem);
  box-shadow: 0 34px 90px rgba(37, 22, 79, .16);
}

.best-score-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(124, 60, 255, .14);
}

.best-score-head span,
.best-score-row span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.best-score-head strong {
  color: var(--violet);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: .85;
}

.best-score-row {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid #eee8ff;
  border-radius: var(--radius);
  background: #fff;
}

.best-score-row strong {
  color: var(--navy);
  font-size: .98rem;
  line-height: 1.35;
}

.best-score-panel .btn {
  width: 100%;
  justify-content: center;
}

.best-market-strip {
  border-block: 1px solid rgba(124, 60, 255, .12);
  background: #fff;
}

.best-market-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.best-market-strip a {
  color: var(--violet);
  background: #faf7ff;
  text-decoration: none;
}

.city-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
  gap: 46px;
  align-items: start;
}

.city-hero h1 {
  max-width: 850px;
  font-size: clamp(2.55rem, 5.4vw, 5.25rem);
  line-height: .98;
}

.city-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(124, 60, 255, .16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 32px rgba(37, 22, 79, .07);
  font-weight: 850;
}

.city-form {
  position: sticky;
  top: 96px;
}

.city-form h2 {
  font-size: 1.65rem;
}

.city-form p {
  color: var(--muted);
}

.lead-form {
  border: 2px solid rgba(36, 107, 254, .16);
}

.form-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.validation-summary {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 92, 122, .28);
  border-radius: var(--radius);
  background: #fff4f7;
  font-weight: 750;
}

.validation-summary ul {
  margin: 0;
  padding-left: 18px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.captcha-box {
  padding: 14px;
  border: 1px solid rgba(36, 107, 254, .18);
  border-radius: 8px;
  background: #f7fbff;
}

.captcha-box label {
  margin-bottom: 10px;
}

.captcha-box .form-control {
  max-width: 180px;
}

.sticky-leadbar {
  position: sticky;
  bottom: 0;
  z-index: 18;
  border-top: 1px solid rgba(124, 60, 255, .18);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  box-shadow: 0 -18px 50px rgba(37, 22, 79, .12);
}

.sticky-leadbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
}

.sticky-leadbar span {
  color: var(--navy);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.location-directory {
  display: grid;
  gap: 26px;
}

.location-state {
  padding: 26px;
  border: 1px solid rgba(124, 60, 255, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.location-state-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.location-state-head a {
  font-weight: 850;
}

.location-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.location-city {
  padding: 18px;
  border: 1px solid #eee8ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff8fd);
}

.location-city h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.location-city div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-city a {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: #f5efff;
  font-size: .82rem;
  font-weight: 800;
}

.section.dark .feature-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.section.dark .feature-card p {
  color: #d9d3ef;
}

@media (max-width: 991px) {
  .compliance-row,
  .specialty-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-hero-grid {
    grid-template-columns: 1fr;
  }

  .best-hero-grid {
    grid-template-columns: 1fr;
  }

  .city-form {
    position: static;
  }

  .location-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .compliance-row,
  .specialty-cloud,
  .location-city-grid {
    grid-template-columns: 1fr;
  }

  .location-state-head {
    display: block;
  }

  .sticky-leadbar .container {
    align-items: stretch;
    flex-direction: column;
    padding-block: 12px;
  }

  .sticky-leadbar .btn {
    width: 100%;
  }

  .best-score-head {
    display: grid;
  }

  .best-hero-proof span,
  .best-market-strip a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Final typography and spacing polish */
:root {
  --radius: 10px;
  --section-y: clamp(56px, 7vw, 92px);
  --section-y-tight: clamp(28px, 4vw, 44px);
}

body {
  font-size: 16px;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li,
input,
select,
textarea,
button {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3,
.brand-mark,
.price,
.signal-board strong,
.console-kpis strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 700;
  max-width: 860px;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.22;
  font-weight: 700;
}

.hero-v2 h1,
.city-hero h1 {
  font-size: clamp(2.7rem, 5.2vw, 5.15rem);
  line-height: .98;
  max-width: 900px;
}

.lead {
  color: #514a66;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--violet);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.section {
  padding: var(--section-y) 0;
}

.compact-section {
  padding: var(--section-y-tight) 0;
}

.hero-v2,
.city-hero {
  padding: clamp(62px, 7vw, 98px) 0 clamp(48px, 6vw, 74px);
}

.section-head {
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.section-head p {
  line-height: 1.7;
}

.btn {
  min-height: 46px;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: .95rem;
  line-height: 1;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink), var(--violet) 54%, var(--blue));
}

.btn-outline-dark {
  border-color: rgba(37, 22, 79, .24);
  background: rgba(255, 255, 255, .72);
}

.brand-symbol,
.feature-card,
.module-card,
.resource-card,
.quote-card,
.price-card,
.form-panel,
.dashboard-card,
.product-console,
.experience-card,
.location-state,
.location-city,
.final-cta,
.band,
.workflow,
.timeline-v2,
.check-table,
.console-kpis div,
.queue-panel,
.alert-panel,
.signal-board div,
.trust-item {
  border-radius: var(--radius);
}

.feature-card,
.module-card,
.resource-card,
.quote-card {
  min-height: 220px;
  padding: clamp(20px, 2.6vw, 28px);
}

.module-card p,
.feature-card p,
.resource-card p,
.quote-card p,
.experience-card p,
.form-panel p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.68;
}

.card-list {
  gap: 12px;
}

.card-list li {
  line-height: 1.58;
}

.form-control,
.form-select {
  min-height: 50px;
  border-color: rgba(37, 22, 79, .22);
  color: var(--ink);
  font-size: .95rem;
}

label {
  font-size: .9rem;
  font-weight: 800;
}

.city-form h2 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.product-console {
  min-height: 560px;
}

.console-main {
  padding: clamp(18px, 2.4vw, 26px);
}

.console-kpis strong {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.flow-row {
  grid-template-columns: minmax(92px, 112px) 1fr 42px;
}

.module-strip span,
.compliance-row span,
.specialty-cloud a,
.location-city a,
.conversion-strip span,
.quick-links a,
.city-proof span {
  line-height: 1.25;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 62, 181, .18), transparent 24rem),
    linear-gradient(135deg, #14111f, #25164f);
}

.site-footer p,
.site-footer a,
.footer-bottom {
  font-size: .94rem;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1,
  .hero-v2 h1,
  .city-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .city-hero,
  .hero-v2 {
    padding-top: 46px;
  }

  .form-panel,
  .location-state,
  .final-cta,
  .band {
    padding: 22px;
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .flow-row span {
    text-align: left;
  }
}

/* Responsive hardening for long SEO/location content and richer lead forms */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.split > *,
.hero-grid > *,
.hero-v2-grid > *,
.lead-hero-grid > *,
.city-hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.form-panel,
.lead-card,
.city-form,
.lead-form {
  min-width: 0;
}

.form-control,
.form-select,
textarea {
  width: 100%;
  max-width: 100%;
}

.form-select {
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-city h3,
.location-city a,
.module-strip span,
.compliance-row span,
.specialty-cloud a,
.city-proof span,
.form-contact-line a,
.direct-contact a {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .check-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .check-row {
    min-width: 620px;
  }

  .final-cta {
    align-items: stretch;
  }

  .final-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .form-grid {
    gap: 14px;
  }

  .form-control,
  .form-select {
    font-size: 16px;
  }

  .lead-card,
  .form-panel,
  .city-form {
    width: 100%;
  }

  .global-lead-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
  }

  .global-lead-dock a {
    display: grid;
    min-width: 0;
    min-height: 48px;
    place-items: center;
    padding: 10px 8px;
    line-height: 1.2;
  }

  .sticky-leadbar {
    margin-bottom: 74px;
  }

  .check-row {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .check-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* Sitewide responsive redesign: show full content cleanly on every viewport */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

main,
section,
.container,
.navbar,
.site-footer {
  min-width: 0;
}

.hero,
.lead-hero,
.hero-v2,
.city-hero,
.page-hero {
  min-height: auto;
  overflow: clip;
}

.dashboard-card,
.hero-dashboard,
.software-window,
.product-console,
.experience-card.large,
.price-card,
.feature-card,
.module-card,
.resource-card,
.quote-card,
.form-panel,
.lead-card {
  height: auto;
  min-height: 0;
}

.dashboard-card,
.hero-dashboard,
.software-window,
.product-console {
  overflow: visible;
}

.card-list,
.security-list,
.faq-list,
.lead-grid,
.grid-2,
.grid-3,
.grid-4,
.operation-grid,
.footer-grid,
.city-hero-grid,
.best-hero-grid,
.hero-v2-grid,
.lead-hero-grid,
.split {
  min-width: 0;
}

.module-card,
.feature-card,
.resource-card,
.quote-card,
.price-card,
.experience-card,
.location-city,
.location-state,
.best-score-panel,
.lead-card,
.form-panel {
  overflow-wrap: anywhere;
}

.top-banner .container {
  flex-wrap: wrap;
  padding-block: 8px;
  text-align: center;
}

.top-banner .container > span:first-child {
  min-width: min(100%, 260px);
}

.rating-pill,
.top-banner .contact-pill,
.footer-contact a,
.form-contact-line a,
.direct-contact a {
  max-width: 100%;
  white-space: normal;
}

.navbar-collapse {
  min-width: 0;
}

.navbar-nav {
  align-items: stretch;
}

.nav-link,
.navbar .btn {
  white-space: normal;
}

.hero-actions .btn,
.final-cta .btn,
.conversion-band .btn {
  white-space: normal;
}

.check-table,
.seo-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.check-table > div,
.seo-table > div {
  min-width: min(760px, 100%);
}

.sticky-leadbar,
.global-lead-dock {
  max-width: 100%;
}

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 28px), 960px);
  }

  .hero-grid,
  .lead-hero-grid,
  .hero-v2-grid,
  .city-hero-grid,
  .best-hero-grid,
  .split,
  .operation-grid,
  .conversion-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .lead-card,
  .form-panel,
  .best-score-panel {
    max-width: 760px;
  }

  .hero-copy,
  .lead-hero-copy {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), 720px);
  }

  .site-header {
    position: static;
  }

  .navbar {
    min-height: auto;
    padding: 10px 0;
  }

  .navbar-brand {
    max-width: calc(100% - 58px);
  }

  .navbar-collapse {
    padding-top: 12px;
  }

  .navbar-nav {
    gap: 8px;
  }

  .nav-item,
  .nav-item .btn,
  .nav-link {
    width: 100%;
  }

  .nav-link,
  .nav-item .btn {
    justify-content: center;
    text-align: center;
  }

  .hero,
  .lead-hero,
  .hero-v2,
  .city-hero,
  .page-hero {
    padding-block: 42px;
  }

  .section {
    padding-block: 48px;
  }

  .compact-section {
    padding-block: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .lead-proof-row,
  .hero-proof,
  .trust-strip,
  .grid-3,
  .grid-4,
  .lead-grid,
  .module-strip .container,
  .compliance-row,
  .specialty-cloud,
  .location-city-grid,
  .footer-grid,
  .conversion-stats,
  .window-kpis,
  .console-kpis,
  .console-grid,
  .experience-grid,
  .signal-board,
  .timeline-v2 {
    grid-template-columns: 1fr;
  }

  .software-window,
  .product-console {
    display: block;
  }

  .window-sidebar,
  .console-sidebar {
    display: none;
  }

  .window-main,
  .console-main {
    min-width: 0;
  }

  .window-toolbar,
  .location-state-head,
  .footer-bottom,
  .best-score-head {
    display: grid;
    gap: 10px;
  }

  .window-toolbar a,
  .location-state-head a {
    width: 100%;
    text-align: center;
  }

  .global-lead-dock {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
  }

  .sticky-leadbar {
    margin-bottom: 78px;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 20px), 420px);
  }

  h1,
  .hero-v2 h1,
  .city-hero h1,
  .lead-hero h1,
  .best-hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
    line-height: 1.12;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .form-panel,
  .lead-card,
  .location-state,
  .final-cta,
  .band,
  .best-score-panel,
  .feature-card,
  .module-card,
  .resource-card,
  .quote-card,
  .price-card {
    padding: 18px;
  }

  .top-banner .container,
  .form-contact-line,
  .direct-contact,
  .footer-contact,
  .best-market-strip .container,
  .quick-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rating-pill,
  .top-banner .contact-pill,
  .form-contact-line a,
  .direct-contact a,
  .footer-contact a,
  .quick-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .global-lead-dock a {
    font-size: .82rem;
  }
}

/* Header and menu responsive redesign */
.site-header {
  isolation: isolate;
}

.top-banner .container {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  justify-content: stretch;
  gap: 10px;
}

.top-banner .container > span:first-child {
  align-self: center;
  text-align: left;
}

.rating-pill,
.top-banner .contact-pill {
  justify-content: center;
  min-height: 34px;
  line-height: 1.2;
}

.navbar > .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-brand {
  min-width: 0;
  flex: 0 0 auto;
}

.navbar-toggler {
  display: inline-grid;
  width: 46px;
  height: 42px;
  place-items: center;
  margin-left: auto;
  padding: 0;
  border-color: rgba(37, 22, 79, .2);
  background: #fff;
  box-shadow: 0 10px 24px rgba(37, 22, 79, .08);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(36, 107, 254, .18);
}

.navbar-toggler-icon {
  width: 22px;
  height: 16px;
  background-image: none;
  background:
    linear-gradient(var(--navy), var(--navy)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 0 100% / 100% 2px no-repeat;
}

.navbar-collapse {
  min-width: 0;
}

.navbar-nav {
  min-width: 0;
}

@media (min-width: 992px) {
  .navbar-collapse {
    justify-content: flex-end;
  }

  .navbar-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
  }
}

@media (max-width: 1100px) {
  .top-banner .container {
    grid-template-columns: 1fr 1fr;
  }

  .top-banner .container > span:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  .navbar > .container {
    flex-wrap: wrap;
  }

  .navbar-brand {
    max-width: calc(100% - 64px);
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(124, 60, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 46px rgba(37, 22, 79, .12);
  }

  .navbar-nav {
    gap: 8px;
    padding-top: 0;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-item,
  .nav-link,
  .navbar-nav .btn {
    width: 100%;
  }

  .nav-link,
  .navbar-nav .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: var(--radius);
    text-align: center;
  }

  .nav-link {
    background: #f8f6ff;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-banner {
    font-size: .82rem;
  }

  .top-banner .container {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 0;
    padding-block: 8px;
  }

  .top-banner .container > span:first-child,
  .rating-pill,
  .top-banner .contact-pill {
    width: 100%;
    min-width: 0;
  }

  .brand-mark {
    gap: 8px;
    font-size: 1.1rem;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 380px) {
  .top-banner .container > span:first-child {
    display: none;
  }

  .navbar-toggler {
    width: 42px;
  }
}

/* Product detail page presentation */
.product-detail-hero {
  padding-block: clamp(58px, 7vw, 96px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.product-detail-copy {
  min-width: 0;
}

.product-detail-copy h1 {
  max-width: 920px;
}

.product-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-proof-strip span,
.product-detail-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 60, 255, .16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  font-weight: 850;
  line-height: 1.2;
}

.product-command-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(124, 60, 255, .20);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(247, 250, 255, .92)),
    radial-gradient(circle at top right, rgba(255, 62, 181, .16), transparent 18rem);
  box-shadow: 0 34px 90px rgba(37, 22, 79, .16);
}

.command-topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(124, 60, 255, .14);
}

.command-topbar span,
.command-fit > span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.command-topbar strong {
  color: var(--violet);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.15rem;
  text-align: right;
}

.command-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.command-kpis div,
.command-flow div,
.command-fit,
.capability-board article,
.product-timeline article {
  border: 1px solid #eee8ff;
  border-radius: var(--radius);
  background: #fff;
}

.command-kpis div {
  display: grid;
  gap: 3px;
  padding: 14px;
}

.command-kpis span,
.command-kpis small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}

.command-kpis strong {
  color: var(--navy);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.command-flow {
  display: grid;
  gap: 10px;
}

.command-flow div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  color: var(--navy);
  font-weight: 850;
}

.command-flow i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 0 5px rgba(124, 60, 255, .10);
}

.command-fit {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.command-fit div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.command-fit strong {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--violet);
  background: #f5efff;
  font-size: .82rem;
}

.product-detail-strip {
  border-block: 1px solid rgba(124, 60, 255, .12);
  background: #fff;
}

.product-detail-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-strip span {
  background: #faf7ff;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-feature-grid .feature-card {
  min-height: 0;
}

.product-feature-grid .icon-box {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.product-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.capability-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capability-board article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  min-width: 0;
}

.capability-board span,
.product-timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 850;
}

.capability-board strong {
  color: var(--navy);
  line-height: 1.35;
}

.product-value-grid,
.product-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-timeline {
  grid-template-columns: repeat(4, 1fr);
}

.product-timeline article {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 26px);
  min-width: 0;
}

.product-timeline h3 {
  font-size: 1.12rem;
}

.product-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 1080px) {
  .product-detail-grid,
  .product-capability-grid {
    grid-template-columns: 1fr;
  }

  .product-command-panel {
    max-width: 760px;
  }

  .product-feature-grid,
  .product-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .product-detail-hero {
    padding-block: 42px;
  }

  .product-proof-strip,
  .product-detail-strip .container,
  .command-fit div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-proof-strip span,
  .product-detail-strip span,
  .command-fit strong {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .command-topbar,
  .command-kpis,
  .product-feature-grid,
  .capability-board,
  .product-value-grid,
  .product-timeline {
    grid-template-columns: 1fr;
  }

  .command-topbar strong {
    text-align: left;
  }
}

/* Product index hub */
.product-index-hero {
  padding-block: clamp(58px, 7vw, 96px);
}

.product-index-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.product-index-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(124, 60, 255, .20);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(247, 250, 255, .92)),
    radial-gradient(circle at top right, rgba(255, 62, 181, .14), transparent 18rem);
  box-shadow: 0 34px 90px rgba(37, 22, 79, .16);
}

.product-index-panel h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
}

.index-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.index-panel-grid span,
.product-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid #eee8ff;
  border-radius: 999px;
  color: var(--violet);
  background: #faf7ff;
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.2;
}

.product-index-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-tech-grid .module-card {
  min-height: 0;
}

.product-tech-grid .card-tag {
  width: fit-content;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
}

.product-index-card {
  display: grid;
  gap: 16px;
  min-height: 0;
}

.product-index-card p {
  margin-bottom: 0;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-index-card .card-list {
  margin: 0;
}

.product-index-card > a {
  align-self: end;
  margin-top: auto;
  color: var(--violet);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .product-index-grid {
    grid-template-columns: 1fr;
  }

  .product-index-panel {
    max-width: 760px;
  }

  .product-index-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .product-index-cards,
  .product-tech-grid,
  .index-panel-grid {
    grid-template-columns: 1fr;
  }

  .product-card-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .index-panel-grid span,
  .product-card-meta span {
    justify-content: center;
    text-align: center;
  }
}

/* Sitewide AI and benchmark band */
.global-ai-band {
  padding: clamp(34px, 5vw, 58px) 0;
  border-top: 1px solid rgba(124, 60, 255, .14);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 62, 181, .12), transparent 24rem),
    radial-gradient(circle at 84% 16%, rgba(36, 107, 254, .14), transparent 28rem),
    linear-gradient(135deg, #ffffff, #f8fbff 58%, #fff8ee);
}

.global-ai-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.global-ai-band h2 {
  max-width: 850px;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.global-ai-band p {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.global-ai-points {
  display: grid;
  gap: 10px;
}

.global-ai-points span {
  display: grid;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #eee8ff;
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff;
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(37, 22, 79, .06);
}

.benchmark-note {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid rgba(124, 60, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  font-size: .95rem;
}

@media (max-width: 760px) {
  .global-ai-band .container {
    grid-template-columns: 1fr;
  }
}
