@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap");

:root {
  --bg: #f6f9fd;
  --paper: #ffffff;
  --paper-soft: #f8fbff;
  --ink: #111827;
  --ink-soft: #243047;
  --muted: #657287;
  --muted-2: #8390a4;
  --blue: #2463ff;
  --blue-dark: #123fcb;
  --cyan: #13bfe8;
  --mint: #19b99a;
  --line: rgba(22, 35, 58, 0.1);
  --line-strong: #d9e4f2;
  --shadow: 0 24px 80px rgba(26, 43, 78, 0.13);
  --shadow-soft: 0 14px 42px rgba(28, 46, 82, 0.1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1120px 500px at 50% -18%, rgba(36, 99, 255, 0.22), transparent 72%),
    linear-gradient(180deg, #f2f8ff 0%, #ffffff 42%, #f7f9fc 100%);
  font-family: Inter, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes soft-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes orb-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: Sora, Inter, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.top-strip {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 0;
  right: 0;
  background: transparent;
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 32px, 954px);
  min-height: 70px;
  padding: 10px 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(243, 249, 255, 0.92);
  box-shadow: 0 18px 34px rgba(32, 58, 96, 0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 144px;
  max-height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  flex: 1 1 auto;
}

.site-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.mobile-nav-only {
  display: none !important;
}

.menu-toggle,
.theme-toggle {
  display: none;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.nav-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 226, 234, 0.86);
  border-radius: 999px;
  padding: 0 29px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 3px 0 rgba(15, 23, 42, 0.16);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-actions .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  gap: 8px;
  font-size: 14px;
}

.btn,
.nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

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

.btn-primary,
.nav-cta {
  color: #fff;
  background: linear-gradient(180deg, #2f80ff 0%, #1261e8 100%);
  box-shadow: inset 0 -3px 0 rgba(0, 38, 122, 0.24), 0 10px 22px rgba(28, 100, 242, 0.22);
}

.btn-secondary {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line-strong);
  box-shadow: 0 10px 26px rgba(20, 38, 70, 0.08);
}

.section {
  padding: clamp(74px, 8vw, 116px) 0;
}

.section-light {
  background: var(--paper);
}

.hero + .section {
  padding-top: 24px;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 53, 211, 0.96) 0%, rgba(20, 128, 224, 0.96) 58%, rgba(19, 191, 232, 0.94) 100%),
    #1454e8;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.section-title,
.page-title {
  max-width: 790px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
}

.section-copy {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-dark .eyebrow,
.section-dark .section-title {
  color: #fff;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.84);
}

.section-dark .btn-secondary,
.cta-panel .btn-secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 13vw, 180px) 0 clamp(34px, 5vw, 58px);
  background:
    linear-gradient(180deg, rgba(227, 242, 255, 0.94) 0%, rgba(248, 252, 255, 0.98) 66%, #ffffff 100%),
    var(--bg);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 99, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 99, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 72%);
  pointer-events: none;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-pill,
.hero h1,
.hero-subcopy,
.hero-actions,
.hero-proof,
.hero-feature {
  animation: soft-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero-subcopy {
  animation-delay: 160ms;
}

.hero-actions {
  animation-delay: 230ms;
}

.hero-proof {
  animation-delay: 300ms;
}

.hero-feature:nth-child(1) {
  animation-delay: 360ms;
}

.hero-feature:nth-child(2) {
  animation-delay: 430ms;
}

.hero-feature:nth-child(3) {
  animation-delay: 500ms;
}

.hero h1 {
  max-width: 960px;
  margin: 20px auto 0;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.12;
  font-weight: 700;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 218, 231, 0.95);
  border-radius: 999px;
  padding: 0 18px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 0 rgba(15, 23, 42, 0.11);
  font-size: 15px;
  font-weight: 600;
}

