:root {
  --font-display: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --ink: #0b1824;
  --navy: #071522;
  --navy-soft: #102738;
  --teal: #1dc6b7;
  --teal-dark: #0e8f86;
  --amber: #ffb25b;
  --paper: #f4f7f6;
  --white: #ffffff;
  --muted: #62717b;
  --line: #dbe4e3;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 21, 34, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}
body,
button,
input,
textarea,
select {
  font-family: var(--font-body), Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p,
a,
summary,
label,
strong,
span {
  overflow-wrap: anywhere;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
}
.site-shell {
  overflow: clip;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 800;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(7, 21, 34, 0.9);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.brand > span > span {
  color: var(--teal);
}
.brand-mark {
  width: 42px;
  height: 42px;
  overflow: visible;
}
.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-mark circle {
  fill: var(--teal);
  stroke: var(--navy);
  stroke-width: 1.5;
}
.brand-image {
  display: block;
  width: auto;
  max-width: 210px;
  height: 44px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 15px;
  font-weight: 650;
}
.nav-links > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--teal);
  transition: right 0.2s ease;
}
.nav-links > a:hover {
  color: white;
}
.nav-links > a:hover::after {
  right: 0;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}
.nav-cta:hover {
  background: white;
  color: var(--navy);
}
.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-button > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 960px;
  color: white;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 130px clamp(24px, 8vw, 128px) 80px;
}
.hero-art {
  position: absolute;
  inset: 0;
  background: url("/assets/fixadata-hero.webp") center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 17, 28, 0.98) 0%,
      rgba(5, 17, 28, 0.86) 35%,
      rgba(5, 17, 28, 0.28) 67%,
      rgba(5, 17, 28, 0.14) 100%
    ),
    linear-gradient(0deg, rgba(5, 17, 28, 0.65), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 56vw);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--teal);
  flex: none;
}
.eyebrow.dark {
  color: var(--teal-dark);
}
.eyebrow.light {
  color: var(--teal);
}
.hero h1,
h2,
h3 {
  font-family: var(--font-display), Arial, sans-serif;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--teal);
  color: #05251f;
  box-shadow: 0 12px 30px rgba(29, 198, 183, 0.2);
}
.button-primary:hover {
  background: #38dfd0;
  box-shadow: 0 15px 36px rgba(29, 198, 183, 0.27);
}
.button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust .icon {
  color: var(--teal);
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 8vw, 128px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.trust-strip {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  margin: -38px auto 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 28px;
}
.trust-strip > div {
  display: grid;
  gap: 2px;
  padding: 3px 25px;
  border-right: 1px solid var(--line);
}
.trust-strip > div:last-child {
  border: 0;
}
.trust-strip strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 15px;
}
.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0;
}
.section-heading {
  max-width: 720px;
}
.section-heading h2,
.first-aid h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.section-heading > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(7, 21, 34, 0.09);
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #e8f8f5;
  color: var(--teal-dark);
}
.featured .service-icon {
  background: rgba(29, 198, 183, 0.12);
  color: var(--teal);
}
.service-icon .icon {
  width: 26px;
  height: 26px;
}
.card-index {
  position: absolute;
  top: 30px;
  right: 30px;
  margin: 0;
  color: #a5b2b5;
  font:
    700 12px/1 var(--font-display),
    Arial,
    sans-serif;
  letter-spacing: 0.16em;
}
.featured .card-index {
  color: rgba(255, 255, 255, 0.35);
}
.service-card h3 {
  margin: 34px 0 13px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.service-card > p:not(.card-index) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.featured > p:not(.card-index) {
  color: rgba(255, 255, 255, 0.64);
}
.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}
.featured > a {
  color: var(--teal);
}

.first-aid {
  width: 100%;
  max-width: none;
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.65fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
}
.first-aid-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.62);
}
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.guide-tabs button {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  cursor: pointer;
}
.guide-tabs button[aria-selected="true"] {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  font-weight: 800;
}
.guide-result {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(29, 198, 183, 0.15),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}
.guide-result::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(29, 198, 183, 0.2);
  border-radius: 50%;
  right: -50px;
  top: -60px;
  box-shadow:
    0 0 0 28px rgba(29, 198, 183, 0.025),
    0 0 0 56px rgba(29, 198, 183, 0.02);
}
.guide-number {
  position: absolute;
  top: 28px;
  left: 38px;
  color: var(--teal);
  font:
    800 13px/1 var(--font-display),
    Arial,
    sans-serif;
  letter-spacing: 0.15em;
}
.guide-result h3 {
  position: relative;
  margin: 0 0 15px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.guide-result p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}
