/* ═══════════════════════════════════════════════════════════
   SUFFICIENT Services & Solutions — Shared Stylesheet v3
   Dual theme: light (default) | dark  |  system-aware
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; transition: color .22s; }

/* ── LIGHT THEME ── */
:root, [data-theme="light"] {
  --navy:#0f2550; --navy-mid:#1a3668;
  --blue:#0077cc; --blue-lt:#0099ee;
  --gold:#f4a523; --gold-dk:#c8841a;
  --bg:#ffffff; --bg-alt:#f5f7fa; --bg-card:#ffffff; --bg-input:#ffffff;
  --text:#1a2540; --text-muted:#5a6a88;
  --border:#dde4f0; --border-lt:#eef2f8;
  --shadow:0 4px 24px rgba(15,37,80,.09);
  --shadow-lg:0 12px 48px rgba(15,37,80,.14);
  --topbar-bg:#0f2550; --nav-bg:#ffffff; --nav-border:#dde4f0;
  --footer-bg:#0f2550;
  --hero-from:#0f2550; --hero-to:#1a3668;
  --radius:6px; --radius-lg:12px;
}

/* ── DARK THEME ── */
[data-theme="dark"] {
  --bg:#0d1526; --bg-alt:#111d35; --bg-card:#14213d; --bg-input:#14213d;
  --text:#e8edf8; --text-muted:#8a9bbf;
  --border:rgba(0,119,204,.22); --border-lt:rgba(0,119,204,.12);
  --shadow:0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:0 12px 48px rgba(0,0,0,.55);
  --topbar-bg:#080f1e; --nav-bg:#0d1526; --nav-border:rgba(0,119,204,.2);
  --footer-bg:#080f1e;
  --hero-from:#08112a; --hero-to:#0f2550;
}

/* ── SYSTEM DARK ── */
@media (prefers-color-scheme:dark) {
  :root:not([data-theme="light"]) {
    --bg:#0d1526; --bg-alt:#111d35; --bg-card:#14213d; --bg-input:#14213d;
    --text:#e8edf8; --text-muted:#8a9bbf;
    --border:rgba(0,119,204,.22); --border-lt:rgba(0,119,204,.12);
    --shadow:0 4px 24px rgba(0,0,0,.4);
    --shadow-lg:0 12px 48px rgba(0,0,0,.55);
    --topbar-bg:#080f1e; --nav-bg:#0d1526; --nav-border:rgba(0,119,204,.2);
    --footer-bg:#080f1e;
    --hero-from:#08112a; --hero-to:#0f2550;
  }
}

body {
  font-family:'Source Sans 3','Segoe UI',sans-serif;
  background:var(--bg); color:var(--text);
  line-height:1.6; overflow-x:hidden;
  transition:background .3s,color .3s;
}
h1,h2,h3,h4 {
  font-family:'Rajdhani','Segoe UI',sans-serif;
  font-weight:700; color:var(--navy); line-height:1.15;
  transition:color .3s;
}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 { color:var(--text); }
@media(prefers-color-scheme:dark){
  :root:not([data-theme="light"]) h1,
  :root:not([data-theme="light"]) h2,
  :root:not([data-theme="light"]) h3,
  :root:not([data-theme="light"]) h4 { color:var(--text); }
}
a { color:var(--blue); }
a:hover { color:var(--navy-mid); }

.container { max-width:1240px; margin:0 auto; padding:0 5vw; }
.text-center { text-align:center; }