.hero-subcopy {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.hero .btn {
  min-width: 190px;
  min-height: 48px;
  font-size: 18px;
}

.hero .btn-primary {
  box-shadow: inset 0 -3px 0 rgba(0, 38, 122, 0.26), 0 12px 24px rgba(28, 100, 242, 0.22);
}

.hero .btn-secondary {
  color: var(--blue);
  background: #fff;
  border-color: rgba(236, 240, 246, 0.98);
  box-shadow: 0 5px 0 rgba(15, 23, 42, 0.11), 0 18px 38px rgba(23, 47, 86, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  color: #687487;
  font-size: 14px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #8c96a6;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.proof-divider {
  width: 1px;
  height: 18px;
  background: #d5dde8;
}

.hero-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  max-width: 1080px;
  margin-top: clamp(30px, 3vw, 42px);
}

.hero-feature {
  display: grid;
  justify-items: center;
  padding: 0 clamp(24px, 4vw, 50px);
}

.hero-feature + .hero-feature {
  border-left: 1px solid #d6dee9;
}

.hero-icon {
  display: grid;
  width: 48px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(36, 99, 255, 0.1);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(36, 99, 255, 0.08);
  font-size: 18px;
  font-weight: 800;
}

.hero-icon-raised {
  color: #fff;
  background: linear-gradient(180deg, #43a2ff, #1d68ef);
  box-shadow: 0 8px 18px rgba(36, 99, 255, 0.2);
}

.hero-feature h3 {
  margin-top: 16px;
  color: #111827;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-feature p {
  max-width: 310px;
  margin-top: 6px;
  color: #687487;
  font-size: 15px;
  line-height: 1.3;
}

.services-hero {
  padding-top: clamp(150px, 13vw, 180px);
}

.services-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(38px, 4.1vw, 56px);
}

.services-hero .hero-subcopy {
  margin-top: 16px;
}

.services-hero .hero-actions {
  margin-top: 22px;
}

.services-hero .hero-feature-row {
  margin-top: clamp(24px, 2.2vw, 32px);
}

.services-hero .hero-feature h3 {
  margin-top: 12px;
}

.hero .hero-shell::after {
  width: min(100%, 870px);
  height: 3px;
  margin-top: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #235dff 0%, #16bfe8 100%);
  content: "";
}

.hero-tags,
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-tags span,
.signal-row li,
.chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(36, 99, 255, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  color: #384860;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(25, 48, 90, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.system-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.76)),
    var(--paper);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.system-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(36, 99, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

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

.panel-top strong {
  color: var(--ink);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a8d71;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(25, 185, 154, 0.12);
  content: "";
}

.panel-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.dashboard-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 37, 70, 0.06);
}

.dashboard-card strong {
  display: block;
  color: var(--ink);
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

.dashboard-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.workflow {
  display: grid;
  gap: 10px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 99, 255, 0.08);
  border-radius: 17px;
  background: #f3f8ff;
}

.workflow-row small {
  color: var(--blue);
  font-weight: 800;
}

.workflow-row span {
  color: #4c5b70;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.trusted-section {
  overflow: hidden;
  padding: 42px 0 82px;
  background: #fff;
}

.trusted-head {
  margin-bottom: 30px;
  text-align: center;
}

.trusted-head h2 {
  color: #596579;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: 0;
}

.trusted-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: trusted-scroll 26s linear infinite;
  will-change: transform;
}

.trusted-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(56px, 7vw, 92px);
  padding-inline: clamp(28px, 4vw, 46px);
}

.trusted-logo {
  position: relative;
  display: grid;
  width: clamp(150px, 16vw, 220px);
  min-height: 86px;
  place-items: center;
}

.trusted-logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 0.34;
  transition: opacity 160ms ease, transform 160ms ease;
}

.trusted-logo[data-business="Detailing Dynasty"] img {
  max-height: 72px;
}

.trusted-logo::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  max-width: min(220px, 90vw);
  transform: translate(-50%, 6px);
  border: 1px solid rgba(218, 225, 236, 0.9);
  border-radius: 999px;
  padding: 6px 12px;
  color: #475569;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(23, 37, 64, 0.08);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 160ms ease, transform 160ms ease;
  content: attr(data-business);
}

.trusted-logo:hover img,
.trusted-logo:focus-within img {
  opacity: 0.62;
  transform: translateY(-3px);
}

.trusted-logo:hover::after,
.trusted-logo:focus-within::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

@keyframes trusted-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .trusted-track {
    animation: none;
    transform: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.blue-feature-section {
  padding: 0 0 78px;
  background: #fff;
}

.blue-feature-section .container {
  width: min(100% - 48px, 1280px);
}

.blue-feature-panel {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.92) 0%, rgba(56, 157, 251, 0.92) 75.29%), #f7f7f7;
}