.guide-result a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  align-items: end;
  gap: 70px;
}
.split-heading > p {
  margin-bottom: 2px !important;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cbd7d6;
}
.process-list li {
  position: relative;
  padding: 34px 28px 0 0;
}
.process-list li::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  top: -6px;
  left: 0;
  background: var(--paper);
  border: 3px solid var(--teal-dark);
}
.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 22px;
  top: -1px;
  width: 35px;
  height: 1px;
  background: var(--teal-dark);
}
.process-list > li > span {
  color: var(--teal-dark);
  font:
    800 12px/1 var(--font-display),
    Arial,
    sans-serif;
  letter-spacing: 0.14em;
}
.process-list h3 {
  margin: 25px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq {
  padding-top: 70px;
}
.faq-list {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 750;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  max-width: 850px;
  margin: -5px 0 27px;
  color: var(--muted);
}

.contact {
  width: 100%;
  max-width: none;
  background: #0b1e2b;
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1fr);
  gap: clamp(55px, 8vw, 120px);
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
}
.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.63);
  max-width: 540px;
}
.contact-note {
  max-width: 520px;
  display: flex;
  gap: 14px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}
.contact-note .icon {
  color: var(--teal);
  margin-top: 2px;
}
.contact-note strong {
  display: block;
  color: white;
  margin-bottom: 3px;
}
.contact-form {
  min-height: 500px;
  padding: clamp(25px, 4vw, 42px);
  background: white;
  color: var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 700;
}
.contact-form label > span {
  color: #76838a;
  font-weight: 450;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d4dfdd;
  border-radius: 11px;
  background: #f8faf9;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(29, 198, 183, 0.13);
}
.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}
.contact-form .consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 450;
}
.field-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-error {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #e7b7b7;
  border-radius: 10px;
  background: #fff1f1;
  color: #8f2323;
  font-size: 14px;
}
.consent input {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--teal-dark);
}
.consent a {
  color: var(--teal-dark);
  text-decoration: underline;
}
.submit-button {
  border: 0;
  margin-top: 4px;
}
.form-success {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.form-success > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #dff7f2;
  color: var(--teal-dark);
  border-radius: 50%;
}
.form-success > span .icon {
  width: 28px;
  height: 28px;
}
.form-success h3 {
  margin: 22px 0 8px;
  font-size: 26px;
}
.form-success p {
  max-width: 420px;
  color: var(--muted);
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  text-decoration: underline;
  cursor: pointer;
}

.privacy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.privacy h2 {
  margin: 0;
  font-size: 17px;
}
.privacy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 35px;
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr;
  gap: 30px 55px;
  align-items: start;
}
.footer-brand {
  color: var(--navy);
}
.footer-brand .brand-mark circle {
  stroke: var(--paper);
}
.site-footer > p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer > div {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px 22px;
  font-size: 14px;
  font-weight: 650;
}
.site-footer > div a:hover {
  color: var(--teal-dark);
}
.site-footer small {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #7d898e;
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    height: 74px;
  }
  .menu-button {
    display: flex;
  }
  .nav-links {
    position: absolute;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 28px;
    background: rgba(7, 21, 34, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links > a {
    padding: 14px 0;
  }
  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 10px;
    padding: 13px 18px;
  }
  .hero {
    min-height: 720px;
    height: auto;
    padding-top: 132px;
    padding-bottom: 100px;
  }
  .hero-content {
    width: min(680px, 73vw);
  }
  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 17, 28, 0.98),
        rgba(5, 17, 28, 0.65) 75%,
        rgba(5, 17, 28, 0.3)
      ),
      linear-gradient(0deg, rgba(5, 17, 28, 0.72), transparent 55%);
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 315px;
  }
  .first-aid,
  .contact {
    grid-template-columns: 1fr;
  }
  .first-aid {
    gap: 48px;
  }
  .contact {
    gap: 48px;
  }
  .contact-copy {
    max-width: 700px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
    border-top: 0;
  }
  .process-list li {
    padding: 25px 25px 0 0;
    border-top: 1px solid #cbd7d6;
  }
  .process-list li::before {
    top: -6px;
  }
  .process-list li::after {
    display: none;
  }
  .site-footer {
    grid-template-columns: 1fr 1.5fr;
  }
  .site-footer > div {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }
  html {
    scroll-padding-top: 74px;
  }
  .site-header {
    padding: 0 18px;
  }
  .brand {
    font-size: 22px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .hero {
    min-height: 760px;
    padding: 124px 22px 86px;
    align-items: flex-start;
  }
  .hero-art {
    background-position: 62% center;
    opacity: 0.8;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 17, 28, 0.9) 0%,
      rgba(5, 17, 28, 0.87) 42%,
      rgba(5, 17, 28, 0.93) 100%
    );
  }
  .hero-content {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 65px);
  }
  .hero-lead {
    font-size: 18px;
  }
  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-trust {
    display: grid;
    gap: 9px;
  }
  .scroll-cue {
    display: none;
  }
  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -26px;
    padding: 13px 20px;
  }
  .trust-strip > div {
    padding: 13px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-strip > div:last-child {
    border: 0;
  }
  .section {
    width: calc(100% - 36px);
    padding: 85px 0;
  }
  .section-heading h2,
  .first-aid h2,
  .contact h2 {
    font-size: clamp(37px, 11vw, 49px);
  }
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 340px;
    padding: 26px;
  }
  .first-aid,
  .contact {
    width: 100%;
    padding: 84px 18px;
  }
  .guide-result {
    min-height: 330px;
    border-radius: 22px;
  }
  .guide-tabs {
    display: grid;
  }
  .guide-tabs button {
    width: 100%;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .process-list li {
    padding-right: 0;
  }
  .faq {
    padding-top: 30px;
  }
  .faq summary {
    min-height: 76px;
    font-size: 18px;
  }
  .faq summary span {
    width: 30px;
    height: 30px;
    flex: none;
  }
  .contact-form {
    padding: 22px 18px;
    border-radius: 21px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .submit-button {
    width: 100%;
  }
  .privacy {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .site-footer {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }
  .site-footer > div {
    grid-column: auto;
  }
}

@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;
  }
}

