/* Elite Solution — lead magnet. Brand navy + blue from the real logo. */
:root {
  --navy: #0e1c46;
  --navy-2: #16295f;
  --blue: #2f4fa3;
  --blue-bright: #9db6ff;   /* accent on dark: 9.1:1 on --navy */
  --ground: #f5f7fc;
  --white: #ffffff;
  --ink: #0e1c46;
  --ink-soft: #3c4868;      /* 8.9:1 on white */
  --muted: #5a6582;         /* 5.8:1 on white */
  --line: #dde3f0;
  --radius: 8px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 84px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.has-smoothscroll { scroll-behavior: auto !important; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-stopped { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--blue); color: #fff; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; text-wrap: balance; letter-spacing: -0.03em; line-height: 1.08; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
section[id] { scroll-margin-top: var(--header-h); }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 3px; }
.on-light :focus-visible, .section-light :focus-visible { outline-color: var(--blue); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--white); color: var(--navy); padding: 12px 18px; border-radius: 6px; font-weight: 700;
}
.skip-link:focus { top: 16px; }

.shell { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
.shell-narrow { max-width: 860px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 8px;
  font: 700 15.5px/1 "Manrope", sans-serif; text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out), box-shadow .25s var(--ease-out), transform .16s var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; transition: transform .2s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: #e7edff; box-shadow: 0 10px 28px -10px rgba(157,182,255,.7); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--blue); box-shadow: 0 12px 28px -12px rgba(47,79,163,.8); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { min-height: 48px; padding: 0 20px; font-size: 14.5px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 14px 0 auto; z-index: 50; pointer-events: none;
}
.header-inner {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 1240px; margin: 0 auto; width: calc(100% - var(--gutter) * 2);
  background: var(--white); border-radius: 10px; padding: 10px 10px 10px 22px;
  box-shadow: 0 8px 30px -14px rgba(14,28,70,.35);
}
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 14px;
  font-size: 15px; font-weight: 600; color: var(--ink-soft); text-decoration: none; border-radius: 6px;
}
.nav-links a:not(.btn):hover { color: var(--navy); background: var(--ground); }
.nav-links .nav-cta-item { margin-left: 8px; }
.nav-toggle {
  display: none; width: 48px; height: 48px; border: 0; border-radius: 6px; background: var(--ground);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle-bar { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease-out); }