.blue-feature-panel,
.portal-access-panel,
.cta-panel {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blue-feature-panel:hover,
.portal-access-panel:hover,
.cta-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 72px rgba(28, 100, 242, 0.18);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(4px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.reveal-ready [data-reveal="fade-scale"]:not(.is-visible) {
  transform: scale(0.96);
}

.blue-feature-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
}

.blue-feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #e6f0ff;
  border-radius: 12px;
  color: var(--blue);
  background: linear-gradient(180deg, #f1f1f1 0%, #fff 100%);
  box-shadow: 0 1.292px 4.362px 1.938px rgba(103, 166, 254, 0.15), 0 -2px 3.3px 0 #d5d5d5 inset;
}

.blue-feature-icon svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.blue-feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue-feature-copy h2 {
  max-width: 570px;
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
}

.blue-feature-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.blue-feature-visual {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 32px 32px;
}

.systems-assistant {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%), rgba(255, 255, 255, 0.16);
  background-blend-mode: normal, overlay;
  box-shadow: 2px 2px 2px -2px #fff inset, -2px -2px 2px -2px #fff inset, 0 8px 12px 0 rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.systems-assistant h3 {
  position: relative;
  z-index: 1;
  width: 100%;
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.22;
}

.systems-orb {
  position: relative;
  z-index: 1;
  display: flex;
  width: 146px;
  height: 146px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: orb-breathe 4.8s ease-in-out infinite;
}

.systems-orb-ring {
  position: absolute;
  inset: 0;
  width: 146px;
  height: 146px;
}

.systems-orb-button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 104.805px;
  height: 104.805px;
  place-items: center;
  border-radius: 97.042px;
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
}

.systems-orb-button svg {
  width: 28px;
  height: 28px;
}

.systems-assistant p {
  position: relative;
  z-index: 1;
  max-width: 265px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 640px) {
  .blue-feature-panel {
    border-radius: 32px;
  }

  .blue-feature-copy {
    padding: 48px;
  }

  .blue-feature-copy h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .blue-feature-visual {
    padding: 48px;
  }

  .systems-assistant {
    max-width: 310px;
    align-items: center;
    gap: 32px;
    padding: 32px;
  }

  .systems-assistant h3 {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .blue-feature-visual {
    padding: 32px;
  }
}

@media (min-width: 1021px) {
  .blue-feature-panel {
    flex-direction: row;
    align-items: center;
  }

  .blue-feature-copy {
    width: 50%;
    padding: 64px;
  }

  .blue-feature-visual {
    width: 50%;
    padding: 32px;
  }
}

.stats-grid,
.cards-grid,
.value-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.value-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.stat-card,
.feature-card,
.value-card,
.process-card,
.content-card,
.contact-form,
.quote-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.stat-card,
.feature-card,
.value-card,
.process-card {
  padding: 24px;
}

.stat-card,
.feature-card,
.value-card,
.process-card,
.content-card,
.visual-card,
.step-row,
.service-overview-card,
.portal-mini-card,
.portal-card,
.service-cluster {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.stat-card:hover,
.feature-card:hover,
.value-card:hover,
.process-card:hover,
.content-card:hover,
.visual-card:hover,
.step-row:hover,
.service-overview-card:hover,
.portal-mini-card:hover,
.portal-card:hover,
.service-cluster:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 99, 255, 0.22);
  box-shadow: 0 20px 46px rgba(24, 45, 84, 0.13);
}

.stat-card::before,
.feature-card::before,
.value-card::before,
.process-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.8;
  content: "";
}

.stat-card small,
.card-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-family: Sora, Inter, sans-serif;
  font-size: 24px;
}

.stat-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.feature-card h3,
.value-card h3,
.process-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
}

.feature-card p,
.value-card p,
.process-card p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.visual-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(24, 45, 84, 0.1);
}

.visual-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(24, 45, 84, 0.08);
}

.step-row span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

.step-row h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 18px;
}

.page-hero {
  padding: clamp(128px, 11vw, 156px) 0 clamp(44px, 5vw, 70px);
  background:
    radial-gradient(960px 420px at 52% -18%, rgba(36, 99, 255, 0.18), transparent 72%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 92%);
}

