/* ============================================================
   POLAR PROTECTION INC. — Site stylesheet
   Palette drawn from the badge: deep navy, arctic white, ice blue
   ============================================================ */

:root {
  --bg-0: #060b18;
  --bg-1: #0a1124;
  --bg-2: #0e1730;
  --panel: #121e3c;
  --panel-2: #16244a;
  --line: rgba(150, 185, 255, 0.14);
  --line-strong: rgba(150, 185, 255, 0.28);
  --ice: #6fb6ff;
  --ice-bright: #9fd2ff;
  --ice-deep: #3f97f2;
  --text: #e9eff9;
  --muted: #a3b1cd;
  --muted-2: #7e8cab;
  --white: #f5f8fd;
  --danger: #ff6b6b;
  --grad-ice: linear-gradient(135deg, #3f97f2 0%, #7cc0ff 100%);
  --shadow-lg: 0 24px 60px -18px rgba(2, 8, 24, 0.85);
  --shadow-md: 0 14px 34px -14px rgba(2, 8, 24, 0.7);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 90px); }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--ice); text-decoration: none; }
a:hover { color: var(--ice-bright); }

ul { list-style: none; }

::selection { background: rgba(111, 182, 255, 0.35); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ice-deep); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: 1px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--ice);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 34px; height: 2px;
  background: var(--grad-ice); border-radius: 2px;
}

.lead { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }

.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-1); }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head h2 { margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-ice); color: #06122a;
  box-shadow: 0 10px 30px -8px rgba(63, 151, 242, 0.55);
}
.btn-primary:hover { color: #06122a; transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(63, 151, 242, 0.7); }
.btn-ghost {
  background: rgba(111, 182, 255, 0.06); color: var(--white);
  border-color: var(--line-strong);
}
.btn-ghost:hover { color: var(--white); border-color: var(--ice); background: rgba(111, 182, 255, 0.12); transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 1.15rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem; color: var(--muted);
  position: relative; z-index: 60;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 8px 0; flex-wrap: wrap;
}
.topbar a { color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--ice-bright); }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .tb-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.tb-chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 11px; font-size: 0.72rem; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--ice);
  background: rgba(111, 182, 255, 0.05);
  white-space: nowrap;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 12, 26, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(6, 10, 22, 0.92); }

.nav-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand img { width: 50px; height: 50px; flex: none; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.brand-name {
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
}
.brand-name .top {
  display: block; font-size: 1.42rem; font-weight: 700; letter-spacing: 1.5px; color: var(--white);
}
.brand-name .sub {
  display: block; font-size: 0.63rem; font-weight: 600; letter-spacing: 4.2px;
  color: var(--ice); margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.3px; position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--grad-ice); border-radius: 2px;
}
.nav-cta { flex: none; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.95rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: 10px; width: 46px; height: 44px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s 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); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 110px;
  min-height: calc(92vh - var(--header-h));
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(63, 151, 242, 0.22), transparent 60%),
    radial-gradient(700px 480px at 88% 8%, rgba(124, 192, 255, 0.14), transparent 62%),
    radial-gradient(1000px 700px at 50% 120%, rgba(23, 42, 92, 0.6), transparent 70%),
    var(--bg-0);
}
.hero-bg::before {
  content: ""; position: absolute; inset: -40% -10%;
  background:
    radial-gradient(46% 60% at 30% 30%, rgba(63, 151, 242, 0.12), transparent 70%),
    radial-gradient(38% 52% at 70% 22%, rgba(140, 220, 255, 0.09), transparent 70%);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-3%, -2%, 0) rotate(-2deg); }
  100% { transform: translate3d(3%, 3%, 0) rotate(2.5deg); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(150, 185, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 185, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 70% at 50% 40%, rgba(0,0,0,0.5), transparent 75%);
  -webkit-mask-image: radial-gradient(75% 70% at 50% 40%, rgba(0,0,0,0.5), transparent 75%);
}
#snow { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: center;
}
.hero h1 { margin: 0 0 22px; }
.hero h1 .accent {
  background: var(--grad-ice);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; gap: 20px 24px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .t b {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px; color: var(--white);
}
.hero-trust .t span { font-size: 0.73rem; letter-spacing: 1.3px; text-transform: uppercase; color: var(--muted-2); }

.hero-badge { position: relative; display: grid; place-items: center; }
.hero-badge img {
  width: min(420px, 80%);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(2, 8, 24, 0.9));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge::before {
  content: ""; position: absolute; width: min(520px, 100%); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 182, 255, 0.16) 0%, transparent 62%);
}
.hero-badge::after {
  content: ""; position: absolute; width: min(500px, 95%); aspect-ratio: 1;
  border-radius: 50%; border: 1px dashed rgba(111, 182, 255, 0.25);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before, .hero-badge img, .hero-badge::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 84px 0 64px;
  background:
    radial-gradient(800px 420px at 15% -20%, rgba(63, 151, 242, 0.2), transparent 60%),
    radial-gradient(640px 400px at 90% 0%, rgba(124, 192, 255, 0.1), transparent 60%),
    var(--bg-1);
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
  font-size: 0.8rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px; display: block;
}
.page-hero .crumb a { color: var(--muted-2); }
.page-hero .crumb a:hover { color: var(--ice); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; }
.page-hero .lead { margin-bottom: 0; }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); }
.trustbar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px 42px; flex-wrap: wrap; padding: 20px 0;
}
.trustbar .item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.trustbar .item svg { color: var(--ice); flex: none; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.stat {
  background: linear-gradient(160deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center;
  box-shadow: var(--shadow-md);
}
.stat b {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; line-height: 1;
  color: var(--white); margin-bottom: 8px;
}
.stat b .unit { color: var(--ice); }
.stat span { font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-ice); opacity: 0; transition: opacity 0.22s ease;
}
.card:hover::before { opacity: 1; }

.icon-tile {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(111, 182, 255, 0.09);
  border: 1px solid var(--line-strong);
  color: var(--ice-bright);
}
.card h3, .card h2 { margin-bottom: 10px; }
.card h2, .svc h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: 1px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; font-weight: 600; font-size: 0.92rem; color: var(--ice);
}
.card .more:hover { color: var(--ice-bright); gap: 11px; }
.card .more { transition: gap 0.2s ease; }

