/**
 * File: style.css
 * Created: 2026-07-03 17:30 UTC | Updated: 2026-07-03 (glow-up pass)
 * Author: Claude (Anthropic)
 * Review Notes:
 * ─────────────────────────────────────────────────
 * FitFin Consulting — premium design system. No framework, no build
 * step, portable (lpsys Apache / GoDaddy cPanel). Motion respects
 * prefers-reduced-motion.
 */

:root {
  --navy: #0c526e;
  --navy-dark: #083a4f;
  --navy-deep: #051e2b;
  --green: #159e7b;
  --green-bright: #2bb489;
  --mint: #7fe0c3;
  --cyan: #3ec6e0;
  --ink: #0f2430;
  --muted: #55707c;
  --line: #dfeaf0;
  --bg: #f8fbfc;
  --bg-alt: #eef5f8;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 12px 36px rgba(8, 58, 79, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 58, 79, 0.16);
  --grad: linear-gradient(135deg, var(--green) 0%, #22b8a6 55%, var(--cyan) 120%);
  --font-head: 'League Spartan', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

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

::selection { background: var(--green); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; }

p { margin-bottom: 1rem; }
a { color: var(--navy); }
img { max-width: 100%; height: auto; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(21, 158, 123, 0.55);
  outline-offset: 2px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 840px; }

section { padding: 88px 0; }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.section-head { max-width: 720px; margin-bottom: 8px; }
.section-intro { max-width: 660px; color: var(--muted); font-size: 1.06rem; }

.grad-text {
  background: linear-gradient(92deg, var(--green-bright), var(--mint) 55%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Scroll reveal ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── Nav ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(223, 234, 240, 0.7);
  transition: box-shadow 0.3s, background 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(8, 58, 79, 0.09);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.brand img {
  width: 42px; height: 42px;
  border-radius: 9px;
  /* Client's logo is a JPG on white — multiply melts the white box
     into the light glass header so it reads as transparent. */
  mix-blend-mode: multiply;
  transition: transform 0.3s var(--ease-out);
}

.brand:hover img { transform: scale(1.06) rotate(-3deg); }

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-dark);
  line-height: 1;
}

.brand-name small {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: right 0.3s var(--ease-out);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
  font-family: var(--font-body);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-out);
}

.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(21, 158, 123, 0.35);
}

.btn-primary:hover { box-shadow: 0 16px 36px rgba(21, 158, 123, 0.45); filter: brightness(1.05); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; box-shadow: var(--shadow); }

.btn-light { background: #fff; color: var(--navy-dark); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18); }

/* ── Hero ────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-dark) 55%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
}

.hero::before {
  /* film grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.hero::after {
  /* faint grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(900px 500px at 30% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(900px 500px at 30% 20%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite alternate;
}

.blob-a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(43, 180, 137, 0.85), transparent 65%);
  top: -180px; right: -100px;
}

.blob-b {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(62, 198, 224, 0.55), transparent 65%);
  bottom: -200px; left: -140px;
  animation-delay: -8s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(46px, 34px, 0) scale(1.1); }
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 22px; }

.hero p.lead {
  font-size: 1.17rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 600px;
  margin-bottom: 34px;
}

.hero .kicker { color: var(--mint); }
.hero .kicker::before { background: var(--mint); }

.hero .btn-outline { border-color: rgba(255,255,255,0.65); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 10px 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.hero-meta span::before { content: "✓ "; color: var(--green-bright); font-weight: 700; }

/* Compact hero for inner pages */
.hero-sub { padding: 84px 0; }
.hero-sub h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); }

/* Floating dashboard cards (decorative) */
.hero-visual { position: relative; min-height: 360px; }

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(3, 20, 28, 0.45);
  color: var(--ink);
  animation: bob 6s ease-in-out infinite alternate;
}

@keyframes bob {
  from { transform: translateY(-7px); }
  to   { transform: translateY(9px); }
}

.fc-main { top: 8%; right: 4%; width: min(330px, 90%); padding: 20px 22px 16px; }

.fc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.fc-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(43,180,137,0.2); }

.fc-chart { display: block; width: 100%; height: auto; }

.fc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

.chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.72rem;
}

.chip.up { background: rgba(21, 158, 123, 0.12); color: var(--green); }

.fc-pill  { bottom: 22%; left: 0;  padding: 13px 18px; font-size: 0.85rem; font-weight: 600; animation-delay: -2.5s; }
.fc-pill2 { bottom: 2%;  right: 14%; padding: 13px 18px; font-size: 0.85rem; font-weight: 600; animation-delay: -4.5s; }

.fc-pill .ok, .fc-pill2 .ok { color: var(--green); font-weight: 700; }

