:root {
  --ink: #143238;
  --ink-soft: #42636a;
  --muted: #6f858a;
  --paper: #ffffff;
  --wash: #f4fbf8;
  --mint: #dff4ef;
  --mint-deep: #9bd7cb;
  --teal: #087f83;
  --teal-dark: #075f66;
  --green: #68a96d;
  --coral: #e87856;
  --coral-soft: #fff1ec;
  --sun: #f7c66a;
  --line: #d8e8e4;
  --line-strong: #bdd7d1;
  --shadow: 0 18px 45px rgba(20, 50, 56, 0.12);
  --soft-shadow: 0 10px 26px rgba(20, 50, 56, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(232, 120, 86, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: #ffffff;
  background: var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 232, 228, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: var(--container);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  font-family: Outfit, Inter, sans-serif;
  font-weight: 850;
  line-height: 1;
}

.brand span {
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a,
.nav-more > summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-more > summary:hover,
.nav-more.is-active > summary,
.nav-more[open] > summary {
  color: var(--teal-dark);
  background: var(--mint);
}

.nav-more {
  position: relative;
}

.nav-more > summary {
  list-style: none;
  cursor: pointer;
}

.nav-more > summary::-webkit-details-marker {
  display: none;
}

.nav-more > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-more[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-more-menu a {
  justify-content: flex-start;
  border-radius: var(--radius);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(8, 127, 131, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(8, 127, 131, 0.26);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button.secondary {
  color: var(--teal-dark);
  background: #ffffff;
  border-color: var(--line-strong);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--wash);
}

.button.coral {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 12px 24px rgba(232, 120, 86, 0.2);
}

.button.coral:hover {
  background: #d86848;
  border-color: #d86848;
}

.button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.site-nav a.nav-cta {
  margin-left: 6px;
  color: #ffffff;
  background: var(--teal);
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta[aria-current="page"] {
  color: #ffffff;
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  opacity: 0;
}

.home-hero {
  position: relative;
  padding: 54px 0 42px;
  background:
    linear-gradient(135deg, rgba(223, 244, 239, 0.86), rgba(255, 241, 236, 0.68) 52%, rgba(255, 255, 255, 1) 100%),
    var(--wash);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  max-width: 670px;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.status-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
}

h1,
h2,
h3,
.stat strong {
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4.15rem;
}

.page-hero h1 {
  max-width: 900px;
}

.lede,
.page-hero p,
.section-heading p {
  color: var(--ink-soft);
}

.lede,
.page-hero p {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.55;
}

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

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

.fact {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fact strong,
.fact a {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.hero-media {
  position: relative;
}

.hero-photo {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img,
.media-frame img,
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.hero-panel strong {
  display: block;
  margin-bottom: 7px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.trust-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1rem;
}

.trust-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.page-hero {
  padding: 72px 0 50px;
  background:
    linear-gradient(135deg, rgba(223, 244, 239, 0.88), rgba(255, 241, 236, 0.54)),
    var(--wash);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.section {
  padding: 78px 0;
}

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

.section.compact {
  padding: 54px 0;
}

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

.section.coral-wash {
  background: linear-gradient(180deg, #ffffff 0%, var(--coral-soft) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.cta-panel h2 {
  font-size: 2.7rem;
}

.section-heading p {
  margin: 13px 0 0;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.grid-2,
.grid-3,
.grid-4,
.service-grid,
.info-grid,
.check-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.tile,
.service-card,
.info-card,
.notice,
.contact-item,
.form-card,
.table-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.tile,
.info-card,
.notice,
.contact-item {
  padding: 22px;
}

.contact-item {
  display: grid;
  gap: 6px;
  align-content: start;
}

.contact-item strong {
  display: block;
}

.tile h3,
.service-card h3,
.info-card h3,
.notice h3,
.contact-item strong,
.form-card h2,
.table-card h2 {
  margin: 0 0 9px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.12;
}

.contact-item strong {
  margin-bottom: 0;
}

.tile p,
.service-card p,
.info-card p,
.notice p,
.contact-item span,
.contact-item a,
.table-card p {
  margin: 0;
  color: var(--ink-soft);
}

.tile p + p,
.notice p + p,
.info-card p + p {
  margin-top: 12px;
}

.icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: var(--radius);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.media-frame,
.service-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: var(--shadow);
}

.media-frame {
  aspect-ratio: 4 / 3;
}

.service-photo {
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.side-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-photo + .section-heading {
  margin-top: 22px;
}

.photo-note {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.plain-list,
.check-list,
.link-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.plain-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.check-list li::before {
  width: 16px;
  height: 16px;
  top: 0.42em;
  background:
    linear-gradient(135deg, transparent 42%, #ffffff 42%, #ffffff 56%, transparent 56%),
    var(--green);
}

.link-list a,
.text-link {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.service-card {
  overflow: hidden;
}

.service-card .service-body {
  padding: 22px;
}

.service-card.has-photo .service-body {
  padding-top: 19px;
}

.service-card .code {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.support-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 0.65fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.support-row:first-child {
  border-top: 0;
}

.support-row h3 {
  font-size: 1.3rem;
}

.support-row p {
  margin: 0;
  color: var(--ink-soft);
}

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

.stat {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--teal-dark);
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.table-card {
  overflow: hidden;
}

.table-card h2 {
  padding: 22px 22px 0;
}

.data-table,
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td,
.price-table th,
.price-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--line);
}

.data-table th,
.price-table th {
  width: 31%;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.03rem;
  line-height: 1.22;
}

.data-table td,
.price-table td {
  color: var(--ink-soft);
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.badge-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 13px;
}

.contact-item a {
  overflow-wrap: anywhere;
}

.form-card {
  padding: 26px;
}

.form-card h2 {
  margin-bottom: 16px;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.field small {
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 127, 131, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--coral);
  background: #fff8f5;
}

.field-error {
  color: #a94e35;
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: #a94e35;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 32px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 95, 102, 0.98), rgba(8, 127, 131, 0.94)),
    var(--teal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 680px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-panel .button.secondary {
  color: var(--teal-dark);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 52px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(160px, 0.65fr));
  gap: 30px;
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-brand span {
  font-size: 1.3rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.04rem;
}

.footer-grid p {
  max-width: 340px;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.sticky-actions {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    z-index: 60;
    max-height: calc(100dvh - 92px);
    overflow: auto;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .nav-more > summary {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: var(--radius);
  }

  .nav-more-menu {
    position: static;
    width: auto;
    margin: 4px 0 4px 12px;
    padding: 8px;
    box-shadow: none;
    background: var(--wash);
  }

  .site-nav a.nav-cta {
    margin-left: 0;
    margin-top: 4px;
    justify-content: center;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .trust-strip,
  .grid-4,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(1120px, calc(100% - 28px));
  }

  body.show-sticky {
    padding-bottom: 72px;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 1.16rem;
  }

  .site-nav {
    inset: 68px 14px auto 14px;
  }

  .home-hero,
  .page-hero {
    padding: 40px 0 36px;
  }

  .page-hero {
    padding-bottom: 28px;
  }

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

  h1 {
    font-size: 2.38rem;
    line-height: 1.08;
  }

  .lede,
  .page-hero p,
  .section-heading p {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .section.compact {
    padding: 42px 0;
  }

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

  .section-heading h2,
  .cta-panel h2 {
    font-size: 2rem;
  }

  .hero-facts,
  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .service-grid,
  .info-grid,
  .mini-stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .hero-actions .button,
  .inline-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .support-row,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td,
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .data-table th,
  .price-table th {
    padding-bottom: 5px;
  }

  .data-table td,
  .price-table td {
    padding-top: 0;
  }

  .form-card,
  .cta-panel,
  .tile,
  .info-card,
  .notice,
  .contact-item {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .footer-bottom {
    display: grid;
  }

  .show-sticky .sticky-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .sticky-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--teal);
    border-radius: var(--radius);
    font-weight: 850;
  }

  .sticky-actions a:first-child {
    color: var(--teal-dark);
    background: var(--mint);
  }
}