/* ── BUTTONS ── */
.btn {
  display:inline-block; font-family:'Rajdhani',sans-serif; font-weight:700;
  font-size:14px; letter-spacing:1.5px; text-transform:uppercase;
  padding:13px 32px; border-radius:var(--radius);
  border:2px solid transparent; cursor:pointer; transition:all .22s;
}
.btn-primary { background:var(--blue); color:#fff; border-color:var(--blue); }
.btn-primary:hover { background:var(--navy); border-color:var(--navy); color:#fff; }
.btn-outline { background:transparent; color:#fff; border-color:rgba(255,255,255,.65); }
.btn-outline:hover { background:#fff; color:var(--navy); border-color:#fff; }
.btn-gold { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.btn-gold:hover { background:var(--gold-dk); border-color:var(--gold-dk); color:#fff; }

/* ── SECTION HEADERS ── */
.sec-eyebrow {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:12px; letter-spacing:4px; text-transform:uppercase;
  color:var(--blue); margin-bottom:10px;
}
.sec-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(34px,4.5vw,52px); letter-spacing:.5px;
  color:var(--navy); margin-bottom:16px;
}
[data-theme="dark"] .sec-title { color:var(--text); }
@media(prefers-color-scheme:dark){ :root:not([data-theme="light"]) .sec-title { color:var(--text); } }
.sec-title span { color:var(--blue); }
.sec-underline {
  width:56px; height:4px; border-radius:2px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
  margin:0 auto 20px;
}
.sec-underline.left { margin:0 0 20px; }
.sec-desc { font-size:17px; color:var(--text-muted); max-width:640px; margin:0 auto; line-height:1.75; }

/* ═══ THEME TOGGLE ═══ */
.theme-toggle {
  width:38px; height:38px; border-radius:50%;
  border:1.5px solid var(--border); background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:17px; flex-shrink:0;
  transition:background .22s,border-color .22s,transform .2s;
}
.theme-toggle:hover { border-color:var(--blue); transform:rotate(18deg); }
.theme-toggle .i-sun  { display:none; }
.theme-toggle .i-moon { display:block; }
[data-theme="dark"] .theme-toggle .i-sun  { display:block; }
[data-theme="dark"] .theme-toggle .i-moon { display:none; }
@media(prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .theme-toggle .i-sun  { display:block; }
  :root:not([data-theme="light"]) .theme-toggle .i-moon { display:none; }
}

/* ═══ TOPBAR ═══ */
.topbar { display:none; }
.topbar-hidden {
  background:var(--topbar-bg); padding:10px 5vw;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:8px; transition:background .3s;
}
a.topbar-brand, .topbar-brand { display:flex; flex-direction:column; line-height:1.05; text-decoration:none; }
.topbar-brand .tb-name {
  font-family:'Bebas Neue',sans-serif; font-size:30px; letter-spacing:5px;
  background:linear-gradient(135deg,#fff 40%,var(--gold));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1;
}
.topbar-brand .tb-sub {
  font-family:'Rajdhani',sans-serif; font-weight:400;
  font-size:11px; letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(255,255,255,.32);
}
.topbar-contact { display:flex; gap:20px; flex-wrap:wrap; align-items:center; }
.topbar-item {
  font-family:'Rajdhani',sans-serif; font-size:13px; letter-spacing:.8px;
  color:rgba(255,255,255,.6); display:flex; align-items:center; gap:5px;
}
.topbar-item a { color:rgba(255,255,255,.6); }
.topbar-item a:hover { color:var(--gold); }
.topbar-emergency { color:var(--gold); font-weight:700; font-family:'Rajdhani',sans-serif; font-size:13px; }

/* ═══ NAV ═══ */
.main-nav {
  position:sticky; top:0; z-index:1000;
  background:var(--nav-bg); border-bottom:1px solid var(--nav-border);
  box-shadow:var(--shadow); transition:background .3s,border-color .3s;
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:96px; padding:0 5vw; gap:10px; overflow:visible;
}
.nav-right { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.nav-logo img { width:84px; height:84px; object-fit:contain; }
.nav-brand { display:flex; flex-direction:column; line-height:1.1; }
.nav-brand .brand-name {
  font-family:'Bebas Neue',sans-serif; font-weight:400;
  font-size:22px; letter-spacing:4px; line-height:1;
  background:linear-gradient(135deg,#fff 40%,var(--gold));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
/* In light mode, use navy→gold so it stays readable on white nav */
[data-theme="light"] .nav-brand .brand-name {
  background:linear-gradient(135deg,var(--navy) 40%,var(--gold-dk));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
@media(prefers-color-scheme:light){
  :root:not([data-theme="dark"]) .nav-brand .brand-name {
    background:linear-gradient(135deg,var(--navy) 40%,var(--gold-dk));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  }
}

}
.nav-brand .brand-sub2 { font-size:9px; letter-spacing:1px; color:var(--text-muted); opacity:.7; }
.nav-brand .brand-sub { font-size:10px; letter-spacing:1px; color:var(--text-muted); text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:13px; letter-spacing:1px; text-transform:uppercase;
  color:var(--text-muted); padding:8px 11px; border-radius:var(--radius);
  transition:color .22s,background .22s; position:relative;
}
.nav-links a:hover,.nav-links a.active { color:var(--blue); background:rgba(0,119,204,.07); }
.nav-links a.active::after {
  content:''; position:absolute; bottom:0; left:11px; right:11px;
  height:2px; background:var(--blue); border-radius:1px;
}
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:6px; border:none; background:none;
}
.hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:1px; transition:.3s; }
.mobile-nav {
  display:none; position:fixed; top:96px; left:0; right:0; bottom:0;
  background:var(--nav-bg); z-index:999;
  flex-direction:column; padding:22px 5vw;
  border-top:1px solid var(--border); overflow-y:auto; transition:background .3s;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:17px; letter-spacing:1px; text-transform:uppercase;
  color:var(--text); padding:14px 0; border-bottom:1px solid var(--border);
}
.mobile-nav a:hover { color:var(--blue); }
.mobile-nav .btn { margin-top:20px; }

/* ═══ HERO ═══ */
.hero {
  position:relative; min-height:88vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; text-align:center;
  background:linear-gradient(135deg,var(--hero-from) 0%,var(--hero-to) 50%,var(--hero-from) 100%);
  transition:background .3s;
}
.hero-grid {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(0,200,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,200,255,.06) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse at center,black 20%,transparent 72%);
}
.hero-orb {
  position:absolute; border-radius:50%; pointer-events:none; filter:blur(80px);
}
.hero-orb-1 { width:500px; height:500px; background:var(--blue); top:-140px; left:-80px; opacity:.2; }
.hero-orb-2 { width:380px; height:380px; background:var(--gold); bottom:80px; right:-60px; opacity:.13; }
.scan-line {
  position:absolute; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,rgba(0,200,255,.45),transparent);
  animation:scan 8s linear infinite; pointer-events:none;
}
@keyframes scan { 0%{top:0} 100%{top:100%} }

.hero-content {
  position:relative; z-index:2;
  padding:0 5vw 160px; /* room for stats bar */
  max-width:900px;
}
.hero-eyebrow {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:13px; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold); margin-bottom:22px;
  display:flex; align-items:center; justify-content:center; gap:14px;
}
.hero-eyebrow::before,.hero-eyebrow::after {
  content:''; display:block; width:40px; height:1px; background:var(--gold);
}
.hero-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(52px,8.5vw,108px);
  line-height:.95; letter-spacing:1px; margin-bottom:24px; color:#fff;
}
.hero-title .hl-blue {
  background:linear-gradient(135deg,#7ae8ff,#0099ee);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-title .hl-gold {
  background:linear-gradient(135deg,var(--gold),#ffb400);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-sub {
  font-size:18px; font-weight:300; color:rgba(255,255,255,.78);
  max-width:620px; margin:0 auto 40px; line-height:1.75;
}
.hero-sub strong { color:#fff; font-weight:600; }
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* stats bar — absolute bottom, z above content */
.hero-stats {
  position:absolute; bottom:0; left:0; right:0; z-index:3;
  background:rgba(8,17,42,.86); backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:clamp(20px,4vw,64px); padding:20px 5vw;
}
.stat-item { text-align:center; }
.stat-num {
  font-family:'Bebas Neue',sans-serif; font-size:40px; line-height:1;
  background:linear-gradient(135deg,#7ae8ff,var(--gold));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.stat-lbl {
  font-family:'Rajdhani',sans-serif; font-size:11px;
  letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-top:2px;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  padding:70px 5vw 58px; text-align:center;
}
.page-hero.minimal {
  padding:22px 5vw 18px;
}
.page-hero h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(38px,6vw,66px); letter-spacing:1px;
  color:#fff; margin-bottom:14px;
}
.page-hero h1 span { color:var(--gold); }
.page-hero p { font-size:17px; color:rgba(255,255,255,.7); max-width:560px; margin:0 auto; }
.breadcrumb {
  display:flex; align-items:center; justify-content:center;
  gap:8px; margin-bottom:20px;
  font-family:'Rajdhani',sans-serif; font-size:13px; letter-spacing:1px; text-transform:uppercase;
}
.breadcrumb a { color:rgba(255,255,255,.5); }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:var(--gold); }
.breadcrumb .sep { color:rgba(255,255,255,.25); }

/* ═══ SERVICE PAGE HERO (with image) ═══ */
.svc-page-hero {
  position:relative; height:300px; overflow:hidden;
  display:flex; align-items:flex-end;
}
.svc-page-hero img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; filter:brightness(.4) saturate(1.1);
}
.svc-page-hero-ov {
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(15,37,80,.4) 0%,rgba(15,37,80,.92) 100%);
}
.svc-page-hero-body {
  position:relative; z-index:2; padding:0 5vw 32px; width:100%;
}
.svc-page-hero-body .breadcrumb { justify-content:flex-start; margin-bottom:10px; }
.svc-page-hero-body h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(34px,5vw,56px); letter-spacing:1px; color:#fff; margin-bottom:8px;
}
.svc-page-hero-body h1 span { color:var(--gold); }
.svc-page-hero-body p { font-size:15px; color:rgba(255,255,255,.7); max-width:520px; }

/* ═══ SERVICE TABS (SPA) ═══ */
.svc-tabs-wrap {
  background:var(--bg-alt); border-bottom:1px solid var(--border);
  position:sticky; top:96px; z-index:900;
  overflow-x:auto; transition:background .3s;
}
.svc-tabs {
  display:flex; max-width:1240px; margin:0 auto; padding:0 5vw; white-space:nowrap;
}
.svc-tab {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:13px; letter-spacing:1px; text-transform:uppercase;
  padding:15px 16px; color:var(--text-muted); cursor:pointer;
  border-bottom:3px solid transparent; flex-shrink:0;
  transition:color .22s,border-color .22s;
}
/* ── Service Tabs Mobile Hamburger ── */
.svc-tabs-mobile-bar {
  display:none; align-items:center; justify-content:space-between;
  padding:0 5vw; height:52px;
  font-family:'Rajdhani',sans-serif; font-weight:700;
  font-size:13px; letter-spacing:1px; text-transform:uppercase;
  color:var(--blue);
}
.svc-tabs-hamburger {
  background:none; border:none; cursor:pointer; padding:6px;
  display:flex; flex-direction:column; gap:5px;
}
.svc-tabs-hamburger span {
  display:block; width:22px; height:2px; background:var(--text);
  border-radius:1px; transition:.3s;
}
.svc-tabs-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.svc-tabs-hamburger.open span:nth-child(2) { opacity:0; }
.svc-tabs-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

@media(max-width:900px){
  .svc-tabs-mobile-bar { display:flex; }
  .svc-tabs-wrap { overflow:visible; }
  .svc-tabs {
    display:none; flex-direction:column; white-space:normal;
    position:absolute; left:0; right:0; z-index:800;
    background:var(--bg-alt); border-bottom:2px solid var(--blue);
    padding:0; margin:0;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
  }
  .svc-tabs.open { display:flex; }
  .svc-tab {
    padding:14px 5vw; border-bottom:1px solid var(--border);
    font-size:13px; text-align:left;
  }
  .svc-tab:last-child { border-bottom:none; }
  .svc-tab.active { background:rgba(0,100,255,.07); }
}



/* service panels */
.svc-panel { display:none; }
.svc-panel.active { display:block; }

.svc-detail-wrap {
  background:var(--bg); transition:background .3s;
}
/*
  Service detail layout — 3-area grid:
  col A (image)  |  col B (text body spans both rows)
  col A (button) |
  image column is 42%, text column gets the rest.
  No fixed pixel widths, no overflow:hidden on the container.
  Button lives below the image → reduces image height → fixes aspect ratio.
*/
.svc-detail-layout {
  display:grid;
  grid-template-columns:42% 1fr;
  grid-template-rows:1fr auto;
  /* let content drive height — no min-height forcing image to stretch */
  align-items:stretch;
}
/* normal (not flipped): image top-left, button bottom-left, body right spanning both rows */
.svc-detail-img {
  grid-column:1; grid-row:1;
  overflow:hidden; min-width:0;
}
.svc-detail-img img {
  width:100%; height:100%;
  object-fit:cover; object-position:center; display:block;
}
.svc-detail-cta {
  grid-column:1; grid-row:2;
  padding:20px 24px;
  background:var(--bg-alt); border-top:1px solid var(--border);
  transition:background .3s;
}
.svc-detail-body {
  grid-column:2; grid-row:1 / span 2;
  padding:44px 48px;
  background:var(--bg-card); transition:background .3s;
}
/* flipped: image top-right, button bottom-right, body left spanning both rows */
.svc-detail-layout.flip .svc-detail-img  { grid-column:2; grid-row:1; }
.svc-detail-layout.flip .svc-detail-cta  { grid-column:2; grid-row:2; }
.svc-detail-layout.flip .svc-detail-body { grid-column:1; grid-row:1 / span 2; }
.svc-detail-body {
  padding:44px 48px; background:var(--bg-card); transition:background .3s;
}
.svc-detail-num {
  font-family:'Bebas Neue',sans-serif; font-size:12px; letter-spacing:3px;
  color:var(--blue); opacity:.6; margin-bottom:8px;
}
.svc-detail-title { font-size:28px; margin-bottom:14px; }
.svc-detail-desc { font-size:15px; color:var(--text-muted); line-height:1.8; margin-bottom:18px; }
.svc-scope { display:flex; flex-direction:column; gap:8px; margin-bottom:26px; }
.svc-scope-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--text);
}
.svc-scope-item::before { content:'✓'; color:var(--blue); font-weight:700; flex-shrink:0; }

