/* ═══════════════════════════════════════════════════════════════════════════
   POWERGEEKZ ENGINEERING — ABOUT.CSS
   Theme : iOS 26 Liquid Glass · Electric Blue Ring · Inter · B/W/Black
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ─────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────────────────── */
:root {
  /* palette */
  --ink:           black;
  --ink-2:        #07101e;
  --ink-3:        #0b1829;
  --ink-4:        #0f2038;

  --blue:         #1a8cff;
  --blue-hi:      #3dabff;
  --blue-vivid:   #00b4ff;
  --blue-core:    #0077ee;
  --blue-ultra:   #00d4ff;
  --blue-glow:    rgba(26,140,255,.55);

  --glass-bg:     rgba(10,18,36,.68);
  --glass-bg-2:   rgba(15,26,48,.55);
  --glass-bd:     rgba(26,140,255,.2);
  --glass-bd-hi:  rgba(61,171,255,.35);
  --glass-sheen:  rgba(255,255,255,.06);

  --txt:          #eaf2ff;
  --txt-2:        #7fa8cc;
  --txt-3:        #3d607e;

  --white:        #ffffff;
  --white-80:     rgba(255,255,255,.8);
  --white-50:     rgba(255,255,255,.5);
  --white-10:     rgba(255,255,255,.1);
  --white-05:     rgba(255,255,255,.05);

  /* spacing */
  --r:            14px;
  --r-lg:         22px;
  --r-xl:         32px;

  /* typography */
  --ff: 'Inter', system-ui, sans-serif;

  /* ring */
  --ring-dur-fast: 3.5s;
  --ring-dur-slow: 9s;
  --ring-w:        1.5px;

  /* shadows */
  --shadow-card: 0 8px 32px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.05) inset;
  --shadow-blue: 0 0 40px rgba(26,140,255,.3), 0 0 80px rgba(26,140,255,.1);
}

/* ─────────────────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  background: var(--ink);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: var(--ff); border: none; background: none; cursor: pointer; }

::selection { background: rgba(26,140,255,.28); color: var(--white); }
:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--blue-core); border-radius: 99px; }

/* ─────────────────────────────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────────────────────────────── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 clamp(1.25rem,5vw,3.5rem); }
.section-pad { padding: clamp(5rem,9vw,7.5rem) 0; }
.alt-bg { background: var(--ink-2); }

/* ─── reusable label pill ─── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .32rem .9rem; margin-bottom: 1rem;
  background: rgba(26,140,255,.1);
  border: 1px solid var(--glass-bd);
  border-radius: 99px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-hi);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ─── section h2 ─── */
.section-header h2 {
  font-size: clamp(1.75rem,3.8vw,2.9rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  color: var(--white);
}
.blue { 
  background: linear-gradient(120deg, var(--blue-hi) 0%, var(--blue-ultra) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── divider line ─── */
.divider {
  width: 52px; height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
  border-radius: 2px; margin: 1rem 0;
}

.section-sub { font-size: .92rem; color: var(--txt-2); line-height: 1.75; margin-top: .5rem; }

/* ─────────────────────────────────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────────────────────────────────── */
@keyframes ringCW  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ringCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

@keyframes orbDrift1 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-40px) scale(1.12); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-50px,35px) scale(1.09); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes orbDrift3 {
  0%   { transform: translate(0,0); }
  50%  { transform: translate(30px,-25px); }
  100% { transform: translate(0,0); }
}

@keyframes gridPan {
  from { background-position: 0 0; }
  to   { background-position: 48px 48px; }
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .25; transform: scale(.7); }
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,140,255,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(26,140,255,0); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─────────────────────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
[data-delay="1"].reveal { transition-delay: .1s; }
[data-delay="2"].reveal { transition-delay: .2s; }
[data-delay="3"].reveal { transition-delay: .32s; }
.d1.reveal { transition-delay: .06s; }
.d2.reveal { transition-delay: .16s; }
.d3.reveal { transition-delay: .26s; }

/* ─────────────────────────────────────────────────────────────────────────
   GLASS CARD — iOS 26 Liquid Glass
───────────────────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}

/* top-edge sheen — the iOS 26 liquid highlight */
.glass-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,.25) 40%, rgba(26,140,255,.3) 60%, transparent 100%);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   ELECTRIC RING MIXIN  (applied via ::before / ::after or explicit el)
───────────────────────────────────────────────────────────────────────── */
/* Reusable ring wrapper class */
.e-ring {
  position: absolute; border-radius: 50%;
  border: var(--ring-w) solid transparent;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 22%,
      rgba(0,180,255,.6) 36%, var(--blue-vivid) 44%,
      #fff 50%,
      var(--blue-vivid) 56%, rgba(0,180,255,.6) 64%,
      transparent 78%, transparent 100%
    ) border-box;
  animation: ringCW var(--ring-dur-fast) linear infinite;
  filter: drop-shadow(0 0 8px var(--blue)) drop-shadow(0 0 20px rgba(26,140,255,.5));
  pointer-events: none;
}
.e-ring-ccw {
  animation: ringCCW var(--ring-dur-slow) linear infinite;
  filter: drop-shadow(0 0 4px rgba(26,140,255,.35));
}

