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

:root {
  --ink: #0a1e42;
  --ink-2: #33456b;
  --ink-3: #5b6b88;
  --rule: #dbe3f0;
  --rule-soft: #eaf0fa;
  --paper: #ffffff;
  --paper-2: #f4f7fc;
  --panel: #ffffff;
  --signal: #1a56db;
  --signal-fill: #1a56db;
  --signal-ink: #ffffff;
  --signal-soft: #e8f0fe;
  --signal-on-dark: #8fb4ff;
  --navy-band: #0a1e42;
  --star: #f5a623;
  --accordion-bg: #ffffff;
  --accordion-ink: #0a1e42;
  --accordion-ink-2: #33456b;
  --accordion-accent: #1a56db;

  /* legacy aliases kept so shared component CSS across sibling sites still resolves */
  --slate: #0a1e42;
  --slate-2: #ffffff;
  --slate-3: #f4f7fc;
  --navy: #0a1e42;
  --navy-deep: #061530;
  --navy-mid: #33456b;
  --navy-line: #dbe3f0;
  --brass: #1a56db;
  --brass-light: #2f68e8;
  --brass-dark: #12409e;
  --bone: #ffffff;
  --bone-warm: #f4f7fc;
  --ink-soft: #33456b;
  --muted: #5b6b88;
  --sea: #1a56db;
  --amber: #cf8b12;
  --amber-dark: #a5700c;
  --teal: #1a56db;
  --line: #dbe3f0;
  --line-soft: #eaf0fa;
  --paper-alt: #f4f7fc;

  --wrap: 1220px;
  --display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --text: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --data: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 17px;
  --fs-lg: 19px;
  --fs-xl: 21px;
  --fs-2xl: 23px;
  --tap: 52px;
  --gut: 18px;
  --r: 12px;
  --r-sm: 8px;
  --shadow: 0 6px 20px rgba(10,30,66,0.08);
  --shadow-lg: 0 18px 44px rgba(10,30,66,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--text);
  color: var(--ink);
  background: var(--paper);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--ink-2); }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1.3em; height: 1.3em; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--text); font-weight: 700; font-size: var(--fs-sm);
  padding: 0 22px; height: var(--tap); border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  letter-spacing: .02em;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--signal); color: var(--signal-ink); }
.btn--primary:hover { background: var(--brass-dark); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--ink); }
.btn--navy { background: var(--ink); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--block { width: 100%; }
.btn--sm { height: 42px; padding: 0 16px; font-size: var(--fs-xs); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--ink); color: #cfd9ec; font-size: 12.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar__left { font-weight: 500; letter-spacing: .01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.topbar__lang { position: relative; display: flex; align-items: center; gap: 6px; cursor: pointer; color: #cfd9ec; }
.topbar__lang select { background: transparent; color: #cfd9ec; border: none; font-size: 12.5px; font-family: var(--text); cursor: pointer; }
.topbar__lang select option { color: #0a1e42; }
.topbar__phone { display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; }
.topbar__phone svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.header { background: var(--paper); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 40; }
.header__inner { display: flex; align-items: center; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink);
  color: #fff; flex-shrink: 0;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__word { display: flex; flex-direction: column; line-height: 1.2; }
.brand__top { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--ink); letter-spacing: .01em; }
.brand__bottom { font-family: var(--display); font-weight: 700; font-size: 12.5px; color: var(--signal); letter-spacing: .01em; }

.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__link { position: relative; font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 8px 2px; display: flex; align-items: center; gap: 5px; }
.nav__link:hover { color: var(--signal); }
.nav__link svg { width: 12px; height: 12px; }
.nav__cta { flex-shrink: 0; }
.header__toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--paper); padding: 56px 0 60px; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.hero__inner { position: relative; z-index: 1; display: flex; align-items: center; width: 100%; }
.hero__lead { width: 58%; max-width: 720px; flex-shrink: 0; padding-right: 40px; }
.hero h1 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; color: var(--ink); }

.hero__media { position: absolute; top: 0; right: 0; bottom: 0; left: 58%; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.hero__media-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(255,255,255,.85) 18%, rgba(255,255,255,0) 45%);
}
.hero__sub { font-size: var(--fs-lg); font-weight: 600; color: var(--ink-2); margin-bottom: 14px; }
.hero__cats { font-size: var(--fs-sm); margin-bottom: 20px; }
.hero__cats a { color: var(--signal); font-weight: 700; }
.hero__cats a:not(:last-child)::after { content: " · "; color: var(--ink-3); font-weight: 400; }

