/* ═══════════════════════════════════════════════════
   BSG INFOTECH SOLUTIONS — MAIN STYLESHEET
   Font: Syne (headings) + Outfit (body)
   Colors: Navy #004b96, Orange #e16419
═══════════════════════════════════════════════════ */

:root {
  --blue:    #004b96;
  --blue-d:  #002f5e;
  --blue-m:  #1a6abf;
  --blue-l:  #2d82d4;
  --orange:  #e16419;
  --orange-l:#f07d30;
  --orange-d:#c04f0a;
  --navy:    #010f1e;
  --navy-2:  #021628;
  --navy-3:  #031e38;
  --white:   #ffffff;
  --card:    rgba(255,255,255,.035);
  --border:  rgba(0,75,150,.22);
  --muted:   rgba(255,255,255,.52);
  --radius:  16px;
  --radius-lg:24px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; font-size:16px }
body { font-family:'Outfit',sans-serif; background:var(--navy); color:#fff; overflow-x:hidden; -webkit-font-smoothing:antialiased }
a { text-decoration:none; color:inherit }
ul { list-style:none }
img { max-width:100%; display:block }
em { font-style:normal }

/* ─── CURSOR ─────────────────────────────── */
.cur, .cur-ring {
  position:fixed; border-radius:50%; pointer-events:none;
  z-index:9999; transform:translate(-50%,-50%);
}
.cur { width:10px; height:10px; background:var(--orange); mix-blend-mode:screen; transition:width .14s,height .14s }
.cur-ring { width:36px; height:36px; border:1.5px solid rgba(225,100,25,.4); transition:left .11s,top .11s,width .24s,height .24s }
@media(hover:none){ .cur,.cur-ring{display:none} }

/* ─── PAGE LOADER ────────────────────────── */
.loader {
  position:fixed; inset:0; z-index:10000;
  background:var(--navy); display:flex; align-items:center; justify-content:center;
  transition:opacity .5s, visibility .5s;
}
.loader.done { opacity:0; visibility:hidden }
.loader-logo { text-align:center }
.loader-logo img { height:70px; margin:0 auto 20px; animation:loaderPulse 1s ease-in-out infinite }
@keyframes loaderPulse { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.08);opacity:1} }
.loader-bar { width:160px; height:3px; background:rgba(255,255,255,.1); border-radius:3px; overflow:hidden; margin:0 auto }
.loader-fill { height:100%; background:linear-gradient(90deg,var(--orange),var(--blue-l)); border-radius:3px; animation:loaderFill .9s ease-out forwards }
@keyframes loaderFill { from{width:0} to{width:100%} }

/* ─── NAVBAR ─────────────────────────────── */
#nav {
  position:fixed; inset:0 0 auto; z-index:900; height:70px;
  display:flex; align-items:center; justify-content:space-between; padding:0 5%;
  transition:background .35s, border-color .35s;
  border-bottom:1px solid transparent;
}
#nav.scrolled {
  background:rgba(1,15,30,.94); backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px); border-color:rgba(0,75,150,.28);
}
.nav-logo { display:flex; align-items:center }

/* Logo animation wrapper */
.logo-anim-wrap { display:flex; align-items:center; gap:10px; overflow:hidden }
.logo-icon {
  height:38px; width:auto; flex-shrink:0;
  filter:drop-shadow(0 0 8px rgba(225,100,25,.35));
  animation:logoBreathe 4s ease-in-out infinite;
}
@keyframes logoBreathe {
  0%,100% { filter:drop-shadow(0 0 6px rgba(225,100,25,.3)) drop-shadow(0 0 18px rgba(0,75,150,.2)) }
  50%      { filter:drop-shadow(0 0 12px rgba(225,100,25,.55)) drop-shadow(0 0 30px rgba(0,75,150,.35)) }
}
.logo-text { height:30px; width:auto; opacity:0; transform:translateX(-8px); transition:opacity .4s, transform .4s }
#nav.scrolled .logo-text, .logo-anim-wrap:hover .logo-text { opacity:1; transform:translateX(0) }
.logo-text-always .logo-text { opacity:1 !important; transform:translateX(0) !important }

.nav-links { display:flex; align-items:center; gap:28px }
.nav-links a { font-size:13.5px; color:rgba(255,255,255,.7); position:relative; padding-bottom:3px; transition:color .2s; font-weight:400 }
.nav-links a::after { content:""; position:absolute; bottom:0; left:0; right:0; height:1.5px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .25s }
.nav-links a:hover { color:#fff }
.nav-links a:hover::after { transform:scaleX(1) }
.btn-nav { padding:8px 22px; border:1.5px solid var(--orange); border-radius:7px; font-size:13px; font-weight:500; color:var(--orange) !important; transition:all .22s }
.btn-nav:hover { background:var(--orange); color:#fff !important; box-shadow:0 4px 18px rgba(225,100,25,.38) }
.btn-nav::after { display:none !important }

.hbg { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:5px }
.hbg span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all .3s }
.hbg.open span:nth-child(1){ transform:translateY(7px) rotate(45deg) }
.hbg.open span:nth-child(2){ opacity:0 }
.hbg.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg) }