/* ─────────────────────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(3,7,16,.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 0 rgba(26,140,255,.15), 0 8px 40px rgba(0,0,0,.7);
}

.nav-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-size: .88rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; flex-shrink: 0;
}
.nav-logo img {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--glass-bd);
  box-shadow: 0 0 14px rgba(26,140,255,.3);
}
.logo-power { color: var(--blue-hi); }
.logo-geekz { color: var(--white); }

.nav-links {
  display: flex; list-style: none; gap: 0; margin-left: auto;
}
.nav-links a {
  display: block; padding: .5rem 1rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--white-80); position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 1rem; right: 1rem; height: 1.5px;
  background: var(--blue-hi);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  border-radius: 99px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ─── nav CTA ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.4rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-core) 100%);
  color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; border-radius: 10px;
  box-shadow: 0 0 22px rgba(26,140,255,.45), 0 3px 12px rgba(0,0,0,.5);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(26,140,255,.7), 0 6px 20px rgba(0,0,0,.6);
}

.nav-cta { margin-left: .5rem; }

/* hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white-80); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger span:nth-child(2) { width: 16px; align-self: flex-start; margin-left: 3px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 850;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(3,7,16,.97);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-inner {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  width: 100%; max-width: 300px;
}
.mm-inner a {
  width: 100%; text-align: center; padding: .9rem 1.5rem;
  font-size: 1rem; font-weight: 600; letter-spacing: .04em;
  color: var(--white-80); border-radius: 12px;
  transition: background .2s, color .2s;
}
.mm-inner a:hover { background: rgba(26,140,255,.12); color: var(--white); }
.mm-inner .mm-cta {
  margin-top: 1.2rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-core));
  color: #fff; box-shadow: 0 0 28px rgba(26,140,255,.4);
}

/* ─────────────────────────────────────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: 110px clamp(1.25rem,5vw,4rem) 80px;
  background: var(--ink);
}

/* bg image */
.hero-bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600&q=70') center/cover no-repeat;
  filter: brightness(.14) saturate(.5);
}

/* gradient overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26,140,255,.18) 0%, transparent 60%),
    linear-gradient(to right, rgba(3,7,16,.98) 40%, rgba(3,7,16,.7) 100%);
}

/* dot grid */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(26,140,255,.1) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridPan 22s linear infinite;
}

/* ambient orbs */
.hero-glass-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); will-change: transform;
}
.orb-1 {
  width: 650px; height: 650px; top: -180px; left: -150px;
  background: radial-gradient(circle, rgba(26,140,255,.24) 0%, transparent 65%);
  animation: orbDrift1 14s ease-in-out infinite;
}
.orb-2 {
  width: 480px; height: 480px; bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(0,180,255,.18) 0%, transparent 65%);
  animation: orbDrift2 18s ease-in-out infinite;
}
.orb-3 {
  width: 320px; height: 320px; top: 45%; left: 52%;
  background: radial-gradient(circle, rgba(26,140,255,.12) 0%, transparent 70%);
  animation: orbDrift3 10s ease-in-out infinite;
}