.trustrow { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 0 0 26px; }
.trustrow li { display: flex; align-items: flex-start; gap: 8px; max-width: 220px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.trustrow svg { width: 20px; height: 20px; color: var(--signal); flex-shrink: 0; margin-top: 1px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero__urgent { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: .01em; margin-bottom: 2px; }
.hero__urgent-sub { color: var(--ink-3); font-size: 14px; margin: 0; }


/* ---------- Section shells ---------- */
.section { padding: 64px 0; }
.section--warm { background: var(--paper-2); }
.section--paper { background: var(--paper); }
.section__head { margin-bottom: 34px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.plate { font-size: 12.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--signal); margin-bottom: 8px; }
.lede { color: var(--ink-2); font-size: var(--fs-md); }

/* ---------- Down grid (9 cards) ---------- */
.downgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.downgrid li:nth-child(n+6) { grid-column: span 1; }
.downcard { display: block; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 20px 16px; text-align: center; height: 100%; transition: box-shadow .15s ease, transform .15s ease; }
.downcard:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.downcard__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); margin-bottom: 12px; }
.downcard__icon svg { width: 26px; height: 26px; }
.downcard__label { display: block; font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; }
.downcard__note { display: block; font-size: 12.5px; color: var(--ink-3); margin-bottom: 12px; }
.downcard__thumb { height: 54px; border-radius: 7px; background: linear-gradient(135deg, var(--rule-soft), var(--rule)); display: flex; align-items: center; justify-content: center; color: var(--ink-3); }
.downcard__thumb svg { width: 22px; height: 22px; opacity: .5; }

.callbanner { margin-top: 34px; background: var(--signal-soft); border-radius: var(--r); padding: 20px 26px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; flex-wrap: wrap; }
.callbanner svg { width: 26px; height: 26px; color: var(--signal); }
.callbanner span { font-weight: 800; color: var(--ink); font-size: 15.5px; letter-spacing: .01em; }