.mob-nav {
  position:fixed; inset:70px 0 0; z-index:899;
  background:rgba(1,15,30,.97); backdrop-filter:blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:26px;
  transform:translateY(-110%); transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.mob-nav.open { transform:translateY(0) }
.mob-nav a { font-family:'Syne',sans-serif; font-size:22px; font-weight:700; color:rgba(255,255,255,.8); transition:color .2s }
.mob-nav a:hover { color:var(--orange) }

/* ─── HERO ───────────────────────────────── */
#hero {
  min-height:100vh;
  background:linear-gradient(148deg,#010f1e 0%,#021628 55%,#031e38 100%);
  display:flex; align-items:center; padding:120px 5% 80px;
  position:relative; overflow:hidden;
}
.hero-grid {
  position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(rgba(0,75,150,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,75,150,.06) 1px,transparent 1px);
  background-size:64px 64px;
  animation:gridDrift 28s linear infinite;
}
@keyframes gridDrift { to{ background-position:64px 64px } }

.blob { position:absolute; border-radius:50%; filter:blur(90px); z-index:0; animation:blobF 11s ease-in-out infinite }
.b1 { width:580px;height:580px; background:radial-gradient(circle,rgba(0,75,150,.2),transparent 65%); top:-130px;right:-90px }
.b2 { width:420px;height:420px; background:radial-gradient(circle,rgba(225,100,25,.13),transparent 65%); bottom:-70px;left:4%; animation-delay:4s }
.b3 { width:280px;height:280px; background:radial-gradient(circle,rgba(0,130,200,.09),transparent 65%); top:42%;left:48%; animation-delay:7s }
@keyframes blobF { 0%,100%{transform:scale(1) translateY(0)} 50%{transform:scale(1.08) translateY(-26px)} }

/* Orbit rings (right visual) */
.orbit-scene {
  position:absolute; right:4%; top:50%; transform:translateY(-50%);
  width:500px; height:500px; z-index:1; pointer-events:none;
}
.orbit-ring { width:100%; height:100%; animation:spinOrbit 22s linear infinite; position:absolute; inset:0 }
@keyframes spinOrbit { to{ transform:rotate(360deg) } }
.orbit-dot {
  position:absolute; border-radius:50%;
  top:50%; left:50%; animation:orbitMove 7s linear infinite;
}
.od1 { width:14px;height:14px; background:var(--orange); box-shadow:0 0 16px var(--orange); margin:-7px 0 0 -7px }
.od2 { width:9px;height:9px; background:var(--blue-l); box-shadow:0 0 12px var(--blue-l); margin:-4px 0 0 -4px; animation-duration:10s; animation-direction:reverse; animation-delay:-4s }
@keyframes orbitMove { 0%{transform:rotate(0deg) translateX(220px)} 100%{transform:rotate(360deg) translateX(220px)} }
.orbit-img-wrap { position:absolute; inset:0; display:flex; align-items:center; justify-content:center }
.orbit-logo {
  width:220px; height:auto;
  animation:logoGlow 5s ease-in-out infinite;
  filter:drop-shadow(0 0 30px rgba(225,100,25,.3)) drop-shadow(0 0 70px rgba(0,75,150,.25));
}
@keyframes logoGlow {
  0%,100% { transform:translateY(0) scale(1); filter:drop-shadow(0 0 30px rgba(225,100,25,.3)) drop-shadow(0 0 70px rgba(0,75,150,.25)) }
  50%      { transform:translateY(-14px) scale(1.03); filter:drop-shadow(0 0 50px rgba(225,100,25,.5)) drop-shadow(0 0 100px rgba(0,75,150,.4)) }
}

/* Hero text side */
.hero-content { position:relative; z-index:2; max-width:620px }
.hero-badge {
  display:inline-flex; align-items:center; gap:9px;
  padding:7px 16px; border-radius:100px;
  border:1px solid rgba(225,100,25,.32); background:rgba(225,100,25,.07);
  font-size:11px; letter-spacing:1.8px; text-transform:uppercase; color:var(--orange-l);
  margin-bottom:20px; animation:fadeUp .7s both;
}
.pulse-dot { width:6px; height:6px; border-radius:50%; background:var(--orange); animation:pDot 1.6s infinite }
@keyframes pDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.7)} }

/* Hero wordmark animated entrance */
.hero-wordmark {
  margin-bottom:14px;
  animation:fadeUp .7s .07s both;
  overflow:hidden;
}
.hero-wordmark img {
  height:88px; width:auto;
  animation:wordmarkReveal 1.2s .1s cubic-bezier(.22,1,.36,1) both;
}
@keyframes wordmarkReveal {
  from { opacity:0; transform:translateY(20px) scale(.96) }
  to   { opacity:1; transform:translateY(0) scale(1) }
}

