/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE IT SOLUTIONS (CITS) — Shared Design System
   Clean editorial palette · Playfair Display + Manrope
   ═══════════════════════════════════════════════════════ */

/* Nav is position:fixed — push all page content beneath it.
   scroll-padding-top offsets anchor jumps for fixed nav + sticky pill strip. */
html { scroll-padding-top: 130px; }

:root {
  --paper:    #fafaf8;
  --paper-2:  #f3f2ef;
  --ink:      #0d0d0d;
  --ink-2:    #2b2b2b;
  --ink-3:    #6b6b6b;
  --ink-4:    #a0a0a0;
  --rule:     #e0e0e0;
  --rule-lt:  #f0f0f0;
  --accent:   #1a4fff;
  --accent-h: #1640e8;
  --dark:     #0d0d0d;
  --white:    #ffffff;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Manrope', 'Helvetica Neue', sans-serif;
  --max:      1300px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; padding-top: 70px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

/* ── Utility ────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 52px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-filled  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-filled:hover  { background: var(--accent-h); border-color: var(--accent-h); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,248,.93);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.nav__logo span { font-family: var(--sans); font-size: .5rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); vertical-align: super; margin-left: 3px; }
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
@media (max-width: 900px) { .nav__links { gap: 0; } }
.nav__links a { font-size: .77rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); transition: color .18s; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav-cta { background: var(--ink); color: #fff !important; padding: 10px 22px; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid var(--ink); transition: background .18s, border-color .18s; }
.nav-cta:hover { background: var(--accent) !important; border-color: var(--accent) !important; }

/* ── Nav Dropdown ───────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav__dropdown > a::after { content: '▾'; font-size: .6rem; opacity: .55; transition: opacity .18s; }
.nav__dropdown:hover > a::after { opacity: 1; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  min-width: 230px; background: var(--white);
  border: 1px solid var(--rule); padding: 8px 0;
  padding-top: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 400;
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.nav__dropdown-menu a { display: block; padding: 10px 20px; font-size: .72rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); transition: background .15s, color .15s; }
.nav__dropdown-menu a:hover { background: var(--paper); color: var(--ink); }
.dropdown-divider { height: 1px; background: var(--rule); margin: 6px 0; }
.dropdown-all { color: var(--accent) !important; font-weight: 700 !important; }
.dropdown-all:hover { color: var(--accent-h) !important; }

/* ── Page Header ────────────────────────────────── */
.pg-header { background: var(--paper-2); border-bottom: 1px solid var(--rule); }
.pg-header__inner { display: grid; grid-template-columns: 56fr 44fr; gap: 80px; padding: 52px 0 48px; align-items: center; }
@media (max-width: 900px) { .pg-header__inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; } }
.pg-header__crumb { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 32px; }
.pg-header__crumb a { color: var(--accent); transition: color .18s; }
.pg-header__crumb a:hover { color: var(--accent-h); }
.pg-header__eye { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.pg-header__eye-line { width: 36px; height: 1px; background: var(--accent); flex-shrink: 0; }
.pg-header__eye-text { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.pg-header__h1 { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; color: var(--ink); margin-bottom: 22px; }
.pg-header__h1 i { font-style: italic; color: var(--accent); }
.pg-header__lead { font-size: .97rem; font-weight: 300; line-height: 1.8; color: var(--ink-3); max-width: 480px; margin-bottom: 38px; }
.pg-header__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pg-header__right { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }
.pg-header__stat { background: var(--paper); padding: 28px 32px; }
.pg-header__stat-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 400; letter-spacing: -.04em; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.pg-header__stat-num em { color: var(--accent); font-style: normal; }
.pg-header__stat-label { font-size: .7rem; font-weight: 400; color: var(--ink-4); letter-spacing: .04em; }
.pg-header__photo-wrap { flex: 1; min-height: 240px; overflow: hidden; position: relative; }
.pg-header__photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(.95) saturate(.8); display: block; }

/* ── Section headers ────────────────────────────── */
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0 56px; border-bottom: 1px solid var(--rule); }
@media (max-width: 768px) { .sec-head { grid-template-columns: 1fr; gap: 16px; padding: 56px 0 40px; } }
.sec-kicker { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 16px; }
.sec-title { font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.8rem); font-weight: 500; line-height: 1.18; letter-spacing: -.025em; color: var(--ink); }
.sec-title i { font-style: italic; color: var(--accent); }
.sec-body-p { display: flex; align-items: flex-end; }
.sec-body-p p { font-size: .95rem; font-weight: 300; line-height: 1.8; color: var(--ink-3); max-width: 440px; }