/* ─── HERO ELECTRIC RING (outer) ─── */
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -5vw;
  transform: translateY(-50%);
  width: clamp(340px,55vw,680px);
  height: clamp(340px,55vw,680px);
  margin-top: calc(clamp(340px,55vw,680px) / -2);
  border-radius: 50%;
  border: var(--ring-w) solid transparent;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 18%,
      rgba(0,212,255,.5) 34%, var(--blue-vivid) 42%,
      #fff 50%,
      var(--blue-vivid) 58%, rgba(0,212,255,.5) 66%,
      transparent 82%, transparent 100%
    ) border-box;
  animation: ringCW var(--ring-dur-fast) linear infinite;
  filter: drop-shadow(0 0 10px var(--blue)) drop-shadow(0 0 28px rgba(26,140,255,.55));
  z-index: 0; pointer-events: none;
  /* override the margin trick for top-50% centering */
  top: 50%; margin-top: 0;
  transform: translateY(-50%);
}

/* inner ring */
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -5vw;
  transform: translateY(-50%);
  width: clamp(240px,40vw,530px);
  height: clamp(240px,40vw,530px);
  border-radius: 50%;
  border: var(--ring-w) solid transparent;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    conic-gradient(
      from 200deg,
      transparent 0%, transparent 25%,
      rgba(61,171,255,.55) 42%, #fff 50%, rgba(61,171,255,.55) 58%,
      transparent 75%, transparent 100%
    ) border-box;
  animation: ringCCW var(--ring-dur-slow) linear infinite;
  filter: drop-shadow(0 0 5px rgba(26,140,255,.4));
  z-index: 0; pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 660px; }

.hero-label {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem; margin-bottom: 1.4rem;
  background: rgba(26,140,255,.1);
  border: 1px solid var(--glass-bd);
  border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-hi);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-vivid);
  box-shadow: 0 0 8px var(--blue-vivid);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.page-hero h1 {
  font-size: clamp(2.8rem,6.5vw,5.8rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -.035em;
  color: var(--white); margin-bottom: 1rem;
}
.accent {
  background: linear-gradient(120deg, var(--blue-hi) 0%, var(--blue-ultra) 60%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(26,140,255,.5));
}

.page-hero .divider { margin: 1.2rem 0; }

.page-hero > .container p,
.hero-content > p {
  font-size: clamp(.9rem,1.5vw,1.06rem);
  color: var(--txt-2); line-height: 1.75; max-width: 500px;
  margin-bottom: 2.4rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 10px; color: var(--white-80);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: all .22s;
}
.btn-ghost:hover {
  border-color: var(--blue-hi); color: var(--white);
  background: rgba(26,140,255,.12);
  box-shadow: 0 0 22px rgba(26,140,255,.2);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────────────
   CLIENTS TICKER
───────────────────────────────────────────────────────────────────────── */
.clients-ticker {
  position: relative; overflow: hidden;
  background: var(--glass-bg);
  border-top: 1px solid rgba(26,140,255,.12);
  border-bottom: 1px solid rgba(26,140,255,.12);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center;
}
.clients-ticker::before,
.clients-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.clients-ticker::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.clients-ticker::after  { right: 0; background: linear-gradient(to left, var(--ink), transparent); }

.ticker-label {
  flex-shrink: 0; padding: .85rem 2rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--txt-3);
  border-right: 1px solid var(--white-05);
  white-space: nowrap; z-index: 3;
}

.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex; align-items: center; gap: .55rem;
  padding: .85rem 2.2rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  color: var(--txt-2); white-space: nowrap;
  transition: color .2s;
}
.ticker-item:hover { color: var(--white); }
.ticker-dot {
  font-size: .65rem;
  filter: drop-shadow(0 0 4px var(--blue));
  animation: blink 2.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink-3);
  border-bottom: 1px solid rgba(26,140,255,.1);
  padding: 2.5rem 0;
  position: relative; overflow: hidden;
}