.hero-tagline { font-family:'Syne',sans-serif; font-size:clamp(17px,2.2vw,24px); font-weight:600; color:rgba(255,255,255,.78); margin-bottom:14px; letter-spacing:-.2px; animation:fadeUp .7s .14s both }
.hero-desc { font-size:16px; font-weight:300; line-height:1.82; color:rgba(255,255,255,.56); max-width:500px; margin-bottom:32px; animation:fadeUp .7s .2s both }

.hero-actions { display:flex; align-items:center; gap:14px; flex-wrap:wrap; animation:fadeUp .7s .27s both }

/* BBB badge */
.bbb-badge-wrap {
  margin-top:24px;
  animation:fadeUp .7s .36s both;
  display:inline-block;
}
.bbb-link img {
  height:42px; width:auto;
  transition:transform .2s, box-shadow .2s;
  border-radius:4px;
}
.bbb-link:hover img { transform:scale(1.04); box-shadow:0 4px 16px rgba(0,0,0,.3) }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 34px; border-radius:8px;
  background:linear-gradient(135deg,var(--orange),var(--orange-d));
  color:#fff; font-size:14.5px; font-weight:600;
  box-shadow:0 7px 26px rgba(225,100,25,.36); border:none; cursor:pointer;
  transition:transform .24s, box-shadow .24s; font-family:'Outfit',sans-serif;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 38px rgba(225,100,25,.52) }
.btn-ghost {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 26px; border:1.5px solid rgba(0,75,150,.5);
  color:rgba(255,255,255,.78); border-radius:8px; font-size:14.5px;
  font-family:'Outfit',sans-serif; transition:all .24s;
}
.btn-ghost:hover { border-color:var(--blue-l); color:#fff; background:rgba(0,75,150,.14) }
.arr { width:20px;height:20px; border-radius:50%; border:1.5px solid currentColor; display:inline-flex; align-items:center; justify-content:center; font-size:11px; transition:transform .2s }
.btn-primary:hover .arr, .btn-ghost:hover .arr { transform:translateX(3px) }
.arr-sm { font-size:14px; transition:transform .2s }

/* ─── TRUST STRIP ────────────────────────── */
.trust-bar {
  background:rgba(255,255,255,.02);
  border-top:1px solid rgba(0,75,150,.2); border-bottom:1px solid rgba(0,75,150,.2);
  padding:18px 5%; display:flex; align-items:center; gap:32px; overflow:hidden;
}
.trust-lbl { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,.28); white-space:nowrap; flex-shrink:0 }
.trust-scroll { overflow:hidden; flex:1 }
.trust-inner { display:flex; gap:52px; animation:scrollX 28s linear infinite; white-space:nowrap }
.trust-inner span { font-family:'Syne',sans-serif; font-size:13.5px; font-weight:700; color:rgba(255,255,255,.17); letter-spacing:.7px; cursor:default; transition:color .3s }
.trust-inner span:hover { color:rgba(255,255,255,.45) }
@keyframes scrollX { to{ transform:translateX(-50%) } }

/* ─── SHARED SECTION ─────────────────────── */
section { padding:90px 5% }

.sec-chip {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--orange);
  margin-bottom:14px;
}
.sec-chip::before { content:""; width:22px; height:2px; background:var(--orange); border-radius:1px }