/* ── Feature grid ───────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
@media (max-width: 640px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-cell { padding: 52px 48px; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); transition: background .2s; }
.feat-cell:nth-child(even) { border-right: none; }
.feat-cell:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 640px) { .feat-cell { border-right: none !important; } .feat-cell:last-child { border-bottom: none; } }
.feat-cell:hover { background: var(--paper-2); }
.feat-num { font-family: var(--serif); font-style: italic; font-size: .85rem; color: var(--accent); margin-bottom: 20px; }
.feat-cell h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.feat-cell p { font-size: .87rem; font-weight: 300; line-height: 1.75; color: var(--ink-3); }

/* ── Service list rows ──────────────────────────── */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
@media (max-width: 768px) { .svc-list { grid-template-columns: 1fr; } }
.svc-row { display: grid; grid-template-columns: 48px 1fr 22px; gap: 18px; align-items: start; padding: 34px 48px 34px 0; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); transition: background .2s; cursor: default; }
.svc-list .svc-row:nth-child(even) { border-right: none; padding-left: 48px; padding-right: 0; }
@media (max-width: 768px) { .svc-row { border-right: none !important; padding: 28px 0 !important; } .svc-list .svc-row:nth-child(even) { padding-left: 0 !important; } }
.svc-row:last-child, .svc-row:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.svc-row:hover { background: var(--paper); }
.svc-num { font-family: var(--serif); font-style: italic; font-size: .75rem; color: var(--accent); padding-top: 2px; }
.svc-name { font-size: .93rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: -.01em; }
.svc-desc { font-size: .82rem; font-weight: 300; color: var(--ink-3); line-height: 1.7; }
.svc-arrow { color: var(--accent); opacity: 0; transition: opacity .2s; padding-top: 2px; font-size: .95rem; }
.svc-row:hover .svc-arrow { opacity: 1; }

/* ── Check list ─────────────────────────────────── */
.check-list { list-style: none; margin-bottom: 40px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: .9rem; font-weight: 400; color: var(--ink-2); line-height: 1.6; padding: 10px 0; border-bottom: 1px solid var(--rule-lt); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; font-size: .75rem; font-weight: 700; color: var(--accent); flex-shrink: 0; padding-top: 2px; }

/* ── Pill strip ─────────────────────────────────── */
.pill-strip {
  position: sticky; top: 70px; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.pill-strip__inner { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 0 24px; }
.pill-strip a { font-size: .75rem; font-weight: 500; color: var(--ink-3); letter-spacing: .02em; padding: 6px 16px; border: 1px solid var(--rule); border-radius: 100px; transition: background .18s, border-color .18s, color .18s; white-space: nowrap; }
.pill-strip a:hover, .pill-strip a.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Marquee ────────────────────────────────────── */
.marquee { background: var(--dark); overflow: hidden; padding: 14px 0; }
.marquee__track { display: flex; animation: marquee 35s linear infinite; white-space: nowrap; }
.marquee__track:hover { animation-play-state: paused; }
.mi { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 0 28px; flex-shrink: 0; }
.mi b { color: rgba(255,255,255,.8); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Dark band ──────────────────────────────────── */
.dark-band { background: var(--dark); padding: 88px 0; }
@media (max-width: 768px) { .dark-band { padding: 60px 0; } }
.db-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .db-inner { grid-template-columns: 1fr; gap: 48px; } }
.db-kicker { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.db-title { font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.75rem); font-weight: 500; line-height: 1.2; letter-spacing: -.025em; color: #fff; margin-bottom: 22px; }
.db-body { font-size: .92rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.45); margin-bottom: 32px; }
.iso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.07); }
.iso-cell { background: rgba(255,255,255,.02); padding: 30px 26px; transition: background .2s; }
.iso-cell:hover { background: rgba(255,255,255,.05); }
.iso-code { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: #fff; letter-spacing: -.02em; margin-bottom: 6px; }
.iso-label { font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.3); letter-spacing: .03em; line-height: 1.5; }
.iso-wide { grid-column: span 2; background: rgba(26,79,255,.10); border-top: 1px solid rgba(26,79,255,.28); padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.iso-wide .iso-code { font-size: 1rem; margin-bottom: 3px; }

/* ── Why us ─────────────────────────────────────── */
.why { padding: 0 0 88px; background: var(--paper); }
.why__grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--rule); }
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }
.why-card { padding: 38px 30px; border-right: 1px solid var(--rule); transition: background .2s; }
.why-card:last-child { border-right: none; }
@media (max-width: 900px) { .why-card:nth-child(2) { border-right: none; } .why-card:nth-child(3), .why-card:nth-child(4) { border-top: 1px solid var(--rule); } .why-card:nth-child(4) { border-right: none; } }
.why-card:hover { background: var(--paper-2); }
.why-mark { font-size: 1.1rem; margin-bottom: 26px; color: var(--accent); display: block; }
.why-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.why-body { font-size: .8rem; font-weight: 300; color: var(--ink-3); line-height: 1.75; }
.why-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--rule); color: var(--accent); margin-bottom: 24px; flex-shrink: 0; }
.why-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-label { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.why__grid--3col { grid-template-columns: repeat(3,1fr) !important; }
.why__grid--3col .why-card { border-bottom: 1px solid var(--rule); }
.why__grid--3col .why-card:nth-child(3n) { border-right: none; }
.why__grid--3col .why-card:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 900px) { .why__grid--3col { grid-template-columns: 1fr 1fr !important; } .why__grid--3col .why-card:nth-child(3n) { border-right: 1px solid var(--rule); } .why__grid--3col .why-card:nth-child(2n) { border-right: none; } .why__grid--3col .why-card:nth-last-child(-n+2) { border-bottom: none; } }