.page-hero .page-title {
  font-size: clamp(36px, 4.4vw, 56px);
}

.page-hero .section-copy {
  line-height: 1.58;
}

.services-page-hero {
  padding-bottom: clamp(48px, 6vw, 84px);
}

.services-page-hero .two-column {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
}

.services-actions {
  justify-content: flex-start;
}

.services-summary-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.78)),
    #fff;
  box-shadow: var(--shadow);
}

.services-summary-panel::before {
  position: absolute;
  right: -64px;
  bottom: -82px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(19, 191, 232, 0.14);
  content: "";
}

.services-summary-panel h2 {
  position: relative;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 36px);
}

.services-summary-panel p {
  position: relative;
  margin-top: 12px;
  color: var(--muted);
}

.panel-icon {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #e6f0ff;
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(180deg, #f1f6ff 0%, #fff 100%);
  box-shadow: 0 1.292px 4.362px 1.938px rgba(103, 166, 254, 0.15), 0 -2px 3.3px 0 #d5d5d5 inset;
}

.panel-icon svg {
  width: 25px;
  height: 25px;
}

.panel-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-proof-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-proof-list li {
  position: relative;
  padding-left: 28px;
  color: #40516a;
  font-weight: 800;
}

.service-proof-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  content: "";
}

.service-proof-list li::after {
  position: absolute;
  top: 8px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
}

.service-overview-section {
  padding: 0 0 clamp(58px, 7vw, 88px);
  background: #fff;
}

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

.service-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-overview-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.service-overview-card h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 24px;
}

.service-overview-card p {
  color: var(--muted);
}

.service-clusters {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.service-cluster {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-cluster summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.service-cluster summary::-webkit-details-marker {
  display: none;
}

.service-cluster h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
}

.service-cluster summary p {
  color: var(--muted);
}

.cluster-toggle {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(36, 99, 255, 0.18);
  border-radius: 50%;
  background: #eff5ff;
}

.cluster-toggle::before {
  color: var(--blue);
  font-size: 24px;
  content: "+";
}

.service-cluster[open] .cluster-toggle::before {
  content: "-";
}

.service-cluster-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}

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

.dashboard-card .compact-list {
  margin-top: 0;
}

.bullet-list li,
.compact-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.bullet-list li::before,
.compact-list li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  content: "";
}

.content-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.content-card,
.quote-panel {
  padding: 28px;
}

.content-card h2,
.quote-panel h2 {
  margin-bottom: 12px;
  color: var(--ink);
}

.content-card a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.client-portal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(138px, 12vw, 170px) 0 clamp(64px, 7vw, 92px);
  background:
    radial-gradient(920px 460px at 50% -16%, rgba(36, 99, 255, 0.22), transparent 72%),
    linear-gradient(180deg, #eef7ff 0%, #fff 94%);
}

.client-portal-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 99, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 99, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 72%);
  pointer-events: none;
  content: "";
}

.portal-login-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.portal-login-copy h1 {
  max-width: 760px;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.05;
}

.portal-login-copy .hero-subcopy {
  max-width: 620px;
}

.portal-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 30px;
}

.portal-mini-card,
.portal-login-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.portal-mini-card {
  border-radius: 22px;
  padding: 20px;
}

.portal-mini-card h2 {
  margin-top: 14px;
  color: var(--ink);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.portal-mini-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.portal-login-panel {
  display: grid;
  gap: 24px;
  border-radius: 34px;
  padding: 24px;
}

.portal-login-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.portal-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portal-lock-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #e6f0ff;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(180deg, #f1f6ff 0%, #fff 100%);
  box-shadow: 0 1.292px 4.362px 1.938px rgba(103, 166, 254, 0.15), 0 -2px 3.3px 0 #d5d5d5 inset;
}

.portal-lock-icon svg {
  width: 24px;
  height: 24px;
}

.portal-lock-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.portal-glass-form {
  display: grid;
  gap: 18px;
}

.portal-glass-form h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 30px;
}

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

.portal-glass-form .btn {
  width: 100%;
}

.portal-glass-form .form-note a {
  color: var(--blue);
  font-weight: 800;
}

.portal-steps-section {
  background: #fff;
}