/* ═══ ABOUT ═══ */
.about-strip { padding:100px 0; background:var(--bg); transition:background .3s; }
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px; align-items:stretch;
}
/* Image column: two images stacked with a gap, filling the same height as text */
.about-img-col {
  display:flex; flex-direction:column; gap:16px;
}
.about-img-frame {
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  /* flex:1 so both images share the column height naturally */
  flex:1; min-height:0;
}
.about-img-frame img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block; transition:transform .4s;
}
.about-img-frame:hover img { transform:scale(1.03); }
.about-badge-hex {
  position:absolute; bottom:-20px; right:-20px; width:96px; height:96px;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.about-badge-hex .yn { font-family:'Bebas Neue',sans-serif; font-size:28px; color:#fff; line-height:1; }
.about-badge-hex .yl { font-family:'Rajdhani',sans-serif; font-size:8px; font-weight:700; color:rgba(255,255,255,.8); letter-spacing:1px; }
.pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.pill {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:11px; letter-spacing:1px; text-transform:uppercase;
  padding:6px 16px; border-radius:100px;
  background:var(--bg-alt); color:var(--blue); border:1px solid var(--border);
}

/* ═══ SERVICES GRID ═══ */
.services-section { padding:100px 0; background:var(--bg-alt); transition:background .3s; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:26px; }
.svc-card {
  background:var(--bg-card); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border);
  transition:transform .3s,box-shadow .3s,background .3s,border-color .3s;
}
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.svc-card-img { height:200px; overflow:hidden; position:relative; cursor:pointer; }
.svc-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.svc-card:hover .svc-card-img img { transform:scale(1.06); }
.svc-card-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(15,37,80,.55) 100%);
}
.svc-card-num {
  position:absolute; top:14px; left:14px;
  font-family:'Bebas Neue',sans-serif; font-size:12px; letter-spacing:3px;
  color:rgba(255,255,255,.8); background:rgba(15,37,80,.6);
  padding:3px 10px; border-radius:100px; backdrop-filter:blur(4px);
}
.svc-card-body { padding:22px 24px 26px; }
.svc-card-title { font-size:20px; color:var(--text); margin-bottom:10px; }
.svc-card-desc { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:14px; }
.svc-tags { display:flex; flex-wrap:wrap; gap:6px; }
.tag {
  font-family:'Rajdhani',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:.8px; text-transform:uppercase;
  padding:3px 10px; border-radius:4px;
  background:var(--bg-alt); color:var(--blue); border:1px solid var(--border-lt);
}
.svc-card-link {
  display:inline-flex; align-items:center; gap:6px; margin-top:14px;
  font-family:'Rajdhani',sans-serif; font-weight:700; font-size:13px;
  letter-spacing:1px; text-transform:uppercase; color:var(--blue);
}
.svc-card-link:hover { gap:10px; }

