/* =========================================================
   Excel Connect Consulting — Website
   Shared stylesheet. Built on the ECC design tokens.
   ========================================================= */

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

:root {
  --navy-900: #0B2350;
  --navy-800: #102E64;
  --navy-700: #143C78;
  --navy-600: #2553A0;
  --navy-500: #3B6FBF;
  --navy-300: #93B0DD;
  --navy-100: #DCE6F3;
  --navy-050: #EFF3FA;

  --gold-700: #A87929;
  --gold-500: #D4A24C;
  --gold-200: #F2DDB1;

  --cream:    #F6F1E8;
  --cream-2:  #EFE7D6;

  --ink-900:  #0E1320;
  --ink-800:  #1A1F2B;
  --ink-700:  #2A3142;
  --ink-500:  #5C6478;
  --ink-400:  #818BA1;
  --ink-300:  #B6BDCD;
  --ink-200:  #D7DCE6;
  --ink-100:  #ECEFF5;
  --ink-050:  #F4F6FA;
  --white:    #FFFFFF;

  --green-600:#1F8A5B;

  --bg:        var(--white);
  --border:    rgba(11, 35, 80, 0.10);
  --border-strong: rgba(11, 35, 80, 0.18);
  --brand:     var(--navy-700);
  --brand-hover: var(--navy-900);
  --accent:    var(--gold-500);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --maxw-narrow: 920px;

  --shadow-sm: 0 1px 2px rgba(11, 35, 80, 0.06);
  --shadow-md: 0 6px 24px rgba(11, 35, 80, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 35, 80, 0.14);

  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--navy-600); text-decoration: none; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-200); }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section.alt { background: var(--ink-050); }
.section.cream { background: var(--cream); }
.section.navy { background: var(--navy-800); color: var(--white); }
.section.navy h1,.section.navy h2,.section.navy h3,.section.navy h4 { color: var(--white); }

.lead { font-size: 19px; line-height: 1.6; color: var(--ink-500); }
.section.navy .lead { color: rgba(255,255,255,0.78); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
  cursor: pointer;
  transition: background var(--t-base,180ms) var(--ease), transform 120ms var(--ease), box-shadow 180ms var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--brand-hover); border-color: var(--brand-hover); text-decoration: none; box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(1px); }
.btn .ic { width: 17px; height: 17px; }
.btn--gold { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-900); }
.btn--gold:hover { background: var(--gold-700); border-color: var(--gold-700); color: var(--white); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--navy-050); box-shadow: none; }
.btn--on-dark { background: var(--white); color: var(--navy-800); border-color: var(--white); }
.btn--on-dark:hover { background: var(--navy-050); color: var(--navy-900); }
.btn--ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.1); box-shadow: none; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--navy-700);
}
.textlink .ic { width: 16px; height: 16px; transition: transform 180ms var(--ease); }
.textlink:hover { text-decoration: none; }
.textlink:hover .ic { transform: translateX(4px); }
.section.navy .textlink { color: var(--gold-200); }

/* =========================================================
   Chips
   ========================================================= */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 13px; border-radius: 999px;
  background: var(--navy-050); color: var(--navy-700);
  border: 1px solid var(--navy-100);
}
.chip--gold { background: var(--gold-200); color: var(--gold-700); border-color: rgba(168,121,41,0.25); }
.chip--invert { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.22); }
.chip--dot::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--green-600); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex; align-items: center; gap: 28px;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; letter-spacing: 0.02em; line-height: 1;
  color: var(--navy-900);
}
.brand-wordmark::after {
  content: ""; display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500); margin-left: 4px; vertical-align: 0.18em;
}
.brand-wordmark--invert { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.site-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-700);
  padding: 9px 14px; border-radius: 8px;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.site-nav a:hover { background: var(--navy-050); color: var(--navy-700); text-decoration: none; }
