@import url("../fonts/fonts.css");

/* ==========================================================================
   DAPPER FACILITIES MAINTENANCE
   Design system v3 - "Bright & Professional"
   Light, photography led, trust blue. Built for commercial cleaning buyers.
   No frameworks, no external requests, no build step.
   ========================================================================== */

/* --------------------------------------------------------------- 1. TOKENS */
:root {
  /* Brand */
  --navy: #0c2740;
  --navy-800: #0a2036;
  --navy-700: #123c5e;
  --navy-600: #1b4f78;
  --navy-500: #24628f;

  --blue: #1479d1;
  --blue-600: #0f63b0;
  --blue-050: #eaf4fd;

  --green: #17a67c;
  --green-050: #e7f7f1;

  --amber: #f5a524;

  /* Neutrals */
  --white: #ffffff;
  --grey-050: #f6f9fb;
  --grey-100: #eef3f7;
  --grey-200: #e0e8ee;
  --line: #dde5ec;

  /* Text */
  --text: #12263a;
  --text-muted: #55697b;
  --text-inv: #eef4f9;
  --text-inv-muted: #a9bccd;

  /* Geometry */
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
  --wrap: 1200px;
  --gut: clamp(20px, 4vw, 40px);

  /* Type */
  --f-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.7, 0.3, 1);

  /* Elevation - soft, not harsh */
  --sh-sm: 0 1px 2px rgba(12, 39, 64, 0.05), 0 2px 6px rgba(12, 39, 64, 0.04);
  --sh: 0 2px 6px rgba(12, 39, 64, 0.05), 0 10px 24px rgba(12, 39, 64, 0.07);
  --sh-lg: 0 4px 12px rgba(12, 39, 64, 0.06), 0 24px 56px rgba(12, 39, 64, 0.12);
}

/* ---------------------------------------------------------------- 2. RESET */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 0.55em;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-underline-offset: 3px; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.15em; }
button, input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--blue-050); color: var(--navy); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 20px; font-weight: 600;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------- 3. LAYOUT */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 840px; }

.section { padding-block: clamp(60px, 8vw, 110px); }
.section--tight { padding-block: clamp(44px, 5.5vw, 76px); }

.bg-soft { background: var(--grey-050); }
.bg-band { background: var(--grey-100); }

.navy {
  background: var(--navy);
  color: var(--text-inv);
}
.navy h1, .navy h2, .navy h3, .navy h4 { color: #fff; }
.navy p { color: var(--text-inv-muted); }

/* ----------------------------------------------------------- 4. TYPOGRAPHY */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 14px;
}
.navy .eyebrow { color: #6fb6f5; }

.h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
.h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 600; }

.lede {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 62ch;
}
.navy .lede { color: var(--text-inv-muted); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4.5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ------------------------------------------------------------- 5. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.9688rem; font-weight: 600;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(20, 121, 209, 0.28); }
.btn--primary:hover { background: var(--blue-600); box-shadow: 0 10px 26px rgba(20, 121, 209, 0.34); }