/* ═══ STATS ═══ */
.stats-section { padding:80px 0; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.stats-num {
  font-family:'Bebas Neue',sans-serif; font-size:62px; line-height:1;
  background:linear-gradient(135deg,#7ae8ff,var(--gold));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.stats-lbl {
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:13px; letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-top:6px;
}

/* ═══ TRUST / CERTIFICATIONS ═══ */
.trust-strip { padding:72px 0; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); }
.trust-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.trust-badge {
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg); padding:22px 16px; text-align:center;
  transition:background .22s,transform .22s;
}
.trust-badge:hover { background:rgba(255,255,255,.13); transform:translateY(-3px); }
.trust-badge img { width:auto; max-width:180px; height:72px; object-fit:contain; margin:0 auto 12px; }
.trust-badge-icon { font-size:28px; margin-bottom:10px; }
.trust-badge-name { font-family:'Rajdhani',sans-serif; font-weight:700; font-size:14px; letter-spacing:1px; color:#fff; margin-bottom:4px; }
.trust-badge-sub { font-size:12px; color:rgba(255,255,255,.5); line-height:1.5; }
.trust-badge.badge-startup { grid-column:span 2; }
.trust-badge.badge-startup img { max-width:240px; height:88px; }

/* ═══ SECTORS MARQUEE ═══ */
.sectors-strip {
  padding:40px 0; background:var(--bg); overflow:hidden;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  transition:background .3s;
}
.sectors-lbl {
  text-align:center; margin-bottom:18px;
  font-family:'Rajdhani',sans-serif; font-size:11px;
  letter-spacing:4px; text-transform:uppercase; color:var(--text-muted);
}
.marquee-track { overflow:hidden; }
.marquee-row { display:flex; animation:marquee 28s linear infinite; }
.marquee-row:hover { animation-play-state:paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.sector-chip {
  display:inline-flex; align-items:center; gap:8px; flex-shrink:0;
  padding:10px 24px; border-right:1px solid var(--border);
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:13px; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--text-muted); transition:color .22s; white-space:nowrap;
}
.sector-chip:hover { color:var(--blue); }
.sector-dot { width:6px; height:6px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--gold)); flex-shrink:0; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section { padding:100px 0; background:var(--bg-alt); transition:background .3s; }
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:26px; }
.testi-card {
  background:var(--bg-card); border-radius:var(--radius-lg);
  padding:32px; box-shadow:var(--shadow); border:1px solid var(--border);
  position:relative; transition:background .3s,border-color .3s;
}
.testi-quote-mark { font-family:'Bebas Neue',sans-serif; font-size:72px; color:var(--border-lt); position:absolute; top:16px; right:22px; line-height:1; }
.testi-stars { color:var(--gold); font-size:17px; margin-bottom:14px; }
.testi-text { font-size:15px; color:var(--text-muted); line-height:1.75; margin-bottom:22px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-avatar {
  width:48px; height:48px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  display:flex; align-items:center; justify-content:center;
  font-family:'Bebas Neue',sans-serif; font-size:20px; color:#fff;
}
.testi-name { font-family:'Rajdhani',sans-serif; font-weight:700; font-size:16px; color:var(--text); }
.testi-role { font-size:13px; color:var(--text-muted); }

/* ═══ WHY US ═══ */
.why-section { padding:100px 0; background:var(--bg); transition:background .3s; }
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; }
.why-card {
  padding:32px 26px; border:1px solid var(--border); border-radius:var(--radius-lg);
  background:var(--bg-card); box-shadow:var(--shadow); position:relative; overflow:hidden;
  transition:border-color .25s,box-shadow .25s,transform .25s,background .3s;
}
.why-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
  transform:scaleX(0); transform-origin:left; transition:transform .25s;
}
.why-card:hover { border-color:var(--blue); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.why-card:hover::before { transform:scaleX(1); }
.why-icon { width:54px; height:54px; border-radius:var(--radius); background:var(--bg-alt); display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:16px; }
.why-title { font-size:19px; color:var(--text); margin-bottom:10px; }
.why-text { font-size:14px; color:var(--text-muted); line-height:1.7; }

/* ═══ CTA BAND ═══ */
.cta-band { padding:80px 5vw; text-align:center; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); }
.cta-band h2 { font-family:'Bebas Neue',sans-serif; font-size:clamp(36px,5vw,58px); color:#fff; letter-spacing:1px; margin-bottom:16px; }
.cta-band h2 span { color:var(--gold); }
.cta-band p { font-size:17px; color:rgba(255,255,255,.7); max-width:520px; margin:0 auto 36px; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ═══ CONTACT ═══ */
.contact-section { padding:90px 0; background:var(--bg-alt); transition:background .3s; }
.contact-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:72px; align-items:start; }
.contact-info h3 { font-size:28px; margin-bottom:14px; }
.contact-info > p { font-size:15px; color:var(--text-muted); line-height:1.7; margin-bottom:28px; }
.cinfo-item { display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.cinfo-icon { width:44px; height:44px; flex-shrink:0; border-radius:var(--radius); background:var(--bg-alt); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:19px; }
.cinfo-lbl { font-family:'Rajdhani',sans-serif; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--blue); margin-bottom:3px; }
.cinfo-val { font-size:15px; color:var(--text); line-height:1.5; }
.cinfo-val a { color:var(--text); }
.cinfo-val a:hover { color:var(--blue); }
.contact-form-wrap {
  background:var(--bg-card); padding:36px; border-radius:var(--radius-lg);
  box-shadow:var(--shadow); border:1px solid var(--border); transition:background .3s,border-color .3s;
}
.form-title { font-size:24px; color:var(--text); margin-bottom:6px; }
.form-sub { font-size:14px; color:var(--text-muted); margin-bottom:24px; }
.form { display:flex; flex-direction:column; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-field { display:flex; flex-direction:column; gap:5px; }
.form-field label { font-family:'Rajdhani',sans-serif; font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--text-muted); }
.form-field input,
.form-field select,
.form-field textarea {
  border:1.5px solid var(--border); border-radius:var(--radius);
  padding:11px 14px; font-family:'Source Sans 3',sans-serif;
  font-size:15px; color:var(--text); background:var(--bg-input); outline:none;
  transition:border-color .22s,background .3s,color .3s;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { border-color:var(--blue); }
.form-field textarea { resize:vertical; min-height:116px; }
.form-note { font-size:13px; color:var(--text-muted); }
.form-submit {
  font-family:'Rajdhani',sans-serif; font-weight:700;
  font-size:14px; letter-spacing:1.5px; text-transform:uppercase;
  padding:14px 34px; cursor:pointer; border:none;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  color:#fff; border-radius:var(--radius);
  transition:opacity .2s,transform .2s; align-self:flex-start;
}
.form-submit:hover { opacity:.87; transform:translateY(-2px); }
.form-success {
  display:none; padding:16px 20px;
  background:#f0fff4; border:1.5px solid #86efac;
  border-radius:var(--radius); color:#166534;
  font-family:'Rajdhani',sans-serif; font-size:16px;
}
[data-theme="dark"] .form-success { background:#0d2a1a; border-color:#166534; color:#4ade80; }
@media(prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .form-success { background:#0d2a1a; border-color:#166534; color:#4ade80; }
}

/* ═══ FOOTER ═══ */
footer { background:var(--footer-bg); padding:60px 5vw 28px; transition:background .3s; }
.footer-top { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:44px; }
.footer-brand .nav-logo { margin-bottom:14px; }
.footer-brand .brand-name,.footer-brand .brand-sub { color:rgba(255,255,255,.35) !important; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.5); line-height:1.75; max-width:350px; width:100%; text-align:justify;
  text-align:justify; max-width:350px; }
.footer-col h4 { font-family:'Rajdhani',sans-serif; font-weight:700; font-size:12px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:14px; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-col ul a:hover { color:#fff; }
.footer-bottom { max-width:1240px; margin:0 auto; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.38); font-family:'Rajdhani',sans-serif; letter-spacing:.5px; }
.footer-bottom span { color:rgba(255,255,255,.6); }

/* ═══ SCROLL REVEAL ═══ */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .6s ease,transform .6s ease; }
.reveal.vis { opacity:1; transform:translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px){
  .svc-detail-layout { grid-template-columns:1fr; grid-template-rows:auto auto auto; }
  /* on small screens: image top, body middle, button bottom — all full width */
  .svc-detail-img       { grid-column:1; grid-row:1; height:220px; }
  .svc-detail-cta       { grid-column:1; grid-row:3; }
  .svc-detail-body      { grid-column:1; grid-row:2; padding:28px 24px; }
  .svc-detail-layout.flip .svc-detail-img  { grid-column:1; grid-row:1; }
  .svc-detail-layout.flip .svc-detail-cta  { grid-column:1; grid-row:3; }
  .svc-detail-layout.flip .svc-detail-body { grid-column:1; grid-row:2; }
  .svc-detail-body { padding:32px 28px; }
  .trust-badge.badge-startup { grid-column:span 1; }
}
@media(max-width:900px){
  .nav-links,.nav-cta-wrap { display:none; }
  .hamburger { display:flex; }
  .about-grid { grid-template-columns:1fr; gap:32px; }
  .about-img-col { flex-direction:column; height:auto; }
  .about-img-col .about-img-frame { flex:none; height:220px; }
  .contact-grid { grid-template-columns:1fr; gap:48px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .form-row { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .topbar { flex-direction:column; align-items:flex-start; gap:6px; }
}
@media(max-width:600px){
  .nav-brand .brand-name { font-size:16px; letter-spacing:2px; }
  .footer-top { grid-template-columns:1fr; }
  .hero-btns { flex-direction:column; align-items:center; }
  .cta-btns { flex-direction:column; align-items:center; }
  .contact-form-wrap { padding:22px 16px; }
  .svc-tab { padding:12px 10px; font-size:11px; }
}

/* ═══════════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════════ */
.products-section { padding:100px 0; background:var(--bg); transition:background .3s; }
.products-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:26px; }

.prod-card {
  background:var(--bg-card); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border);
  transition:transform .3s,box-shadow .3s,background .3s;
  display:flex; flex-direction:column;
}
.prod-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.prod-card-img { height:220px; overflow:hidden; position:relative; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; cursor:pointer; }
.prod-card-img img { max-width:85%; max-height:190px; object-fit:contain; transition:transform .4s; }
.prod-card:hover .prod-card-img img { transform:scale(1.06); }
.prod-card-badge {
  position:absolute; top:12px; left:12px;
  font-family:'Rajdhani',sans-serif; font-weight:700; font-size:11px; letter-spacing:1.5px; text-transform:uppercase;
  background:var(--blue); color:#fff; padding:3px 10px; border-radius:100px;
}
.prod-card-body { padding:20px 22px 24px; flex:1; display:flex; flex-direction:column; }
.prod-card-model { font-family:'Bebas Neue',sans-serif; font-size:11px; letter-spacing:3px; color:var(--blue); opacity:.65; margin-bottom:4px; }
.prod-card-name { font-size:19px; font-weight:700; color:var(--text); margin-bottom:8px; font-family:'Rajdhani',sans-serif; }
.prod-card-desc { font-size:13px; color:var(--text-muted); line-height:1.65; margin-bottom:14px; flex:1; }
.prod-card-specs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.prod-spec-pill {
  font-family:'Rajdhani',sans-serif; font-size:11px; font-weight:600; letter-spacing:.8px; text-transform:uppercase;
  padding:3px 9px; border-radius:4px; background:var(--bg-alt); color:var(--blue); border:1px solid var(--border-lt);
}
.prod-card-actions { display:flex; gap:10px; flex-wrap:wrap; }
.btn-sm { padding:8px 18px; font-size:12px; letter-spacing:1.2px; }

/* Product detail page */
.prod-tabs-wrap {
  background:var(--bg-alt); border-bottom:1px solid var(--border);
  position:sticky; top:96px; z-index:900; overflow-x:auto; transition:background .3s;
}
.prod-tabs { display:flex; max-width:1240px; margin:0 auto; padding:0 5vw; white-space:nowrap; }
.prod-tab {
  font-family:'Rajdhani',sans-serif; font-weight:600; font-size:13px; letter-spacing:1px; text-transform:uppercase;
  padding:15px 20px; color:var(--text-muted); cursor:pointer;
  border-bottom:3px solid transparent; flex-shrink:0; transition:color .22s,border-color .22s;
}
.prod-tab:hover { color:var(--blue); }
.prod-tab.active { color:var(--blue); border-bottom-color:var(--blue); }

.prod-panel { display:none; padding:60px 0; }
.prod-panel.active { display:block; }

/* Overview panel */
.prod-overview-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.prod-gallery { display:flex; flex-direction:column; gap:14px; }
.prod-gallery-main {
  border-radius:var(--radius-lg); overflow:hidden;
  background:var(--bg-alt); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  padding:30px; min-height:280px;
}
.prod-gallery-main img { max-width:100%; max-height:300px; object-fit:contain; }
.prod-gallery-thumbs { display:flex; gap:10px; }
.prod-gallery-thumb {
  flex:1; border-radius:var(--radius); overflow:hidden;
  background:var(--bg-alt); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  padding:10px; cursor:pointer; transition:border-color .2s;
  min-height:80px;
}
.prod-gallery-thumb:hover,.prod-gallery-thumb.active { border-color:var(--blue); }
.prod-gallery-thumb img { max-width:100%; max-height:70px; object-fit:contain; }

.prod-overview-text h2 { font-size:28px; margin-bottom:8px; }
.prod-overview-text .model-badge {
  display:inline-block; font-family:'Bebas Neue',sans-serif; letter-spacing:3px; font-size:13px;
  background:var(--blue); color:#fff; padding:4px 14px; border-radius:100px; margin-bottom:18px;
}
.prod-overview-text p { font-size:15px; color:var(--text-muted); line-height:1.8; margin-bottom:14px; }
.prod-key-features { margin-top:22px; }
.prod-key-features h4 { font-size:16px; color:var(--text); margin-bottom:12px; font-family:'Rajdhani',sans-serif; font-weight:700; letter-spacing:.5px; }
.prod-feature-list { display:flex; flex-direction:column; gap:8px; }
.prod-feature-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--text-muted); line-height:1.5;
}
.prod-feature-item::before { content:'✓'; color:var(--blue); font-weight:700; flex-shrink:0; margin-top:1px; }
.prod-actions-bar {
  display:flex; gap:12px; flex-wrap:wrap; margin-top:28px;
  padding-top:24px; border-top:1px solid var(--border);
}

/* Specifications panel */
.spec-table-wrap { background:var(--bg-card); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border); }
.spec-table { width:100%; border-collapse:collapse; }
.spec-table thead th {
  background:var(--navy); color:#fff; padding:14px 20px;
  font-family:'Rajdhani',sans-serif; font-weight:700; font-size:13px; letter-spacing:1.5px; text-transform:uppercase; text-align:left;
}
.spec-table tbody tr { border-bottom:1px solid var(--border); transition:background .15s; }
.spec-table tbody tr:last-child { border-bottom:none; }
.spec-table tbody tr:hover { background:var(--bg-alt); }
.spec-table td { padding:13px 20px; font-size:15px; }
.spec-table td:first-child { color:var(--text-muted); width:42%; font-weight:600; font-family:'Rajdhani',sans-serif; letter-spacing:.5px; }
.spec-table td:last-child { color:var(--text); }