.site-header.menu-open .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.site-header.menu-open .nav-toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; color: #fff;
  display: flex; align-items: flex-end; overflow: hidden; background: var(--navy);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,28,70,.92) 0%, rgba(14,28,70,.72) 38%, rgba(14,28,70,.1) 70%),
    linear-gradient(0deg, rgba(14,28,70,.85) 0%, rgba(14,28,70,0) 45%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: end;
  padding-top: calc(var(--header-h) + 80px); padding-bottom: clamp(56px, 7vw, 96px);
}
.pill {
  display: inline-flex; align-items: flex-start; gap: 10px; padding: 8px 16px 8px 12px;
  border-radius: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  font-size: 13.5px; font-weight: 600; letter-spacing: .01em; color: #e6ecff; white-space: nowrap;
}
.pill-dot { width: 8px; height: 8px; margin-top: 6px; border-radius: 2px; background: var(--blue-bright); box-shadow: 0 0 0 4px rgba(157,182,255,.2); flex: none; }
.hero h1 { margin-top: 22px; font-size: clamp(42px, 6.2vw, 80px); font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--blue-bright); }
.hero-line { display: block; white-space: nowrap; }
.hero-sub { margin-top: 22px; max-width: 50ch; font-size: 18.5px; color: rgba(255,255,255,.84); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero-cards { display: grid; gap: 14px; justify-items: end; }
.float-card {
  width: 100%; max-width: 340px; background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: 0 24px 50px -24px rgba(0,0,0,.55);
}
.card-label { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.card-figure { margin-top: 4px; font-size: 52px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.card-note { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.meter { margin-top: 16px; height: 8px; background: var(--ground); border-radius: 2px; overflow: hidden; }
.meter-fill { height: 100%; width: 81.5%; background: var(--blue); border-radius: 2px; transform-origin: left; animation: meter 1.4s .4s var(--ease-out) both; }
@keyframes meter { from { transform: scaleX(0); } }
.float-card-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.split-half { padding: 18px 20px; }
.split-half + .split-half { border-left: 1px solid var(--line); }
.split-half strong { display: block; font-size: 15.5px; letter-spacing: -0.01em; }
.split-half span { display: block; margin-top: 2px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* ---------- sections ---------- */
.section { padding-block: clamp(84px, 11vw, 150px); }
.section-light { background: var(--ground); }
.section-navy { background: var(--navy); color: #fff; }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(34px, 4.4vw, 58px); font-weight: 700; }
.section-lede { margin-top: 20px; font-size: 18.5px; color: var(--ink-soft); max-width: 60ch; }
.section-head.center .section-lede { margin-inline: auto; }
.section-navy .section-lede { color: rgba(255,255,255,.78); }

/* about */
.statement { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.22; max-width: 26ch; text-wrap: balance; }
.statement .dim { color: #8d97b3; }
.about-grid { margin-top: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: 1fr 1.25fr; gap: 20px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.stat-card .card-figure { font-size: clamp(64px, 7vw, 96px); color: var(--navy); }
.stat-card p { color: var(--ink-soft); max-width: 36ch; }
.offices { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.offices li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.offices span { color: var(--muted); }
.photo-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px; }
.photo-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-widget {
  position: absolute; left: 24px; bottom: 24px; max-width: 290px;
  background: var(--white); border-radius: 6px; padding: 18px 20px;
  box-shadow: 0 18px 40px -20px rgba(14,28,70,.55);
}
.photo-widget strong { display: block; font-size: 17px; letter-spacing: -0.01em; }
.photo-widget span { display: block; margin-top: 4px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; }

/* services */
.services-block { margin-top: clamp(56px, 7vw, 88px); display: grid; grid-template-columns: 340px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.services-block + .services-block { margin-top: clamp(72px, 9vw, 120px); }
.services-intro { position: sticky; top: calc(var(--header-h) + 24px); }
.services-intro .tag { font-size: 14px; font-weight: 700; color: var(--blue); }
.services-intro h3 { margin-top: 10px; font-size: clamp(28px, 2.8vw, 36px); font-weight: 700; }
.services-intro p { margin-top: 14px; color: var(--ink-soft); }
.services-intro img { margin-top: 26px; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.service-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.service-item { padding: 30px 28px 34px; border-top: 1px solid var(--line); }
.service-item:nth-child(odd) { padding-left: 0; }
.service-item:nth-child(even) { border-left: 1px solid var(--line); }
.service-icon { width: 44px; height: 44px; border-radius: 6px; background: var(--ground); display: grid; place-items: center; color: var(--blue); }
.service-icon svg { width: 22px; height: 22px; }
.service-item h4 { margin: 18px 0 8px; font-size: 20px; letter-spacing: -0.02em; line-height: 1.25; }
.service-item p { color: var(--ink-soft); font-size: 16px; }

/* industries */
.industries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.industry-pills { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.industry-pills li {
  padding: 12px 18px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05);
  font-size: 15px; font-weight: 600; color: #e6ecff;
}
.industries-photo { position: relative; }
.industries-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.industries-photo .photo-widget { left: auto; right: -20px; bottom: -28px; color: var(--ink); }

/* process */
.steps { margin-top: clamp(48px, 6vw, 80px); list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px 36px; }
.step-num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 6px; background: var(--navy); color: #fff; font-size: 15px; font-weight: 700; }
.step h3 { margin-top: 26px; font-size: 22px; letter-spacing: -0.02em; line-height: 1.25; }
.step p { margin-top: 10px; color: var(--ink-soft); font-size: 16px; }

/* breathing band */
.breath { padding-block: clamp(110px, 15vw, 210px); text-align: center; }
.breath .statement { margin: 0 auto; max-width: 22ch; }
.phone-pill {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 14px; min-height: 60px;
  padding: 8px 26px 8px 8px; border-radius: 8px; background: var(--ground); text-decoration: none;
  font-weight: 700; font-size: 17px; font-variant-numeric: tabular-nums;
  transition: background-color .2s var(--ease-out), transform .16s var(--ease-out);
}
.phone-pill:hover { background: #e7edff; }
.phone-pill:active { transform: scale(0.97); }
.phone-pill .phone-icon { width: 44px; height: 44px; border-radius: 6px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.phone-pill svg { width: 18px; height: 18px; }

/* faq */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-grid .btn { margin-top: 30px; }
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  min-height: 72px; padding: 20px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font: 700 18.5px/1.35 "Manrope", sans-serif; letter-spacing: -0.015em; color: var(--ink);
}
.acc-icon { flex: none; width: 36px; height: 36px; border-radius: 6px; background: var(--ground); position: relative; transition: background-color .2s var(--ease-out); }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--navy); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .25s var(--ease-out), background-color .2s; }
.acc-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.acc-item.is-open .acc-icon { background: var(--navy); }
.acc-item.is-open .acc-icon::before, .acc-item.is-open .acc-icon::after { background: #fff; }
.acc-item.is-open .acc-icon::after { transform: translate(-50%,-50%) rotate(0deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease-out); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding: 0 60px 26px 0; color: var(--ink-soft); }

/* final cta */
.cta-section { position: relative; overflow: hidden; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.cta-photo { position: relative; margin-top: 40px; max-width: 420px; }
.cta-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.cta-photo .photo-widget { left: auto; right: -28px; bottom: 32px; color: var(--ink); }
.form-card { background: var(--white); color: var(--ink); border-radius: 10px; padding: clamp(28px, 3.5vw, 44px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); }
.form-title { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.form-sub { margin-top: 6px; color: var(--ink-soft); font-size: 15.5px; }
.form-grid { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field legend { font-size: 14.5px; font-weight: 700; }
.req { color: var(--blue); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 6px; border: 1.5px solid #c7cfe2;
  background: var(--white); font: 500 16px/1.4 "Manrope", sans-serif; color: var(--ink);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,79,163,.18); }
.field input[aria-invalid="true"] { border-color: #b3261e; }
.field-error { font-size: 14px; color: #b3261e; font-weight: 600; }
fieldset.field { border: 0; margin: 0; padding: 0; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 4px; }
.check { display: flex; align-items: center; gap: 10px; min-height: 44px; font-size: 15px; font-weight: 500; cursor: pointer; }
.check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--blue); margin: 0; }
.form-card .btn { margin-top: 24px; width: 100%; }
.form-status { margin-top: 14px; font-weight: 600; color: var(--blue); min-height: 1.6em; }

/* footer */
.site-footer { background: #0a1535; color: rgba(255,255,255,.78); padding-block: 56px 40px; font-size: 15px; }
.footer-inner { display: grid; gap: 22px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-top img { height: 40px; width: auto; }
.footer-line { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-line a, .footer-meta a { color: #fff; text-underline-offset: 3px; }
.footer-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.62); }
.footer-meta a { display: inline-flex; align-items: center; min-height: 48px; }

/* reveal */
.pre-reveal { opacity: 0; transform: translateY(24px); }
.pre-reveal.is-visible { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .float-card { max-width: none; }
  .services-block { grid-template-columns: 1fr; }
  .services-intro { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; align-items: end; }
  .services-intro img { grid-row: 1 / span 3; grid-column: 2; margin-top: 0; aspect-ratio: 16 / 10; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px);
    flex-direction: column; align-items: stretch; gap: 2px; padding: 10px;
    background: var(--white); border-radius: 10px; box-shadow: 0 20px 40px -18px rgba(14,28,70,.45);
  }
  .nav-links.is-open { display: flex; }
  .header-inner { position: relative; }
  .nav-links .nav-cta-item { margin: 6px 0 0; }
  .nav-links .nav-cta-item .btn { width: 100%; color: #fff; }
  .hero-line { white-space: normal; display: inline; }
  .about-grid, .industries-grid, .cta-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .industries-photo .photo-widget { right: 16px; bottom: -24px; }
  .cta-photo { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .hero-cards { display: none; }
  .hero-media img { object-position: 78% center; }
  .hero::after { background: linear-gradient(0deg, rgba(14,28,70,.97) 0%, rgba(14,28,70,.9) 55%, rgba(14,28,70,.35) 100%); }
  .hero-inner { padding-top: calc(var(--header-h) + 120px); }
  .pill { font-size: 12.5px; }
  .hero-sub { font-size: 17px; }
  .hero-cards { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .brand img { height: 34px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item, .service-item:nth-child(odd) { padding: 26px 0 28px; }
  .service-item:nth-child(even) { border-left: 0; }
  .services-intro { display: block; }
  .services-intro img { margin-top: 22px; aspect-ratio: 4 / 3; }
  .photo-card { min-height: 380px; }
  .photo-widget { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .form-grid, .checks { grid-template-columns: 1fr; }
  .form-title { font-size: 21px; white-space: nowrap; }
  .acc-panel p { padding-right: 0; }
  .phone-pill { width: 100%; justify-content: center; }
  .offices li { flex-direction: column; gap: 0; }
}

/* hero stays exactly 100vh on short screens */
@media (max-height: 820px) {
  .hero-inner { padding-top: calc(var(--header-h) + 36px); padding-bottom: 40px; }
  .hero h1 { margin-top: 16px; font-size: clamp(34px, min(6.2vw, 8.4vh), 80px); }
  .hero-sub { margin-top: 16px; font-size: 17px; }
  .hero-actions { margin-top: 24px; }
}
@media (max-height: 820px) and (max-width: 640px) {
  .hero-actions .btn { min-height: 48px; }
  .hero-sub { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .pre-reveal { opacity: 1; transform: none; }
}