.site-nav a.active { color: var(--navy-700); font-weight: 600; }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header-phone { font-size: 14px; font-weight: 600; color: var(--ink-700); }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 940px) {
  .site-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle {
    display: inline-flex; margin-left: auto;
    background: var(--navy-050); border: 1px solid var(--navy-100);
    border-radius: 10px; width: 44px; height: 44px;
    align-items: center; justify-content: center; cursor: pointer;
  }
  .nav-toggle svg { width: 22px; height: 22px; color: var(--navy-700); }
  .mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 12px 28px 20px;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block; padding: 13px 4px; font-size: 17px; font-weight: 600;
    color: var(--ink-800); border-bottom: 1px solid var(--ink-100);
  }
  .mobile-nav .btn { width: 100%; justify-content: center; margin-top: 14px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(37,83,160,0.16), transparent 60%),
    linear-gradient(180deg, #0B2350 0%, #102E64 55%, #143C78 100%);
  color: #fff;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  align-items: center;
  padding: 96px 0 104px;
}
.hero h1 {
  color: #fff; font-size: 60px; line-height: 1.02; letter-spacing: -0.03em;
}
.hero h1 .hl { color: var(--gold-200); }
.hero p.lead { color: rgba(255,255,255,0.82); margin-top: 22px; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust .ht { }
.hero-trust .ht .n { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.hero-trust .ht .l { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* faint grid texture */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  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: 56px 56px;
  mask-image: radial-gradient(900px 500px at 80% 10%, #000, transparent 75%);
  pointer-events: none;
}

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(4px);
}
.hero-panel .hp-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-200); }
.hero-panel .hp-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-panel .hp-row:last-child { border-bottom: 0; }
.hero-panel .hp-row .lbl { color: rgba(255,255,255,0.82); font-size: 15px; }
.hero-panel .hp-row .val { font-weight: 700; color: #fff; font-size: 15px; }

/* page hero (interior pages) */
.page-hero {
  background:
    radial-gradient(800px 360px at 85% -20%, rgba(37,83,160,0.18), transparent 60%),
    linear-gradient(180deg, #0B2350 0%, #143C78 100%);
  color: #fff;
  padding: 72px 0 80px;
}
.page-hero h1 { color: #fff; font-size: 48px; letter-spacing: -0.025em; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 19px; margin-top: 18px; max-width: 60ch; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }

/* =========================================================
   Section headers
   ========================================================= */
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: 38px; margin-top: 14px; letter-spacing: -0.025em; }
.sec-head p { margin-top: 16px; font-size: 18px; color: var(--ink-500); line-height: 1.6; }

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease), border-color 200ms var(--ease);
}
.card.hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--navy-100); }

.svc-card { display: flex; flex-direction: column; height: 100%; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--navy-050); color: var(--navy-700);
  display: grid; place-items: center; margin-bottom: 20px;
  border: 1px solid var(--navy-100);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 21px; }
.svc-card p { margin-top: 10px; color: var(--ink-500); font-size: 15px; line-height: 1.6; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.svc-foot { margin-top: auto; padding-top: 20px; }

/* numbered process steps */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  padding: 28px 0; border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-700); color: #fff;
  display: grid; place-items: center;
}
.step h3 { font-size: 22px; }
.step p { margin-top: 8px; color: var(--ink-500); font-size: 16px; max-width: 60ch; }

/* stats band */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: 50px; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.stat .n .u { color: var(--gold-200); }
.stat .l { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* feature list */
.flist { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.flist li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.flist .tick {
  width: 24px; height: 24px; border-radius: 7px; flex: none;
  background: var(--navy-050); color: var(--navy-700);
  display: grid; place-items: center; margin-top: 2px;
}
.flist .tick svg { width: 14px; height: 14px; }
.flist strong { font-weight: 700; color: var(--ink-900); display: block; font-size: 16px; }
.flist span.d { color: var(--ink-500); font-size: 15px; }

/* =========================================================
   Placeholder image (tasteful, branded — no stock junk)
   ========================================================= */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(420px 280px at 20% 0%, rgba(37,83,160,0.18), transparent 70%),
    linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 18px;
  color: rgba(255,255,255,0.5);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 80%);
}
.ph .ph-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 7px;
}
.ph .ph-tag svg { width: 15px; height: 15px; }
.ph .ph-mono {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1;
}
.ph .ph-mono span {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; color: rgba(255,255,255,0.10); letter-spacing: 0.04em;
}
.ph--light {
  background:
    radial-gradient(400px 260px at 80% 0%, rgba(37,83,160,0.10), transparent 70%),
    linear-gradient(135deg, var(--ink-100), var(--navy-050));
  color: var(--ink-400);
}
.ph--light::before {
  background-image:
    linear-gradient(rgba(11,35,80,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,35,80,0.05) 1px, transparent 1px);
}
.ph--light .ph-mono span { color: rgba(11,35,80,0.07); }
.ph--light .ph-tag { color: var(--ink-400); }
.ratio-43 { aspect-ratio: 4/3; }
.ratio-11 { aspect-ratio: 1/1; }
.ratio-169 { aspect-ratio: 16/9; }
.ratio-32 { aspect-ratio: 3/2; }