a.card-link { color: inherit; display: block; }

/* ---------- Split (why us) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split .section-head { margin-bottom: 30px; }

.checklist { display: grid; gap: 18px; }
.checklist li { display: flex; gap: 15px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; margin-top: 2px; border-radius: 8px;
  background: rgba(111, 182, 255, 0.12); border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--ice-bright);
}
.checklist b { color: var(--white); display: block; font-weight: 600; }
.checklist p { color: var(--muted); font-size: 0.95rem; }

.shield-showcase {
  background: #000;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 40px 30px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 0 80px rgba(63, 151, 242, 0.08);
  position: relative; overflow: hidden;
}
.shield-showcase::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 55% at 50% 30%, rgba(63, 151, 242, 0.16), transparent 70%);
  pointer-events: none;
}
.shield-showcase img { width: min(330px, 78%); margin: 0 auto; position: relative; }
.shield-showcase .cap {
  position: relative; margin-top: 20px; font-family: var(--font-display);
  letter-spacing: 3px; text-transform: uppercase; font-size: 0.85rem; color: var(--muted);
}

/* ---------- Process ---------- */
.process { counter-reset: step; }
.process .step {
  position: relative; padding: 30px 26px 28px;
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.process .step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 2.6rem; line-height: 1; margin-bottom: 14px;
  background: var(--grad-ice); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process .step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process .step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Quote / testimonial ---------- */
.quote-card { display: flex; flex-direction: column; gap: 18px; }
.quote-card .stars { color: #ffcf5c; letter-spacing: 3px; font-size: 0.95rem; }
.quote-card blockquote { color: var(--text); font-size: 1rem; font-style: italic; }
.quote-card .who { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.quote-card .who .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--grad-ice); color: #06122a;
  font-weight: 700; font-size: 0.95rem;
}
.quote-card .who b { display: block; color: var(--white); font-size: 0.95rem; }
.quote-card .who span { color: var(--muted-2); font-size: 0.82rem; }

/* ---------- Coverage ---------- */
.province-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.province-chips li {
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 9px 20px; font-size: 0.9rem; font-weight: 600; color: var(--muted);
  background: rgba(111, 182, 255, 0.04);
}
.province-chips li.hq { color: #06122a; background: var(--grad-ice); border-color: transparent; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(63, 151, 242, 0.25), transparent 60%),
    radial-gradient(600px 300px at 85% 100%, rgba(124, 192, 255, 0.15), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band .inner {
  padding: 78px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--muted); max-width: 52ch; }
.cta-band .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Service detail (services.html) ---------- */
.svc {
  display: grid; grid-template-columns: 64px 1fr; gap: 26px;
  padding: 44px 40px;
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.svc + .svc { margin-top: 28px; }
.svc .icon-tile { margin-bottom: 0; width: 64px; height: 64px; }
.svc h3, .svc h2 { font-size: 1.5rem; margin-bottom: 10px; }
.svc p { color: var(--muted); max-width: 72ch; }
.svc .includes {
  margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px;
}
.svc .includes li {
  position: relative; padding-left: 26px; color: var(--muted); font-size: 0.95rem;
}
.svc .includes li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 4px;
  background: rgba(111, 182, 255, 0.16); border: 1px solid var(--ice);
}

/* ---------- Accordion (FAQ / careers) ---------- */
.accordion { display: grid; gap: 14px; }
.accordion details {
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden;
}
.accordion summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; color: var(--white); font-size: 1.02rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
  color: var(--ice); transition: transform 0.2s ease; flex: none;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .body { padding: 0 24px 22px; color: var(--muted); font-size: 0.97rem; }
.accordion .body p + p { margin-top: 10px; }

/* ---------- Job cards ---------- */
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 26px 28px; flex-wrap: wrap;
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.job + .job { margin-top: 18px; }
.job h3 { font-size: 1.25rem; margin-bottom: 6px; }
.job .meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.86rem; }
.job .meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Forms ---------- */
.form-panel {
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(6, 11, 24, 0.6);
  border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--text); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ice) 50%), linear-gradient(135deg, var(--ice) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(111, 182, 255, 0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.83rem; color: var(--muted-2); margin-top: 16px; }
.form-success, .form-error {
  display: none; margin-top: 18px; padding: 16px 20px;
  border-radius: 10px; font-size: 0.95rem;
}
.form-success {
  border: 1px solid rgba(94, 224, 156, 0.4);
  background: rgba(94, 224, 156, 0.08); color: #9defbf;
}
.form-success a { color: #c6f7dc; text-decoration: underline; }
.form-error {
  border: 1px solid rgba(255, 138, 138, 0.45);
  background: rgba(255, 107, 107, 0.09); color: #ffb4b4;
}
.form-error a { color: #ffd6d6; text-decoration: underline; }
.form-success.show, .form-error.show { display: block; }

/* spam honeypot — visually gone, kept out of the tab order and AT */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Contact cards ---------- */
.contact-card { text-align: left; }
.contact-card .icon-tile { margin-bottom: 16px; }
.contact-card h3, .contact-card h2 { font-size: 1.15rem; }
.contact-card p { font-size: 0.95rem; }
.contact-card a.big {
  display: block; margin-top: 8px; font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 1px; color: var(--white);
}
.contact-card a.big:hover { color: var(--ice-bright); }

/* ---------- Values ---------- */
.value-card { text-align: center; }
.value-card .icon-tile { margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.site-footer { background: #04070f; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; padding: 70px 0 50px;
}
.site-footer .brand img { width: 58px; height: 58px; }
.site-footer .blurb { color: var(--muted-2); font-size: 0.92rem; margin: 18px 0 22px; max-width: 34ch; }
.site-footer h4 {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 2.5px; font-size: 0.95rem; color: var(--white);
  margin-bottom: 20px;
}
.site-footer ul { display: grid; gap: 11px; }
.site-footer ul a { color: var(--muted-2); font-size: 0.93rem; }
.site-footer ul a:hover { color: var(--ice-bright); }
.site-footer .contact-lines li { display: flex; gap: 11px; color: var(--muted-2); font-size: 0.93rem; align-items: flex-start; }
.site-footer .contact-lines svg { flex: none; margin-top: 3px; color: var(--ice); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--muted-2);
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a { color: var(--muted-2); }
.footer-bottom .legal a:hover { color: var(--ice-bright); }

/* ---------- Reveal animation (hidden state only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Legal pages ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 12px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin: 12px 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed; inset: calc(var(--header-h)) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(6, 10, 22, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 18px 6vw 26px;
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 90;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; transition: transform 0.3s ease, visibility 0s; }
  .nav-links a { display: block; width: 100%; padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 64px 0 80px; min-height: 0; }
  .hero-badge { order: -1; }
  .hero-badge img { width: min(280px, 66%); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; }
  .svc .includes { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat { padding: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .topbar .tb-badges { display: none; }
  .cta-band .inner { padding: 60px 0; }
  .form-panel { padding: 28px 22px; }
  .brand-name .sub { letter-spacing: 3px; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .trustbar .item { white-space: normal; }
}