/* electric ring behind stats */
.stats-bar::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--ink-3), var(--ink-3)) padding-box,
    conic-gradient(
      from 90deg,
      transparent 0%, transparent 35%,
      rgba(26,140,255,.5) 48%, #fff 50%, rgba(26,140,255,.5) 52%,
      transparent 65%, transparent 100%
    ) border-box;
  animation: ringCW 12s linear infinite;
  filter: drop-shadow(0 0 6px rgba(26,140,255,.3));
  opacity: .5; pointer-events: none;
}

.stats-inner {
  display: flex; flex-wrap: wrap; justify-content: space-around;
  gap: 2rem;
  position: relative; z-index: 1;
}

.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  text-align: center; padding: .5rem 2rem;
}
.stat-num {
  font-size: clamp(2.4rem,4vw,3.6rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-hi) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-plus {
  font-size: 1.4rem; font-weight: 800; color: var(--blue-hi);
  display: inline; vertical-align: super; line-height: 0;
}
.stat-lbl {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--txt-3); margin-top: .35rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   STORY SECTION
───────────────────────────────────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: center;
}

/* ─── visual stack ─── */
.story-visual { position: relative; }

.story-img-stack { position: relative; }

.story-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--glass-bd);
  filter: brightness(.85) saturate(.85);
  transition: filter .45s;
  box-shadow: var(--shadow-card);
}
.story-visual:hover .story-img-main { filter: brightness(1) saturate(1); }

.story-img-secondary {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 46%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-lg);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 1px var(--glass-bd), var(--shadow-card);
  filter: brightness(.8) saturate(.7);
  transition: filter .45s;
}
.story-visual:hover .story-img-secondary { filter: brightness(1) saturate(1); }

/* floating ring around main image */
.story-img-stack::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: calc(var(--r-xl) + 3px);
  border: var(--ring-w) solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 20%,
      var(--blue-vivid) 38%, #fff 50%, var(--blue-vivid) 62%,
      transparent 80%, transparent 100%
    ) border-box;
  animation: ringCW 5s linear infinite;
  filter: drop-shadow(0 0 8px var(--blue));
  pointer-events: none; z-index: 2;
}

.story-badge {
  position: absolute; top: 1.5rem; left: -1.5rem; z-index: 3;
  padding: 1rem 1.4rem; text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd-hi);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-blue);
}
.story-badge strong {
  display: block; font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--txt-3);
}
.story-badge span {
  display: block; font-size: 2.6rem; font-weight: 900;
  line-height: 1.1; color: var(--blue-hi);
}
.story-badge small {
  display: block; font-size: .68rem; font-weight: 500;
  color: var(--txt-2); margin-top: .15rem;
}

.story-glass-card {
  position: absolute; bottom: -1rem; left: 0; right: 6rem;
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  z-index: 4;
}
.sgc-icon { font-size: 1.5rem; flex-shrink: 0; animation: floatUp 3s ease-in-out infinite; }
.story-glass-card strong {
  display: block; font-size: .78rem; font-weight: 700; color: var(--white);
  margin-bottom: .2rem;
}
.story-glass-card span {
  font-size: .7rem; color: var(--txt-2); line-height: 1.5;
}

/* ─── story content ─── */
.story-content { display: flex; flex-direction: column; gap: 0; }
.story-content h2 {
  font-size: clamp(1.7rem,3.5vw,2.7rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.12;
  color: var(--white); margin-bottom: .5rem;
}
.story-content p {
  font-size: .9rem; color: var(--txt-2); line-height: 1.8;
  margin-top: 1rem;
}

/* company details */
.company-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.cd-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .85rem 1.1rem;
  background: rgba(26,140,255,.05);
  border: 1px solid rgba(26,140,255,.12);
  border-radius: var(--r);
  transition: background .2s, border-color .2s;
}
.cd-row:hover {
  background: rgba(26,140,255,.1); border-color: var(--glass-bd);
}
.cd-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.cd-text { display: flex; flex-direction: column; gap: .2rem; }
.cd-text strong { font-size: .78rem; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.cd-text span { font-size: .78rem; color: var(--txt-2); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────────────────
   MISSION & VISION
───────────────────────────────────────────────────────────────────────── */
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 2.4rem 2rem;
  transition: transform .35s, box-shadow .35s;
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--shadow-blue);
}