/* ── CTA strip ──────────────────────────────────── */
.cta-strip { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cta-strip__inner { padding: 80px 0; text-align: center; }
.cta-strip h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 500; letter-spacing: -.025em; color: var(--ink); margin-bottom: 16px; line-height: 1.15; }
.cta-strip h2 i { font-style: italic; color: var(--accent); }
.cta-strip p { font-size: .95rem; font-weight: 300; color: var(--ink-3); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.cta-strip__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── One-col content area ───────────────────────── */
.content-section { background: var(--white); border-bottom: 1px solid var(--rule); }
.content-section .wrap { padding-top: 72px; padding-bottom: 72px; }
.content-section--alt { background: var(--paper); }
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .split-content { grid-template-columns: 1fr; gap: 40px; } }
.split-content__img { position: relative; overflow: hidden; }
.split-content__img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(.95) saturate(.8); }

/* ── Process list ───────────────────────────────── */
.process-list { list-style: none; }
.process-item { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--rule); align-items: start; }
.process-item:last-child { border-bottom: none; }
.process-num { font-family: var(--serif); font-style: italic; font-size: 2rem; font-weight: 400; color: var(--rule); line-height: 1; }
.process-title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.process-body { font-size: .87rem; font-weight: 300; color: var(--ink-3); line-height: 1.75; }