.sec-h2 { font-family:'Syne',sans-serif; font-size:clamp(26px,3.6vw,48px); font-weight:800; letter-spacing:-1.5px; line-height:1.1; margin-bottom:14px }
.grad-text { background:linear-gradient(95deg,var(--orange),var(--orange-l)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.grad-text-blue { background:linear-gradient(95deg,var(--blue-m),var(--blue-l)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.sec-desc { font-size:15.5px; color:var(--muted); line-height:1.78; max-width:520px }

/* ─── SERVICES GRID ──────────────────────── */
#services { background:var(--navy) }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:48px }
.svc-card {
  background:var(--card); border:1px solid rgba(255,255,255,.07); border-radius:var(--radius-lg);
  padding:34px 28px; display:flex; flex-direction:column; gap:0;
  position:relative; overflow:hidden; transition:transform .32s, box-shadow .32s, background .32s, border-color .32s;
  cursor:pointer;
}
.svc-card::before { content:""; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,var(--orange),var(--orange-l)); transform:scaleX(0); transform-origin:left; transition:transform .32s }
.svc-card:hover { transform:translateY(-7px); box-shadow:0 26px 60px rgba(225,100,25,.12); background:rgba(225,100,25,.04); border-color:rgba(225,100,25,.18) }
.svc-card:hover::before { transform:scaleX(1) }
.svc-num { font-size:11px; letter-spacing:2px; color:var(--orange); opacity:.5; margin-bottom:18px; font-family:'Syne',sans-serif }
.svc-icon-wrap { font-size:34px; margin-bottom:14px; display:block }
.svc-card h3 { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; margin-bottom:10px; letter-spacing:-.2px; line-height:1.2 }
.svc-card p { font-size:13.5px; color:var(--muted); line-height:1.7; flex:1 }
.svc-footer { margin-top:22px; display:flex; align-items:center; justify-content:space-between }
.svc-more { font-size:13px; color:var(--orange); font-weight:600; display:flex; align-items:center; gap:6px }
.svc-bar { height:2px; width:0; background:linear-gradient(90deg,var(--orange),var(--orange-l)); border-radius:1px; transition:width .35s }
.svc-card:hover .svc-bar { width:40px }
.svc-card:hover .arr-sm { transform:translateX(4px) }

/* ─── ABOUT ──────────────────────────────── */
#about { background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 100%) }
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center }
.about-body { font-size:15px; color:var(--muted); line-height:1.8 }
.about-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px }
.pill { padding:8px 18px; border-radius:100px; border:1px solid rgba(0,75,150,.3); background:rgba(0,75,150,.06); font-size:13px; color:rgba(255,255,255,.75); transition:all .22s }
.pill:hover { background:rgba(0,75,150,.16); border-color:rgba(0,75,150,.5) }

.focus-card { background:rgba(0,75,150,.06); border:1px solid var(--border); border-radius:var(--radius-lg); padding:30px; margin-bottom:18px }
.focus-title { font-size:10.5px; letter-spacing:2px; text-transform:uppercase; color:var(--orange); margin-bottom:20px }
.bar-row { display:flex; align-items:center; gap:12px; margin-bottom:13px }
.bar-lbl { font-size:12px; color:var(--muted); width:138px; flex-shrink:0; line-height:1.3 }
.bar-track { flex:1; height:5px; background:rgba(255,255,255,.07); border-radius:3px; overflow:hidden }
.bar-fill { height:100%; border-radius:3px; background:linear-gradient(90deg,var(--blue),var(--orange)); width:0; transition:width 1.5s cubic-bezier(.4,0,.2,1) }
.bar-pct { font-size:12px; color:var(--orange); font-weight:600; width:32px; text-align:right; flex-shrink:0 }

.commit-card { display:flex; gap:16px; padding:22px 24px; background:rgba(225,100,25,.06); border:1px solid rgba(225,100,25,.18); border-radius:var(--radius); align-items:flex-start }
.commit-icon { font-size:26px; flex-shrink:0; margin-top:2px }
.commit-card strong { font-family:'Syne',sans-serif; font-size:14.5px; font-weight:700; display:block; margin-bottom:6px }
.commit-card p { font-size:13px; color:var(--muted); line-height:1.65 }

/* ─── TIMELINE ───────────────────────────── */
#timeline { background:var(--navy-2) }
.tl-scene { position:relative; margin-top:60px }
.tl-track { position:absolute; top:26px; left:calc(12.5% + 10px); right:calc(12.5% + 10px); height:2px; z-index:0 }
.tl-line-bg { position:absolute; inset:0; background:rgba(0,75,150,.28); border-radius:1px }
.tl-line-glow { position:absolute; inset:0; background:linear-gradient(90deg,var(--orange),var(--blue-l)); border-radius:1px; box-shadow:0 0 12px var(--orange); transform:scaleX(0); transform-origin:left; transition:transform 2s cubic-bezier(.4,0,.2,1) }
.tl-grid { display:grid; grid-template-columns:repeat(4,1fr); position:relative; z-index:1; padding-bottom:20px }
.tl-item {
  display:flex; flex-direction:column; align-items:center; padding:0 14px;
  opacity:0; transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
  transition-delay:calc(var(--i) * .18s);
}
.tl-item.in { opacity:1; transform:none }
.tl-dot-wrap { margin-bottom:18px }
.tl-dot {
  width:20px; height:20px; border-radius:50%;
  border:2.5px solid rgba(0,75,150,.6); background:var(--navy-2);
  transition:all .4s;
}
.tl-dot.lit { border-color:var(--orange); background:var(--orange); box-shadow:0 0 0 6px rgba(225,100,25,.16), 0 0 22px rgba(225,100,25,.5) }
.tl-item:hover .tl-dot { border-color:var(--orange); background:var(--orange); box-shadow:0 0 0 6px rgba(225,100,25,.16), 0 0 22px rgba(225,100,25,.5) }
.tl-year { font-family:'Syne',sans-serif; font-size:24px; font-weight:800; color:var(--orange); margin-bottom:14px; line-height:1 }
.tl-card {
  width:100%; background:rgba(0,75,150,.07); border:1px solid rgba(0,75,150,.2);
  border-radius:var(--radius); padding:20px 18px; text-align:left;
  transition:all .32s; position:relative; overflow:hidden;
}
.tl-card::before { content:""; position:absolute; top:0;left:0;right:0; height:2.5px; background:linear-gradient(90deg,var(--blue),var(--orange)); transform:scaleX(0); transform-origin:left; transition:transform .32s }
.tl-item:hover .tl-card { background:rgba(0,75,150,.15); border-color:rgba(0,75,150,.42); transform:translateY(-5px); box-shadow:0 16px 42px rgba(0,75,150,.2) }
.tl-item:hover .tl-card::before { transform:scaleX(1) }
.tl-card-icon { width:40px;height:40px; border-radius:10px; background:linear-gradient(135deg,var(--blue),var(--blue-m)); display:flex; align-items:center; justify-content:center; font-size:18px; margin-bottom:11px }
.tl-card h4 { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; margin-bottom:7px; line-height:1.25 }
.tl-card p { font-size:12.5px; color:var(--muted); line-height:1.62 }

/* ─── PROCESS ────────────────────────────── */
#process { background:var(--navy); text-align:center }
.proc-grid { display:grid; grid-template-columns:repeat(4,1fr); margin-top:58px; position:relative }
.proc-grid::before { content:""; position:absolute; top:32px; left:12.5%; right:12.5%; height:1px; background:linear-gradient(90deg,transparent,var(--blue),var(--orange),transparent) }
.proc-item { padding:0 14px }
.proc-num {
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px;
  border:2px solid var(--blue-m); background:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:20px; font-weight:800; color:var(--blue-l);
  position:relative; z-index:1; transition:all .28s;
}
.proc-item:hover .proc-num { background:var(--orange); border-color:var(--orange); color:#fff; box-shadow:0 0 32px rgba(225,100,25,.5) }
.proc-item h4 { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; margin-bottom:9px }
.proc-item p { font-size:13.5px; color:var(--muted); line-height:1.65 }

/* ─── INDUSTRIES ─────────────────────────── */
#industries { background:var(--navy-2) }
.ind-layout { display:grid; grid-template-columns:210px 1fr; gap:36px; margin-top:46px; align-items:start }
.ind-tabs { display:flex; flex-direction:column; gap:3px }
.ind-tab { padding:12px 16px; border-radius:10px; cursor:pointer; font-size:14px; font-weight:400; color:var(--muted); border:1px solid transparent; transition:all .22s; display:flex; align-items:center; gap:10px }
.ind-tab:hover, .ind-tab.active { background:rgba(225,100,25,.08); color:#fff; border-color:rgba(225,100,25,.2) }
.ind-tab.active { color:var(--orange); font-weight:500 }
.ind-tab-ico { font-size:18px; flex-shrink:0 }
.ind-panel { background:rgba(0,75,150,.06); border:1px solid var(--border); border-radius:var(--radius-lg); padding:38px; min-height:280px }
.ind-content { display:none; animation:fadeUp .35s both }
.ind-content.active { display:block }
.ind-content h3 { font-family:'Syne',sans-serif; font-size:22px; font-weight:800; margin-bottom:12px }
.ind-content p { font-size:15px; color:var(--muted); line-height:1.76; margin-bottom:20px }
.ind-feats { display:grid; grid-template-columns:1fr 1fr; gap:9px }
.ind-feat { display:flex; align-items:center; gap:9px; font-size:13px; color:rgba(255,255,255,.68) }
.feat-check { width:20px;height:20px; border-radius:50%; background:rgba(225,100,25,.16); display:flex; align-items:center; justify-content:center; font-size:10px; color:var(--orange); flex-shrink:0 }

/* ─── CTA ────────────────────────────────── */
.cta-section { background:linear-gradient(135deg,var(--blue-d) 0%,#062340 100%); padding:90px 5%; position:relative; overflow:hidden }
.cta-section::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.036) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.036) 1px,transparent 1px); background-size:44px 44px }
.cta-grid { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center }
.cta-grid h2 { font-family:'Syne',sans-serif; font-size:clamp(26px,3.8vw,48px); font-weight:800; letter-spacing:-1.5px; margin-bottom:14px }
.cta-grid p { font-size:16px; color:rgba(255,255,255,.65); margin-bottom:32px }
.cta-btns { display:flex; gap:14px; flex-wrap:wrap }
.cta-details { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-lg); padding:30px }
.cta-info-row { display:flex; align-items:flex-start; gap:13px; margin-bottom:14px; font-size:14px; color:rgba(255,255,255,.65) }
.cta-info-row:last-child { margin-bottom:0 }
.cta-info-row a:hover { color:#fff }
.ci-ico { width:30px;height:30px; border-radius:8px; background:rgba(0,75,150,.25); display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; margin-top:1px }

/* ─── FOOTER ─────────────────────────────── */
footer { background:#010914; padding:70px 5% 32px }
.ft-wrap { display:grid; grid-template-columns:1.8fr 1fr 1fr 1.1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.07) }
.ft-logo { height:50px; width:auto; filter:brightness(.88); margin-bottom:13px }
.ft-brand p { font-size:13.5px; color:rgba(255,255,255,.4); line-height:1.7; margin-bottom:18px }
.ft-bbb img { height:38px; opacity:.7; transition:opacity .2s; border-radius:4px }
.ft-bbb img:hover { opacity:1 }
.soc-row { display:flex; gap:9px; margin-top:16px }
.soc { width:34px;height:34px; border-radius:8px; border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:rgba(255,255,255,.38); transition:all .22s }
.soc:hover { background:var(--orange); border-color:var(--orange); color:#fff }
.ft-col h5 { font-family:'Syne',sans-serif; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#fff; margin-bottom:16px }
.ft-col ul li { margin-bottom:10px }
.ft-col ul li a { font-size:13px; color:rgba(255,255,255,.38); transition:color .2s }
.ft-col ul li a:hover { color:var(--orange) }
.fc { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px }
.fci { width:27px;height:27px; border-radius:7px; background:rgba(0,75,150,.18); display:flex; align-items:center; justify-content:center; font-size:12px; flex-shrink:0; margin-top:1px }
.fc span, .fc a { font-size:13px; color:rgba(255,255,255,.38); line-height:1.5; transition:color .2s }
.fc a:hover { color:var(--orange) }
.ft-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:12px; color:rgba(255,255,255,.22); flex-wrap:wrap; gap:12px }
.ft-bottom a { color:rgba(255,255,255,.22); transition:color .2s }
.ft-bottom a:hover { color:rgba(255,255,255,.55) }
.ft-links { display:flex; gap:20px }

/* ─── BTT ────────────────────────────────── */
#btt { position:fixed; bottom:26px; right:26px; z-index:800; width:42px;height:42px; border-radius:10px; border:none; cursor:pointer; background:linear-gradient(135deg,var(--orange),var(--orange-d)); color:#fff; font-size:18px; display:flex; align-items:center; justify-content:center; opacity:0; transform:translateY(10px); transition:all .3s; pointer-events:none; box-shadow:0 6px 20px rgba(225,100,25,.4) }
#btt.show { opacity:1; transform:none; pointer-events:all }
#btt:hover { transform:translateY(-2px) }

/* ─── SCROLL REVEAL ──────────────────────── */
.rv { opacity:0; transform:translateY(20px); transition:opacity .65s ease, transform .65s ease }
.rv.in { opacity:1; transform:none }
.d1{transition-delay:.09s} .d2{transition-delay:.18s} .d3{transition-delay:.27s}

/* ─── SERVICE PAGE ───────────────────────── */
.svc-page { background:#020e1c }
.svc-hero {
  position:relative; min-height:420px; display:flex; align-items:center;
  padding:140px 5% 70px; overflow:hidden;
}
.svc-hero-bg {
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(145deg,#010f1e 0%,#031e38 60%,#001830 100%);
}
.svc-hero-bg::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(0,75,150,.065) 1px,transparent 1px),linear-gradient(90deg,rgba(0,75,150,.065) 1px,transparent 1px); background-size:64px 64px }
.svc-hero-content { position:relative; z-index:1; max-width:780px }
.back-link { display:inline-flex; align-items:center; gap:7px; font-size:13px; color:var(--muted); margin-bottom:22px; transition:color .2s }
.back-link:hover { color:var(--orange) }
.svc-hero-icon { font-size:44px; margin-bottom:10px; display:block }
.svc-hero-num { font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--orange); opacity:.6; margin-bottom:12px; font-family:'Syne',sans-serif }
.svc-hero-content h1 { font-family:'Syne',sans-serif; font-size:clamp(28px,4vw,52px); font-weight:800; letter-spacing:-1.5px; line-height:1.1; margin-bottom:18px }
.svc-hero-intro { font-size:16px; color:var(--muted); line-height:1.8; max-width:620px; margin-bottom:28px }

.svc-main { padding:60px 5% 80px }
.svc-sections-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:60px }
.svc-section {
  background:rgba(0,75,150,.05); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:34px 30px; transition:all .32s;
  opacity:0; transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease, background .32s, border-color .32s;
  transition-delay:calc(var(--i) * .12s);
}
.svc-section.in { opacity:1; transform:none }
.svc-section:hover { background:rgba(0,75,150,.12); border-color:rgba(0,75,150,.4) }
.svc-sec-head { display:flex; align-items:center; gap:14px; margin-bottom:20px }
.svc-sec-icon { width:44px;height:44px; border-radius:12px; background:linear-gradient(135deg,var(--blue),var(--blue-m)); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0 }
.svc-sec-head h2 { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; letter-spacing:-.2px; line-height:1.2 }
.svc-list { display:flex; flex-direction:column; gap:10px }
.svc-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,.7); line-height:1.55 }
.svc-check { width:20px;height:20px; border-radius:50%; background:rgba(225,100,25,.16); display:flex; align-items:center; justify-content:center; font-size:10px; color:var(--orange); flex-shrink:0; margin-top:1px }