.btn--green { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(23, 166, 124, 0.28); }
.btn--green:hover { background: #128a67; }

.btn--outline { border-color: var(--line); background: #fff; color: var(--navy); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue-600); background: var(--blue-050); }

.navy .btn--outline { background: transparent; border-color: rgba(255,255,255,0.28); color: #fff; }
.navy .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--grey-100); }

.btn--lg { padding: 17px 34px; font-size: 1.03rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; text-decoration: none; color: var(--blue-600);
  transition: gap 0.25s var(--ease);
}
.tlink:hover { gap: 12px; text-decoration: underline; }
.tlink svg { width: 15px; height: 15px; }

/* Pill that advertises the no-contact-details estimate */
.nocontact {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-050);
  color: #0d6b50;
  border: 1px solid rgba(23, 166, 124, 0.3);
  border-radius: var(--r-pill);
  padding: 8px 16px 8px 12px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.3s var(--ease);
}
.nocontact:hover { background: #d8f2e8; }
.nocontact svg { width: 16px; height: 16px; flex: none; stroke: var(--green); stroke-width: 2.2; fill: none; }
.navy .nocontact { background: rgba(23,166,124,.16); color: #7fe3c1; border-color: rgba(23,166,124,.4); }

/* -------------------------------------------------------------- 6. HEADER */
.topbar {
  background: var(--navy);
  color: var(--text-inv-muted);
  font-size: 0.8125rem;
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 42px; padding-block: 7px; flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a:hover { color: #7fc4ff; }
.topbar__set { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__dot { color: var(--green); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(12, 39, 64, 0.09); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 78px; }
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { width: 176px; height: auto; }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: 10px 15px; border-radius: var(--r-sm);
  color: var(--navy); font-size: 0.9688rem; font-weight: 550; text-decoration: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__links a:hover { background: var(--grey-100); color: var(--blue-600); }
.nav__links a[aria-current="page"] { color: var(--blue-600); background: var(--blue-050); }

.nav__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__phone {
  display: flex; flex-direction: column; line-height: 1.2; text-decoration: none;
  color: var(--navy); font-weight: 700; font-size: 1.05rem; font-family: var(--f-display);
}
.nav__phone span { font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--f-body); }

.burger {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: #fff; cursor: pointer; padding: 0; place-items: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer { display: none; background: #fff; border-bottom: 1px solid var(--line); }
.drawer.is-open { display: block; }
.drawer ul { list-style: none; margin: 0; padding: 8px 0 16px; }
.drawer a {
  display: block; padding: 14px var(--gut); color: var(--navy); text-decoration: none;
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 600;
  border-bottom: 1px solid var(--grey-100);
}
.drawer a[aria-current="page"] { color: var(--blue-600); }
.drawer__foot { padding: 18px var(--gut) 26px; display: grid; gap: 10px; }

@media (max-width: 1060px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: grid; }
}
@media (max-width: 560px) {
  .brand img { width: 142px; }
  .nav__cta .btn { padding: 12px 18px; font-size: 0.875rem; }
  .topbar__set--secondary { display: none; }
}

/* ---------------------------------------------------------------- 7. HERO */
.hero { padding-block: clamp(48px, 6vw, 88px); background: linear-gradient(180deg, var(--grey-050), #fff 70%); }
.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(36px, 4.5vw, 60px); align-items: center;
}
/* Sized so "Sydney commercial" holds one line at desktop widths. */
.hero h1 { font-size: clamp(2.05rem, 3.7vw, 2.95rem); margin-bottom: 20px; }
.hero .btn-row { margin-top: 30px; }
.hero__pill { margin-bottom: 22px; }
@media (max-width: 900px) { .hero__in { grid-template-columns: 1fr; } }

/* Inline trust points under the hero copy */
.hero__points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 11px; }
.hero__points li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9688rem; color: var(--text-muted); }
.hero__points svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }

/* ------------------------------------------------------- 8. PHOTO SLOTS */
/* Every photo on the site is a real <img>. Replace the file at the same path
   and the layout is unchanged. Ratios are enforced here. */
.photo {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--grey-100); box-shadow: var(--sh);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--3x2 { aspect-ratio: 3 / 2; }
.photo--4x3 { aspect-ratio: 4 / 3; }
.photo--16x10 { aspect-ratio: 16 / 10; }
.photo--1x1 { aspect-ratio: 1 / 1; }
.photo--tall { aspect-ratio: 4 / 5; }

/* A caption chip that can sit over a photo */
.photo__tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-radius: var(--r-pill);
  padding: 8px 15px; font-size: 0.8125rem; font-weight: 600;
  box-shadow: var(--sh-sm);
}

/* Floating stat card that overlaps the hero photo */
.hero__figure { position: relative; }
.floatcard {
  position: absolute; right: 18px; bottom: -26px;
  background: #fff; border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.floatcard svg { width: 38px; height: 38px; flex: none; }
.floatcard strong { display: block; font-family: var(--f-display); font-size: 1.02rem; color: var(--navy); line-height: 1.3; }
.floatcard span { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 900px) { .floatcard { right: 12px; bottom: -18px; } }
@media (max-width: 480px) { .floatcard { position: static; margin-top: 16px; max-width: none; } }

/* ---------------------------------------------------------- 9. TRUST BAR */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar__in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-block: 26px;
}
.trustbar__item { display: flex; align-items: center; gap: 13px; }
.trustbar__item svg { width: 26px; height: 26px; flex: none; stroke: var(--blue); stroke-width: 1.7; fill: none; }
.trustbar__item strong { display: block; font-size: 0.9375rem; font-weight: 650; color: var(--navy); line-height: 1.3; }
.trustbar__item span { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 860px) { .trustbar__in { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 440px) { .trustbar__in { grid-template-columns: 1fr; } }

/* ------------------------------------------------------ 10. SERVICE CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--grey-200); }
.card .photo { border-radius: 0; box-shadow: none; }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--blue-050); display: grid; place-items: center; margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--blue-600); stroke-width: 1.7; fill: none; }
.card h3 { margin-bottom: 9px; font-size: 1.1875rem; }
.card p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 16px; }
.card__more {
  margin-top: auto; font-weight: 600; font-size: 0.9375rem; color: var(--blue-600);
  display: inline-flex; align-items: center; gap: 8px;
}
.card__more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.card:hover .card__more svg { transform: translateX(4px); }

/* --------------------------------------------------- 11. INSTANT QUOTE BAND */
.quoteband {
  background: linear-gradient(120deg, var(--navy) 0%, #143f63 55%, #185a8a 100%);
  color: var(--text-inv);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px); align-items: center;
}
.quoteband h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.quoteband p { color: var(--text-inv-muted); margin: 0; }
.quoteband__pts { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.quoteband__pts li { display: flex; align-items: center; gap: 8px; font-size: 0.9375rem; color: #cfe4f5; }
.quoteband__pts svg { width: 17px; height: 17px; stroke: #6ee7bd; stroke-width: 2.4; fill: none; flex: none; }
@media (max-width: 800px) { .quoteband { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- 12. STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px 26px; }
.step__n {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- 13. CHECKLIST */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(34px, 5vw, 68px); align-items: center; }
.split--top { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.check { display: flex; gap: 13px; }
.check svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.check strong { display: block; font-family: var(--f-display); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.check span { font-size: 0.9063rem; color: var(--text-muted); line-height: 1.6; }
.navy .check span { color: var(--text-inv-muted); }
@media (max-width: 620px) { .checks { grid-template-columns: 1fr; } }

.ticklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.ticklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9688rem; line-height: 1.6; color: var(--text-muted); }
.ticklist li svg { width: 20px; height: 20px; flex: none; margin-top: 4px; }
.navy .ticklist li { color: var(--text-inv-muted); }

/* Reusable circular tick */
.tick { width: 22px; height: 22px; border-radius: 50%; background: var(--green-050); display: grid; place-items: center; flex: none; }
.tick svg { width: 12px; height: 12px; stroke: var(--green); stroke-width: 3; fill: none; }

/* ---------------------------------------------------------- 14. GUARANTEE */
.guarantee {
  background: var(--green-050);
  border: 1px solid rgba(23, 166, 124, 0.25);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px); align-items: center;
}
.guarantee__seal { width: 74px; height: 74px; flex: none; }
.guarantee h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); margin-bottom: 8px; }
.guarantee p { margin: 0; color: #35604f; font-size: 0.9688rem; }
@media (max-width: 860px) { .guarantee { grid-template-columns: 1fr; } }

/* -------------------------------------------------------- 15. TESTIMONIALS */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.qcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.qcard__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.qcard__stars svg { width: 17px; height: 17px; fill: var(--amber); }
.qcard blockquote { margin: 0 0 22px; font-size: 1.0313rem; line-height: 1.65; color: var(--text); }
.qcard figcaption { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.qcard__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; overflow: hidden;
  background: var(--blue-050); display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; color: var(--blue-600); font-size: 1rem;
}
.qcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.qcard__who strong { display: block; font-size: 0.9375rem; color: var(--navy); font-weight: 650; }
.qcard__who span { font-size: 0.8438rem; color: var(--text-muted); }

/* ---------------------------------------------------------- 16. CREDENTIALS */
.creds { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.cred {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 20px; text-align: center;
}
.cred svg { width: 32px; height: 32px; margin: 0 auto 12px; stroke: var(--blue); stroke-width: 1.6; fill: none; }
.cred strong { display: block; font-size: 0.9375rem; color: var(--navy); font-weight: 650; margin-bottom: 3px; }
.cred span { font-size: 0.8125rem; color: var(--text-muted); }

/* ------------------------------------------------------------- 17. SECTORS */
.sec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.sec {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 22px; text-decoration: none; color: inherit; display: block;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sec:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: var(--grey-200); }
.sec__ico { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--blue-050); display: grid; place-items: center; margin-bottom: 14px; }
.sec__ico svg { width: 22px; height: 22px; stroke: var(--blue-600); stroke-width: 1.7; fill: none; }
.sec strong { display: block; font-family: var(--f-display); font-size: 1.0313rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.sec span { font-size: 0.8438rem; color: var(--text-muted); line-height: 1.55; }

/* ------------------------------------------------------------- 18. CTA BAND */
.cta { background: var(--navy); color: var(--text-inv); text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.cta .lede { margin-inline: auto; }
.cta .btn-row { justify-content: center; margin-top: 30px; }

/* --------------------------------------------------------------- 19. FOOTER */
.site-footer { background: var(--navy); color: var(--text-inv-muted); }
.site-footer__main {
  display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 52px); padding-block: clamp(48px, 6vw, 72px);
}
.site-footer img { width: 178px; margin-bottom: 20px; }
.site-footer h4 { font-size: 0.9375rem; font-weight: 650; color: #fff; margin-bottom: 16px; font-family: var(--f-body); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--text-inv-muted); text-decoration: none; font-size: 0.9375rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer p { font-size: 0.9375rem; }
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 20px; display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between; font-size: 0.8438rem;
}
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; }
.social a:hover { background: var(--blue); border-color: var(--blue); }
.social svg { width: 17px; height: 17px; fill: currentColor; }
@media (max-width: 860px) { .site-footer__main { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .site-footer__main { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ 20. PAGE HEAD */
.pagehead { background: linear-gradient(180deg, var(--grey-050), #fff); padding-block: clamp(40px, 5vw, 68px); border-bottom: 1px solid var(--line); }
.pagehead h1 { margin-bottom: 16px; }
.crumbs { font-size: 0.8438rem; color: var(--text-muted); margin-bottom: 16px; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue-600); text-decoration: underline; }
.crumbs span { color: var(--navy); font-weight: 600; }

/* ------------------------------------------------------------- 21. ACCORDION */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: 0; padding: 24px 0;
  display: flex; align-items: center; gap: 18px; text-align: left; cursor: pointer;
  font-family: var(--f-display); font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600; color: var(--navy);
}
.acc__num {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--blue-050); color: var(--blue-600);
  display: grid; place-items: center;
  font-size: 0.8125rem; font-weight: 700; font-family: var(--f-body);
}
.acc__ttl { flex: 1; }
.acc__ico { width: 32px; height: 32px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; position: relative; transition: background 0.3s var(--ease), border-color 0.3s var(--ease); }
.acc__ico::before, .acc__ico::after { content: ""; position: absolute; background: var(--navy); transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.acc__ico::before { width: 12px; height: 2px; }
.acc__ico::after { width: 2px; height: 12px; }
.acc__btn[aria-expanded="true"] .acc__ico { background: var(--blue); border-color: var(--blue); }
.acc__btn[aria-expanded="true"] .acc__ico::before,
.acc__btn[aria-expanded="true"] .acc__ico::after { background: #fff; }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: scaleY(0); }
.acc__panel { display: block; height: 0; overflow: hidden; transition: height 0.4s var(--ease); }
.acc__body { padding: 0 0 30px 52px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 30px; }
.acc__body p { color: var(--text-muted); font-size: 0.9688rem; }
.acc__body h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); font-family: var(--f-body); font-weight: 700; margin-bottom: 14px; }
@media (max-width: 760px) { .acc__body { padding-left: 0; grid-template-columns: 1fr; gap: 20px; } }

/* ----------------------------------------------------------------- 22. FORM */
.formwrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .formwrap { grid-template-columns: 1fr; } }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field > label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.field .req { color: var(--blue-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: #fff; font-size: 0.9688rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-050);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form__note { font-size: 0.8438rem; color: var(--text-muted); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form__status { display: none; padding: 14px 16px; border-radius: var(--r-sm); font-size: 0.9375rem; border: 1px solid; }
.form__status.is-ok { display: block; background: var(--green-050); border-color: var(--green); color: #0d6b50; }
.form__status.is-err { display: block; background: #fdecec; border-color: #d64545; color: #a02c2c; }

.checkgroup { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.checkgroup__item {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: 0.9063rem; font-weight: 450; color: var(--text); cursor: pointer; line-height: 1.35;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.checkgroup__item:hover { border-color: var(--blue); background: var(--blue-050); }
.checkgroup__item input {
  appearance: none; -webkit-appearance: none; width: 19px; height: 19px; flex: none;
  border: 1.5px solid var(--grey-200); border-radius: 5px; background: #fff;
  display: grid; place-content: center; cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.checkgroup__item input::before {
  content: ""; width: 11px; height: 11px; transform: scale(0);
  transition: transform 0.15s var(--ease); box-shadow: inset 1em 1em #fff;
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 16%, 84% 0%, 38% 70%);
}
.checkgroup__item input:checked { background: var(--blue); border-color: var(--blue); }
.checkgroup__item input:checked::before { transform: scale(1); }

.contact-card { background: var(--navy); color: var(--text-inv); padding: clamp(26px, 3vw, 36px); border-radius: var(--r-lg); }
.contact-card h3 { color: #fff; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 15px; }
.contact-list svg { width: 21px; height: 21px; flex: none; stroke: #6fb6f5; stroke-width: 1.7; fill: none; margin-top: 3px; }
.contact-list .k { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-inv-muted); display: block; margin-bottom: 2px; }
.contact-list a, .contact-list .v { color: #fff; font-weight: 600; text-decoration: none; font-size: 1.0313rem; }
.contact-list a:hover { color: #7fc4ff; }

/* --------------------------------------------------------------- 23. PROSE */
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { display: grid; gap: 10px; padding-left: 0; list-style: none; }
.prose ul li { display: flex; gap: 12px; color: var(--text-muted); }
.prose ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: none; margin-top: 11px; }

.factbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; }
.fact__v { font-family: var(--f-display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.fact__k { font-size: 0.875rem; font-weight: 600; color: var(--blue-600); }

/* ---------------------------------------------------------- 24. SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.07s; }
[data-reveal][data-delay="2"] { transition-delay: 0.14s; }
[data-reveal][data-delay="3"] { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- 25. UTILITIES */
.u-center { text-align: center; }
.u-mt-s { margin-top: 16px; }
.u-mt { margin-top: 30px; }
.u-mt-l { margin-top: clamp(34px, 5vw, 60px); }
.u-max { max-width: 68ch; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* --------------------------------------------------------- 26. FILTER CHIPS */
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter {
  border: 1.5px solid var(--line); background: #fff; color: var(--navy);
  border-radius: var(--r-pill); padding: 9px 18px;
  font-size: 0.9063rem; font-weight: 600; cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.filter:hover { border-color: var(--blue); color: var(--blue-600); }
.filter.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.filters__count { font-size: 0.875rem; color: var(--text-muted); margin: 16px 0 0; }
.qcard[hidden] { display: none; }

/* Very small phones: the brand, quote button and burger together exceeded
   the 375px viewport and forced a horizontal scroll. */
@media (max-width: 420px) {
  .nav { gap: 10px; }
  .brand img { width: 116px; }
  .nav__cta { gap: 8px; }
  .nav__cta .btn { padding: 11px 15px; font-size: 0.8125rem; }
  .burger { width: 44px; height: 44px; }
}

/* Microcopy sitting under a primary call to action. */
.cta-note {
  margin: 16px 0 0;
  font-size: 0.875rem;
  color: var(--text-inv-muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-note::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background: var(--green);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat;
}
.hero .cta-note { color: var(--text-muted); justify-content: flex-start; }

/* ------------------------------------------------------- 27. LOGO STRIP */
.logostrip { border-block: 1px solid var(--line); background: #fff; }
.logostrip__in { padding-block: 30px; }
.logostrip__label {
  text-align: center; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 22px;
}
.logostrip__row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 28px 40px; align-items: center;
}
.logostrip__row img {
  max-height: 40px; width: auto; margin-inline: auto;
  filter: grayscale(1); opacity: 0.62;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.logostrip__row img:hover { filter: grayscale(0); opacity: 1; }

/* ------------------------------------------------------------- 28. FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq .acc__btn { gap: 16px; }
.faq .acc__body { padding-left: 0; grid-template-columns: 1fr; }