/* ── Sectors grid ───────────────────────────────── */
.sector-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--rule); }
@media (max-width: 900px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
.sector-card { padding: 40px 30px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background .2s; }
.sector-card:hover { background: var(--paper-2); }
.sector-icon { width: 44px; height: 44px; border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; color: var(--ink-3); margin-bottom: 20px; }
.sector-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sector-name { font-size: .93rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.sector-desc { font-size: .82rem; font-weight: 300; color: var(--ink-3); line-height: 1.7; }

/* ── Team grid ──────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { background: var(--paper); padding: 36px 28px; }
.team-card__name { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.team-card__role { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.team-card__bio { font-size: .82rem; font-weight: 300; color: var(--ink-3); line-height: 1.7; }

/* ── Contact form ───────────────────────────────── */
.contact-section { background: var(--paper-2); border-top: 1px solid var(--rule); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 0 auto; }
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; } }
.contact__left { padding: 80px 52px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--rule); }
@media (max-width: 900px) { .contact__left { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--rule); } }
.contact__left h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.9rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; color: var(--ink); margin-bottom: 18px; }
.contact__left h2 i { font-style: italic; color: var(--accent); }
.contact__left > p { font-size: .93rem; font-weight: 300; color: var(--ink-3); line-height: 1.8; max-width: 400px; margin-bottom: 40px; }
.contact__hotline-label { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 6px; }
.contact__hotline-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.03em; color: var(--accent); }
.contact__hotline-sub { font-size: .72rem; color: var(--ink-4); margin-top: 4px; }
.contact__form { padding: 72px 52px; background: var(--white); }
@media (max-width: 900px) { .contact__form { padding: 52px 24px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: 8px; }
.form-group input:not([type="checkbox"]), .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--rule); background: var(--paper); font-family: var(--sans); font-size: .87rem; color: var(--ink); outline: none; transition: border-color .2s, background .2s; -webkit-appearance: none; border-radius: 0; }
.form-group input:not([type="checkbox"]):focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-group input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; padding: 0; border: 2px solid var(--ink-3); background: #fff; -webkit-appearance: auto; appearance: auto; cursor: pointer; border-radius: 3px; flex-shrink: 0; accent-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; padding: 14px; background: var(--ink); color: #fff; border: none; cursor: pointer; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .2s; }
.btn-submit:hover { background: var(--accent); }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; }
.form-feedback { margin-top: 18px; padding: 14px 18px; font-size: .85rem; font-weight: 500; line-height: 1.5; }
.form-feedback--ok  { background: #ecfdf5; color: #065f46; border-left: 3px solid #10b981; }
.form-feedback--err { background: #fef2f2; color: #7f1d1d; border-left: 3px solid #ef4444; }

/* ── Info items ─────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
@media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }
.info-cell { background: var(--paper-2); padding: 36px 32px; }
.info-cell__label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 10px; }
.info-cell__value { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.info-cell__sub { font-size: .8rem; font-weight: 300; color: var(--ink-3); margin-top: 4px; }

/* ── Footer ─────────────────────────────────────── */
footer { border-top: 1px solid var(--rule); background: var(--paper); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding: 64px 0 52px; border-bottom: 1px solid var(--rule); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.footer__tagline { font-size: .82rem; font-weight: 300; color: var(--ink-3); line-height: 1.7; max-width: 280px; margin-bottom: 22px; }
.footer__contact a { display: block; font-size: .8rem; color: var(--ink-3); margin-bottom: 6px; transition: color .18s; }
.footer__contact a:hover { color: var(--accent); }
.footer__col-title { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 18px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { font-size: .82rem; font-weight: 400; color: var(--ink-3); transition: color .18s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: .71rem; color: var(--ink-4); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-size: .71rem; color: var(--ink-4); transition: color .18s; }
.footer__legal a:hover { color: var(--ink-3); }

/* ── Scroll reveal ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ── Hero (homepage) ─────────────────────────────── */
.hero { padding-top: 44px; display: grid; grid-template-columns: 1fr 1fr; min-height: 72vh; max-width: var(--max); margin: 0 auto; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; min-height: auto; } }
.hero__text { padding: 52px 52px 48px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--rule); }
@media (max-width: 900px) { .hero__text { padding: 60px 24px 48px; border-right: none; border-bottom: 1px solid var(--rule); } }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.hero__eyebrow-line { width: 36px; height: 1px; background: var(--accent); flex-shrink: 0; }
.hero__eyebrow-text { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.hero__h1 { font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 5.2rem); font-weight: 500; line-height: 1.06; letter-spacing: -.025em; color: var(--ink); margin-bottom: 28px; }
.hero__h1 i { font-style: italic; color: var(--accent); }
.hero__sub { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--ink-3); max-width: 480px; margin-bottom: 48px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__visual { position: relative; overflow: hidden; background: var(--paper-2); }
@media (max-width: 900px) { .hero__visual { min-height: 340px; } }
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: contrast(.96) saturate(.85); }
.hero__stats { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(3,1fr); background: rgba(15,15,14,.78); backdrop-filter: blur(6px); }
.hero__stat { padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.hero__stat:last-child { border-right: none; }
.hero__stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: #fff; letter-spacing: -.04em; line-height: 1; margin-bottom: 5px; }
.hero__stat-num em { color: var(--accent); font-style: normal; }
.hero__stat-label { font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.45); letter-spacing: .04em; }

/* ── Capabilities 2×2 (homepage) ───────────────── */
.caps { background: var(--paper); }
.caps__grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .caps__grid { grid-template-columns: 1fr; } }
.cap-cell { padding: 52px 48px; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); transition: background .2s; }
.cap-cell:nth-child(even) { border-right: none; }
.cap-cell:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 640px) { .cap-cell { border-right: none !important; } .cap-cell:last-child { border-bottom: none; } }
.cap-cell:hover { background: var(--paper-2); }
.cap-cell__num { font-family: var(--serif); font-style: italic; font-size: .85rem; color: var(--accent); margin-bottom: 20px; }
.cap-cell h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.cap-cell p { font-size: .87rem; font-weight: 300; line-height: 1.75; color: var(--ink-3); }

