*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-light: #eff6ff;
  --blue-mid:   #bfdbfe;
  --navy:       #050d1f;
  --navy-2:     #0a1628;
  --ink:        #0f172a;
  --ink-2:      #1e293b;
  --body:       #475569;
  --muted:      #94a3b8;
  --border:     #e2e8f0;
  --border-dk:  #1a2540;
  --bg:         #ffffff;
  --bg-soft:    #f8fafc;
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 22px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 64px;
  background: rgba(5,13,31,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dk);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.light { background: rgba(255,255,255,0.98); border-bottom-color: var(--border); }
.hdr-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; padding: 0 32px; height: 64px; }
.logo { display: flex; align-items: center; margin-right: 56px; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 0; flex: 1; }
.nav-item { position: relative; }
.nav-item::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-btn {
  display: flex; align-items: center; gap: 4px; padding: 8px 12px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72);
  cursor: pointer; transition: all 0.16s; border: none; background: none; font-family: 'Inter', sans-serif;
}
.nav-btn:hover { color: #fff; background: rgba(255,255,255,0.07); }
.site-header.light .nav-btn { color: var(--body); }
.site-header.light .nav-btn:hover { color: var(--ink); background: var(--bg-soft); }
.nav-btn svg { width: 12px; height: 12px; transition: transform 0.2s; opacity: 0.55; }
.nav-item:hover .nav-btn svg { transform: rotate(180deg); opacity: 1; }
.nav-link { padding: 8px 12px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); transition: all 0.16s; display: block; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.site-header.light .nav-link { color: var(--body); }
.site-header.light .nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13); opacity: 0; pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1); min-width: 220px;
}
.nav-item:hover .nav-drop { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-drop.w2 { min-width: 580px; } .nav-drop.w3 { min-width: 720px; }
.dg { display: grid; gap: 2px; }
.dg.c2 { grid-template-columns: repeat(2,1fr); } .dg.c3 { grid-template-columns: repeat(3,1fr); } .dg.c4 { grid-template-columns: repeat(4,1fr); }
.dlbl { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); padding: 2px 8px 10px; border-bottom: 1px solid var(--border); grid-column: 1/-1; margin-bottom: 2px; }
.di { display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; color: var(--ink-2); transition: all 0.14s; }
.di:hover { background: var(--blue-light); color: var(--blue); }
.di-ic { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.di-ic svg { display: block; }
.di-ic .material-icons { font-size: 16px; line-height: 1; }
.hdr-acts { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn-hdr-ghost { padding: 7px 16px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.82); cursor: pointer; transition: all 0.16s; font-family: 'Inter', sans-serif; background: none; display: inline-flex; align-items: center; text-decoration: none; }
.btn-hdr-ghost:hover { border-color: rgba(255,255,255,0.38); color: #fff; background: rgba(255,255,255,0.06); }
.site-header.light .btn-hdr-ghost { border-color: var(--border); color: var(--ink-2); background: none; }
.site-header.light .btn-hdr-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-hdr-blue { padding: 8px 18px; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; background: var(--blue); color: #fff; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.16s; }
.btn-hdr-blue:hover { background: var(--blue-dark); }

/* ── HERO ── */
.hero {
  background: #050a14;
  padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: -300px; right: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -200px; left: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-text-wrap { position: relative; z-index: 2; text-align: center; padding: 80px 32px 52px; max-width: 840px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.28); border-radius: 50px; padding: 5px 14px 5px 8px; font-size: 12px; font-weight: 600; color: #93c5fd; margin-bottom: 28px; animation: fup 0.55s ease both; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #3b82f6; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(59,130,246,0.55)} 55%{box-shadow:0 0 0 5px transparent} }
.hero-h { font-size: clamp(38px, 5.2vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: #fff; margin-bottom: 22px; animation: fup 0.55s 0.08s ease both; }
.hero-h-blue { color: #3b82f6; }
.hero-p { font-size: 17px; line-height: 1.72; color: rgba(255,255,255,0.52); max-width: 560px; margin: 0 auto 36px; animation: fup 0.55s 0.16s ease both; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 56px; animation: fup 0.55s 0.24s ease both; flex-wrap: wrap; }
.btn-hp { display: inline-flex; align-items: center; gap: 7px; padding: 13px 26px; border-radius: var(--r-md); background: var(--blue); color: #fff; font-size: 15px; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; box-shadow: 0 4px 20px rgba(37,99,235,0.48); transition: all 0.2s; }
.btn-hp:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(37,99,235,0.52); }
.btn-hs { display: inline-flex; align-items: center; gap: 7px; padding: 12px 24px; border-radius: var(--r-md); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.btn-hs:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.hero-stats-row { display: flex; align-items: center; justify-content: center; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 40px; animation: fup 0.55s 0.3s ease both; flex-wrap: wrap; }
.hs { padding: 0 36px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.hs:last-child { border-right: none; }
.hs .n { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
.hs .n em { color: #3b82f6; font-style: normal; }
.hs .l { font-size: 11.5px; color: rgba(255,255,255,0.38); margin-top: 5px; }
@keyframes fup { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* Dashboard mockup */
.hero-mockup-wrap { position: relative; z-index: 2; max-width: 1060px; margin: 0 auto; padding: 0 32px; animation: fup 0.7s 0.38s ease both; }
.browser { background: #0d1526; border-radius: 10px 10px 0 0; border: 1px solid rgba(255,255,255,0.07); border-bottom: none; box-shadow: 0 -6px 50px rgba(37,99,235,0.14), 0 0 0 1px rgba(255,255,255,0.03); overflow: hidden; }
.browser-bar { background: #131f35; padding: 11px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bdots { display: flex; gap: 6px; }
.bd { width: 10px; height: 10px; border-radius: 50%; }
.browser-url-bar { flex: 1; background: #0a1220; border-radius: 4px; padding: 5px 12px; font-size: 11px; color: rgba(255,255,255,0.28); font-family: monospace; }
.browser-body { display: grid; grid-template-columns: 190px 1fr; min-height: 320px; background: #0a1020; }
.db-sidebar { background: #070e1c; border-right: 1px solid rgba(255,255,255,0.05); padding: 18px 0; }
.db-logo { padding: 0 16px 18px; font-size: 13px; font-weight: 800; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
.db-nav-item { display: flex; align-items: center; gap: 9px; padding: 8px 16px; font-size: 12px; color: rgba(255,255,255,0.38); transition: all 0.14s; cursor: pointer; }
.db-nav-item.on { color: #60a5fa; background: rgba(37,99,235,0.12); }
.db-nav-item:hover { color: rgba(255,255,255,0.7); }
.db-nav-ic { font-size: 13px; }
.db-main { padding: 22px; }
.db-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.db-greeting { font-size: 15px; font-weight: 700; color: #fff; }
.db-top-acts { display: flex; gap: 8px; }
.db-btn { padding: 6px 13px; border-radius: 5px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; border: none; }
.db-btn-p { background: var(--blue); color: #fff; }
.db-btn-g { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1) !important; color: rgba(255,255,255,0.65); }
.db-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.db-kpi { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 13px; }
.db-kpi-lbl { font-size: 10px; color: rgba(255,255,255,0.32); margin-bottom: 5px; }
.db-kpi-val { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.db-kpi-chg { font-size: 10px; margin-top: 4px; }
.green { color: #34d399; } .red { color: #f87171; } .dim { color: rgba(255,255,255,0.3); }
.db-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.db-panel { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 13px; }
.db-panel-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.35); margin-bottom: 11px; }
.db-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.db-bar-nm { font-size: 10px; color: rgba(255,255,255,0.36); width: 58px; flex-shrink: 0; }
.db-bar-bg { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.db-bar-fg { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #2563eb, #60a5fa); }
.db-mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 48px; margin-top: 10px; }
.db-mc-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(37,99,235,0.28); min-height: 4px; }
.db-mc-bar.hi { background: #2563eb; }
.db-list-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.db-list-row:last-child { border-bottom: none; }
.db-av { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; color: #fff; flex-shrink: 0; }
.db-list-nm { font-size: 11px; color: rgba(255,255,255,0.55); flex: 1; }
.db-list-st { font-size: 10px; font-weight: 700; color: #60a5fa; }

/* ── CLIENTS STRIP ── */
.clients-strip { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 32px; }
.cs-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 44px; }
.cs-label { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.cs-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.cs-name { font-size: 14px; font-weight: 700; color: var(--muted); opacity: 0.5; letter-spacing: -0.2px; transition: opacity 0.18s; }
.cs-name:hover { opacity: 0.85; }

/* ── SECTION ── */
.sec { padding: 88px 32px; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.sec-h { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.16; color: var(--ink); }
.sec-p { font-size: 16px; color: var(--body); line-height: 1.75; margin-top: 14px; max-width: 500px; }

/* ── SERVICES ── */
.svc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.svc-sticky { position: sticky; top: 88px; }
.svc-ctas { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-blue { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--r-md); background: var(--blue); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.18s; box-shadow: 0 3px 14px rgba(37,99,235,0.35); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: var(--r-md); background: none; border: 1.5px solid var(--border); color: var(--ink-2); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.18s; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.svc-rows { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }
.svc-row { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--r-lg); cursor: default; transition: all 0.22s; }
.svc-row:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,0.08); transform: translateX(3px); }
.svc-row.on { border-color: var(--blue); background: var(--blue-light); }
.svc-ic { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--blue-light); border: 1px solid var(--blue-mid); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: background 0.2s; }
.svc-row.on .svc-ic { background: var(--blue); }
.svc-ttl { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.svc-dsc { font-size: 13.5px; color: var(--body); line-height: 1.6; }
.svc-lnk { font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--ink); padding: 56px 32px; }
.sb-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(6,1fr); }
.sb-cell { text-align: center; padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.07); }
.sb-cell:last-child { border-right: none; }
.sb-n { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1; }
.sb-n em { color: #3b82f6; font-style: normal; }
.sb-l { font-size: 11.5px; color: rgba(255,255,255,0.38); margin-top: 7px; line-height: 1.4; }

/* ── DARK FEATURES ── */
.dark-sec { background: linear-gradient(160deg, #060c1c 0%, #0b1627 50%, #08111e 100%); position: relative; overflow: hidden; }
.dark-sec::before { display: none; }
.dark-sec .sec-h { color: #fff; }
.dark-sec .sec-p { color: rgba(255,255,255,0.45); }
.dark-sec .eyebrow { color: #60a5fa; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.feat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-xl); padding: 26px; transition: all 0.24s; position: relative; overflow: hidden; }
.feat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), transparent); opacity: 0; transition: opacity 0.24s; }
.feat-card:hover { border-color: rgba(37,99,235,0.28); background: rgba(37,99,235,0.045); transform: translateY(-3px); }
.feat-card:hover::after { opacity: 1; }
.feat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feat-ic { width: 40px; height: 40px; border-radius: var(--r-md); background: rgba(37,99,235,0.14); border: 1px solid rgba(37,99,235,0.22); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.feat-ttl { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.feat-dsc { font-size: 13.5px; color: rgba(255,255,255,0.42); line-height: 1.65; }

/* ── SPLIT ── */
.split-sec { background: var(--bg); }
.split-sec.alt { background: var(--bg-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split-vis { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.split-vis.dk { background: #070d1c; border-color: rgba(255,255,255,0.07); box-shadow: 0 16px 50px rgba(0,0,0,0.28); }
.bullet-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.blt { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; color: var(--ink); }
.blt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* Security visual */
.sec-vis { padding: 26px; }
.sec-vis-ttl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.sec-grade-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sec-grade { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #22c55e; background: rgba(34,197,94,0.12); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #22c55e; flex-shrink: 0; }
.sec-grade-info h4 { font-size: 14px; font-weight: 700; color: #fff; }
.sec-grade-info p { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.sec-chk-list { display: flex; flex-direction: column; gap: 9px; }
.sec-chk { display: flex; align-items: center; gap: 9px; }
.sec-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.sec-dot.warn { background: #f59e0b; }
.sec-chk-txt { font-size: 12.5px; color: rgba(255,255,255,0.58); }
.sec-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 18px; }
.sec-tag { padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; background: rgba(37,99,235,0.14); border: 1px solid rgba(37,99,235,0.24); color: #60a5fa; letter-spacing: 0.4px; }

/* Process visual */
.proc-vis { padding: 28px; background: #fff; }
.proc-item { display: flex; gap: 14px; margin-bottom: 18px; }
.proc-item:last-child { margin-bottom: 0; }
.proc-left { display: flex; flex-direction: column; align-items: center; }
.proc-num { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proc-conn { width: 1px; flex: 1; background: var(--border); min-height: 24px; margin-top: 4px; }
.proc-body h4 { font-size: 14px; font-weight: 700; color: var(--ink); padding-top: 4px; }
.proc-body p { font-size: 12.5px; color: var(--body); margin-top: 3px; line-height: 1.55; }

/* ── INDUSTRIES ── */
.ind-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 9px; margin-top: 46px; }
.ind-chip { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 15px 8px; border-radius: var(--r-lg); border: 1px solid var(--border); background: #fff; font-size: 11px; font-weight: 600; color: var(--body); text-align: center; transition: all 0.18s; }
.ind-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,99,235,0.1); }
.ind-ic { font-size: 20px; }

/* ── TESTIMONIALS CAROUSEL ── */
.tcarr-wrap { position: relative; display: flex; align-items: center; gap: 16px; margin-top: 50px; }
.tcarr-viewport { flex: 1; overflow: hidden; }
.tcarr-track { display: flex; gap: 18px; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); will-change: transform; }
.testi-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px; transition: border-color 0.22s, box-shadow 0.22s; flex-shrink: 0; }
.testi-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(37,99,235,0.08); }
.tcarr-btn { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: all 0.18s; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.tcarr-btn:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.tcarr-btn svg { width: 18px; height: 18px; }
.t-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 13px; }
.t-txt { font-size: 14px; line-height: 1.75; color: var(--body); margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); }
.t-av { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
.t-nm { font-size: 13px; font-weight: 700; }
.t-rl { font-size: 11.5px; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(150deg, #08111f 0%, #0e2040 50%, #080f1c 100%); padding: 88px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 560px; height: 280px; background: radial-gradient(ellipse, rgba(37,99,235,0.22) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-h { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.13; margin-bottom: 15px; }
.cta-p { font-size: 16px; color: rgba(255,255,255,0.48); line-height: 1.72; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-p { padding: 13px 26px; border-radius: var(--r-md); background: var(--blue); color: #fff; font-size: 15px; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; box-shadow: 0 3px 10px rgba(37,99,235,0.28); transition: all 0.18s; display: inline-flex; align-items: center; gap: 7px; }
.btn-cta-p:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-cta-g { padding: 12px 22px; border-radius: var(--r-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.18s; display: inline-flex; align-items: center; gap: 7px; }
.btn-cta-g:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.28); }

/* ── FOOTER ── */
.site-footer { background: #04080f; padding: 68px 32px 0; }
.ft-inner { max-width: 1200px; margin: 0 auto; }
.ft-nl { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); border-radius: var(--r-xl); padding: 30px 38px; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 52px; }
.ft-nl h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ft-nl p { font-size: 12.5px; color: rgba(255,255,255,0.38); }
.ft-nl-form { display: flex; gap: 8px; flex-shrink: 0; }
.ft-nl-form input { padding: 9px 15px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #fff; font-size: 13px; width: 210px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.18s; }
.ft-nl-form input:focus { border-color: var(--blue); }
.ft-nl-form input::placeholder { color: rgba(255,255,255,0.22); }
.ft-nl-form button { padding: 9px 17px; border-radius: var(--r-sm); background: var(--blue); color: #fff; border: none; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.16s; }
.ft-nl-form button:hover { background: var(--blue-dark); }
.ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ft-logo { height: 28px; width: auto; display: block; margin-bottom: 14px; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.7; margin: 0 0 20px; max-width: 230px; }
.ft-socials { display: flex; gap: 8px; }
.ft-soc { width: 32px; height: 32px; border-radius: var(--r-sm); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.45); transition: all 0.16s; text-decoration: none; }
.ft-soc:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.ft-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 15px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.16s; }
.ft-col ul li a:hover { color: rgba(255,255,255,0.9); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 12px; color: rgba(255,255,255,0.2); }
.ft-btm-links { display: flex; gap: 20px; }
.ft-btm-links a { color: rgba(255,255,255,0.2); transition: color 0.16s; }
.ft-btm-links a:hover { color: rgba(255,255,255,0.55); }

/* ── INNER PAGE HERO ── */
.inner-hero {
  background: #050a14;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 72px;
}
.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.36);
  margin-bottom: 24px;
}
.inner-breadcrumb a { color: rgba(255,255,255,0.36); transition: color 0.16s; }
.inner-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.inner-breadcrumb span:last-child { color: rgba(255,255,255,0.58); }
.inner-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 14px;
}
.inner-hero-h {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
}
.inner-hero-icon { font-size: 0.85em; }
.inner-hero-p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
}
.inner-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── COMING SOON ── */
.coming-soon-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0;
}
.coming-soon-icon { font-size: 48px; margin-bottom: 20px; }
.coming-soon-h { font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.coming-soon-p { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 28px; }

/* ── CYBERSECURITY PAGE ── */
.cs-hero { background: #04080f; padding-top: 64px; position: relative; overflow: hidden; }
.cs-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.cs-hero-glow-r { width: 800px; height: 800px; top: -300px; right: -250px; background: radial-gradient(circle, rgba(239,68,68,0.1) 0%, transparent 65%); }
.cs-hero-glow-l { width: 600px; height: 600px; bottom: -200px; left: -150px; background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 65%); }
.cs-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 56px 32px 72px; }
.cs-hero-h { font-size: clamp(34px, 4.8vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: #fff; margin-bottom: 20px; }
.cs-red { color: #ef4444; }
.cs-hero-p { font-size: 17px; line-height: 1.72; color: rgba(255,255,255,0.5); max-width: 620px; margin-bottom: 32px; }
.cs-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-cs-red { display: inline-flex; align-items: center; gap: 7px; padding: 12px 24px; border-radius: var(--r-md); background: #ef4444; color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; transition: all 0.18s; box-shadow: 0 4px 18px rgba(239,68,68,0.3); }
.btn-cs-red:hover { background: #dc2626; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(239,68,68,0.4); }
.btn-cs-ghost { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; transition: all 0.18s; }
.btn-cs-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.cs-trust-row { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 8px; }
.cs-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.38); }
.cs-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

/* Hero split layout */
.cs-hero-split { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: center; }
.cs-hero-text { padding-bottom: 16px; }
.cs-hero-graphic { display: flex; align-items: center; justify-content: center; }
.cs-hero-svg { width: 100%; max-width: 480px; height: auto; }

.cs-stats-bar { background: #06090f; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 40px 32px; }
.cs-stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); }
.cs-stat { text-align: center; padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.06); }
.cs-stat:last-child { border-right: none; }
.cs-stat-n { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
.cs-stat-n em { color: #ef4444; font-style: normal; font-size: 0.6em; vertical-align: super; }
.cs-stat-l { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 6px; }

.cs-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #ef4444; margin-bottom: 14px; }

.shield-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.shield-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; transition: all 0.22s; position: relative; overflow: hidden; }
.shield-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(239,68,68,0.5), transparent); opacity: 0; transition: opacity 0.22s; }
.shield-card:hover { border-color: rgba(239,68,68,0.25); box-shadow: 0 8px 32px rgba(239,68,68,0.06); transform: translateY(-3px); }
.shield-card:hover::before { opacity: 1; }
.shield-card-header { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.shield-ic { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.shield-ic.red { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #ef4444; }
.shield-ttl { font-size: 16px; font-weight: 700; color: var(--ink); }
.shield-dsc { font-size: 13.5px; color: var(--body); line-height: 1.68; margin-bottom: 16px; }
.shield-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.shield-tag { padding: 3px 9px; border-radius: 4px; font-size: 10.5px; font-weight: 600; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); color: #ef4444; }

.cs-loop-sec { background: linear-gradient(160deg, #060c1c 0%, #0b1627 60%, #08111e 100%); position: relative; overflow: hidden; }
.cs-loop-glow { position: absolute; width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 65%); pointer-events: none; }
.cs-loop-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cs-loop-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.cs-loop-step { display: flex; align-items: flex-start; gap: 16px; }
.cs-loop-num { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.cs-loop-vis { position: relative; width: 100%; aspect-ratio: 1; max-width: 320px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.cs-loop-ring { position: absolute; border-radius: 50%; }
.cs-loop-ring-outer { width: 85%; height: 85%; border: 2px dashed rgba(59,130,246,0.25); animation: spin 25s linear infinite; }
.cs-loop-ring-inner { width: 60%; height: 60%; border: 1px solid rgba(239,68,68,0.2); animation: spin 18s linear infinite reverse; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cs-loop-center { font-size: 52px; filter: drop-shadow(0 0 20px rgba(59,130,246,0.4)); position: relative; z-index: 2; }
.cs-loop-label { position: absolute; padding: 3px 10px; border: 1px solid; border-radius: 4px; font-size: 10px; font-weight: 800; letter-spacing: 0.8px; background: #04080f; z-index: 3; white-space: nowrap; }
.cs-loop-quote { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 110%; font-size: 11.5px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.55; font-style: italic; white-space: nowrap; }

.cs-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cs-why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px; transition: all 0.2s; }
.cs-why-card:hover { border-color: rgba(239,68,68,0.2); box-shadow: 0 6px 24px rgba(239,68,68,0.06); transform: translateY(-2px); }
.cs-why-ic { font-size: 26px; margin-bottom: 12px; }
.cs-why-ttl { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.cs-why-dsc { font-size: 13.5px; color: var(--body); line-height: 1.65; }

.cs-process-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.cs-proc-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.cs-proc-card:hover { border-color: rgba(239,68,68,0.2); }
.cs-proc-num { font-size: 11px; font-weight: 800; color: #ef4444; letter-spacing: 1px; margin-bottom: 8px; }
.cs-proc-ttl { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.cs-proc-dsc { font-size: 12.5px; color: var(--body); line-height: 1.6; }
.cs-proc-arrow { font-size: 20px; color: rgba(239,68,68,0.3); padding: 0 12px; margin-top: 28px; }

.cs-compliance-bar { background: #04080f; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 22px 32px; }
.cs-comp-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cs-comp-label { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.28); white-space: nowrap; flex-shrink: 0; }
.cs-comp-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-comp-badge { padding: 5px 13px; border-radius: 5px; font-size: 11px; font-weight: 700; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); letter-spacing: 0.3px; transition: all 0.16s; }
.cs-comp-badge:hover { border-color: rgba(239,68,68,0.3); color: #f87171; }

.cs-cta-badge { display: inline-block; padding: 4px 14px; border-radius: 50px; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); font-size: 11.5px; font-weight: 700; color: #f87171; letter-spacing: 0.4px; }


/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.contact-form-h { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--body); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.cf-input { padding: 10px 14px; border-radius: var(--r-md); border: 1.5px solid var(--border); background: #fff; color: var(--ink); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.18s; }
.cf-input:focus { border-color: var(--blue); }
.cf-input::placeholder { color: var(--muted); }
.cf-select { appearance: none; cursor: pointer; }
.cf-textarea { min-height: 140px; resize: vertical; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 14px; }
.ci-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; }
.ci-icon { font-size: 22px; margin-bottom: 8px; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ci-val { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; display: block; }
.ci-val:hover { color: var(--blue); }

/* ── INDUSTRY PAGES ── */
.ind-hero { padding: 0 !important; }
.ind-hero-split { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 420px; }
.ind-hero-left { }
.ind-hero-left .inner-eyebrow { margin-bottom: 16px; }
.ind-hero-left .inner-hero-h { margin: 0 0 18px; }
.ind-hero-left .inner-hero-p { margin: 0 0 28px; }
.ind-hero-left .inner-hero-btns { margin: 0; }

.ind-hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 20px 0; }

/* ── DEVICE MOCKUPS ── */
.ind-devices-wrap { position: relative; width: 100%; height: 300px; }

/* Laptop */
.ind-laptop { position: absolute; left: 0; bottom: 0; width: 82%; }
.ind-laptop-screen { background: #0d1117; border: 6px solid #1e2433; border-bottom: 3px solid #1e2433; border-radius: 10px 10px 0 0; overflow: hidden; aspect-ratio: 16/10; position: relative; box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset; }
.ind-laptop-screen::before { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.18); z-index: 10; }
.ind-laptop-chin { height: 6px; background: #1a2030; border-left: 6px solid #1e2433; border-right: 6px solid #1e2433; }
.ind-laptop-base { height: 14px; background: linear-gradient(180deg, #1e2433 0%, #161b27 100%); border-radius: 0 0 6px 6px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 2px 0 rgba(255,255,255,0.04); }
.ind-laptop-foot { width: 56px; height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; }

/* Mobile */
.ind-mobile { position: absolute; right: 0; bottom: 0; width: 22%; background: #1a2030; border: 4px solid #1e2433; border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; align-items: center; padding: 8px 0 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07); min-height: 200px; }
.ind-mobile-island { width: 38px; height: 7px; background: #0a0e18; border-radius: 4px; margin-bottom: 6px; flex-shrink: 0; }
.ind-mobile-screen { flex: 1; width: 100%; overflow: hidden; position: relative; }
.ind-mobile-home { width: 30px; height: 3px; background: rgba(255,255,255,0.18); border-radius: 2px; margin-top: 8px; flex-shrink: 0; }

/* Placeholder images */
.ind-ph-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ind-ph-fallback { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 100%; min-height: 160px; background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); color: rgba(255,255,255,0.2); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.ind-ph-fallback .material-icons { font-size: 32px; color: rgba(59,130,246,0.3); }
.ind-ph-fallback-sm { min-height: 0; gap: 4px; }
.ind-ph-fallback-sm .material-icons { font-size: 22px; }
.ind-ph-fallback-sm span:not(.material-icons) { display: none; }

.ind-challenges-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.ind-challenge-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: border-color 0.2s, box-shadow 0.2s; }
.ind-challenge-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.ind-ch-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,235,0.07); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ind-ch-icon .material-icons { font-size: 22px; color: var(--blue); }
.ind-ch-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ind-ch-desc { font-size: 13.5px; color: var(--body); line-height: 1.65; margin: 0; }

/* ── SERVICE HERO SPLIT ── */
.svc-hero-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 52px; align-items: center; }
.svc-hero-right { display: flex; align-items: center; justify-content: center; }
.svc-hero-svg { width: 100%; max-width: 460px; height: auto; }

/* ── SERVICE PAGES ── */
.svc-stats-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); }
.svc-stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4,1fr); }
.svc-stat { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.svc-stat:last-child { border-right: none; }
.svc-stat-n { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.svc-stat-n em { font-size: 20px; font-style: normal; color: var(--blue); }
.svc-stat-l { font-size: 12px; color: rgba(255,255,255,0.42); font-weight: 500; margin-top: 5px; letter-spacing: 0.2px; }

.svc-caps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-cap-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.svc-cap-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 4px 20px rgba(37,99,235,0.07); }
.svc-cap-ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc-cap-ttl { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.svc-cap-dsc { font-size: 13.5px; color: var(--body); line-height: 1.65; }

.svc-process { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.svc-proc-step { display: flex; gap: 24px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.svc-proc-step:last-child { border-bottom: none; }
.svc-proc-num { font-size: 13px; font-weight: 900; color: var(--blue); letter-spacing: 0.5px; min-width: 32px; padding-top: 2px; }
.svc-proc-body h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.svc-proc-body p { font-size: 14px; color: var(--body); line-height: 1.65; margin: 0; }

/* ── SCHEDULE A CALL PAGE ── */
.sch-page { background: var(--navy); min-height: 100vh; padding: 80px 0 100px; }
.sch-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.sch-h { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: #fff; line-height: 1.1; margin: 14px 0 20px; }
.sch-p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 36px; }
.sch-points { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.sch-pt { display: flex; align-items: flex-start; gap: 16px; }
.sch-pt .material-icons { font-size: 22px; color: var(--blue); margin-top: 1px; flex-shrink: 0; }
.sch-pt strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.sch-pt span:not(.material-icons) { font-size: 13px; color: rgba(255,255,255,0.42); }
.sch-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 28px; }
.sch-tagline { font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.7; font-style: italic; }
.sch-right { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 6px; overflow: hidden; }
.sch-cal-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.sch-cal-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 40px; min-height: 500px; }
.sch-cal-placeholder .material-icons { font-size: 52px; color: rgba(37,99,235,0.4); margin-bottom: 20px; }
.sch-cal-placeholder h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sch-cal-placeholder p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; }
.sch-cal-placeholder code { background: rgba(255,255,255,0.08); padding: 2px 7px; border-radius: 4px; font-family: monospace; font-size: 12px; color: rgba(255,255,255,0.65); }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.58s ease, transform 0.58s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ── BLOG INDEX ── */
.bl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.bl-card { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: #fff; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.bl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.bl-card-cover { height: 210px; flex-shrink: 0; overflow: hidden; }
.bl-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bl-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.bl-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--blue); }
.bl-dot { width: 3px; height: 3px; border-radius: 50%; background: #cbd5e1; }
.bl-time { font-size: 11px; color: #94a3b8; font-weight: 500; }
.bl-card-title { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.bl-card-excerpt { font-size: 13.5px; color: #64748b; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.bl-card-footer { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid #f1f5f9; }
.bl-author-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#2563eb,#7c3aed); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0; }
.bl-author-name { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.bl-author-date { font-size: 11px; color: #94a3b8; }

/* ── BLOG INDEX IMAGES ── */
.bl-card-cover { height: 210px; flex-shrink: 0; overflow: hidden; }
.bl-card-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.bl-card:hover .bl-card-cover-img { transform: scale(1.05); }

/* ── BLOG POST PAGE ── */

/* Hero: tall, full-bleed, image behind strong gradient */
.bsp-hero {
    position: relative; min-height: 360px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.bsp-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 30%;
}
.bsp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,10,22,0.35) 0%,
        rgba(5,10,22,0.65) 40%,
        rgba(5,10,22,0.92) 100%
    );
}
.bsp-hero-content {
    position: relative; z-index: 2;
    width: 100%;
    padding: 0 60px 44px;
}
.bsp-back {
    display: inline-block; margin-bottom: 24px;
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.45); text-decoration: none;
    letter-spacing: 0.2px; transition: color 0.2s;
}
.bsp-back:hover { color: rgba(255,255,255,0.8); }
.bsp-cat {
    display: inline-block; margin-bottom: 14px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: #fff;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
    padding: 4px 10px; border-radius: 4px;
}
.bsp-title {
    font-size: clamp(30px, 4vw, 52px); font-weight: 900;
    color: #fff; line-height: 1.12; margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.bsp-byline { display: flex; align-items: center; gap: 12px; }
.bsp-av {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
}
.bsp-byline-text { display: flex; flex-direction: column; gap: 2px; }
.bsp-author { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.bsp-meta { font-size: 12px; color: rgba(255,255,255,0.4); }

/* Article layout */
.bsp-layout {
    max-width: 1140px; margin: 0 auto;
    padding: 64px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 72px;
    align-items: start;
    background: #fff;
}

/* Lede */
.bsp-lede {
    font-size: 19px; font-weight: 400; color: #475569;
    line-height: 1.75; margin-bottom: 40px;
    padding-bottom: 36px; border-bottom: 1px solid #e2e8f0;
}

/* Body typography */
.bsp-body { font-size: 16.5px; color: #374151; line-height: 1.9; }
.bsp-body h2 {
    font-size: 24px; font-weight: 800; color: var(--ink);
    margin: 48px 0 16px; letter-spacing: -0.3px;
}
.bsp-body p { margin-bottom: 24px; }
.bsp-body p:last-child { margin-bottom: 0; }
.bsp-body a { color: var(--ink); text-decoration: underline; text-decoration-color: #cbd5e1; text-underline-offset: 3px; }
.bsp-body a:hover { color: var(--blue); text-decoration-color: var(--blue); }
.bsp-body strong { color: var(--ink); font-weight: 700; }
.bsp-body ul, .bsp-body ol { padding-left: 24px; margin-bottom: 24px; }
.bsp-body li { margin-bottom: 10px; }

/* Sidebar */
.bsp-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 28px; }

.bsp-author-card {
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 24px; text-align: center;
}
.bsp-av-lg { width: 52px; height: 52px; font-size: 18px; margin: 0 auto 12px; border: none; }
.bsp-author-name { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.bsp-author-role { font-size: 12px; color: #94a3b8; line-height: 1.4; }

.bsp-more { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px; }
.bsp-more-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: #94a3b8; margin-bottom: 16px;
}
.bsp-more-card {
    display: flex; gap: 14px; padding: 12px 0;
    border-bottom: 1px solid #e2e8f0; text-decoration: none; color: inherit;
    transition: opacity 0.2s;
}
.bsp-more-card:last-of-type { border-bottom: none; padding-bottom: 0; }
.bsp-more-card:hover { opacity: 0.75; }
.bsp-more-img {
    width: 62px; height: 62px; border-radius: 10px;
    object-fit: cover; flex-shrink: 0;
}
.bsp-more-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--blue); margin-bottom: 4px; }
.bsp-more-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 4px; }
.bsp-more-meta { font-size: 11px; color: #94a3b8; }

.bsp-cta-sidebar {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--blue); color: #fff; border-radius: 10px;
    padding: 13px 16px; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: background 0.2s;
}
.bsp-cta-sidebar .material-icons { font-size: 17px; }
.bsp-cta-sidebar:hover { background: #1d4ed8; }

@media(max-width:900px) {
    .bl-grid { grid-template-columns: 1fr; }
    .bsp-layout { grid-template-columns: 1fr; padding: 40px 24px 60px; }
    .bsp-sidebar { position: static; }
    .bsp-hero-content { padding: 0 24px 40px; }
}

/* ── NEWSLETTER SUCCESS ── */
.ft-nl-success { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: 600; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.45); padding: 12px 20px; border-radius: 8px; }
.ft-nl-success .material-icons { font-size: 19px; color: #34d399; flex-shrink: 0; }

/* ── CONTACT FORM STATES ── */
.cf-req { color: #ef4444; font-size: 12px; }
.cf-input-err { border-color: #ef4444 !important; background: #fff5f5 !important; }

.cf-error-banner {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fff5f5; border: 1px solid #fecaca;
    border-radius: 10px; padding: 14px 16px; margin-bottom: 22px;
}
.cf-error-banner .material-icons { color: #ef4444; font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.cf-error-banner strong { display: block; font-size: 13px; font-weight: 700; color: #b91c1c; margin-bottom: 6px; }
.cf-error-banner ul { margin: 0; padding-left: 18px; }
.cf-error-banner li { font-size: 13px; color: #b91c1c; margin-bottom: 3px; }

.cf-submit {
    width: 100%; padding: 13px 24px; background: var(--blue); border: none;
    border-radius: 10px; font-size: 15px; font-weight: 700; color: #fff;
    font-family: 'Inter', sans-serif; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
}
.cf-submit:hover { background: #1d4ed8; }
.cf-submit:active { transform: scale(0.99); }
.cf-submit .material-icons { font-size: 18px; }

.cf-success {
    display: flex; align-items: flex-start; gap: 20px;
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 16px; padding: 32px;
}
.cf-success-icon .material-icons { font-size: 40px; color: #16a34a; }
.cf-success h3 { font-size: 20px; font-weight: 800; color: #14532d; margin-bottom: 10px; }
.cf-success p { font-size: 14px; color: #166534; line-height: 1.65; }
.cf-success a { color: #15803d; font-weight: 600; }

/* ── CAREERS PAGE ── */
.car-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.car-why-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.car-why-ic { font-size: 26px; color: var(--blue); display: block; margin-bottom: 12px; }
.car-why-card h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.car-why-card p { font-size: 13.5px; color: var(--body); line-height: 1.65; }

/* Department section */
.car-dept-section { margin-bottom: 56px; }
.car-dept-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.car-dept-ic { width: 36px; height: 36px; border-radius: 9px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.car-dept-ic .material-icons { font-size: 18px; color: var(--blue); }
.car-dept-name { font-size: 18px; font-weight: 800; color: var(--ink); flex: 1; }
.car-dept-count { font-size: 12px; font-weight: 700; color: rgba(37,99,235,0.8); background: rgba(37,99,235,0.08); padding: 4px 10px; border-radius: 20px; }

/* Role cards */
.car-roles-list { display: flex; flex-direction: column; gap: 14px; }
.car-role-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.car-role-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 4px 20px rgba(37,99,235,0.07); }
.car-role-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 22px 24px; }
.car-role-left { flex: 1; }
.car-role-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.car-role-title { font-size: 16px; font-weight: 800; color: var(--ink); }
.car-openings-badge { font-size: 11px; font-weight: 700; background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); padding: 2px 8px; border-radius: 20px; }
.car-role-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.car-role-meta span { display: flex; align-items: center; gap: 4px; font-size: 12.5px; color: #64748b; font-weight: 500; }
.car-role-meta .material-icons { font-size: 14px; }
.car-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.car-tag { font-size: 11px; font-weight: 600; background: #f1f5f9; color: #475569; padding: 3px 9px; border-radius: 4px; }
.car-apply-btn { flex-shrink: 0; background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 9px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.2s; align-self: flex-start; }
.car-apply-btn:hover { background: #1d4ed8; }

/* Expandable description */
.car-role-body { display: none; padding: 0 24px 20px; border-top: 1px solid #f1f5f9; }
.car-role-card.expanded .car-role-body { display: block; padding-top: 20px; }
.car-role-desc { font-size: 14px; color: #475569; line-height: 1.75; margin-bottom: 18px; }
.car-reqs-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #94a3b8; margin-bottom: 10px; }
.car-reqs ul { padding-left: 18px; }
.car-reqs li { font-size: 13.5px; color: #374151; line-height: 1.6; margin-bottom: 7px; }

.car-toggle { width: 100%; background: #f8fafc; border: none; border-top: 1px solid #f1f5f9; padding: 10px 24px; font-size: 12.5px; font-weight: 600; color: #64748b; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 4px; font-family: 'Inter', sans-serif; transition: background 0.15s; }
.car-toggle:hover { background: #f1f5f9; color: var(--ink); }
.car-toggle .material-icons { font-size: 17px; }
.car-toggle-hide { display: none; }
.car-role-card.expanded .car-toggle-show { display: none; }
.car-role-card.expanded .car-toggle-hide { display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE  (≤ 768px)
   ═══════════════════════════════════════ */

/* ── Mobile hero SVG decoration (desktop: hidden) ── */
.mob-hero-deco {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.mob-hero-deco svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}

/* ── Mobile hamburger button ── */
.mob-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer; padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}
.mob-menu-btn span {
    display: block; width: 22px; height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}
.site-header.light .mob-menu-btn span { background: var(--ink); }
.mob-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ── */
.mob-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #04080f;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav-inner { padding: 24px 24px 40px; }
.mob-nav-section { margin-bottom: 32px; }
.mob-nav-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: rgba(255,255,255,0.28);
    margin-bottom: 10px;
}
.mob-nav-link {
    display: block; padding: 11px 0;
    font-size: 16px; font-weight: 600;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.16s;
}
.mob-nav-link:last-child { border-bottom: none; }
.mob-nav-link:active { color: #fff; }
.mob-nav-actions {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 12px;
}
.mob-nav-cta-p {
    display: flex; align-items: center; justify-content: center;
    padding: 13px 24px; border-radius: 9px;
    background: var(--blue); color: #fff;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
}
.mob-nav-cta-g {
    display: flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 15px; font-weight: 600;
    text-decoration: none;
}

/* ── Mobile nav accordion ── */
.mob-acc-section { padding-bottom: 0; }
.mob-acc-toggle {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between;
    background: none; border: none; cursor: pointer;
    padding: 0; margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}
.mob-acc-icon {
    font-size: 18px; color: rgba(255,255,255,0.35);
    transition: transform 0.25s ease;
}
.mob-acc-toggle[aria-expanded="true"] .mob-acc-icon { transform: rotate(180deg); }
.mob-acc-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
    margin-top: 0;
}
.mob-acc-body.open { max-height: 1200px; }
.mob-nav-link-sm {
    font-size: 14px !important;
    padding: 9px 0 !important;
    color: rgba(255,255,255,0.55) !important;
}
.mob-acc-body .mob-nav-link-sm:first-child { margin-top: 8px; }

@media (max-width: 768px) {

    /* ── Header ── */
    .site-nav  { display: none; }
    .hdr-acts  { display: none; }
    .mob-menu-btn { display: flex; }
    .mob-nav   { display: block; }
    .hdr-inner { padding: 0 20px; }

    /* ── Hero ── */
    .mob-hero-deco { display: block; }
    .hero-stats-row { display: none; }
    .hero-text-wrap {
        padding: 64px 28px 80px;
        position: relative;
        z-index: 2;
    }
    .hero-h {
        font-size: clamp(30px, 8vw, 42px);
        letter-spacing: -1px;
        margin-bottom: 18px;
        line-height: 1.15;
    }
    .hero-p {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.7;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 0;
    }
    .btn-hp, .btn-hs {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    /* ── Section base ── */
    .sec { padding: 56px 20px; }
    .sec-p { font-size: 15px; }

    /* ── Services ── */
    .svc-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .svc-sticky { position: static; top: auto; }
    .svc-ctas { flex-direction: column; }
    .btn-blue, .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* ── Stats bar ── */
    .stats-bar { padding: 40px 20px; }
    .sb-grid {
        grid-template-columns: repeat(3,1fr);
        row-gap: 32px;
    }
    .sb-cell {
        border-right: none;
        padding: 0 8px;
    }
    .sb-cell:nth-child(3n) { border-right: none; }
    .sb-n { font-size: 28px; }

    /* ── Dark features ── */
    .feat-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px;
    }

    /* ── Split sections ── */
    .split {
        grid-template-columns: 1fr;
        gap: 36px;
        direction: ltr !important;
    }
    .split > * { direction: ltr !important; }

    /* ── Industries ── */
    .ind-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 8px;
        margin-top: 28px;
    }
    .ind-chip { font-size: 10.5px; padding: 12px 6px; }
    .ind-ic { font-size: 18px; }

    /* ── Testimonials ── */
    .tcarr-wrap { gap: 10px; margin-top: 36px; }
    .tcarr-btn { width: 36px; height: 36px; flex-shrink: 0; }
    .testi-card { padding: 20px; }

    /* ── CTA band ── */
    .cta-band { padding: 60px 20px; }
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .btn-cta-p, .btn-cta-g {
        width: 100%;
        justify-content: center;
    }

    /* ── Footer ── */
    .site-footer { padding: 48px 20px 0; }
    .ft-nl {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }
    .ft-nl-form {
        width: 100%;
        flex-wrap: wrap;
    }
    .ft-nl-form input { flex: 1; min-width: 0; width: auto; }
    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    .ft-brand { grid-column: 1 / -1; }
    .ft-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .ft-btm-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }

    /* ── Inner page hero ── */
    .inner-hero-inner { padding: 36px 20px 52px; }
    .inner-hero-h {
        font-size: clamp(26px, 7vw, 38px);
        letter-spacing: -1px;
    }
    .inner-hero-p { font-size: 15px; }
    .inner-hero-btns { flex-direction: column; gap: 10px; }

    /* ── Contact page ── */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cf-row { grid-template-columns: 1fr; }

    /* ── Careers page ── */
    .car-why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .car-role-top {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }
    .car-apply-btn { width: 100%; text-align: center; justify-content: center; }
    .car-role-body { padding: 0 18px 18px; }

    /* ── Service pages ── */
    .svc-stats-bar { overflow: hidden; }
    .svc-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    .svc-stat {
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .svc-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.06); }
    .svc-stat:nth-last-child(-n+2) { border-bottom: none; }
    .svc-stat-n { font-size: 26px; }
    .svc-caps-grid { grid-template-columns: 1fr; gap: 12px; }
    .svc-hero-split { grid-template-columns: 1fr; }
    .svc-hero-right { display: none; }

    /* ── Industry pages ── */
    .ind-hero-split {
        grid-template-columns: 1fr;
        padding: 40px 20px 48px;
        gap: 40px;
        min-height: unset;
    }
    .ind-hero-right { display: none; }
    .ind-challenges-grid { grid-template-columns: 1fr; gap: 14px; }
    .svc-caps-grid { grid-template-columns: 1fr; gap: 14px; }
    .ind-challenge-card { padding: 20px; }
    .svc-cap-card { padding: 20px; }

    /* ── Schedule page ── */
    .sch-page { padding: 88px 0 64px; }
    .sch-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
    }
    .sch-h { font-size: 28px; margin: 12px 0 16px; }
    .sch-p { font-size: 15px; margin-bottom: 28px; }
    .sch-points { gap: 18px; margin-bottom: 28px; }
    .calendly-inline-widget { min-width: unset !important; height: 650px !important; }

    /* ── Blog ── */
    .bsp-hero { min-height: 280px; }
    .bsp-hero-content { padding: 0 20px 32px; }
    .bsp-title { font-size: clamp(22px, 6vw, 32px); }

    /* ── Cybersecurity page ── */
    .cs-hero-split { grid-template-columns: 1fr; }
    .cs-hero-graphic { display: none; }
    .cs-stats-inner { grid-template-columns: repeat(3,1fr); row-gap: 24px; }
    .cs-stat { border-right: none; }
    .shield-grid { grid-template-columns: 1fr; gap: 14px; }
    .cs-loop-layout { grid-template-columns: 1fr; gap: 36px; }
    .cs-loop-vis { display: none; }
    .cs-why-grid { grid-template-columns: 1fr; gap: 14px; }
    .cs-process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cs-proc-arrow { display: none; }
}

@media (max-width: 480px) {
    /* Extra small phones */
    .hero-h { font-size: 28px; }
    .ind-grid { grid-template-columns: repeat(2,1fr); }
    .sb-grid { grid-template-columns: repeat(2,1fr); row-gap: 28px; }
    .sb-cell { border-right: none; }
    .sb-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .car-why-grid { grid-template-columns: 1fr; }
    .ft-grid { grid-template-columns: 1fr; }
    .cs-stats-inner { grid-template-columns: repeat(2,1fr); }
}

/* ── ABOUT PAGE ── */

/* Timeline */
.abt-timeline { display: flex; flex-direction: column; gap: 0; padding: 4px 0; }
.abt-tl-item { display: flex; gap: 18px; }
.abt-tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.abt-tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 2px solid #fff; box-shadow: 0 0 0 3px rgba(37,99,235,0.18); flex-shrink: 0; margin-top: 3px; }
.abt-tl-line { width: 1px; flex: 1; background: var(--border); min-height: 28px; margin-top: 4px; }
.abt-tl-item:last-child .abt-tl-line { display: none; }
.abt-tl-body { padding-bottom: 28px; }
.abt-tl-year { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: 0.8px; margin-bottom: 2px; }
.abt-tl-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.abt-tl-desc { font-size: 13px; color: var(--body); line-height: 1.6; }

/* Leadership */
.abt-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.abt-leader-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.abt-leader-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 6px 24px rgba(37,99,235,0.07); }
.abt-leader-av { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.abt-leader-name { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.abt-leader-role { font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.abt-leader-bio { font-size: 13px; color: var(--body); line-height: 1.65; }

/* Portfolio */
.abt-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.abt-port-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.abt-port-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.abt-port-bar { height: 4px; }
.abt-port-body { padding: 22px; }
.abt-port-name { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.abt-port-desc { font-size: 13px; color: var(--body); line-height: 1.65; margin-bottom: 14px; }
.abt-port-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Registration card */
.abt-reg-card { background: var(--ink); border-radius: var(--r-xl); padding: 32px; }
.abt-reg-label { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 10px; }
.abt-reg-name { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.35; }
.abt-reg-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.abt-reg-row:last-child { border-bottom: none; }
.abt-reg-row span:first-child { font-size: 11.5px; color: rgba(255,255,255,0.35); font-weight: 500; flex-shrink: 0; }
.abt-reg-row span:last-child { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; text-align: right; }

/* Mobile overrides */
@media (max-width: 768px) {
    .abt-team-grid { grid-template-columns: 1fr; gap: 14px; }
    .abt-portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
    .abt-timeline { padding: 8px 0 0; }
}
@media (min-width: 481px) and (max-width: 768px) {
    .abt-team-grid { grid-template-columns: 1fr 1fr; }
    .abt-portfolio-grid { grid-template-columns: 1fr 1fr; }
}
