/* ==========================================================================
   Adeel Cooling Center - stylesheet
   Mobile-first. Flexbox + Grid. No frameworks, no build step.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  --navy-900: #06192f;
  --navy-800: #0a2540;
  --navy-700: #103358;
  --blue-700: #08557f;
  --blue-600: #0a6da5;
  --blue-500: #128ed3;
  --blue-400: #3aa8e6;
  --blue-100: #e3f2fb;
  --blue-050: #f2f9fd;

  --wa: #25d366;
  --wa-dark: #1da851;

  --ink: #14202e;
  --ink-soft: #4a5b6d;
  --line: #dde5ec;
  --surface: #ffffff;
  --surface-alt: #f5f9fc;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(6, 25, 47, .06), 0 2px 6px rgba(6, 25, 47, .05);
  --shadow: 0 4px 12px rgba(6, 25, 47, .07), 0 12px 30px rgba(6, 25, 47, .07);
  --shadow-lg: 0 18px 50px rgba(6, 25, 47, .16);

  --header-h: 74px;
  --container: 1180px;

  --font: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; white-space: nowrap;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 2000;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 820px; }

.section { padding: 64px 0; }
.section--alt { background: var(--surface-alt); }
.section--dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #eaf2f8;
}
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: #b7cbdd; }

.section__head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section__title { font-size: clamp(1.6rem, 4.5vw, 2.3rem); color: var(--navy-800); }
.section__lead { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow--light { color: #7fd0ff; }

.note {
  margin-top: 20px;
  text-align: center;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px rgba(10, 109, 165, .32); }
.btn--primary:hover { background: var(--blue-700); }

.btn--wa { background: var(--wa); color: #06371c; box-shadow: 0 8px 20px rgba(37, 211, 102, .32); }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }

.btn--lg { padding: 15px 26px; min-height: 54px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; min-height: 38px; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

.ico { width: 19px; height: 19px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.btn--primary .ico, .btn--ghost .ico { fill: currentColor; stroke: none; }
.ico--solid { fill: currentColor; stroke: none; }

.link-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;          /* comfortable touch target on phones */
  background: none;
  border: 0;
  padding: 0;
  margin-top: 2px;
  color: var(--blue-600);
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  text-align: left;
}
.link-btn:hover { color: var(--navy-800); text-decoration: underline; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--navy-800); }
.brand:hover { text-decoration: none; }
.brand__logo {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.brand__text small { font-size: .72rem; color: var(--ink-soft); font-weight: 600; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px 20px 24px;
  transform: translateY(-130%);
  visibility: hidden;
  transition: transform .3s var(--ease), visibility .3s;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.nav.is-open { transform: translateY(0); visibility: visible; }

.nav__list { display: flex; flex-direction: column; }
.nav__list a {
  display: block;
  padding: 13px 4px;
  color: var(--navy-800);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.nav__list a:hover, .nav__list a.is-active { color: var(--blue-600); text-decoration: none; }
.nav__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.nav__cta .btn { width: 100%; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(6, 25, 47, .45);
  animation: fade .25s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 56px 0 64px;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 55%, #0d4f80 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 55% at 82% 8%, rgba(58, 168, 230, .45), transparent 70%),
    radial-gradient(45% 45% at 5% 92%, rgba(37, 211, 102, .18), transparent 70%);
}
.hero__inner { display: grid; gap: 32px; }

.hero h1 {
  font-size: clamp(1.9rem, 6.4vw, 3.1rem);
  margin-bottom: 16px;
  color: #fff;
  text-wrap: balance;
}
.hero__lead { font-size: 1.05rem; color: #cfe2f1; max-width: 58ch; }
.hero__lead strong { color: #fff; }

.pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero__actions .btn { flex: 1 1 220px; }

.hero__points { display: grid; gap: 10px; }
.hero__points li {
  position: relative;
  padding-left: 28px;
  color: #cfe2f1;
  font-size: .95rem;
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 16px; height: 9px;
  border-left: 2.5px solid var(--wa);
  border-bottom: 2.5px solid var(--wa);
  transform: rotate(-45deg);
}

/* Quick-book card */
.hero__card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-lg);
}
.hero__card-title { font-size: 1.25rem; color: var(--navy-800); }
.steps-mini { display: grid; gap: 10px; margin: 0 0 20px; }
.steps-mini li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--ink-soft);
}
.steps-mini span {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: .75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.field { display: block; margin-bottom: 14px; }
.field__label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.field__input {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
}
select.field__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5b6d' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.field__input:focus { border-color: var(--blue-500); background: #fff; }
.hero__card-note { margin-top: 12px; font-size: .82rem; color: var(--ink-soft); text-align: center; }

/* ---------- 7. Trust strip ---------- */
.trust { background: var(--navy-800); color: #fff; padding: 26px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 12px; text-align: center; }
.trust__item strong {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: #7fd0ff;
  line-height: 1.1;
}
.trust__item span { font-size: .82rem; color: #b7cbdd; }

/* ---------- 8. Service cards ---------- */
.cards { display: grid; gap: 20px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bfdcee; }
.card__icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-100);
  margin-bottom: 16px;
}
.card__icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { font-size: 1.17rem; color: var(--navy-800); }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card__list { margin: 14px 0 16px; display: grid; gap: 8px; }
.card__list li {
  position: relative;
  padding-left: 24px;
  font-size: .89rem;
  color: var(--ink-soft);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .42em;
  width: 13px; height: 7px;
  border-left: 2.2px solid var(--blue-500);
  border-bottom: 2.2px solid var(--blue-500);
  transform: rotate(-45deg);
}

/* ---------- 9. Price table ---------- */
.table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead { display: none; }
.price-table tbody tr {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.price-table tbody tr:last-child { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--blue-050); }
.price-table th, .price-table td { text-align: left; padding: 0; }
.price-table th[scope="row"] {
  grid-column: 1 / -1;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-800);
}
.price-table td[data-label="Unit type"] { font-size: .85rem; color: var(--ink-soft); }
.price-table td[data-label="Price"] { grid-column: 1; }
.price-table .price { font-weight: 800; color: var(--blue-600); font-size: 1rem; }
.cell-action { grid-column: 2; grid-row: 2 / span 2; align-self: center; }

/* ---------- 10. Why-us grid ---------- */
.why-grid { display: grid; gap: 18px; }
.why {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.why h3 { font-size: 1.05rem; color: var(--navy-800); }
.why p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ---------- 11. Process ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.steps li {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.steps__n {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #7fd0ff;
  line-height: 1;
  margin-bottom: 10px;
}
.steps h3 { font-size: 1.06rem; color: #fff; }
.steps p { font-size: .93rem; color: #b7cbdd; margin: 0; }

/* ---------- 12. Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas li {
  padding: 9px 16px;
  background: var(--blue-050);
  border: 1px solid #cfe6f5;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy-700);
}

/* ---------- 13. Quotes ---------- */
.quotes { display: grid; gap: 18px; }
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0 0 14px;
  font-size: .96rem;
  color: var(--ink);
  quotes: none;
}
.quote blockquote::before {
  content: "\201C";
  display: block;
  font-size: 2.6rem;
  line-height: .6;
  color: var(--blue-400);
  margin-bottom: 8px;
}
.quote figcaption { font-weight: 800; color: var(--navy-800); font-size: .92rem; }
.quote figcaption span { display: block; font-weight: 600; font-size: .8rem; color: var(--ink-soft); }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq__h { margin: 0; font-size: 1rem; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-800);
  cursor: pointer;
}
.faq__q:hover { color: var(--blue-600); }
.faq__chev {
  flex: none;
  width: 11px; height: 11px;
  border-right: 2.4px solid currentColor;
  border-bottom: 2.4px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__a { padding: 0 20px 20px; }
.faq__a p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- 15. CTA band ---------- */
.cta {
  background: linear-gradient(140deg, var(--blue-700), var(--navy-800));
  color: #fff;
  padding: 56px 0;
}
.cta__inner { display: grid; gap: 28px; }
.cta h2 { font-size: clamp(1.5rem, 4.6vw, 2.1rem); color: #fff; }
.cta p { color: #e2eff8; }
.contact-list { display: grid; gap: 14px; margin: 22px 0 0; }
.contact-list dt { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #b8d8ee; font-weight: 800; }
.contact-list dd { margin: 2px 0 0; font-size: 1.05rem; font-weight: 700; color: #fff; }
.contact-list dd a { color: #fff; }
.cta__actions { display: grid; gap: 12px; align-content: start; }
.cta__small { font-size: .82rem; color: #d4e6f3; text-align: center; margin: 4px 0 0; }

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9c2d6; padding: 48px 0 22px; font-size: .92rem; }
.footer__grid { display: grid; gap: 30px; }
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__brand img { width: 52px; height: 52px; border-radius: 10px; background: #fff; padding: 3px; flex: none; }
.footer__brand strong { display: block; color: #fff; font-size: 1.02rem; margin-bottom: 6px; }
.footer__brand p { font-size: .88rem; margin: 0; }
.footer__col h2 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 9px; }
.footer__col a, .footer__col .link-btn { color: #a9c2d6; font-size: .9rem; font-weight: 500; margin: 0; min-height: 0; }
.footer__col a:hover, .footer__col .link-btn:hover { color: #fff; }
.footer__bottom {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  text-align: center;
}
.footer__bottom p { margin: 0; }

/* ---------- 17. Floating action buttons ---------- */
.fab-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab {
  width: 54px; height: 54px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(6, 25, 47, .3);
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 27px; height: 27px; }
.fab--wa { background: var(--wa); color: #fff; }
.fab--wa svg { fill: currentColor; stroke: none; }
.fab--top { background: #fff; color: var(--navy-800); border: 1px solid var(--line); }
.fab--top svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.fab[hidden] { display: none; }

/* ---------- 18. Scroll reveal ----------
   Only hide content when JS is confirmed running (html.js is set by main.js).
   Without JS - or if IntersectionObserver never fires - everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   19. Breakpoints
   ========================================================================== */

/* --- >= 560px --- */
@media (min-width: 35em) {
  .hero__points { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { grid-template-columns: 1fr auto; text-align: left; }
  .footer__bottom p:last-child { text-align: right; }
}

/* --- >= 768px : tablet --- */
@media (min-width: 48em) {
  .section { padding: 84px 0; }
  .container { padding-inline: 28px; }

  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .cta__inner { grid-template-columns: 1.4fr 1fr; align-items: center; gap: 40px; }
  .contact-list { grid-template-columns: repeat(3, auto); }

  /* Table becomes a real table again */
  .price-table thead { display: table-header-group; }
  .price-table tbody tr { display: table-row; padding: 0; }
  .price-table thead th {
    background: var(--navy-800);
    color: #fff;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 18px;
  }
  .price-table tbody th, .price-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
  }
  .price-table tbody tr:last-child th,
  .price-table tbody tr:last-child td { border-bottom: 0; }
  .cell-action { text-align: right; }
}

/* --- >= 992px : desktop --- */
@media (min-width: 62em) {
  .hero { padding: 84px 0 96px; }
  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 52px; }
  .hero__actions .btn { flex: 0 1 auto; }
  .hero__card { padding: 30px 28px; }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }

  .fab-stack { right: 24px; bottom: 24px; }

  /* Desktop navigation - drawer styles are reset */
  .nav-toggle { display: none; }
  .nav-backdrop { display: none !important; }
  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 26px;
    transform: none;
    visibility: visible;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
  }
  .nav__list { flex-direction: row; gap: 22px; }
  .nav__list a {
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    font-size: .95rem;
  }
  .nav__list a.is-active { border-bottom-color: var(--blue-500); }
  .nav__cta { flex-direction: row; margin: 0; }
  .nav__cta .btn { width: auto; }
}

/* ---------- 20. Preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .fab-stack, .hero__card, .nav, .cta__actions { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .section--dark, .cta, .trust, .site-footer { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