/* animated ring border on hover */
.mv-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    transparent 0%, transparent 30%,
    var(--blue-vivid) 48%, #fff 50%, var(--blue-vivid) 52%,
    transparent 70%, transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringCW 4s linear infinite;
  opacity: 0; transition: opacity .4s;
  pointer-events: none; z-index: 0;
}
.mv-card:hover::before { opacity: 1; }

.mv-card-top {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.mv-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  animation: floatUp 4s ease-in-out infinite;
}
.mission-icon {
  background: linear-gradient(135deg, rgba(26,140,255,.2), rgba(0,180,255,.1));
  border: 1px solid rgba(26,140,255,.25);
}
.vision-icon {
  background: linear-gradient(135deg, rgba(0,180,255,.2), rgba(26,140,255,.1));
  border: 1px solid rgba(0,180,255,.25);
}
.mv-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-hi);
}
.mv-card h3 {
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  margin-bottom: .8rem; letter-spacing: -.02em;
}
.mv-card blockquote {
  font-size: .88rem; color: var(--txt-2); line-height: 1.75;
  padding-left: 1rem;
  border-left: 2px solid var(--blue-hi);
  margin-bottom: 1.4rem; font-style: italic;
}
.mv-points {
  display: flex; flex-direction: column; gap: .5rem;
}
.mv-points li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .82rem; color: var(--txt-2);
}
.mv-points li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-hi);
  box-shadow: 0 0 6px var(--blue-hi);
}

/* ─────────────────────────────────────────────────────────────────────────
   CORE VALUES
───────────────────────────────────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  cursor: default;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
}
.value-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--glass-bd-hi);
  box-shadow: var(--shadow-card), 0 0 40px rgba(26,140,255,.2);
}
/* ring on hover */
.value-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 28%,
      var(--blue-vivid) 44%, #fff 50%, var(--blue-vivid) 56%,
      transparent 72%, transparent 100%
    ) border-box;
  animation: ringCW 3.5s linear infinite;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.value-card:hover::before { opacity: 1; }

.value-card-inner {
  position: relative; z-index: 1;
  padding: 2rem 1.8rem;
}
.value-num {
  font-size: .68rem; font-weight: 800; letter-spacing: .18em;
  color: var(--txt-3); margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.value-icon { font-size: 2rem; margin-bottom: .9rem; animation: floatUp 4s ease-in-out infinite; }
.value-card:nth-child(odd) .value-icon { animation-delay: .5s; }
.value-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  margin-bottom: .6rem; letter-spacing: -.01em;
  transition: color .2s;
}
.value-card:hover h3 { color: var(--blue-hi); }
.value-card p { font-size: .82rem; color: var(--txt-2); line-height: 1.7; }

/* ambient glow */
.value-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,140,255,.1) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity .35s;
}
.value-card:hover .value-glow { opacity: 2; }