/* ---------- Who we serve ---------- */
.servegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.servecard { position: relative; }
.servecard__panel { border-radius: var(--r); aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ink), var(--signal)); display: grid; place-items: center; }
.servecard__panel svg { width: 46px; height: 46px; color: rgba(255,255,255,.75); }
.servecard__icon { width: 58px; height: 58px; border-radius: 50%; background: var(--signal); color: #fff; display: grid; place-items: center; border: 4px solid var(--paper); margin: -30px 0 14px 20px; position: relative; z-index: 1; box-shadow: var(--shadow); }
.servecard__icon svg { width: 26px; height: 26px; }
.servecard__body { padding: 0 6px; }
.servecard__body h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.servecard__body p { font-size: 13.5px; color: var(--ink-2); margin: 0; }

/* ---------- Callout row ---------- */
.calloutrow { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.callout { border-radius: var(--r); padding: 32px; }
.callout--blue { background: #eaf1fe; }
.callout--amber { background: #fdf3e2; }
.callout h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.callout > p { color: var(--ink-2); margin-bottom: 18px; }
.subcard { background: #fff; border-radius: var(--r-sm); padding: 18px 20px; margin-bottom: 18px; box-shadow: var(--shadow); }
.subcard h4 { font-size: 14px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.subcard p { font-size: 13.5px; color: var(--ink-2); margin-bottom: 0; }
.subcard__note { font-size: 12px; color: #8a6a1c; font-style: italic; margin-top: 8px; margin-bottom: 0; }
.subcard__note--legal { color: #9a3b1c; }
.callout__bold { font-weight: 800; font-size: 15.5px; color: var(--ink); margin-bottom: 6px; }

/* ---------- Industries grid ---------- */
.indgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px 16px; text-align: center; }
.indgrid li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.indgrid__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--rule); display: grid; place-items: center; color: var(--signal); }
.indgrid__icon svg { width: 22px; height: 22px; }
.indgrid span { font-size: 13px; font-weight: 600; color: var(--ink); }
.indgrid__also { text-align: center; color: var(--ink-3); font-size: 12.5px; margin-top: 26px; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Trust strip (dark) ---------- */
.truststrip { background: var(--ink); padding: 52px 0; }
.truststrip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.truststrip__item { text-align: center; }
.truststrip__icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; margin: 0 auto 14px; color: #fff; }
.truststrip__icon svg { width: 24px; height: 24px; }
.truststrip__item h3 { color: #fff; font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.truststrip__item p { color: #a9b8d6; font-size: 13px; margin: 0; }

/* ---------- Final CTA bar ---------- */
.finalcta { background: var(--signal-soft); padding: 30px 0; }
.finalcta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.finalcta__text { display: flex; align-items: center; gap: 14px; }
.finalcta__text svg { width: 34px; height: 34px; color: var(--signal); flex-shrink: 0; }
.finalcta__text h2 { font-size: 20px; font-weight: 800; margin: 0; color: var(--ink); }
.finalcta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.finalcta__actions .btn small { display: block; font-weight: 500; font-size: 10.5px; opacity: .85; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9c5de; padding: 56px 0 0; }
.footer__top { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.footer__tagline { color: #8fa0c4; font-size: 13px; margin: 4px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h4 { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer ul a:hover { color: #fff; }
.footer__contactitem { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 13.5px; }
.footer__contactitem svg { width: 16px; height: 16px; color: var(--signal-on-dark); flex-shrink: 0; }
.footer__social { display: flex; gap: 12px; margin: 28px 0; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--signal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #8fa0c4; }
.footer__bottom a { margin-left: 16px; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Utility ---------- */
.callrule { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--paper-2); border-radius: var(--r); padding: 20px 26px; margin-top: 30px; flex-wrap: wrap; }
.callrule__txt { margin: 0; font-weight: 700; color: var(--ink); }

/* ---------- Form ---------- */
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.formcard { background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow); }
.fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-family: var(--data); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-family: var(--text); font-size: var(--fs-base); color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-sm);
  transition: border-color .15s linear, box-shadow .15s linear;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); }
.field__err { display: block; margin-top: 6px; font-size: var(--fs-xs); font-weight: 600; color: #b3261e; }
.formalt { margin: 20px 0 6px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.formnote { margin: 14px 0 0; font-size: var(--fs-xs); line-height: 1.6; color: var(--ink-3); }
.formok { margin: 0 0 18px; padding: 14px 16px; border-radius: var(--r-sm); background: var(--signal-soft); color: #12742f; font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; }

/* ---------- Brand matrix ---------- */
.brandmatrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brandgroup { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 22px 24px; }
.brandgroup h3 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.brandgroup__scope { font-size: 12px; color: var(--ink-3); font-style: italic; margin-bottom: 10px; }
.brandgroup__list { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.brandgroup--note { display: flex; flex-direction: column; justify-content: center; background: var(--paper-2); }
.brandmatrix__disclaimer { margin-top: 26px; padding: 16px 20px; border-radius: var(--r-sm); background: #fdf3e2; border: 1px solid #f0dcae; font-size: 13px; color: #6b4d10; line-height: 1.6; }

/* ---------- Maintenance plan ---------- */
.maintgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.maintcard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 20px 18px; }
.maintcard__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); margin-bottom: 12px; }
.maintcard__icon svg { width: 22px; height: 22px; }
.maintcard h3 { font-size: 14.5px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.maintcard p { font-size: 12.5px; color: var(--ink-3); margin: 0; }
.maintplan__product { font-family: var(--data); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--signal); text-transform: uppercase; margin-bottom: 6px; }
.maintplan__callout { margin-top: 30px; padding: 20px 24px; border-radius: var(--r); background: var(--paper-2); border: 1px solid var(--rule); display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between; }
.maintplan__callout p { margin: 0; font-size: 13.5px; color: var(--ink-2); max-width: 62ch; }

/* ---------- Process steps ---------- */
.processgrid { display: grid; gap: 34px; }
.processgrid__lead { max-width: 640px; margin: 0 auto; text-align: center; }
.processgrid__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.procstep { text-align: center; padding: 22px 14px; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); }
.procstep__num { display: block; font-family: var(--data); font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; margin-bottom: 10px; }
.procstep__badge { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); }
.procstep__badge svg { width: 24px; height: 24px; stroke-width: 1.7; }
.procstep__label { display: block; font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.procstep__text { display: block; font-size: 12px; color: var(--ink-3); }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 56px; font-family: var(--data); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.callbar__call { flex: 1.7; background: var(--signal); color: #fff; }
.callbar__call svg { width: 18px; height: 18px; stroke-width: 2.2; }
.callbar__alt { flex: 1; background: var(--ink); color: #fff; font-size: 12px; }

/* ---------- Lightshare relationship note ---------- */
.footer__lightshare { font-size: 12.5px; color: #a9b8d6; line-height: 1.7; max-width: 62ch; margin: 0 0 26px; }
.footer__lightshare a { color: var(--signal-on-dark); font-weight: 700; text-decoration: underline; }
.footer__lightshare a:hover { color: #fff; }

@media (max-width: 980px) {
  .calloutrow { grid-template-columns: 1fr; }
  .hero__lead { max-width: none; }
  .hero__media { display: none; }
  .downgrid { grid-template-columns: repeat(3, 1fr); }
  .servegrid { grid-template-columns: 1fr; }
  .indgrid { grid-template-columns: repeat(3, 1fr); }
  .truststrip__grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .header__toggle { display: block; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .formgrid { grid-template-columns: 1fr; }
  .brandmatrix { grid-template-columns: 1fr; }
  .maintgrid { grid-template-columns: repeat(2, 1fr); }
  .processgrid__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fieldrow { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .downgrid { grid-template-columns: repeat(2, 1fr); }
  .indgrid { grid-template-columns: repeat(2, 1fr); }
  .truststrip__grid { grid-template-columns: 1fr; }
  .topbar__left { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .finalcta__inner { justify-content: center; text-align: center; }
  .maintgrid { grid-template-columns: 1fr; }
  .processgrid__steps { grid-template-columns: 1fr; }
  body { padding-bottom: 56px; }
  .callbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; border-top: 1px solid var(--rule); }
}
