:root {
  --navy: #071120;
  --midnight: #0b1424;
  --app: #1f2b3d;
  --ink: #111827;
  --charcoal: #202938;
  --muted: #65717f;
  --line: #d8e1eb;
  --panel: #eef4fa;
  --white: #ffffff;
  --orange: #d97904;
  --blue: #17618f;
  --bright-blue: #0798d7;
  --green: #0a8f68;
  --shadow: 0 24px 70px rgba(7, 20, 34, 0.16);
  --content-max: 1440px;
  --site-pad: clamp(22px, 6vw, 78px);
  --header-pad: clamp(18px, 4vw, 56px);
  --section-x: max(var(--site-pad), calc((100vw - var(--content-max)) / 2 + var(--site-pad)));
  --header-x: max(var(--header-pad), calc((100vw - var(--content-max)) / 2 + var(--header-pad)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--midnight);
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

.skip-link {
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  left: 14px;
  padding: 10px 14px;
  position: fixed;
  top: 14px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  align-items: center;
  background: rgba(7, 17, 32, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 72px;
  padding: 12px var(--header-x);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand {
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  display: inline-flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  min-width: 43px;
  overflow: hidden;
  padding: 0;
  width: 50px;
}

.brand-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-name strong,
.footer-brand strong {
  display: block;
}

.brand-name strong {
  color: var(--white);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand strong {
  font-size: 16px;
  line-height: 1;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.5vw, 22px);
  justify-content: center;
}

.site-nav a {
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 2px;
  position: relative;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    padding 220ms ease;
  white-space: nowrap;
}

.site-nav a::after {
  background: #f59e0b;
  bottom: 3px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 260ms ease;
  width: calc(100% - 18px);
}

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

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 12px;
  padding-right: 12px;
}

.site-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav .mobile-portal-link {
  display: none;
}

.site-nav .mobile-portal-link::after {
  display: none;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.header-cta,
.header-portal,
.btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-cta,
.btn.primary {
  background: var(--blue);
  color: var(--white);
}

.header-portal {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

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

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  justify-self: end;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 6px 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  color: var(--white);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.97) 0%, rgba(7, 17, 32, 0.82) 42%, rgba(7, 17, 32, 0.28) 76%),
    linear-gradient(0deg, rgba(7, 17, 32, 0.88) 0%, rgba(7, 17, 32, 0) 48%);
  inset: 0;
  position: absolute;
}

.hero-content {
  padding: 140px var(--section-x) 62px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--bright-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: clamp(12px, 0.7vw, 15px);
  max-width: 760px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 5.65vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.03;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 660px;
}

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

.hero-tagline {
  bottom: clamp(34px, 6vw, 72px);
  color: #f59e0b;
  font-size: clamp(28px, 3.6vw, 54px);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  margin: 0;
  position: absolute;
  right: var(--section-x);
  text-align: right;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.section {
  padding: clamp(68px, 8vw, 116px) var(--section-x);
  scroll-margin-top: 86px;
}

.why-intro,
.why-grid,
.portal,
.about,
.contact-section {
  display: grid;
  gap: clamp(32px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.why-section,
#portal {
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 97, 143, 0.2), transparent 32%),
    var(--midnight);
  color: var(--white);
}

.why-intro {
  align-items: end;
}

.why-grid {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: clamp(42px, 6vw, 76px);
  padding-top: clamp(42px, 6vw, 76px);
}

#why h2,
#portal h2 {
  color: var(--white);
}

#why p,
#portal .portal-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

#why .section-kicker,
#portal .section-kicker {
  color: #47c7ff;
}

.portal-copy p,
.about-copy p,
.coverage p,
.section-heading p,
.contact-copy p,
.software-pricing p {
  color: var(--muted);
  font-size: 18px;
}

.pain-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.pain-grid span,
.mini-feature-grid span {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--bright-blue);
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 15px;
}

.service-band,
.pricing-band {
  background:
    linear-gradient(180deg, rgba(238, 244, 250, 0.98), rgba(238, 244, 250, 1)),
    var(--panel);
}

.section-heading {
  margin-bottom: 42px;
  max-width: 850px;
}

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

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card,
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 28px;
}

.service-card p,
.price-card p,
.process-step p,
.feature-list span {
  color: var(--muted);
}