/* ── Services section (homepage) ────────────────── */
.services { background: var(--white); }

/* ── One provider (homepage) ─────────────────────── */
.one-provider { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.one-provider__inner { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 0 auto; }
@media (max-width: 900px) { .one-provider__inner { grid-template-columns: 1fr; } }
.one-provider__img { position: relative; overflow: hidden; min-height: 420px; }
.one-provider__img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(.95) saturate(.8); }
.one-provider__content { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--rule); }
@media (max-width: 900px) { .one-provider__content { padding: 52px 24px; border-left: none; border-top: 1px solid var(--rule); } }
.one-provider__content h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; color: var(--ink); margin-bottom: 28px; }
.one-provider__content h2 i { font-style: italic; color: var(--accent); }

/* ── Compliance dark section (homepage) ─────────── */
.compliance { background: var(--dark); padding: 88px 52px; }
@media (max-width: 768px) { .compliance { padding: 60px 24px; } }
.compliance__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .compliance__inner { grid-template-columns: 1fr; gap: 48px; } }
.c-kicker { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.c-title { font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.75rem); font-weight: 500; line-height: 1.2; letter-spacing: -.025em; color: #fff; margin-bottom: 22px; }
.c-body { font-size: .92rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.45); }

/* ── Sectors strip (homepage) ───────────────────── */
.sectors { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 64px 0; }
.sectors__head { text-align: center; margin-bottom: 44px; }
.sectors__head p { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); }
.sectors__grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--rule); }
@media (max-width: 640px) { .sectors__grid { grid-template-columns: 1fr 1fr; } }
.sector-cell { padding: 32px 28px; border-right: 1px solid var(--rule); display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; transition: background .2s; cursor: default; }
.sector-cell:last-child { border-right: none; }
@media (max-width: 640px) { .sector-cell:nth-child(2) { border-right: none; } .sector-cell:nth-child(3), .sector-cell:nth-child(4) { border-top: 1px solid var(--rule); } .sector-cell:nth-child(4) { border-right: none; } }
.sector-cell:hover { background: var(--paper); }
.sector-label { font-size: .78rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }

/* ── Skip link ───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ── Focus visible ───────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Mobile nav burger ───────────────────────────── */
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s, width .2s;
  transform-origin: center;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; width: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  /* Step 1: strip backdrop-filter from nav on mobile.
     backdrop-filter creates an iOS/Chrome stacking context that traps
     position:fixed children inside the nav element instead of the viewport.
     Without it, position:fixed works correctly again. */
  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(250,250,248,.98) !important;
  }

  /* Step 2: show the burger, hide desktop links */
  .nav__burger { display: flex !important; }
  .nav__links   { display: none !important; }

  /* Step 3: when open, the menu is a full-screen fixed overlay */
  .nav--open .nav__links {
    display: flex !important;
    position: fixed !important;       /* fixed to viewport — works because backdrop-filter is gone */
    top: 70px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--paper);
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--rule);
    padding: 0 0 60px;
    gap: 0 !important;
  }

  /* Step 4: list items and links */
  .nav__links li {
    display: block !important;
    border-bottom: 1px solid var(--rule-lt);
    margin: 0 24px;
  }
  .nav__links > li > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink) !important;
    letter-spacing: 0;
    text-transform: none !important;
  }

  /* Step 5: dropdown chevron */
  .nav__dropdown > a::after {
    content: '›' !important;
    display: inline-block !important;
    font-size: 1.4rem;
    line-height: 1;
    opacity: .35;
    transition: transform .2s, opacity .2s;
    flex-shrink: 0;
  }
  .nav__dropdown.open > a::after { transform: rotate(90deg); opacity: .7; }

  /* Step 6: kill ALL desktop dropdown behaviour on mobile */
  .nav__dropdown > a { gap: 0 !important; }
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown-menu {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    background: var(--paper-2) !important;
    border: none !important;
    border-left: 3px solid var(--accent) !important;
    padding: 4px 0 10px 20px !important;
    margin: 0 !important;
    min-width: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Step 7: show sub-menu when parent has .open */
  .nav__dropdown.open .nav__dropdown-menu { display: block !important; }

  /* Step 8: sub-menu link styles */
  .nav__dropdown-menu a {
    display: block !important;
    padding: 11px 0 !important;
    font-size: .9rem !important;
    font-weight: 400 !important;
    color: var(--ink-2) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    background: none !important;
    border: none !important;
  }
  .nav__dropdown-menu a:hover { color: var(--accent) !important; background: none !important; }
  .nav__dropdown-menu .dropdown-divider { display: none !important; }

  /* Step 9: CTA button */
  .nav__links .nav-cta {
    display: inline-flex !important;
    margin: 20px 24px 0 !important;
    align-self: flex-start;
    color: #fff !important;
  }
}