/* ─────────────────────────────────────────────────────────────────────────
   TEAM
───────────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.4rem; align-items: center;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-blue);
}
.team-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 28%,
      var(--blue-vivid) 44%, #fff 50%, var(--blue-vivid) 56%,
      transparent 72%, transparent 100%
    ) border-box;
  animation: ringCW 5s linear infinite;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.team-card:hover::before { opacity: 1; }

.team-avatar {
  position: relative; width: 90px; height: 90px; flex-shrink: 0;
}
.team-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 2px solid var(--glass-bd);
}
.avatar-initials {
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ink-4), var(--ink-3));
  border: 2px solid var(--glass-bd);
  font-size: 1.5rem; font-weight: 900; color: var(--blue-hi);
  letter-spacing: .04em;
}

/* avatar electric ring */
.avatar-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: var(--ring-w) solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 20%,
      var(--blue-vivid) 38%, #fff 50%, var(--blue-vivid) 62%,
      transparent 80%, transparent 100%
    ) border-box;
  animation: ringCW var(--ring-dur-fast) linear infinite;
  filter: drop-shadow(0 0 5px rgba(26,140,255,.6));
}
.team-card:hover .avatar-ring { filter: drop-shadow(0 0 10px rgba(26,140,255,.9)); }

.team-info { display: flex; flex-direction: column; align-items: center; }
.team-info h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: .3rem; }
.team-role {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-hi);
}
.team-divider {
  width: 40px; height: 1.5px; border-radius: 2px;
  background: linear-gradient(to right, transparent, var(--blue-hi), transparent);
  margin: .9rem 0;
}
.team-info p { font-size: .8rem; color: var(--txt-2); line-height: 1.7; }
.team-skills { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin-top: 1rem; }
.skill-tag {
  padding: .22rem .7rem;
  background: rgba(26,140,255,.08);
  border: 1px solid rgba(26,140,255,.2);
  border-radius: 99px;
  font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue-hi);
}

/* ─────────────────────────────────────────────────────────────────────────
   ACHIEVEMENTS
───────────────────────────────────────────────────────────────────────── */
.achievements-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ach-card {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.8rem 1.6rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.ach-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 30%,
      var(--blue-vivid) 47%, #fff 50%, var(--blue-vivid) 53%,
      transparent 70%, transparent 100%
    ) border-box;
  animation: ringCW 4.5s linear infinite;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.ach-card:hover::before { opacity: 1; }
.ach-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-bd-hi);
  box-shadow: var(--shadow-card), 0 0 32px rgba(26,140,255,.18);
}

/* bottom-left corner glow */
.ach-card::after {
  content: '';
  position: absolute; bottom: -20px; left: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,140,255,.08) 0%, transparent 70%);
  pointer-events: none;
}

.ach-icon { font-size: 1.8rem; flex-shrink: 0; animation: floatUp 4s ease-in-out infinite; }
.ach-card:nth-child(even) .ach-icon { animation-delay: .6s; }
.ach-body h4 {
  font-size: .9rem; font-weight: 800; color: var(--white);
  margin-bottom: .45rem; letter-spacing: -.01em;
}
.ach-body p { font-size: .8rem; color: var(--txt-2); line-height: 1.7; }
.ach-body strong { color: var(--blue-hi); }

/* ─────────────────────────────────────────────────────────────────────────
   BRANDS SECTION
───────────────────────────────────────────────────────────────────────── */
.brands-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .9rem;
}

.brand-chip {
  padding: .6rem 1.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 10px;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--txt-2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
  transition: all .25s;
  cursor: default;
}
.brand-chip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(26,140,255,.08) 50%, transparent 100%);
  background-size: 200% 100%; background-position: -200% 0;
  transition: background-position .5s;
}
.brand-chip:hover {
  border-color: var(--glass-bd-hi);
  color: var(--white);
  background: rgba(26,140,255,.1);
  box-shadow: 0 0 18px rgba(26,140,255,.2);
  transform: translateY(-2px);
}
.brand-chip:hover::before { background-position: 200% 0; }