.portal-section-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.portal-section-head .section-title,
.portal-section-head .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.portal-hero {
  padding: clamp(140px, 12vw, 178px) 0 58px;
  background:
    radial-gradient(980px 460px at 50% -18%, rgba(36, 99, 255, 0.2), transparent 72%),
    linear-gradient(180deg, #eef7ff 0%, #fff 94%);
}

.portal-hero-shell {
  display: grid;
  justify-items: center;
  text-align: center;
}

.portal-hero h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(42px, 5.1vw, 68px);
  line-height: 1.05;
}

.portal-hero .hero-subcopy {
  max-width: 640px;
}

.portal-login-hero {
  padding-bottom: 46px;
}

.portal-access-section {
  padding: 0 0 76px;
  background: #fff;
}

.portal-access-section .container {
  width: min(100% - 48px, 1280px);
}

.portal-access-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  padding: clamp(42px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(360px 260px at 86% 20%, rgba(255, 255, 255, 0.2), transparent 70%),
    linear-gradient(180deg, rgba(0, 102, 255, 0.94) 0%, rgba(56, 157, 251, 0.92) 75.29%),
    #f7f7f7;
  box-shadow: 0 24px 70px rgba(28, 100, 242, 0.16);
}

.portal-access-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 0;
}

.portal-access-copy h2 {
  max-width: 590px;
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
}

.portal-access-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.5;
}

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

.portal-proof-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.portal-proof-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.portal-proof-list li::after {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
}

.portal-access-card {
  position: relative;
  display: grid;
  width: 100%;
  gap: 22px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%), rgba(255, 255, 255, 0.16);
  background-blend-mode: normal, overlay;
  box-shadow: 2px 2px 2px -2px #fff inset, -2px -2px 2px -2px #fff inset, 0 24px 46px rgba(12, 68, 168, 0.24);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.portal-access-card h3 {
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.portal-login-card {
  align-content: center;
}

.portal-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.16);
}

.portal-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #50f2b9;
  box-shadow: 0 0 18px rgba(80, 242, 185, 0.75);
}

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

.portal-access-card li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.portal-login-card label {
  color: rgba(255, 255, 255, 0.9);
}

.portal-login-card .portal-code {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.portal-login-card .btn {
  width: 100%;
}

.portal-login-card .form-note {
  color: rgba(255, 255, 255, 0.76);
}

.portal-login-card .form-note a {
  color: #fff;
  font-weight: 800;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.portal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.portal-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.portal-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid #e6f0ff;
  border-radius: 12px;
  color: var(--blue);
  background: linear-gradient(180deg, #f1f1f1 0%, #fff 100%);
  box-shadow: 0 1.292px 4.362px 1.938px rgba(103, 166, 254, 0.15), 0 -2px 3.3px 0 #d5d5d5 inset;
}

.portal-card-icon svg {
  width: 22px;
  height: 22px;
}

.portal-card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portal-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
}

.portal-card p {
  margin-bottom: 18px;
}

.portal-card a {
  color: var(--blue);
  font-weight: 800;
}

.portal-help-card {
  align-self: stretch;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 99, 255, 0.12);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  padding: 12px 14px;
  border: 1px solid rgba(36, 99, 255, 0.14);
  border-radius: 16px;
  background: #eff5ff;
}

.cta-panel {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 53, 211, 0.96), rgba(19, 191, 232, 0.94)),
    var(--blue);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel .eyebrow,