/* Application panel */
.prod-app-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.prod-app-img { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.prod-app-img img { width:100%; display:block; }
.prod-app-text h3 { font-size:22px; margin-bottom:14px; }
.prod-app-text p { font-size:15px; color:var(--text-muted); line-height:1.75; margin-bottom:14px; }
.prod-use-cases { display:flex; flex-direction:column; gap:12px; margin-top:18px; }
.prod-use-case {
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 16px; border-radius:var(--radius); background:var(--bg-alt); border:1px solid var(--border);
}
.prod-use-case-icon { font-size:22px; flex-shrink:0; }
.prod-use-case-title { font-family:'Rajdhani',sans-serif; font-weight:700; font-size:15px; color:var(--text); margin-bottom:3px; }
.prod-use-case-desc { font-size:13px; color:var(--text-muted); }

/* Downloads panel */
.downloads-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.download-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px 24px; display:flex; align-items:flex-start; gap:18px;
  transition:border-color .22s,box-shadow .22s;
}
.download-card:hover { border-color:var(--blue); box-shadow:var(--shadow); }
.download-icon { font-size:36px; flex-shrink:0; }
.download-title { font-family:'Rajdhani',sans-serif; font-weight:700; font-size:17px; color:var(--text); margin-bottom:4px; }
.download-desc { font-size:13px; color:var(--text-muted); margin-bottom:14px; line-height:1.5; }
.download-meta { font-size:12px; color:var(--text-muted); margin-bottom:14px; }