/* Admin preview */
.admin-shell {
  min-height: 100vh;
  background: #eef3f2;
  color: var(--ink);
  display: grid;
  grid-template-columns: 250px 1fr;
  font-size: 15px;
}
.admin-centered {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(29, 198, 183, 0.15),
      transparent 35%
    ),
    var(--navy);
}
.admin-auth-card {
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 25px;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}
.admin-back {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-weight: 750;
}
.admin-kicker {
  margin: 0 0 7px;
  color: var(--teal-dark);
  font:
    800 11px/1.2 var(--font-display),
    Arial,
    sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.admin-auth-card h1,
.admin-main h1 {
  margin: 0;
  font:
    780 clamp(32px, 4vw, 45px) / 1.1 var(--font-display),
    Arial,
    sans-serif;
  letter-spacing: -0.04em;
}
.admin-auth-card > p:not(.admin-kicker) {
  color: var(--muted);
}
.admin-auth-card label,
.admin-fields label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  font-weight: 750;
}
.admin-auth-card input,
.admin-fields input,
.admin-fields textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cfdbd9;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  outline: 0;
}
.admin-auth-card input:focus,
.admin-fields input:focus,
.admin-fields textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(29, 198, 183, 0.13);
}
.admin-auth-card button,
.admin-main header button {
  width: 100%;
  margin-top: 23px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #05251f;
  font-weight: 850;
  cursor: pointer;
}
.admin-auth-card small {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 27px 24px;
  background: var(--navy);
  color: white;
  display: flex;
  flex-direction: column;
}
.admin-sidebar > div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 19px;
}
.admin-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.admin-sidebar nav {
  display: grid;
  gap: 5px;
  margin: 45px 0 auto;
}
.admin-sidebar nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 9px;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}
.admin-sidebar > a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.admin-main {
  width: min(960px, calc(100% - 50px));
  margin: 0 auto;
  padding: 55px 0 80px;
}
.admin-main > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.admin-main header button {
  width: auto;
  margin: 0;
  padding: 12px 19px;
}
.admin-panel {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 35px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid #dce5e3;
  border-radius: 17px;
  background: white;
  box-shadow: 0 10px 30px rgba(7, 21, 34, 0.035);
}
.admin-panel-heading {
  display: flex;
  gap: 15px;
}
.admin-panel-heading > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  background: #e4f7f3;
  color: var(--teal-dark);
  font:
    850 11px/1 var(--font-display),
    Arial,
    sans-serif;
}
.admin-panel-heading h2 {
  margin: 1px 0 4px;
  font-size: 18px;
}
.admin-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.admin-fields label:first-child {
  margin-top: 0;
}
.admin-fields textarea {
  resize: vertical;
}
.admin-color-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.admin-color-grid label {
  margin-top: 0;
}
.admin-color-grid input[type="color"] {
  height: 48px;
  padding: 5px;
}
.admin-upload {
  padding: 16px;
  border: 1px dashed #bccbc8;
  border-radius: 12px;
}
.admin-upload input {
  border: 0;
  padding: 0;
}
.admin-upload span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 450;
}
.admin-empty {
  min-height: 110px;
  display: grid;
  place-content: center;
  gap: 3px;
  text-align: center;
  color: var(--muted);
}
.admin-empty strong {
  color: var(--ink);
}
.admin-toast {
  position: fixed;
  z-index: 10;
  top: 24px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 800;
}

@media (max-width: 800px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    padding: 18px;
  }
  .admin-sidebar nav {
    display: flex;
    overflow-x: auto;
    margin: 20px 0;
  }
  .admin-main {
    width: calc(100% - 28px);
    padding-top: 30px;
  }
  .admin-main > header {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-main header button {
    width: 100%;
  }
  .admin-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 18px;
  }
  .admin-color-grid {
    grid-template-columns: 1fr;
  }
}