/* ── Stats band ──────────────────────────────── */
.stats-band {
  background: var(--navy-deep);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 50% -40%, rgba(43, 180, 137, 0.22), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  text-align: center;
}

.stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
  background: linear-gradient(92deg, var(--green-bright), var(--mint) 60%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .lbl {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 4px 16px rgba(8, 58, 79, 0.05);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 158, 123, 0.4);
}

.card .icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(21, 158, 123, 0.12), rgba(62, 198, 224, 0.12));
  border: 1px solid rgba(21, 158, 123, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: transform 0.25s var(--ease-out);
}

.card:hover .icon { transform: scale(1.08) rotate(-4deg); }

.card .icon svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }

.alt-bg { background: var(--bg-alt); }

/* ── Industries strip ────────────────────────── */
.industries { padding: 70px 0; }

.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.chips span {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.chips span:hover {
  border-color: rgba(21, 158, 123, 0.5);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 58, 79, 0.08);
}

/* ── Steps (timeline) ────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(21,158,123,0.12), rgba(21,158,123,0.5), rgba(21,158,123,0.12));
}

.step { position: relative; padding: 0 8px; text-align: center; }

.step .num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green);
  background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 8px 22px rgba(21, 158, 123, 0.18);
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1.08rem; }
.step p { font-size: 0.92rem; color: var(--muted); margin: 8px 0 0; }

/* ── CTA band ────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-dark) 55%, var(--navy));
  color: #fff;
  text-align: center;
  border-radius: 24px;
  padding: 74px 34px;
  margin: 0 28px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 180, 137, 0.4), transparent 65%);
  top: -240px; right: -120px;
  filter: blur(50px);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 198, 224, 0.3), transparent 65%);
  bottom: -220px; left: -100px;
  filter: blur(50px);
}

.cta-band h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 30px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ── Forms ───────────────────────────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--navy-dark);
}

.field label .req { color: #c0392b; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 158, 123, 0.14);
  background: #fff;
}

.field textarea { min-height: 120px; resize: vertical; }

/* Consent checkboxes — visual only; language lives in contact.php */
.consent-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 15px 17px;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.consent-box:hover { border-color: rgba(21, 158, 123, 0.4); }

.consent-box input[type="checkbox"] {
  margin-top: 4px;
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.consent-box label {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.consent-box label strong { color: var(--navy-dark); }

.disclosure {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.form-alert { border-radius: 11px; padding: 14px 18px; margin-bottom: 20px; font-size: 0.95rem; }
.form-alert.error { background: #fdecea; border: 1px solid #e74c3c33; color: #a93226; }
.form-alert.success { background: #e8f8f2; border: 1px solid #159e7b44; color: #0e6e56; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Contact layout ──────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: stretch; }

.contact-info {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-dark) 70%, var(--navy));
  border-radius: 20px;
  padding: 40px 36px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 180, 137, 0.35), transparent 65%);
  top: -140px; right: -100px;
  filter: blur(40px);
}

.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 { color: #fff; }
.contact-info h3 { margin: 26px 0 6px; color: var(--mint); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-info p { color: rgba(255, 255, 255, 0.8); font-size: 0.96rem; }
.contact-info a { color: #fff; }

.contact-info .big-phone {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.contact-info .big-phone:hover { color: var(--mint); }

/* ── Legal pages ─────────────────────────────── */
.legal { padding: 70px 0 90px; }

.legal h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  padding-bottom: 18px;
  position: relative;
}

.legal h1::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 4px;
  border-radius: 4px;
  background: var(--grad);
}

.legal .updated { color: var(--muted); font-size: 0.9rem; margin: 14px 0 40px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.legal ul { margin: 0 0 16px 26px; }
.legal li { margin-bottom: 8px; }

.legal .highlight {
  background: var(--bg-alt);
  border-left: 4px solid var(--green);
  border-radius: 0 11px 11px 0;
  padding: 18px 22px;
  margin: 20px 0;
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 68px 0 32px;
  margin-top: 90px;
  font-size: 0.92rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0.8;
}

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }

.site-footer h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--mint); }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.footer-brand img {
  width: 38px; height: 38px;
  /* White tile treatment so the white-background JPG logo looks
     deliberate on the dark navy footer. */
  background: #fff;
  border-radius: 9px;
  padding: 3px;
}
.footer-brand span { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; }

.footer-disclaimer {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 8px;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 14px; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 58px 0; }
  .hero { padding: 78px 0 86px; }
  .grid-3, .grid-2, .steps, .form-row { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 26px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    gap: 18px;
  }

  .nav-links.open { display: flex; }
  .form-card { padding: 28px 20px; }
  .contact-info { padding: 30px 24px; }
  .cta-band { margin: 0 14px; padding: 52px 24px; }
}

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

/* © Nathan Brunet - APEX Intelligence - All Rights Reserved */