.other-services { margin-bottom:44px }
.other-services h3 { font-family:'Syne',sans-serif; font-size:22px; font-weight:700; margin-bottom:20px }
.other-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px }
.other-card { display:flex; align-items:center; gap:14px; padding:18px 20px; background:var(--card); border:1px solid rgba(255,255,255,.07); border-radius:var(--radius); transition:all .28s }
.other-card:hover { background:rgba(225,100,25,.05); border-color:rgba(225,100,25,.18); transform:translateY(-3px) }
.other-icon { font-size:24px; flex-shrink:0 }
.other-card strong { font-size:13.5px; font-weight:600; display:block; margin-bottom:3px; line-height:1.2 }
.other-card p { font-size:12px; color:var(--muted); line-height:1.4 }
.other-card .arr-sm { margin-left:auto; flex-shrink:0; color:var(--orange); opacity:.6 }
.other-card:hover .arr-sm { opacity:1; transform:translateX(3px) }

.svc-nav-row { display:flex; justify-content:space-between; gap:16px }
.svc-nav-btn { display:flex; align-items:center; gap:14px; padding:18px 24px; background:var(--card); border:1px solid var(--border); border-radius:var(--radius); transition:all .28s; flex:1; max-width:320px }
.svc-nav-btn:hover { background:rgba(0,75,150,.12); border-color:rgba(0,75,150,.4) }
.svc-nav-btn.next { flex-direction:row-reverse; margin-left:auto; text-align:right }
.svc-nav-btn small { font-size:11px; color:var(--muted); display:block; margin-bottom:3px }
.svc-nav-btn strong { font-size:14px; font-weight:600; display:block; line-height:1.2 }
.svc-nav-btn span { font-size:20px; color:var(--orange); flex-shrink:0 }