/* ── Cookie consent banner ──────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--ink); color: rgba(255,255,255,.85);
  padding: 14px 32px; display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap; font-size: .78rem; font-weight: 300; line-height: 1.6;
  border-top: 2px solid var(--accent);
}
.cookie-banner a { color: #7da8ff; text-decoration: underline; }
.cookie-banner__btn {
  background: var(--accent); color: #fff; border: none;
  padding: 8px 22px; border-radius: 4px; font-size: .78rem;
  font-weight: 600; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .18s;
}
.cookie-banner__btn:hover { background: var(--accent-h, #1040ee); }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — values grid, timeline, cert badges
   ═══════════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); margin-top: 56px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-cell { background: var(--paper); padding: 44px 36px; transition: background .2s; }
.value-cell:hover { background: var(--paper-2); }
.value-num { font-family: var(--serif); font-style: italic; font-size: .85rem; color: var(--accent); margin-bottom: 18px; }
.value-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.value-body { font-size: .87rem; font-weight: 300; color: var(--ink-3); line-height: 1.75; }
.timeline { list-style: none; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--rule); }
.tl-item:last-child { border-bottom: none; }
.tl-year { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--accent); letter-spacing: -.03em; }
.tl-title { font-size: .93rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.tl-body { font-size: .85rem; font-weight: 300; color: var(--ink-3); line-height: 1.7; }
.cert-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.cert-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border: 1px solid var(--rule); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.cert-badge span { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — contact details, hours grid, map placeholder
   ═══════════════════════════════════════════════════════════ */
.contact-details { list-style: none; margin-top: 32px; }
.contact-details li { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule-lt); font-size: .9rem; color: var(--ink-2); line-height: 1.5; }
.contact-details li:last-child { border-bottom: none; }
.contact-details li strong { font-weight: 700; color: var(--ink); min-width: 80px; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding-top: 1px; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); margin-top: 48px; }
.hours-cell { background: var(--paper); padding: 24px 28px; }
.hours-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 8px; }
.hours-value { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--ink); }
.hours-value em { font-style: normal; color: var(--accent); }
.map-placeholder { background: var(--paper-2); border: 1px solid var(--rule); height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-placeholder p { font-size: .82rem; color: var(--ink-4); text-align: center; }
.map-placeholder strong { font-family: var(--serif); font-size: 1.1rem; color: var(--ink-3); }

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES PAGE — industry grid and cards
   ═══════════════════════════════════════════════════════════ */
.industry-grid { display: grid; grid-template-columns: repeat(2,1fr); background: var(--paper); }
@media (max-width: 768px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card { padding: 52px 48px; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule); transition: background .2s; }
.industry-card:nth-child(even) { border-right: none; }
.industry-card:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 768px) { .industry-card { border-right: none !important; } .industry-card:last-child { border-bottom: none; } }
.industry-card:hover { background: var(--paper-2); }
.industry-num { font-family: var(--serif); font-style: italic; font-size: .85rem; color: var(--accent); margin-bottom: 14px; }
.industry-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 14px; letter-spacing: -.02em; }
.industry-desc { font-size: .87rem; font-weight: 300; color: var(--ink-3); line-height: 1.75; margin-bottom: 20px; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.industry-tag { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); padding: 5px 12px; border: 1px solid var(--rule); }

/* ═══════════════════════════════════════════════════════════
   PRIVACY / TERMS PAGES — policy body layout
   ═══════════════════════════════════════════════════════════ */
.policy-body { max-width: 760px; margin: 0 auto; padding: 64px 0 96px; }
.policy-body h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin: 48px 0 14px; }
.policy-body h3 { font-size: .95rem; font-weight: 700; color: var(--ink); margin: 28px 0 8px; }
.policy-body p,
.policy-body li { font-size: .93rem; font-weight: 300; line-height: 1.85; color: var(--ink-3); margin-bottom: 14px; }
.policy-body ul { padding-left: 20px; margin-bottom: 14px; }
.policy-body a { color: var(--accent); }
.policy-updated { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 32px; display: block; }