.cta-panel .section-title,
.cta-panel .section-copy {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.cta-panel .section-copy {
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--line);
  background: #f7f9fc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
  color: var(--ink);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a,
.site-footer p,
.footer-bottom {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.floating-contact {
  display: none;
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.contact-bubble {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.contact-bubble img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.contact-bubble strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}

.contact-bubble span {
  color: var(--muted);
  font-size: 13px;
}

.floating-actions {
  display: flex;
  gap: 8px;
}

.floating-actions a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(36, 99, 255, 0.24);
  font-weight: 900;
}

@media (max-width: 1020px) {
  .two-column,
  .contact-layout,
  .services-page-hero .two-column {
    grid-template-columns: 1fr;
  }

  .blue-feature-section .container {
    width: min(100% - 48px, 1280px);
  }

  .portal-access-panel {
    grid-template-columns: 1fr;
  }

  .portal-login-layout {
    grid-template-columns: 1fr;
  }

  .portal-login-panel {
    max-width: 520px;
  }

  .portal-access-card {
    max-width: 420px;
  }

  .systems-assistant {
    width: min(100%, 310px);
  }

  .hero-feature {
    padding: 0 28px;
  }

  .stats-grid,
  .cards-grid,
  .value-grid,
  .process-grid,
  .service-overview-grid,
  .portal-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .contact-bubble {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    top: 12px;
  }

  .nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 24px, 1080px);
    min-height: 68px;
    padding: 8px 10px 8px 15px;
    border-radius: 28px;
  }

  .brand {
    min-width: 112px;
  }

  .brand-logo {
    width: 118px;
    max-height: 46px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 3px;
    border-radius: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
  }

  .mobile-nav-only {
    display: inline-flex !important;
  }

  .nav-cta {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.12;
  }

  .hero-subcopy {
    font-size: 18px;
  }

  .hero-feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin-top: 44px;
  }

  .hero-feature {
    padding: 0 0 28px;
  }

  .hero-feature + .hero-feature {
    border-left: 0;
    border-top: 1px solid #d6dee9;
    padding-top: 28px;
  }

  .hero-actions,
  .floating-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .workflow-row span {
    white-space: normal;
  }

  .blue-feature-section {
    padding-bottom: 60px;
  }

  .blue-feature-copy {
    max-width: none;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100vw - 32px, 358px);
    margin-left: 16px;
    margin-right: auto;
  }

  .nav-wrap {
    width: min(100vw - 24px, 366px);
    margin-left: 12px;
    margin-right: auto;
  }

  .stats-grid,
  .cards-grid,
  .value-grid,
  .process-grid,
  .service-overview-grid,
  .portal-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .blue-feature-section {
    padding: 0 0 58px;
  }

  .client-portal-hero {
    padding: 128px 0 58px;
  }

  .portal-login-copy h1 {
    font-size: 36px;
  }

  .portal-mini-grid {
    grid-template-columns: 1fr;
  }

  .portal-login-panel {
    border-radius: 26px;
    padding: 22px;
  }

  .portal-panel-top {
    align-items: flex-start;
  }

  .portal-hero {
    padding: 128px 0 48px;
  }

  .portal-hero h1 {
    font-size: 34px;
  }

  .portal-access-section {
    padding-bottom: 58px;
  }

  .portal-access-section .container {
    width: min(100vw - 32px, 358px);
  }

  .portal-access-panel {
    min-height: 0;
    border-radius: 24px;
    gap: 28px;
    padding: 28px 24px;
  }

  .portal-access-copy {
    padding: 0;
  }

  .portal-access-copy h2 {
    font-size: 30px;
  }

  .portal-access-copy p {
    font-size: 17px;
  }

  .portal-access-card {
    width: 100%;
    margin-bottom: 0;
    border-radius: 24px;
    padding: 24px;
  }

  .blue-feature-section .container {
    width: min(100vw - 32px, 358px);
  }

  .blue-feature-panel {
    min-height: 0;
    border-radius: 24px;
  }

  .blue-feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .blue-feature-copy h2 {
    font-size: 30px;
  }

  .blue-feature-copy p {
    font-size: 17px;
  }

  .systems-assistant {
    border-radius: 24px;
    padding: 24px 22px 26px;
  }

  .systems-assistant h3 {
    font-size: 24px;
  }

  .systems-assistant p {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .hero-pill {
    min-height: 36px;
    padding: 0 14px;
    text-align: center;
    font-size: 13px;
  }

  .hero-subcopy {
    font-size: 17px;
  }

  .hero .btn {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }

  .hero-proof {
    gap: 8px;
    font-size: 13px;
  }

  .proof-divider {
    display: none;
  }

  .gradient-text,
  .hero-copy p,
  .section-copy {
    overflow-wrap: anywhere;
  }

  .section-title,
  .page-title {
    font-size: 32px;
  }

  .service-cluster summary {
    align-items: flex-start;
  }

  .panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-pill {
    white-space: normal;
  }

  .hero-tags span,
  .signal-row li,
  .chip {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .hero-tags,
  .signal-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cluster-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal="fade-scale"]:not(.is-visible),
  .hero-pill,
  .hero h1,
  .hero-subcopy,
  .hero-actions,
  .hero-proof,
  .hero-feature,
  .systems-orb {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