.svc-footer-strip { background:#010914; padding:20px 5%; border-top:1px solid rgba(255,255,255,.07) }
.svc-footer-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:13px; color:rgba(255,255,255,.35) }
.svc-footer-inner a { transition:color .2s }
.svc-footer-inner a:hover { color:rgba(255,255,255,.7) }

/* ─── CANVAS ─────────────────────────────── */
#ptc { position:absolute; inset:0; z-index:0; pointer-events:none }

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1100px){
  .orbit-scene { display:none }
  .svc-grid { grid-template-columns:1fr 1fr }
  .about-split { grid-template-columns:1fr }
  .ft-wrap { grid-template-columns:1fr 1fr }
  .tl-grid { grid-template-columns:1fr 1fr; gap:24px 16px }
  .tl-track { display:none }
  .cta-grid { grid-template-columns:1fr }
  .svc-sections-grid { grid-template-columns:1fr }
  .other-grid { grid-template-columns:1fr 1fr }
}
@media(max-width:800px){
  .nav-links { display:none } .hbg { display:flex }
  section, #timeline, .svc-main { padding:68px 4% }
  .svc-grid { grid-template-columns:1fr }
  .proc-grid { grid-template-columns:1fr 1fr } .proc-grid::before { display:none }
  .ind-layout { grid-template-columns:1fr }
  .ind-feats { grid-template-columns:1fr }
  .ft-wrap { grid-template-columns:1fr; gap:30px }
  .tl-grid { grid-template-columns:1fr; gap:18px }
  .about-pills { gap:8px }
  .other-grid { grid-template-columns:1fr }
  .svc-nav-row { flex-direction:column }
  .svc-nav-btn { max-width:100% }
}
@media(max-width:480px){
  .proc-grid { grid-template-columns:1fr }
  .hero-wordmark img { height:66px }
  .svc-sections-grid { grid-template-columns:1fr }
  .hero-actions { flex-direction:column; align-items:flex-start }
}