/* ─────────────────────────────────────────────────────────────────────────
   SECTORS
───────────────────────────────────────────────────────────────────────── */
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sector-item {
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  padding: 1.6rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  text-align: center; cursor: default;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.sector-item::before {
  content: '';
  position: absolute; inset: -1px; border-radius: var(--r-lg);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 30%,
      var(--blue-vivid) 47%, #fff 50%, var(--blue-vivid) 53%,
      transparent 70%, transparent 100%
    ) border-box;
  animation: ringCW 5s linear infinite;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.sector-item:hover::before { opacity: 1; }
.sector-item:hover {
  transform: translateY(-4px);
  border-color: var(--glass-bd-hi);
  box-shadow: 0 0 28px rgba(26,140,255,.15);
}
.sector-icon { font-size: 1.7rem; animation: floatUp 4s ease-in-out infinite; }
.sector-item span:last-child {
  font-size: .77rem; font-weight: 600; color: var(--txt-2);
  letter-spacing: .02em;
}

/* ─────────────────────────────────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  padding: 2rem 1.8rem;
  transition: transform .35s, box-shadow .35s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(26,140,255,.22);
}
.why-card::before {
  content: '';
  position: absolute; inset: -1px; border-radius: var(--r-lg);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 28%,
      var(--blue-vivid) 44%, #fff 50%, var(--blue-vivid) 56%,
      transparent 72%, transparent 100%
    ) border-box;
  animation: ringCW 4s linear infinite;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.why-card:hover::before { opacity: 1; }

.why-icon-wrap {
  font-size: 2rem; margin-bottom: 1rem;
  animation: floatUp 4s ease-in-out infinite;
}
.why-card:nth-child(even) .why-icon-wrap { animation-delay: .7s; }
.why-card h3 {
  font-size: 1rem; font-weight: 800; color: var(--white);
  margin-bottom: .65rem; letter-spacing: -.01em;
  transition: color .2s;
}
.why-card:hover h3 { color: var(--blue-hi); }
.why-card p { font-size: .82rem; color: var(--txt-2); line-height: 1.75; }

/* ─────────────────────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }

/* big electric ring behind CTA */
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: -200px; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    conic-gradient(
      from 270deg,
      transparent 0%, transparent 22%,
      rgba(0,180,255,.5) 36%, #fff 50%, rgba(0,180,255,.5) 64%,
      transparent 78%, transparent 100%
    ) border-box;
  animation: ringCCW 11s linear infinite;
  filter: drop-shadow(0 0 10px rgba(26,140,255,.35));
  pointer-events: none;
}

.cta-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd-hi);
  border-radius: var(--r-xl);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: var(--shadow-card), 0 0 60px rgba(26,140,255,.12);
  overflow: hidden;
  position: relative;
  display: grid; grid-template-columns: 1.3fr 1fr;
}

/* ring border on cta box */
.cta-glass::before {
  content: '';
  position: absolute; inset: -1px; border-radius: var(--r-xl);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    conic-gradient(
      from 0deg,
      transparent 0%, transparent 22%,
      rgba(0,180,255,.5) 36%, #fff 50%, rgba(0,180,255,.5) 64%,
      transparent 78%, transparent 100%
    ) border-box;
  animation: ringCW 7s linear infinite;
  pointer-events: none;
}

.cta-content { padding: 3.5rem 3rem; position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(1.9rem,3.5vw,2.9rem);
  font-weight: 900; letter-spacing: -.035em; line-height: 1.1;
  color: var(--white); margin-bottom: .8rem;
}
.cta-content p {
  font-size: .9rem; color: var(--txt-2); line-height: 1.75;
  margin-bottom: 2.2rem;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.8rem; }

.btn-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.4rem;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.28);
  border-radius: 10px; color: #25D366;
  font-size: .82rem; font-weight: 600;
  transition: all .22s;
}
.btn-wa:hover {
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.55);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37,211,102,.2);
}

.cta-contact-links {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
}
.cta-contact-links a {
  font-size: .78rem; color: var(--txt-3);
  transition: color .2s;
}
.cta-contact-links a:hover { color: var(--blue-hi); }

/* CTA visual panel */
.cta-visual {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(26,140,255,.08) 0%, transparent 100%);
  border-left: 1px solid rgba(26,140,255,.15);
  display: flex; align-items: center; justify-content: center;
}

