/* ============================================================
   Bluwasp Security Systems — editorial refresh
   Palette: navy #0E2A47 · blue #2F6FE0 · amber #F5A623
   Type: Montserrat headings · Inter body
   Style-only rewrite — HTML, copy, meta and JSON-LD untouched.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --navy:   #0E2A47;
  --navy-2: #123a63;
  --navy-3: #08192b;
  --blue:   #2F6FE0;
  --blue-2: #1e58c2;
  --amber:  #F5A623;
  --amber-2:#e0951a;

  /* Neutrals — editorial, warm-cool balance */
  --ink:    #16181A;
  --slate:  #4a5563;
  --mute:   #7a8492;
  --cloud:  #F4F6FA;
  --ivory:  #FAFBFD;
  --line:   #E4E9F2;
  --hair:   #EEF1F6;
  --white:  #FFFFFF;

  /* System */
  --font-head: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-xs: 0 1px 2px rgba(14,42,71,.05);
  --shadow: 0 8px 24px rgba(14,42,71,.07), 0 2px 6px rgba(14,42,71,.04);
  --shadow-lg: 0 24px 60px rgba(14,42,71,.12), 0 4px 12px rgba(14,42,71,.05);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--amber); color: var(--navy); }

h1,h2,h3,h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
h4 { font-size: 1rem; letter-spacing: .01em; }
p  { margin: 0 0 1rem; text-wrap: pretty; }
strong { font-weight: 600; color: var(--navy); }

a { color: var(--blue); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--blue-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--cloud { background: var(--cloud); }
.center { text-align: center; margin-inline: auto; }

/* ---------- eyebrow (all-caps tag) ---------- */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 .9rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: .8;
}
.center .eyebrow { justify-content: center; }

/* ---------- lede (intro paragraph) ---------- */
.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.24rem);
  color: var(--slate);
  max-width: 62ch;
  line-height: 1.6;
  font-weight: 400;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(245,166,35,.28), inset 0 0 0 1px rgba(14,42,71,.04);
}
.btn--primary:hover {
  background: var(--amber-2);
  box-shadow: 0 12px 28px rgba(245,166,35,.38);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

.btn--nav {
  background: var(--navy);
  color: var(--white);
  padding: .68rem 1.15rem;
  font-size: .88rem;
  box-shadow: 0 4px 12px rgba(14,42,71,.18);
}
.btn--nav:hover { background: var(--blue); color: var(--white); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

/* Brand — text + inline SVG wasp mark via CSS ::before */
.brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  line-height: 1;
}
.brand::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='15' fill='none' stroke='%230E2A47' stroke-width='2'/><circle cx='16' cy='16' r='15' fill='none' stroke='%23F5A623' stroke-width='2' stroke-dasharray='2 2.4' opacity='.55'/><path d='M11 9c1 1.4 2 2.2 5 2.2S20 10.4 21 9' fill='none' stroke='%230E2A47' stroke-width='1.6' stroke-linecap='round'/><ellipse cx='16' cy='17' rx='2.8' ry='6' fill='%230E2A47'/><path d='M16 12.5v9' stroke='%23F5A623' stroke-width='.9' opacity='.85'/><ellipse cx='9.5' cy='16.5' rx='4' ry='2.4' fill='%230E2A47' opacity='.85' transform='rotate(-18 9.5 16.5)'/><ellipse cx='22.5' cy='16.5' rx='4' ry='2.4' fill='%230E2A47' opacity='.85' transform='rotate(18 22.5 16.5)'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.brand span { color: var(--amber); }

/* Nav */
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a:not(.btn) {
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: -.005em;
  position: relative;
  padding: .35rem 0;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
  border-radius: 2px;
}
.nav a:not(.btn):hover { color: var(--navy); text-decoration: none; }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--hair); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(47,111,224,.35), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(245,166,35,.10), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: var(--white);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6.5rem);
  isolation: isolate;
}
/* Subtle honeycomb hex motif — barely-there "wasp" nod */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><g fill='none' stroke='%23F5A623' stroke-width='1' opacity='0.11'><path d='M14 2 L42 2 L56 24 L42 46 L14 46 L0 24 Z'/><path d='M42 46 L56 24'/></g></svg>");
  background-size: 112px 128px;
  opacity: .55;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 75%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,.4), transparent);
}
.hero h1 { color: var(--white); max-width: 20ch; }
.hero > .wrap > p {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 62ch;
  line-height: 1.65;
  margin-top: 1rem;
}
.hero .eyebrow { color: var(--amber) !important; }
.hero .eyebrow::before { background: var(--amber); opacity: .9; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
  align-items: center;
}

/* ---------- trust bar ---------- */
.trustbar {
  background: var(--navy-3);
  color: rgba(255,255,255,.9);
  border-top: 1px solid rgba(255,255,255,.06);
}
.trustbar ul {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2.25rem;
  list-style: none;
  margin: 0;
  padding: 1.1rem 0;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .01em;
}
.trustbar li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.trustbar li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23F5A623' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3.2 3.2L13 4.8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.card::before {
  content: "";
  position: absolute;
  left: 1.85rem; top: 0;
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 3px 3px;
  transition: width .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}