/* sector strip */
.sectors { display: flex; flex-wrap: wrap; gap: 12px; }
.sector-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  font-weight: 600; font-size: 15px; color: var(--ink-800);
}
.sector-pill svg { width: 19px; height: 19px; color: var(--navy-600); }

/* testimonial */
.quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: 27px; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--ink-900);
}
.section.navy .quote { color: #fff; }
.quote-mark { font-family: var(--font-display); font-size: 80px; line-height: 0.6; color: var(--gold-500); font-weight: 800; }
.quote-by { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.quote-by .av { width: 48px; height: 48px; border-radius: 50%; flex: none; }
.quote-by .who strong { display: block; font-weight: 700; }
.quote-by .who span { color: var(--ink-500); font-size: 14px; }
.section.navy .quote-by .who span { color: rgba(255,255,255,0.6); }

/* CTA band */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(212,162,76,0.16), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: 28px; padding: 60px; color: #fff;
  display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: center;
}
.cta-band h2 { color: #fff; font-size: 38px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 14px; font-size: 18px; max-width: 46ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; min-width: 230px; }

/* =========================================================
   Forms
   ========================================================= */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-800); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink-900);
  padding: 13px 15px; border: 1px solid var(--border-strong);
  border-radius: 11px; background: var(--white); width: 100%;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500);
  box-shadow: 0 0 0 4px var(--navy-050);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg label {
  flex: 1; min-width: 90px; text-align: center; cursor: pointer;
  padding: 11px 10px; border: 1px solid var(--border-strong); border-radius: 11px;
  font-size: 14px; font-weight: 600; color: var(--ink-700);
  transition: all 150ms var(--ease);
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg input:checked + label, .seg label.checked { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.form-note { font-size: 13px; color: var(--ink-400); margin-top: 4px; }
.form-success {
  display: none; padding: 18px 20px; border-radius: 14px;
  background: rgba(31,138,91,0.08); border: 1px solid rgba(31,138,91,0.3);
  color: #136c45; font-weight: 600;
}
.form-success.show { display: block; }

/* =========================================================
   Jobs board
   ========================================================= */
.job-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.job-filter {
  font-size: 14px; font-weight: 600; padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--white); color: var(--ink-700);
  cursor: pointer; transition: all 150ms var(--ease);
}
.job-filter.active { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.job-card {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 24px 26px; border: 1px solid var(--border); border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy-100); }
.job-card .jc-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 10px; color: var(--ink-500); font-size: 14px; }
.job-card .jc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-card .jc-meta svg { width: 15px; height: 15px; color: var(--navy-500); }
.job-card h3 { font-size: 20px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); }
.footer-main {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px;
  padding: 72px 0 56px;
}
.footer-main h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; font-weight: 700; }
.footer-main a { color: rgba(255,255,255,0.7); font-size: 15px; display: block; padding: 6px 0; }
.footer-main a:hover { color: #fff; text-decoration: none; }
.footer-main a.btn { display: inline-flex; padding: 12px 18px; font-size: var(--fs-sm); }
.footer-main a.btn--on-dark { color: var(--navy-800); }
.footer-main a.btn--on-dark:hover { color: var(--navy-900); }
.footer-brand .brand-wordmark { font-size: 30px; margin-bottom: 18px; display: inline-block; }
.footer-brand p { font-size: 15px; line-height: 1.6; max-width: 34ch; color: rgba(255,255,255,0.6); }
.footer-office { margin-top: 22px; }
.footer-office .ol { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-200); font-weight: 700; margin-bottom: 6px; }
.footer-office p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center; color: rgba(255,255,255,0.7);
}
.footer-bottom .socials a:hover { background: rgba(255,255,255,0.16); color: #fff; }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
  .hero h1 { font-size: 44px; }
  .hero-panel { max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 28px; }
  .cta-band { grid-template-columns: 1fr; padding: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 34px; }
  .sec-head h2 { font-size: 30px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; }
  .cta-band h2 { font-size: 28px; }
  .job-card { grid-template-columns: 1fr; }
  .hero-trust { gap: 24px; }
  .stat .n { font-size: 40px; }
  .quote { font-size: 22px; }
}
