/* =========================================================
   WYZR — Global Stylesheet
   Palette derived from the WYZR logo mark:
   deep navy -> teal -> crimson diagonal gradient
   ========================================================= */

:root{
  --navy: #0a1620;
  --navy-soft: #101f2b;
  --teal-dark: #123240;
  --teal: #1b4f63;
  --teal-light: #2d7a94;
  --teal-pale: #e7f0f2;
  --red: #b91c2e;
  --red-dark: #7c1120;
  --red-light: #d94459;

  --bg: #ffffff;
  --bg-soft: #f5f7f8;
  --bg-dark: var(--navy);

  --text: #16232c;
  --text-muted: #56676f;
  --text-inverse: #f3f6f7;
  --text-inverse-muted: #a9bac1;

  --border: #e3e8ea;

  --gradient-brand: linear-gradient(135deg, var(--teal-light) 0%, var(--navy) 52%, var(--red) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(45,122,148,0.12) 0%, rgba(10,22,32,0.10) 52%, rgba(185,28,46,0.12) 100%);
  --gradient-text: linear-gradient(100deg, var(--teal-light) 0%, var(--teal) 35%, var(--red) 100%);
  --panel-wash:
    radial-gradient(circle at 88% 8%, rgba(185,28,46,0.14), transparent 46%),
    radial-gradient(circle at 8% 92%, rgba(45,122,148,0.16), transparent 48%),
    #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10,22,32,0.06);
  --shadow-md: 0 12px 32px rgba(10,22,32,0.10);
  --shadow-lg: 0 24px 60px rgba(10,22,32,0.16);

  --container: 1180px;
  --font: 'Manrope', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5{ margin: 0; font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section{ position: relative; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-text);
  display: inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center{
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2{
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--navy);
}
.section-head p{
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
}

.text-gradient{
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: border-box;
  background-repeat: no-repeat;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background-image: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: inherit;
}
.btn-outline:hover{ border-color: var(--teal-light); background: rgba(255,255,255,0.06); }
.btn-dark-outline{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-dark-outline:hover{ background: var(--navy); color: #fff; }
.btn-block{ width: 100%; }
.btn svg{ width: 16px; height: 16px; }

/* =========================
   Header / Navigation
   ========================= */
.topbar{
  background: var(--navy);
  color: var(--text-inverse-muted);
  font-size: 13px;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-item{ display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg{ width: 14px; height: 14px; flex-shrink: 0; color: var(--teal-light); }
.topbar-links{ display: flex; gap: 18px; }
.topbar-links a:hover{ color: #fff; }
.topbar-social{ display: flex; gap: 10px; }
.topbar-social a{
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background .2s ease;
}
.topbar-social a:hover{ background: var(--red); }
.topbar-social svg{ width: 13px; height: 13px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img{ height: 40px; width: auto; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.nav-links a{
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gradient-text);
  transition: right .25s ease;
}
.nav-links a:hover{ color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after{ right: 0; }
.nav-links a.active{ color: var(--red); }

.nav-cta{ display: flex; align-items: center; gap: 18px; }
.nav-cta .btn{ padding: 12px 24px; font-size: 14px; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span{
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-menu-panel, .nav-overlay{ display: none; }

/* =========================
   Hero
   ========================= */
.hero{
  background: var(--navy);
  color: var(--text-inverse);
  overflow: hidden;
  position: relative;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(217,68,89,0.28), transparent 42%),
    radial-gradient(circle at 6% 92%, rgba(45,122,148,0.30), transparent 45%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
  padding: 108px 0 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 26px;
}
.hero-eyebrow .dot{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gradient-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.hero h1{
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
}
.hero h1 span{
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead{
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-inverse-muted);
  max-width: 520px;
}
.hero-actions{
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats{
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
}
.hero-stats div strong{
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats div span{
  font-size: 13px;
  color: var(--text-inverse-muted);
}

.hero-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .glow-card{
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1.05;
  border-radius: 28px;
  background: var(--panel-wash);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual .glow-card::before{
  content: "";
  position: absolute;
  width: 130%; height: 130%;
  border-radius: 50%;
  border: 1px dashed rgba(10,22,32,0.10);
  animation: spin 40s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero-visual .hero-zmark{
  position: relative;
  width: 66%;
  filter: drop-shadow(0 20px 44px rgba(10,22,32,0.16));
}

/* logo strip */
.logo-strip{
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.logo-strip .container{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logo-strip .label{
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo-strip .pills{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.logo-strip .pill{
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

/* =========================
   Services grid
   ========================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .ico{
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card .ico svg{ width: 26px; height: 26px; color: #fff; }
.service-card h3{ font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.service-card p{ color: var(--text-muted); font-size: 14.5px; }
.service-card .more{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
}
.service-card .more svg{ width: 14px; height: 14px; transition: transform .2s ease; }
.service-card:hover .more svg{ transform: translateX(4px); }

/* =========================
   About / split sections
   ========================= */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel-wash);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-media .illustration{ width: 56%; filter: drop-shadow(0 14px 26px rgba(10,22,32,0.10)); }
.split-media .illustration svg{ width: 100%; height: auto; display: block; }
.split-media .badge{
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(10,22,32,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
}
.split h2{ font-size: clamp(26px,3vw,36px); color: var(--navy); }
.split p{ color: var(--text-muted); margin-top: 18px; font-size: 16px; }
.check-list{ margin-top: 24px; display: grid; gap: 14px; }
.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.check-list li svg{
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  padding: 5px;
  color: var(--red);
}

/* Values / pillars */
.pillars{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pillar{
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  text-align: left;
}
.pillar .num{
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.pillar h3{ font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.pillar p{ font-size: 14px; color: var(--text-muted); }

/* WYZR acronym values */
.acronym-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.acronym-card{
  position: relative;
  padding: 34px 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--text-inverse);
  overflow: hidden;
}
.acronym-card::before{
  content: attr(data-letter);
  position: absolute;
  right: 10px; top: -22px;
  font-size: 110px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}
.acronym-card .letter{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gradient-text);
  color: var(--navy);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.acronym-card h3{ font-size: 17px; margin-bottom: 8px; position: relative; }
.acronym-card p{ font-size: 13.5px; color: var(--text-inverse-muted); position: relative; }

/* CTA banner */
.cta-banner{
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after{
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner h2{ font-size: clamp(24px,3vw,32px); max-width: 480px; }
.cta-banner p{ margin-top: 10px; color: rgba(255,255,255,0.85); max-width: 480px; }
.cta-banner .btn-primary{ background: #fff; color: var(--navy); box-shadow: none; }
.cta-banner .btn-primary:hover{ background: var(--navy); color: #fff; }

/* Process / steps */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step{ position: relative; padding-top: 8px; }
.step::before{
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-brand);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3{ font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.step p{ font-size: 14px; color: var(--text-muted); }
.step-connector{ display: none; }

/* Industries */
.industry-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-chip{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  transition: all .2s ease;
}
.industry-chip:hover{ background: var(--navy); color: #fff; transform: translateY(-4px); }
.industry-chip svg{ width: 26px; height: 26px; margin: 0 0 10px; color: var(--red); flex-shrink: 0; }
.industry-chip:hover svg{ color: var(--teal-light); }

/* Testimonials */
.testimonial-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars{ color: var(--red); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p.quote{ font-size: 15.5px; color: var(--text); font-style: italic; }
.testimonial-card .who{ margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}
.testimonial-card .who strong{ display: block; font-size: 14px; color: var(--navy); }
.testimonial-card .who span{ font-size: 12.5px; color: var(--text-muted); }

/* FAQ */
.faq-item{
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item button{
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.faq-item button svg{
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--red);
}
.faq-item.open button svg{ transform: rotate(45deg); }
.faq-item .answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--text-muted);
  font-size: 14.5px;
}
.faq-item .answer-inner{ padding-top: 14px; }

/* Forms */
.form-card{
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 20px; }
.field label{ display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--teal-light);
  background: #fff;
}
.field textarea{ resize: vertical; min-height: 120px; }

/* Page header (inner pages) */
.page-hero{
  background: var(--navy);
  color: var(--text-inverse);
  padding: 76px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(217,68,89,0.25), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(45,122,148,0.28), transparent 45%);
}
.page-hero .container{ position: relative; z-index: 1; }
.breadcrumb{
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--text-inverse-muted);
  margin-bottom: 16px;
}
.breadcrumb a:hover{ color: #fff; }
.breadcrumb .sep{ opacity: 0.5; }
.page-hero h1{ font-size: clamp(30px, 4vw, 46px); max-width: 700px; }
.page-hero p{ margin-top: 16px; color: var(--text-inverse-muted); max-width: 560px; font-size: 16px; }

/* Contact info cards */
.contact-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.contact-card .ico{
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gradient-brand-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.contact-card .ico svg{ width: 22px; height: 22px; color: var(--red); }
.contact-card h3{ font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.contact-card p, .contact-card a{ font-size: 14.5px; color: var(--text-muted); display: block; }
.contact-card a:hover{ color: var(--red); }

/* Map */
.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-wrap iframe{ width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

/* Careers */
.job-list{ display: grid; gap: 16px; }
.job-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  flex-wrap: wrap;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.job-item:hover{ box-shadow: var(--shadow-md); border-color: transparent; }
.job-item h3{ font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.job-item .meta{ display: flex; gap: 14px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.job-item .meta span{ display: inline-flex; align-items: center; gap: 6px; }
.job-item .meta svg{ width: 14px; height: 14px; color: var(--red); }
.tag{
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.perk-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perk{
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.perk .ico{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.perk .ico svg{ width: 20px; height: 20px; color: #fff; }
.perk h3{ font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.perk p{ font-size: 13.5px; color: var(--text-muted); }

/* Footer */
.site-footer{
  background: var(--navy);
  color: var(--text-inverse-muted);
  padding-top: 72px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark{
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
}
.footer-brand .brand-mark img{ height: 32px; width: auto; }
.footer-brand p{ font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-social{ display: flex; gap: 10px; margin-top: 22px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover{ background: var(--red); transform: translateY(-3px); }
.footer-social svg{ width: 16px; height: 16px; }
.footer-col h4{
  color: #fff;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul{ display: grid; gap: 13px; }
.footer-col a{ font-size: 14.5px; transition: color .2s ease, padding-left .2s ease; }
.footer-col a:hover{ color: #fff; padding-left: 4px; }
.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact svg{ width: 16px; height: 16px; color: var(--teal-light); flex-shrink: 0; margin-top: 3px; }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover{ color: #fff; }
.footer-bottom-links{ display: flex; gap: 22px; }

/* Utility */
.mt-0{ margin-top: 0 !important; }
.text-center{ text-align: center; }
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
section.py{ padding: 100px 0; }
section.py-sm{ padding: 64px 0; }
.bg-soft{ background: var(--bg-soft); }
.bg-navy{ background: var(--navy); color: var(--text-inverse); }

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

/* =========================
   Responsive
   ========================= */
@media (max-width: 1080px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .pillars{ grid-template-columns: repeat(2, 1fr); }
  .acronym-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .industry-grid{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .perk-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px){
  .nav > .nav-links, .nav-cta .btn-dark-outline{ display: none; }
  .nav-toggle{ display: flex; }
  .hero-inner{ grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual{ order: -1; max-width: 320px; margin: 0 auto; }
  .hero-stats{ grid-template-columns: repeat(3, auto); gap: 20px; }
  .split{ grid-template-columns: 1fr; gap: 36px; }
  .split-media{ min-height: 320px; }
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-banner{ flex-direction: column; align-items: flex-start; padding: 40px 28px; }

  .nav-menu-panel{
    display: block;
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: #fff;
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 200;
    padding: 24px;
    overflow-y: auto;
  }
  .nav-menu-panel.open{ transform: translateX(0); }
  .nav-overlay{
    display: block;
    position: fixed; inset: 0;
    background: rgba(10,22,32,0.5);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    z-index: 190;
  }
  .nav-overlay.open{ opacity: 1; pointer-events: auto; }
  .nav-menu-panel .nav-links{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nav-menu-panel .nav-links a{ display: block; padding: 12px 0; width: 100%; }
  .nav-menu-panel .nav-cta{ margin-top: 20px; flex-direction: column; align-items: stretch; }
}
@media (max-width: 720px){
  .services-grid, .pillars, .acronym-grid, .steps{ grid-template-columns: 1fr; }
  .industry-grid{ grid-template-columns: repeat(2, 1fr); }
  .perk-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-stats{ grid-template-columns: 1fr 1fr; }
  section.py{ padding: 64px 0; }
  .page-hero{ padding: 56px 0 44px; }
  .cta-banner{ text-align: left; }
  .form-card{ padding: 26px; }
}