/* ═══════════════════════════════════════════════════
   SITE NOTICE / CONSENT POPUP (cookie & marketing consent)
═══════════════════════════════════════════════════ */
#bsgNoticeOverlay{
  position:fixed;inset:0;z-index:10500;
  background:rgba(1,6,14,.74);
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  opacity:0;visibility:hidden;
  transition:opacity .4s ease,visibility .4s ease;
}
#bsgNoticeOverlay.show{opacity:1;visibility:visible}
#bsgNoticeDialog{
  width:100%;max-width:560px;
  background:linear-gradient(180deg,var(--navy-3),var(--navy-2));
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:34px 32px 28px;
  box-shadow:0 30px 80px rgba(0,0,0,.65),0 0 0 1px rgba(0,75,150,.12);
  transform:translateY(18px) scale(.97);
  transition:transform .4s ease;
  display:flex;flex-direction:column;gap:20px;
}
#bsgNoticeOverlay.show #bsgNoticeDialog{transform:translateY(0) scale(1)}
#bsgNoticeDialog .bp-ico{
  width:46px;height:46px;border-radius:12px;
  background:rgba(225,100,25,.14);border:1px solid rgba(225,100,25,.3);
  display:flex;align-items:center;justify-content:center;font-size:21px;
}
#bsgNoticeDialog h3{font-family:'Syne',sans-serif;font-size:19px;font-weight:700;margin-bottom:2px}
#bsgNoticeDialog .bp-text{flex:1 1 auto;font-size:13px;line-height:1.65;color:rgba(255,255,255,.78)}
#bsgNoticeDialog .bp-text strong{color:#fff}
#bsgNoticeDialog .bp-text a{color:var(--orange-l);text-decoration:underline;text-underline-offset:2px}
#bsgNoticeDialog .bp-btns{display:flex;flex-wrap:wrap;gap:10px}
#bsgNoticeDialog .bp-btns .bp-btn{flex:1 1 auto;text-align:center}
.bp-btn{
  padding:10px 18px;border-radius:8px;font-size:12.5px;font-weight:600;
  cursor:pointer;transition:all .2s;white-space:nowrap;border:1.5px solid transparent;
}
.bp-btn.bp-primary{background:var(--orange);color:#fff}
.bp-btn.bp-primary:hover{background:var(--orange-l);box-shadow:0 4px 18px rgba(225,100,25,.4)}
.bp-btn.bp-ghost{border-color:rgba(255,255,255,.25);color:#fff;background:transparent}
.bp-btn.bp-ghost:hover{border-color:#fff}
.bp-btn.bp-text{color:rgba(255,255,255,.65);background:transparent;text-decoration:underline;text-underline-offset:3px;padding:10px 4px}
.bp-btn.bp-text:hover{color:#fff}

/* Preferences + Policy modals */
.bsg-overlay{
  position:fixed;inset:0;z-index:10600;
  background:rgba(1,6,14,.72);
  display:flex;align-items:center;justify-content:center;
  padding:24px;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;
}
.bsg-overlay.show{opacity:1;visibility:visible}
.bsg-modal{
  width:100%;max-width:640px;max-height:84vh;overflow-y:auto;
  background:linear-gradient(180deg,var(--navy-3),var(--navy-2));
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:32px 30px 28px;
  transform:translateY(16px) scale(.98);transition:transform .3s;
}
.bsg-overlay.show .bsg-modal{transform:translateY(0) scale(1)}
.bsg-modal.bsg-policy{max-width:760px}
.bsg-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.bsg-head h3{font-family:'Syne',sans-serif;font-size:20px;font-weight:700}
.bsg-close{
  width:32px;height:32px;border-radius:8px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;cursor:pointer;color:rgba(255,255,255,.6);
  border:1px solid rgba(255,255,255,.15);transition:all .2s;
}
.bsg-close:hover{color:#fff;border-color:#fff}
.bsg-sub{font-size:12.5px;color:var(--muted);line-height:1.6;margin:10px 0 20px}
.bsg-row{
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  padding:16px 0;border-top:1px solid rgba(255,255,255,.08);
}
.bsg-row:first-of-type{border-top:none}
.bsg-row-txt strong{display:block;font-size:13.5px;margin-bottom:4px}
.bsg-row-txt span{font-size:12px;color:var(--muted);line-height:1.55;display:block}
.bsg-toggle{
  position:relative;width:42px;height:24px;border-radius:20px;flex-shrink:0;margin-top:2px;
  background:rgba(255,255,255,.15);cursor:pointer;transition:background .2s;
}
.bsg-toggle::after{
  content:"";position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;
  background:#fff;transition:transform .2s;
}
.bsg-toggle.on{background:var(--orange)}
.bsg-toggle.on::after{transform:translateX(18px)}
.bsg-toggle.locked{background:rgba(0,75,150,.5);cursor:not-allowed}
.bsg-toggle.locked::after{background:rgba(255,255,255,.85)}
.bsg-foot{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08)}
.bsg-policy h4{font-family:'Syne',sans-serif;font-size:14.5px;margin:20px 0 8px;color:var(--orange-l)}
.bsg-policy p,.bsg-policy li{font-size:12.5px;line-height:1.75;color:rgba(255,255,255,.75)}
.bsg-policy ul{margin:6px 0 6px 18px;list-style:disc}
.bsg-policy table{width:100%;border-collapse:collapse;margin:10px 0;font-size:11.8px}
.bsg-policy th,.bsg-policy td{border:1px solid rgba(255,255,255,.12);padding:8px 10px;text-align:left;color:rgba(255,255,255,.75)}
.bsg-policy th{color:#fff;background:rgba(0,75,150,.16)}

#bsgNoticeToggle{
  position:fixed;left:20px;bottom:20px;z-index:9800;
  display:none;align-items:center;gap:8px;
  background:rgba(2,10,22,.9);border:1px solid var(--border);
  border-radius:30px;padding:9px 16px;font-size:11.5px;color:rgba(255,255,255,.75);
  cursor:pointer;backdrop-filter:blur(10px);transition:all .2s;
}
#bsgNoticeToggle:hover{border-color:var(--orange);color:#fff}
#bsgNoticeToggle.show{display:flex}

@media(max-width:640px){
  #bsgNoticeDialog{padding:26px 22px 22px;max-width:100%}
  .bp-btn{flex:1;text-align:center}
}