/* MII badge */
.trust-badge.badge-mii { }

@media(max-width:900px){
  .prod-overview-grid { grid-template-columns:1fr; gap:36px; }
  .prod-app-grid { grid-template-columns:1fr; gap:32px; }
  .prod-gallery-thumbs { gap:8px; }
}
@media(max-width:600px){
  .prod-card-actions { flex-direction:column; }
}

/* brand-sub in nav fix */
.nav-brand .brand-sub {
  font-size:11px; letter-spacing:1px;
  color:var(--text-muted); text-transform:uppercase;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  max-width:200px;
}
/* Fix: reset gradient text-fill inherited from light-theme nav-brand rule */
.footer-brand .brand-name {
  background:none !important;
  -webkit-background-clip:unset !important;
  -webkit-text-fill-color:#fff !important;
  color:#fff !important;
}
.footer-brand .brand-sub {
  font-size:12px !important; letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.55) !important;
  -webkit-text-fill-color:rgba(255,255,255,.55) !important;
}
.footer-brand .brand-cin {
  font-family:'Rajdhani',sans-serif; font-size:11px;
  letter-spacing:.8px; color:rgba(255,255,255,.35); margin-top:2px;
}
.footer-brand > p { text-align:justify; max-width:min(350px,100%); margin-top:14px; }
a.prod-card-img-link {
  display:block; width:100%; height:100%; text-decoration:none; color:inherit;
}
a.prod-card-img-link img {
  display:block; width:100%; height:100%; object-fit:cover; transition:transform .4s;
}
.prod-card:hover a.prod-card-img-link img { transform:scale(1.06); }
.footer-brand > p {text-align:justify;max-width:min(350px,100%);}