.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
}
.cta-orb-1 {
  width: 300px; height: 300px;
  top: -50px; left: -50px;
  background: radial-gradient(circle, rgba(26,140,255,.25) 0%, transparent 65%);
  animation: orbDrift1 10s ease-in-out infinite;
}
.cta-orb-2 {
  width: 200px; height: 200px;
  bottom: -30px; right: -30px;
  background: radial-gradient(circle, rgba(0,180,255,.2) 0%, transparent 65%);
  animation: orbDrift2 13s ease-in-out infinite;
}

.cta-stats {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1.8rem;
  padding: 2rem;
}
.cta-stat {
  text-align: center;
  padding: 1.2rem 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 24px rgba(26,140,255,.1);
}
.cta-stat span {
  display: block; font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, var(--blue-hi) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-stat small {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--txt-3); margin-top: .3rem; display: block;
}

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER TICKER
───────────────────────────────────────────────────────────────────────── */
.footer-ticker-wrap {
  display: flex; align-items: center; overflow: hidden;
  background: var(--ink-3);
  border-top: 1px solid rgba(26,140,255,.1);
  border-bottom: 1px solid rgba(26,140,255,.1);
  padding: .75rem 0;
}
.footer-ticker-lbl {
  flex-shrink: 0; padding: 0 2rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--txt-3);
  border-right: 1px solid var(--white-05);
  white-space: nowrap;
}
.footer-ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 28s linear infinite;
}
/* ticker-item and ticker-dot styles inherited from above — duplicate if needed */

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(26,140,255,.08);
}

.footer-top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: 4.5rem clamp(1.25rem,5vw,3.5rem) 3rem;
  max-width: 1260px; margin: 0 auto;
}

.footer-brand .f-logo {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
}
.footer-brand .f-logo img {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--glass-bd);
}
.f-logo-text { font-size: .9rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.p { color: var(--blue-hi); }
.g { color: var(--white); }

.footer-brand p {
  font-size: .82rem; color: var(--txt-2); line-height: 1.7;
  margin-bottom: 1rem; max-width: 270px;
}
.f-reg {
  font-size: .72rem; color: var(--txt-3); line-height: 1.8;
  margin-bottom: 1.4rem;
}

.footer-socials { display: flex; gap: .5rem; }
.f-social {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  color: var(--txt-2);
  transition: all .22s;
}
.f-social:hover {
  transform: translateY(-2px);
  background: rgba(26,140,255,.12);
  border-color: var(--blue-hi);
  color: var(--white);
  box-shadow: 0 0 14px rgba(26,140,255,.3);
}

.footer-col h4 {
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-hi); margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .8rem; color: var(--txt-2); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-badge {
  margin-top: 1.2rem; font-size: .73rem; color: var(--txt-3); line-height: 1.7;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1260px; margin: 0 auto;
  padding: 1.5rem clamp(1.25rem,5vw,3.5rem);
  border-top: 1px solid var(--white-05);
  font-size: .74rem; color: var(--txt-3);
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer-bottom-links a { color: var(--txt-3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--blue-hi); }

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .story-grid    { grid-template-columns: 1fr; gap: 4rem; }
  .mv-grid       { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid  { grid-template-columns: repeat(3,1fr); }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .cta-glass     { grid-template-columns: 1fr; }
  .cta-visual    { display: none; }
  .story-img-secondary { bottom: -1rem; right: -1rem; }
  .story-badge   { left: .5rem; }
  .story-glass-card { right: 1rem; }
  .page-hero::before, .page-hero::after { opacity: .5; right: -40vw; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .team-grid     { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .sectors-grid  { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }

  .page-hero::before, .page-hero::after { display: none; }
  .stats-bar::before { display: none; }

  .cta-content { padding: 2.5rem 1.8rem; }
  .ticker-label { display: none; }

  .story-img-secondary { display: none; }
  .story-glass-card { position: static; margin-top: 1rem; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 2.4rem; }
  .sectors-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-ctas     { flex-direction: column; }
  .cta-actions   { flex-direction: column; align-items: stretch; }
  .cta-actions a { text-align: center; justify-content: center; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .story-badge   { display: none; }
}