.card-number {
  color: var(--bright-blue);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 48px;
}

.feature-list {
  background: var(--app);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 34px;
}

.feature-list div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
}

.feature-list div:first-child {
  padding-top: 0;
}

.feature-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feature-list strong {
  color: var(--white);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.72);
}

.process-band {
  background:
    radial-gradient(circle at 16% 8%, rgba(23, 97, 143, 0.36), transparent 34%),
    var(--navy);
  color: var(--white);
}

.process-band h2,
.process-band h3,
.process-band .section-heading p {
  color: var(--white);
}

.process-band .process-step p {
  color: rgba(255, 255, 255, 0.82);
}

.process-band .section-kicker {
  color: #47c7ff;
}

.process-flow {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.process-timeline {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.process-timeline::before {
  background: linear-gradient(180deg, var(--bright-blue), rgba(245, 158, 11, 0.72));
  bottom: 26px;
  content: "";
  left: 20px;
  position: absolute;
  top: 26px;
  width: 2px;
}

.process-step {
  align-items: start;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 22px;
  position: relative;
}

.process-step span {
  align-items: center;
  background: var(--bright-blue);
  border: 4px solid var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
  z-index: 1;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  margin-bottom: 0;
}

.process-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 38px);
  position: sticky;
  top: 100px;
}

.process-panel h3 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 22px;
}

.process-panel ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.process-panel li {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  padding-left: 26px;
  position: relative;
}

.process-panel li::before {
  color: #f59e0b;
  content: "✓";
  font-weight: 950;
  left: 0;
  position: absolute;
}

.portal {
  align-items: center;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
}

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

.mini-feature-grid span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: var(--green);
  color: rgba(255, 255, 255, 0.9);
}

.text-link {
  align-items: center;
  color: #7dd3fc;
  display: inline-flex;
  font-weight: 850;
  min-height: 44px;
}

.dashboard-showcase {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.dashboard-showcase img {
  border-radius: 6px;
  height: auto;
  width: 100%;
}

.dashboard-showcase figcaption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 4px 2px;
}

.price-card {
  min-height: 230px;
  overflow: hidden;
  padding: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.price-card:hover {
  border-color: rgba(23, 97, 143, 0.38);
  box-shadow: 0 18px 42px rgba(7, 17, 32, 0.12);
  transform: translateY(-1px);
}

.price-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  padding: 28px;
  text-align: left;
  width: 100%;
}

.price-title {
  color: var(--navy);
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.price-copy {
  color: var(--muted);
  display: block;
}

.toggle-label {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  margin-top: 18px;
}

.toggle-label::after {
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  height: 8px;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  width: 8px;
}

.price-card.is-open .toggle-label::after {
  transform: rotate(225deg);
}

.price-details {
  border-top: 1px solid var(--line);
  padding: 0 28px 28px;
}

.price-details ul {
  margin: 20px 0 0;
  padding: 0;
}

.price-details li {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 750;
  list-style: none;
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
}

.price-details li::before {
  color: var(--green);
  content: "✓";
  font-weight: 950;
  left: 0;
  position: absolute;
}

.price-details a {
  color: var(--blue);
  display: inline-block;
  font-weight: 850;
  margin-top: 18px;
}

.price-notes {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
  padding-top: 16px;
}

.price-notes p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  color: var(--blue);
  display: block;
  font-size: 38px;
  line-height: 1;
  margin: 18px 0 18px;
}

.price-card.featured {
  background: var(--app);
  border-color: rgba(7, 152, 215, 0.35);
  color: var(--white);
}

.price-card.featured .price-title,
.price-card.featured .price-copy {
  color: var(--white);
}

.price-card.featured .price {
  color: var(--white);
}

.price-card.featured .toggle-label,
.price-card.featured .price-details a {
  color: #7dd3fc;
}

.price-card.featured .price-details {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.price-card.featured .price-details li {
  color: rgba(255, 255, 255, 0.84);
}

.software-pricing {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 28px;
}

.software-pricing h3 {
  margin-bottom: 8px;
}

.software-pricing p {
  margin-bottom: 4px;
}

.coverage {
  background: var(--panel);
  border-left: 5px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 32px;
}

.about {
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 97, 143, 0.22), transparent 32%),
    var(--midnight);
  color: var(--white);
}