.card:hover::before { width: 56px; }
.card h3 {
  color: var(--navy);
  margin-top: .5rem;
  font-size: 1.22rem;
}
.card p { color: var(--slate); }
.card .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue);
  font-size: .95rem;
  letter-spacing: .01em;
  margin-top: auto;
  padding-top: .5rem;
}
.card a.more {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  margin-top: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.card a.more:hover { color: var(--blue); text-decoration: none; gap: .6rem; }

/* ---------- feature list ---------- */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.features li {
  padding-left: 2rem;
  position: relative;
  color: inherit;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0; top: .4em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230E2A47' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l3 3 6-6.5'/></svg>") center/12px no-repeat,
    var(--amber);
}

/* Dark section variant */
[style*="background:var(--navy)"] .features li::before,
[style*="background:var(--navy)"] .eyebrow::before { }
[style*="background:var(--navy)"] .features li { color: rgba(255,255,255,.9); }
[style*="background:var(--navy)"] strong { color: #fff; }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.stats > div {
  padding: 1.5rem .75rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.stats > div:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.07);
}
.stats .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .35rem;
}
.stats .label {
  color: rgba(255,255,255,.75);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---------- testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 2rem 1.85rem 1.75rem;
  box-shadow: var(--shadow-xs);
  position: relative;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.65;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -.15em;
  left: 1.25rem;
  font-family: 'Georgia', serif;
  font-size: 5rem;
  color: var(--amber);
  opacity: .35;
  line-height: 1;
  font-weight: 700;
}
.quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.quote cite {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hair);
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: .92rem;
  letter-spacing: .01em;
}
.quote cite::before {
  content: "— ";
  color: var(--amber);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
  margin-bottom: .7rem;
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details:hover { border-color: var(--line); }
.faq details[open] {
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.faq summary {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
  padding-right: .25rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230E2A47' stroke-width='2' stroke-linecap='round'><path d='M3 5l3 3 3-3'/></svg>") center/10px no-repeat;
  transition: transform .25s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(180deg);
  border-color: var(--amber);
  background-color: rgba(245,166,35,.1);
}
.faq details[open] summary { margin-bottom: .75rem; color: var(--navy); }
.faq details p {
  color: var(--slate);
  margin: 0;
  padding-top: .25rem;
  border-top: 1px dashed var(--hair);
  padding-top: .85rem;
}

/* ---------- CTA band ---------- */
.ctaband {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(245,166,35,.15), transparent 60%),
    linear-gradient(160deg, var(--blue) 0%, var(--navy) 70%);
  color: var(--white);
  text-align: center;
  isolation: isolate;
}
.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><g fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.09'><path d='M14 2 L42 2 L56 24 L42 46 L14 46 L0 24 Z'/></g></svg>");
  background-size: 112px 128px;
  z-index: -1;
  mask-image: linear-gradient(180deg, transparent, black 40%, black 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 40%, black 60%, transparent);
}
.ctaband h2 { color: var(--white); max-width: 22ch; margin-inline: auto; }
.ctaband p { color: rgba(255,255,255,.88); max-width: 55ch; margin-inline: auto; font-size: 1.08rem; }
.ctaband a[href^="tel:"] { color: var(--amber) !important; font-weight: 700; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-3);
  color: rgba(255,255,255,.72);
  padding: 4rem 0 1.5rem;
  font-size: .94rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--amber), var(--blue));
  opacity: .8;
}
.site-footer a { color: rgba(255,255,255,.78); transition: color .18s var(--ease); }
.site-footer a:hover { color: var(--amber); text-decoration: none; }
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer .brand { color: var(--white); font-size: 1.35rem; }
.site-footer .brand span { color: var(--amber); }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .01em;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.35), 0 4px 8px rgba(0,0,0,.15);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(.85); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wa-float:hover { transform: scale(1.06); text-decoration: none; color: #fff; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- contact page overrides ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; }
.contact-info h2, .contact-grid h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info ul { padding: 0; margin: 0 0 1.25rem; }
.contact-info li {
  list-style: none;
  margin: 0;
  padding: .85rem 0;
  border-bottom: 1px solid var(--hair);
  color: var(--slate);
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li strong {
  display: inline-block;
  min-width: 130px;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  font-size: .88rem;
  letter-spacing: .01em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--mute); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47,111,224,.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--mute); }
.map {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-xs);
}
#form-status { margin-top: 1rem; font-weight: 600; }

/* Style the contact form container as an editorial card */
.contact-grid > .reveal:last-child {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .quotes { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a:not(.btn) { padding: .95rem 0; border-bottom: 1px solid var(--hair); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn--nav { margin-top: .75rem; justify-content: center; }
  .nav-toggle { display: block; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .quotes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .stats > div { padding: 1.1rem .5rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .trustbar ul { gap: .5rem 1.25rem; font-size: .85rem; }
  .btn { padding: .85rem 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .wa-float:hover, .quote:hover, .stats > div:hover { transform: none; }
  .wa-float::before { animation: none; }
}
