/* ============================================================
   EverSafe Fire Protection — Design System
   Brand: Deep Blue #024479 · Fire Red #c30a2b · Flame Orange #d65119
   Type:  Montserrat (per Brand Playbook)
   ============================================================ */

:root {
  /* Brand core */
  --blue: #024479;
  --blue-600: #023a63;
  --blue-500: #0a5a97;
  --red: #c30a2b;
  --orange: #d65119;
  --amber: #f5a623;

  /* Navy scale (dark surfaces) */
  --navy-900: #011c30;
  --navy-800: #012a45;
  --navy-700: #023556;

  /* Neutrals */
  --ink: #0e1b26;
  --slate: #45586a;
  --slate-light: #6b6b6e;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --border: #e2e9f0;
  --border-strong: #cfdae4;

  /* Gradients */
  --grad-flame: linear-gradient(135deg, #d65119 0%, #c30a2b 100%);
  --grad-blue: linear-gradient(135deg, #0a5a97 0%, #024479 60%, #012a45 100%);

  /* Type */
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / radius */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(2, 30, 55, .06), 0 2px 8px rgba(2, 30, 55, .05);
  --shadow-md: 0 8px 24px rgba(2, 30, 55, .09);
  --shadow-lg: 0 24px 60px rgba(2, 30, 55, .16);
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.22rem; }
p { color: var(--slate); }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--amber); }
.accent-text {
  background: var(--grad-flame);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section-sub { font-size: 1.1rem; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .98rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(2, 68, 121, .28); }
.btn-primary:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(2, 68, 121, .34); }
.btn-flame { background: var(--grad-flame); color: #fff; box-shadow: 0 8px 22px rgba(195, 10, 43, .3); }
.btn-flame:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(195, 10, 43, .38); }
.btn-ghost { color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 248, 251, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); background: rgba(255, 255, 255, .9); }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: auto; height: 46px; }
.brand-lockup { display: flex; flex-direction: column; justify-content: center; }
.brand-word { font-weight: 800; font-size: 1.5rem; line-height: 1; letter-spacing: -0.02em; color: var(--blue); }
.brand-word span { color: var(--red); }
.brand-tag { display: flex; align-items: center; gap: 7px; margin-top: 5px; font-size: .6rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--slate-light); white-space: nowrap; }
.brand-tag .dash { width: 14px; height: 1.5px; background: currentColor; opacity: .7; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .btn-primary { white-space: nowrap; }
.lbl-compact { display: none; }
.phone-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .93rem; color: var(--ink); }
.phone-ico { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(195, 10, 43, .09); flex: none; transition: background .2s var(--ease), transform .2s var(--ease); }
.phone-ico svg { width: 16px; height: 16px; fill: var(--red); }
.phone-link:hover { color: var(--red); }
.phone-link:hover .phone-ico { background: rgba(195, 10, 43, .16); transform: translateY(-1px); }

.nav-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown menu ("drop tap") */
.menu-panel {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 120;
  width: min(260px, calc(100vw - 32px));
  display: flex; flex-direction: column; gap: 2px; padding: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transform-origin: top right;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
}
.menu-panel.open { opacity: 1; visibility: visible; transform: none; }
.menu-panel a { padding: 12px 14px; border-radius: 10px; font-weight: 600; font-size: .98rem; color: var(--ink); transition: background .18s var(--ease), color .18s var(--ease); }
.menu-panel a:hover, .menu-panel a:focus-visible { background: var(--surface-2); color: var(--blue); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-blue); color: #fff; overflow: hidden; padding: clamp(70px, 10vw, 120px) 0 clamp(80px, 10vw, 130px); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(214, 81, 25, .22), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(195, 10, 43, .16), transparent 40%);
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; display: grid; place-items: center; opacity: .9; pointer-events: none; }
.hero-rings { width: min(760px, 120%); height: auto; }
.hero-rings circle { transform-origin: center; }
.hero-nodes circle { animation: nodePulse 3.4s var(--ease) infinite; }
.hero-nodes circle:nth-child(2n) { animation-delay: .6s; }
.hero-nodes circle:nth-child(3n) { animation-delay: 1.2s; }
@keyframes nodePulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-copy h1 { color: #fff; margin-bottom: 22px; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(255, 255, 255, .82); max-width: 560px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; }
.hero-badges li { position: relative; padding-left: 22px; font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .8); }
.hero-badges li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--grad-flame);
  box-shadow: 0 0 0 3px rgba(214, 81, 25, .2);
}

/* Hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero-shield-card {
  position: relative; z-index: 2; width: min(320px, 78%); background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg);
  padding: 34px 40px 30px; backdrop-filter: blur(6px); text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
  container-type: inline-size;
}
.hero-shield { width: clamp(150px, 20vw, 190px); height: auto; margin: 0 auto 14px; transform-origin: 50% 86%; will-change: transform, filter; animation: heroFlame 2.8s ease-in-out infinite; }
@keyframes heroFlame {
  0%, 100% { transform: scale(1, 1); filter: drop-shadow(0 6px 16px rgba(195, 10, 43, .22)); }
  50% { transform: scale(1.012, 1.035); filter: drop-shadow(0 10px 28px rgba(245, 140, 25, .5)) brightness(1.06); }
}
.hero-shield-caption strong { display: block; color: #fff; font-size: 1.02rem; }
.hero-shield-caption { text-align: center; }
.hero-shield-caption span { display: block; font-size: clamp(7.5px, 3.9cqw, 12px); letter-spacing: .03em; text-transform: uppercase; color: var(--amber); white-space: nowrap; }

.floaty {
  position: absolute; z-index: 3; background: #fff; color: var(--ink);
  font-size: .82rem; font-weight: 600; padding: 11px 15px; border-radius: 12px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 9px;
  animation: floatY 5s ease-in-out infinite;
}
.floaty-1 { top: 2%; left: -3%; }
.floaty-2 { bottom: -4%; right: -3%; animation-delay: 1.4s; }
.code-chip { background: var(--surface-2); color: var(--blue); font-weight: 700; font-size: .7rem; letter-spacing: .04em; padding: 4px 8px; border-radius: 6px; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--border); }
.trustbar-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: clamp(28px, 4vw, 44px) 26px; text-align: center; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-num { display: block; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-label { display: block; margin-top: 12px; font-size: .88rem; color: var(--slate); max-width: 220px; margin-inline: auto; }

/* ---------- Services ---------- */
.services { background: var(--bg); position: relative; overflow: hidden; }
.services > .container { position: relative; z-index: 1; }
.cursor-glow {
  position: absolute; top: 0; left: 0; z-index: 0;
  width: 480px; height: 480px; margin: -240px 0 0 -240px; border-radius: 50%;
  pointer-events: none; opacity: 0; transition: opacity .8s ease;
  will-change: transform, opacity; mix-blend-mode: multiply;
  filter: blur(40px);
  background: radial-gradient(circle at 50% 46%,
    rgba(255, 224, 175, .34) 0%,
    rgba(245, 155, 80, .17) 38%,
    rgba(214, 81, 25, .07) 60%,
    transparent 78%);
}
.cursor-glow.on { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px 32px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-flame);
}
.service-icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(2, 68, 121, .1), rgba(2, 68, 121, .04));
  margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-code {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); background: rgba(195, 10, 43, .07);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .95rem; line-height: 1.65; }

.services-cta { text-align: center; margin-top: 40px; font-size: 1.05rem; color: var(--slate); }
.services-cta a { color: var(--red); font-weight: 700; border-bottom: 2px solid rgba(195, 10, 43, .25); padding-bottom: 2px; transition: border-color .2s var(--ease); }
.services-cta a:hover { border-bottom-color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-blue); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 30%, rgba(214, 81, 25, .22), transparent 45%); pointer-events: none; }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: clamp(44px, 6vw, 64px); padding-bottom: clamp(44px, 6vw, 64px); }
.cta-band-copy h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 8px; }
.cta-band-copy p { color: rgba(255, 255, 255, .8); max-width: 520px; }
.cta-band .btn { flex: none; }
@media (max-width: 720px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band .btn { width: 100%; }
}