.about h2 {
  color: var(--white);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.about-copy .about-note {
  color: #7dd3fc;
  font-size: 20px;
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(10, 143, 104, 0.22), transparent 34%),
    var(--navy);
  color: var(--white);
}

.contact-section h2,
.contact-section label {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-methods a {
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
}

.request-form {
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px;
}

.request-form label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 7px;
}

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

.spam-trap {
  height: 1px;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.form-status {
  border-radius: 6px;
  display: none;
  font-size: 14px;
  font-weight: 800;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
}

.form-disclosure {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.form-disclosure a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status[data-status="success"] {
  background: rgba(10, 143, 104, 0.12);
  color: var(--green);
  display: block;
}

.form-status[data-status="error"] {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  display: block;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

input,
textarea,
select {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  resize: vertical;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--bright-blue);
  outline: 3px solid rgba(7, 152, 215, 0.18);
}

.legal-main {
  background: var(--panel);
  padding: 132px var(--section-x) 72px;
}

.legal-document {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 5vw, 58px);
}

.legal-document h1 {
  color: var(--navy);
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 12px;
}

.legal-document h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-top: 34px;
}

.legal-document p,
.legal-document li {
  color: var(--charcoal);
  font-size: 17px;
}

.legal-document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-document a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 32px;
}

.site-footer {
  align-items: center;
  background: #050b14;
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px var(--section-x);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .site-nav {
    align-items: stretch;
    background:
      linear-gradient(180deg, rgba(31, 43, 61, 0.98), rgba(7, 17, 32, 0.98)),
      var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    display: grid;
    gap: 2px;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    margin-top: 8px;
    overflow: hidden;
    padding: 8px;
  }

  .site-header.nav-open .site-nav a {
    align-items: center;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
    width: 100%;
  }

  .site-header.nav-open .site-nav a::after {
    display: none;
  }

  .site-header.nav-open .site-nav a:hover,
  .site-header.nav-open .site-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header.nav-open .site-nav .mobile-portal-link {
    align-items: center;
    background: var(--blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    margin-top: 8px;
    min-height: 44px;
    padding: 0 18px;
  }

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

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-panel {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding-bottom: 9px;
    padding-top: 9px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding-bottom: 38px;
    padding-top: 96px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
    margin-bottom: 18px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy,
  #why p,
  #portal .portal-copy p,
  .portal-copy p,
  .about-copy p,
  .coverage p,
  .section-heading p,
  .contact-copy p,
  .software-pricing p {
    font-size: 16px;
  }

  .hero-actions,
  .portal-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-tagline {
    bottom: 24px;
    font-size: 22px;
  }

  .section {
    padding-bottom: 46px;
    padding-top: 46px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .why-grid {
    margin-top: 36px;
    padding-top: 36px;
  }

  .pain-grid {
    margin-top: 28px;
  }

  .why-intro,
  .why-grid,
  .portal,
  .about,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pain-grid,
  .mini-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .price-card {
    min-height: auto;
  }

  .service-card,
  .price-card,
  .feature-list,
  .request-form,
  .coverage,
  .software-pricing {
    padding: 20px;
  }

  .card-number {
    margin-bottom: 22px;
  }

  .process-flow {
    gap: 28px;
  }

  .software-pricing {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-step {
    gap: 14px;
    padding: 16px;
  }

  .process-step h3 {
    font-size: 18px;
  }

  .process-step p,
  .price-details li {
    font-size: 13px;
  }

  .price-toggle {
    padding: 22px;
  }

  .price-details {
    padding: 0 22px 22px;
  }

  .price-title {
    font-size: 20px;
  }

  .price {
    font-size: 34px;
  }

  .request-form {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  input,
  textarea,
  select {
    min-height: 44px;
  }

  .legal-main {
    padding-bottom: 48px;
    padding-top: 104px;
  }

  .legal-document {
    padding: 24px;
  }

  .legal-document h1 {
    font-size: 32px;
  }

  .legal-document h2 {
    font-size: 23px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-name strong {
    font-size: 15px;
  }

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

  .brand-mark {
    flex-basis: 42px;
    height: 42px;
    width: 42px;
  }
}