/* ---------- Why ---------- */
.why { background: var(--surface); }
.why-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.why-head { position: sticky; top: 100px; }
.why-head .section-sub { margin-top: 14px; }
.values-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.values-row span {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); border: 1px solid var(--border-strong); padding: 8px 16px; border-radius: 999px;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-blue); margin-bottom: 18px; }
.why-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { margin-bottom: 8px; font-size: 1.12rem; }
.why-card p { font-size: .92rem; }

/* ---------- Process ---------- */
.process { background: var(--bg); }
.process-track { position: relative; }
.process-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-list::before {
  content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--border-strong), var(--border-strong));
}
.process-step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.step-num {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--blue); color: var(--blue);
  font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; position: relative; z-index: 2;
}
.process-step:last-child .step-num { border-color: var(--red); color: var(--red); }
.process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { font-size: .9rem; }

/* Continuous flow: a light travels the connector line, numbers pulse in sequence */
.process-flow { position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; z-index: 1; pointer-events: none; }
.process-flow::before {
  content: ""; position: absolute; top: 50%; left: 0; width: 80px; height: 4px; margin-top: -2px; border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--orange) 45%, var(--red) 75%, transparent);
  box-shadow: 0 0 12px rgba(214, 81, 25, .55);
  animation: procFlow 4.4s linear infinite;
}
@keyframes procFlow {
  0%   { left: -4%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.step-num { animation: stepPulse 4.4s ease-in-out infinite; }
.process-step:nth-child(1) .step-num { animation-delay: 0s; }
.process-step:nth-child(2) .step-num { animation-delay: 1.1s; }
.process-step:nth-child(3) .step-num { animation-delay: 2.2s; }
.process-step:nth-child(4) .step-num { animation-delay: 3.3s; }
@keyframes stepPulse {
  0%, 14%, 100% { box-shadow: 0 0 0 0 rgba(214, 81, 25, 0); transform: scale(1); }
  6%  { box-shadow: 0 0 20px 3px rgba(214, 81, 25, .5); transform: scale(1.09); }
}

/* ---------- Clients ---------- */
.clients { background: var(--surface); }
.clients-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.clients-copy .section-sub { margin: 14px 0 30px; }
.clients-list { list-style: none; padding: 0; display: grid; gap: 2px; }
.clients-list li {
  display: flex; align-items: center; gap: 16px; padding: 16px 2px;
  border-bottom: 1px solid var(--border);
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.clients-list li:last-child { border-bottom: none; }
.tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-flame); position: relative; }
.tick::after { content: ""; position: absolute; left: 9px; top: 6px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Contact ---------- */
.contact { background: var(--grad-blue); color: #fff; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(214, 81, 25, .2), transparent 45%); pointer-events: none; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.contact-copy h2 { color: #fff; margin-bottom: 16px; }
.contact-copy > p { color: rgba(255, 255, 255, .82); font-size: 1.08rem; max-width: 480px; }
.contact-methods { display: grid; gap: 12px; margin-top: 30px; }
.contact-method { display: flex; align-items: center; gap: 15px; color: #fff; font-weight: 600; }
.contact-method svg { width: 22px; height: 22px; fill: none; stroke: var(--amber); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.contact-method svg.ico-linkedin { fill: var(--amber); stroke: none; }
.contact-method span { display: flex; flex-direction: column; line-height: 1.3; }
.contact-method small { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.contact-method.static { cursor: default; }
a.contact-method:hover span { color: var(--amber); }

.contact-form { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field .optional { color: var(--slate-light); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 13px 15px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(2, 68, 121, .1); }
.field textarea { resize: vertical; min-height: 96px; }
.field input:user-invalid { border-color: var(--red); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.btn:disabled { opacity: .7; cursor: progress; }
.form-note { margin-top: 14px; font-size: .88rem; text-align: center; min-height: 1.2em; }
.form-note.error { color: var(--red); }
.form-note.success { color: #1a7f4b; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-top: clamp(56px, 7vw, 84px); padding-bottom: 44px; }
.brand-footer .brand-word { color: #fff; }
.brand-footer .brand-word span { color: var(--orange); }
.brand-footer .brand-tag { color: rgba(255, 255, 255, .55); }
.brand-footer .brand-logo { height: 46px; }
.footer-tag { color: #fff; font-weight: 600; margin: 18px 0 12px; font-size: 1.02rem; }
.footer-mission { font-size: .92rem; max-width: 380px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { background: #0a66c2; border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-nav h4, .footer-contact h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.footer-nav a, .footer-contact a { font-size: .92rem; color: rgba(255, 255, 255, .72); transition: color .2s var(--ease); width: fit-content; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-region { font-size: .88rem; margin-top: 4px; color: rgba(255, 255, 255, .55); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 22px 0; font-size: .84rem; color: rgba(255, 255, 255, .55); }
.footer-tagline { font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); font-size: .78rem; }

/* ---------- Info-panel motion (staggered entrance + gentle icon life) ---------- */
/* Cascade cards in by column as each row enters (not interactive) */
.service-card:nth-child(3n+2) { transition-delay: .09s; }
.service-card:nth-child(3n)   { transition-delay: .18s; }
.why-card:nth-child(2n)       { transition-delay: .1s; }
.process-step:nth-child(2) { transition-delay: .09s; }
.process-step:nth-child(3) { transition-delay: .18s; }
.process-step:nth-child(4) { transition-delay: .27s; }

/* Who We Serve: cascade each row in */
.clients-list.reveal { opacity: 1; transform: none; }
.clients-list li { opacity: 0; transform: translateY(12px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.clients-list.reveal.in li { opacity: 1; transform: none; }
.clients-list.reveal.in li:nth-child(2) { transition-delay: .07s; }
.clients-list.reveal.in li:nth-child(3) { transition-delay: .14s; }
.clients-list.reveal.in li:nth-child(4) { transition-delay: .21s; }
.clients-list.reveal.in li:nth-child(5) { transition-delay: .28s; }

/* Icon-only micro-motion on hover — the panel stays put, so it never reads as a button */
.service-icon, .why-icon, .tick { transition: transform .4s var(--ease); }
.service-card:hover .service-icon { transform: translateY(-4px) scale(1.06); }
.why-card:hover .why-icon { transform: translateY(-3px) scale(1.05); }
.clients-list li:hover .tick { transform: scale(1.14); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: left; }
  .hero-visual { min-height: auto; margin-top: 34px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-head { position: static; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list::before { display: none; }
  .process-flow { display: none; }
  .clients-inner, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .header-actions { gap: 12px; }
  .brand { gap: 9px; }
  .brand-logo { height: 38px; }
  .brand-word { font-size: 1.12rem; }
  .brand-tag { display: none; }
  .phone-num { display: none; }              /* phone becomes tap-to-call badge */
  .phone-ico { width: 40px; height: 40px; }
  .phone-ico svg { width: 18px; height: 18px; }
  .header-actions .btn-primary { padding: 10px 15px; font-size: .85rem; }
  .lbl-full { display: none; }
  .lbl-compact { display: inline; }
}
@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 34px; }
  .section-sub { font-size: 1rem; }
  .service-grid, .why-grid, .trustbar-grid, .process-list { grid-template-columns: 1fr; }
  .service-grid { gap: 18px; }
  .service-card { padding: 26px 22px 28px; }
  .why-grid { gap: 16px; }
  .why-card { padding: 24px 22px; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 24px 20px; }
  .trust-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-nav, .footer-contact { gap: 9px; }
  .floaty { display: none; }
  .hero-shield-card { width: min(340px, 92%); padding: 26px 18px 24px; }
  .hero { padding-bottom: 64px; }
  .hero-cta .btn { flex: 1 1 auto; }
}
@media (max-width: 380px) {
  .brand-word { font-size: 1rem; }
  .brand-logo { height: 34px; }
  .header-actions { gap: 9px; }
  .header-actions .btn-primary { padding: 9px 12px; font-size: .8rem; }
}

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