/*
Theme Name: POBO Technologies
Theme URI: https://pobotechnologies.com
Author: POBO Technologies
Description: Premium dark-blue enterprise logistics-technology theme for POBO Technologies (Logi-Sys / Softlink Global Strategic Orbit Partner). Converted from the custom static site.
Version: 1.0
License: GPL-2.0-or-later
Text Domain: pobo
*/

/* ==========================================================================
   POBO Technologies — Global Design System
   Rich dark premium theme · Brand blue (matches logo)
   ========================================================================== */

:root {
  /* Brand blue (from logo) */
  --blue: #2BA0E8;
  --blue-bright: #5BD0F5;
  --blue-600: #1B7FC4;
  --blue-700: #1565a3;
  --blue-glow: rgba(43, 160, 232, 0.45);

  /* Alias so legacy var(--red) references resolve to brand blue */
  --red: #2BA0E8;
  --red-600: #1B7FC4;
  --red-glow: rgba(43, 160, 232, 0.45);

  /* Depth */
  --ink: #070b16;
  --navy: #0b1326;
  --navy-700: #111c34;
  --navy-800: #0d1730;

  /* Accent */
  --amber: #F59E0B;
  --amber-soft: #fbbf24;
  --white: #FFFFFF;

  /* Text on dark */
  --head: #f3f7fc;
  --text: #c2d0e2;
  --text-soft: #9fb1c9;
  --muted-ink: #7d90ab;

  /* Neutral helpers (kept for legacy references, remapped to dark) */
  --slate-900: #f3f7fc;
  --slate-700: #c2d0e2;
  --slate-600: #9fb1c9;
  --slate-500: #7d90ab;
  --slate-400: #64748b;
  --slate-300: rgba(255,255,255,0.18);
  --slate-200: rgba(255,255,255,0.10);
  --slate-100: rgba(255,255,255,0.06);
  --slate-50: rgba(255,255,255,0.03);

  /* Gradients */
  --grad-blue: linear-gradient(135deg, #5BD0F5 0%, #2BA0E8 45%, #1565a3 100%);
  --grad-blue-navy: linear-gradient(135deg, #2BA0E8 0%, #1565a3 50%, #0b1326 100%);
  --grad-red-black: linear-gradient(135deg, #2BA0E8 0%, #1565a3 45%, #0b1326 100%); /* legacy alias */
  --grad-amber: linear-gradient(135deg, #F59E0B, #fbbf24);
  --grad-cyan: linear-gradient(120deg, #5BD0F5, #2BA0E8);
  --grad-hero: radial-gradient(1200px 620px at 82% -10%, rgba(43,160,232,0.30), transparent 60%),
               radial-gradient(900px 520px at 8% 6%, rgba(245,158,11,0.12), transparent 55%),
               radial-gradient(800px 700px at 50% 120%, rgba(43,160,232,0.16), transparent 60%),
               linear-gradient(180deg, #0a1120 0%, #0b1326 60%, #070b16 100%);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-border: rgba(255, 255, 255, 0.09);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.45);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.55);
  --shadow-red: 0 18px 50px rgba(43,160,232,0.35);
  --shadow-blue: 0 18px 50px rgba(43,160,232,0.35);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.06), 0 36px 80px rgba(2,6,23,0.7);

  /* Radius */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;

  /* Type */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max: 1240px; --nav-h: 76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  line-height: 1.65; font-size: 16px;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
/* Rich dark canvas with brand glows behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1000px 700px at 88% -8%, rgba(43,160,232,0.16), transparent 58%),
    radial-gradient(760px 560px at 4% 8%, rgba(245,158,11,0.06), transparent 55%),
    radial-gradient(900px 800px at 50% 116%, rgba(43,160,232,0.12), transparent 60%),
    var(--ink);
}
/* Faint grid texture overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 80%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--head); line-height: 1.14; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-soft); }

::selection { background: rgba(43,160,232,0.32); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0a1120; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--blue-700)); border-radius: 10px; border: 2px solid #0a1120; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-bright); padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(43,160,232,0.12); border: 1px solid rgba(43,160,232,0.3);
}
.eyebrow.on-dark { color: var(--amber-soft); background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.28); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: var(--text-soft); }
.text-grad { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 64px rgba(43,160,232,0.5); }
.btn-amber { background: var(--grad-amber); color: #1a1205; box-shadow: 0 16px 40px rgba(245,158,11,0.32); }
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(245,158,11,0.45); }
.btn-ghost { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--head); border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-bright); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 13, 24, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.07);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 0; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; }

/* Brand logo (official asset) — white on dark in all states */
.brand .pobo-logo { height: 42px; width: auto; display: block; }
.nav .brand .pobo-logo { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45)); }
.footer .brand .pobo-logo { height: 48px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

.nav-links { display: flex; flex: 1; align-items: center; justify-content: space-evenly; gap: 6px; }
.nav-links a { text-align: center; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.82);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(43,160,232,0.14); }
.nav-links a.active { color: var(--blue-bright); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; color: #fff; }
.nav-toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; background: #0a1120;
  z-index: 999; transform: translateY(-110%); transition: transform .4s cubic-bezier(.16,1,.3,1);
  padding: 30px 24px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: #fff; font-family: var(--font-head); font-size: 1.2rem; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { background: var(--grad-hero); color: #fff; padding: calc(var(--nav-h) + 70px) 0 90px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .hl { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { color: rgba(255,255,255,0.78); font-size: 1.18rem; margin: 22px 0 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 38px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta .m b { font-family: var(--font-head); font-size: 1.5rem; color: #fff; display: block; }
.hero-meta .m span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.grid-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 75%); }
.floating-icon { position: absolute; color: rgba(91,208,245,0.12); pointer-events: none; animation: drift 9s ease-in-out infinite; will-change: transform; }
.hero .floating-icon:nth-of-type(2) { animation-duration: 11s; animation-delay: -3s; }
.hero .floating-icon:nth-of-type(3) { animation-duration: 8s; animation-delay: -1.5s; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(12px,-16px) rotate(6deg); }
  66% { transform: translate(-10px,10px) rotate(-5deg); }
}

/* Plane flying across the banner */
.hero > .container, .page-hero > .container { position: relative; z-index: 2; }
.hero::after, .page-hero::after, .hero-carousel::after {
  content: ""; position: absolute; top: 13%; left: 0; width: 168px; height: 54px; z-index: 1; pointer-events: none;
  background: url("images/cargo-plane.svg") no-repeat center / contain;
  filter: drop-shadow(0 12px 20px rgba(2,6,23,0.5));
  animation: flyacross 19s linear infinite 2s; will-change: transform;
}
@keyframes flyacross {
  0%   { transform: translate(-22vw, 14px) rotate(-5deg); opacity: 0; }
  7%   { opacity: 1; }
  93%  { opacity: 1; }
  100% { transform: translate(126vw, -36px) rotate(-5deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after, .page-hero::after, .hero-carousel::after { animation: none; opacity: 0; }
}

/* Hero figure (image + icon chips) */
.hero-figure { position: relative; }
.img-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow-glow);
  transform: perspective(1700px) rotateY(-8deg) rotateX(3deg); transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.img-card:hover { transform: perspective(1700px) rotateY(-3deg) rotateX(1deg); }
.img-card img, .img-card svg { width: 100%; height: auto; display: block; }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(11,19,38,0.82); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: #fff;
}
.float-chip .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; }
.float-chip .ic svg { width: 18px; height: 18px; }
.float-chip .ic.red { background: var(--grad-blue); }
.float-chip .ic.amber { background: var(--grad-amber); color: #1a1205; }
.float-chip b { font-family: var(--font-head); font-size: 0.92rem; display: block; line-height: 1.1; }
.float-chip span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.chip-tl { top: -18px; left: -26px; animation: floaty 6s ease-in-out infinite; }
.chip-br { bottom: 40px; right: -24px; animation: floaty 5s ease-in-out infinite .6s; }
.chip-bl { bottom: -20px; left: 18px; animation: floaty 7s ease-in-out infinite .3s; }

.cap-icons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cap {
  display: flex; align-items: center; gap: 9px; padding: 9px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; transition: background .3s, transform .3s;
}
.cap:hover { background: rgba(43,160,232,0.18); transform: translateY(-3px); }
.cap svg { width: 18px; height: 18px; color: var(--blue-bright); flex: none; }

/* Official partner badge (hero banner) — animated fire / glow waves */
.partner-badge {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px; margin-top: 28px;
  padding: 12px 18px; border-radius: 16px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,158,11,0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .25s, border-color .25s;
  animation: firewave 2.6s ease-in-out infinite;
}
@keyframes firewave {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.55), 0 0 18px rgba(245,158,11,0.25); }
  50%  { box-shadow: 0 0 0 12px rgba(245,158,11,0), 0 0 38px rgba(43,160,232,0.55); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0), 0 0 18px rgba(245,158,11,0.25); }
}
.partner-badge:hover { transform: translateY(-3px); border-color: rgba(245,158,11,0.7); }
/* moving flame / shine sweep */
.partner-badge::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255,200,120,0.38) 47%, rgba(255,255,255,0.28) 52%, transparent 72%);
  transform: translateX(-130%); animation: shimmer 3.4s ease-in-out infinite 1s;
}
@keyframes shimmer { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(130%); } }
.partner-badge > * { position: relative; z-index: 3; }

.partner-badge .pb-seal {
  width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, #F59E0B, #f97316, #2BA0E8); background-size: 220% 220%;
  animation: sealflame 3s ease-in-out infinite, sealglow 2s ease-in-out infinite;
}
@keyframes sealflame { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes sealglow { 0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); } 50% { box-shadow: 0 0 16px 2px rgba(245,158,11,0.65); } }
.partner-badge .pb-seal svg { width: 22px; height: 22px; color: #fff; }
.partner-badge .pb-txt { display: flex; flex-direction: column; line-height: 1.18; }
.partner-badge .pb-txt small { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.66); font-family: var(--font-head); font-weight: 600; }
.partner-badge .pb-txt b { font-family: var(--font-head); font-size: 1.06rem; color: #fff; }
.partner-badge .pb-arrow { width: 16px; height: 16px; color: var(--amber-soft); margin-left: 2px; transition: transform .25s; flex: none; }
.partner-badge:hover .pb-arrow { transform: translate(2px,-2px); }
@media (prefers-reduced-motion: reduce) {
  .partner-badge, .partner-badge::after, .partner-badge .pb-seal { animation: none; }
}
/* Corner placement (top-right of banner) */
.partner-badge.corner { position: absolute; top: calc(var(--nav-h) + 16px); right: 24px; z-index: 6; margin-top: 0; }
@media (max-width: 980px) {
  .partner-badge.corner { position: static; display: flex; width: max-content; max-width: 100%; margin: 0 auto 22px; }
}

/* Dashboard mock (legacy / tab visuals) */
.dash { position: relative; border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-glow); backdrop-filter: blur(20px); padding: 18px; }
.dash-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.dash-top .dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-top .dot:nth-child(1){background:#ff5f57}.dash-top .dot:nth-child(2){background:#febc2e}.dash-top .dot:nth-child(3){background:#28c840}
.dash-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-md); padding: 14px; }
.dash-card.wide { grid-column: 1 / -1; }
.dash-card .label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: .08em; }
.dash-card .val { font-family: var(--font-head); font-size: 1.5rem; color: #fff; font-weight: 700; margin-top: 4px; }
.spark { display: flex; align-items: flex-end; gap: 5px; height: 56px; margin-top: 10px; }
.spark i { flex: 1; background: var(--grad-cyan); border-radius: 4px 4px 0 0; opacity: .85; animation: growbar 1.4s ease both; }
@keyframes growbar { from { height: 0 } }
.ship-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.ship-row .pin { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 4px rgba(43,160,232,0.2); }
.ship-row .stat { margin-left: auto; font-size: 0.68rem; padding: 3px 8px; border-radius: 999px; background: rgba(40,200,64,0.15); color: #4ade80; }

.ai-widget { position: absolute; bottom: -22px; left: -26px; width: 220px;
  background: rgba(11,19,38,0.9); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-md);
  padding: 14px; box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.ai-widget .ai-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.ai-widget .ai-orb { width: 28px; height: 28px; border-radius: 8px; background: var(--grad-amber); display: grid; place-items: center; font-size: 14px; }
.ai-widget .ai-head b { color: #fff; font-family: var(--font-head); font-size: 0.85rem; }
.ai-widget p { font-size: 0.78rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.typing { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0.2 } }

/* ---------- Trust bar ---------- */
.trustbar { background: rgba(255,255,255,0.025); padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.82); font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--amber); flex: none; }
.trust-item b { color: #fff; }

/* ---------- Sections ---------- */
.sec { padding: 96px 0; }
.sec-tight { padding: 72px 0; }
.bg-soft { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.bg-navy { background: var(--grad-hero); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p, .bg-navy .section-head p { color: rgba(255,255,255,0.74); }

/* ---------- Service cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg);
  padding: 28px; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s, background .35s;
  position: relative; overflow: hidden; backdrop-filter: blur(10px);
}
.card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: var(--grad-cyan); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(43,160,232,0.4); background: rgba(255,255,255,0.06); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(43,160,232,0.14); color: var(--blue-bright); margin-bottom: 18px; transition: transform .4s, background .4s, color .4s;
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: var(--grad-blue); color: #fff; transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: 0.96rem; color: var(--text-soft); }
.card .learn { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--blue-bright); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.card .learn svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .learn svg { transform: translateX(5px); }

.glass { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); border-radius: var(--r-lg); }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 18px; }
.ind {
  position: relative; border-radius: var(--r-lg); padding: 26px; overflow: hidden;
  background: var(--navy-700); color: #fff; border: 1px solid rgba(255,255,255,0.08);
  min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.ind::after { content:""; position:absolute; inset:0; background: var(--grad-blue-navy); opacity: 0; transition: opacity .4s; z-index: 0; }
.ind:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(43,160,232,0.5); }
.ind:hover::after { opacity: 0.88; }
.ind > * { position: relative; z-index: 1; }
.ind .ind-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.5; transition: transform .6s ease, opacity .4s; }
.ind:hover .ind-photo { transform: scale(1.08); opacity: 0.38; }
.ind::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(7,11,22,0.3), rgba(7,11,22,0.88)); z-index: 0; }
.ind .ind-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.1); display: grid; place-items: center; color: var(--blue-bright); margin-bottom: auto; }
.ind .ind-icon svg { width: 24px; height: 24px; }
.ind h3 { color: #fff; font-size: 1.15rem; margin-top: 16px; }
.ind p { color: rgba(255,255,255,0.68); font-size: 0.85rem; transition: color .4s; }
.ind:hover p { color: rgba(255,255,255,0.92); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content:""; position:absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--blue-bright), var(--amber)); transform: translateX(-50%); }
.tl-item { position: relative; width: 50%; padding: 0 40px 44px; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-item .tl-dot { position: absolute; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); border: 4px solid #0b1326; box-shadow: 0 0 0 3px rgba(43,160,232,0.4); }
.tl-item:nth-child(odd) .tl-dot { right: -9px; }
.tl-item:nth-child(even) .tl-dot { left: -9px; }
.tl-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-md); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s; backdrop-filter: blur(10px); }
.tl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(43,160,232,0.4); }
.tl-card .n { font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; color: var(--amber); letter-spacing: .1em; }
.tl-card h3 { font-size: 1.15rem; margin: 6px 0 8px; }
.tl-card p { font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Solutions tabs ---------- */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; padding: 12px 22px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05); color: var(--text-soft); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: .3s;
}
.tab-btn:hover { color: #fff; border-color: rgba(43,160,232,0.4); }
.tab-btn.active { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .5s ease both; }
.tab-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.tab-layout h3 { font-size: 1.7rem; margin-bottom: 14px; }
.feat-list { margin: 20px 0; display: grid; gap: 12px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; color: var(--text); }
.feat-list svg { width: 20px; height: 20px; color: var(--blue-bright); flex: none; margin-top: 2px; }
.metrics-row { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.metric b { font-family: var(--font-head); font-size: 1.7rem; color: var(--head); display: block; }
.metric span { font-size: 0.82rem; color: var(--muted-ink); }
.tab-visual { background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-glow); color: #fff; backdrop-filter: blur(10px); }

/* ---------- Case studies ---------- */
.carousel { position: relative; }
.carousel-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.case {
  flex: 0 0 380px; max-width: 380px; scroll-snap-align: start;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s, border-color .35s; backdrop-filter: blur(10px);
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(43,160,232,0.4); }
.case-top { padding: 24px; background: var(--grad-blue-navy); color: #fff; }
.case-top .tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; color: var(--blue-bright); }
.case-top h3 { color: #fff; font-size: 1.25rem; margin-top: 8px; }
.case-body { padding: 24px; }
.case-body .blk { margin-bottom: 16px; }
.case-body .blk .h { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-bright); margin-bottom: 4px; }
.case-body .blk p { font-size: 0.92rem; color: var(--text-soft); }
.case-results { display: flex; gap: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.case-results .r b { font-family: var(--font-head); font-size: 1.4rem; color: var(--head); display: block; }
.case-results .r span { font-size: 0.76rem; color: var(--muted-ink); }
.carousel-controls { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.carousel-controls button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); cursor: pointer; display: grid; place-items: center; color: #fff; transition: .3s; }
.carousel-controls button:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }

/* ---------- Tech stack ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 16px; }
.tech { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 12px;
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-md);
  color: #fff; transition: transform .35s, background .35s, border-color .35s; backdrop-filter: blur(10px); }
.tech:hover { transform: translateY(-6px) scale(1.04); background: rgba(43,160,232,0.14); border-color: rgba(43,160,232,0.4); }
.tech .logo { width: 44px; height: 44px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; border-radius: 12px; background: rgba(255,255,255,0.08); color: var(--blue-bright); }
.tech span { font-size: 0.85rem; font-family: var(--font-head); font-weight: 500; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-box { text-align: center; padding: 30px 16px; border-radius: var(--r-lg); background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); transition: border-color .3s, transform .3s; }
.stat-box:hover { border-color: rgba(43,160,232,0.45); transform: translateY(-4px); }
.stat-box .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,4vw,3.4rem); background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-box .lbl { color: rgba(255,255,255,0.78); font-family: var(--font-head); font-weight: 500; margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 20px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi { flex: 0 0 380px; max-width: 380px; scroll-snap-align: center; padding: 30px;
  border-radius: var(--r-lg); background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); color: #fff; }
.testi .stars { color: var(--amber); margin-bottom: 14px; letter-spacing: 2px; }
.testi blockquote { font-size: 1.02rem; line-height: 1.7; color: rgba(255,255,255,0.92); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-cyan); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #07223a; }
.testi .who b { color: #fff; font-family: var(--font-head); display: block; font-size: 0.95rem; }
.testi .who span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ---------- Partners ---------- */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 16px; }
.partner { display: grid; place-items: center; padding: 28px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-md); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--text); transition: .3s; backdrop-filter: blur(10px); }
.partner:hover { border-color: var(--blue); color: var(--blue-bright); transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- Media / photo cards ---------- */
.media { position: relative; overflow: hidden; background: var(--grad-blue-navy); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.media .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,22,0) 30%, rgba(7,11,22,0.8) 100%); }
.media:hover img { transform: scale(1.05); }
.media.media-fallback img { display: none; }
.media.media-fallback { background: var(--grad-blue-navy); position: relative; }
.media.media-fallback::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,0.10) 1.5px, transparent 1.5px); background-size: 22px 22px; opacity: 0.5; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 4/3; }
.split-media img { aspect-ratio: 4/3; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info .ci { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info .ci .ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(43,160,232,0.14); color: var(--blue-bright); display: grid; place-items: center; flex: none; }
.contact-info .ci .ico svg { width: 22px; height: 22px; }
.contact-info .ci b { font-family: var(--font-head); color: var(--head); display: block; }
.contact-info .ci span, .contact-info .ci a { color: var(--text-soft); }
.contact-info .ci a:hover { color: var(--blue-bright); }
.form { background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; color: var(--text); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.96rem; color: var(--head); transition: border .2s, box-shadow .2s, background .2s; background: rgba(255,255,255,0.04);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-ink); }
.field select { color: var(--head); }
.field select option { background: #0b1326; color: #fff; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(43,160,232,0.18); background: rgba(255,255,255,0.06); }
.field textarea { resize: vertical; min-height: 110px; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); margin-top: 26px; height: 240px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.85) brightness(0.95); }
.form-note { font-size: 0.82rem; color: var(--muted-ink); margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-blue-navy); color: #fff; border-radius: var(--r-xl); padding: 56px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-blue); border: 1px solid rgba(255,255,255,0.08); }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% -20%, rgba(91,208,245,0.3), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 14px auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #05080f; color: rgba(255,255,255,0.7); padding: 68px 0 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 18px; }
.footer a { display: block; padding: 6px 0; color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: color .2s, transform .2s; }
.footer a:hover { color: var(--blue-bright); transform: translateX(4px); }
.footer .f-brand p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 320px; margin-top: 16px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: rgba(255,255,255,0.75); transform: none; }
.socials a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; padding: 11px 14px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: #fff; font-family: var(--font-body); }
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter button { padding: 11px 18px; border-radius: var(--r-sm); border: 0; background: var(--grad-amber); color: #1a1205; font-family: var(--font-head); font-weight: 600; cursor: pointer; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: calc(var(--nav-h) + 70px) 0 80px; text-align: center; overflow: hidden; }
.page-hero h1 { color: #fff; max-width: 820px; margin: 16px auto 0; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 18px auto 0; font-size: 1.12rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--blue-bright); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s } .reveal.d2 { transition-delay: .16s } .reveal.d3 { transition-delay: .24s } .reveal.d4 { transition-delay: .32s }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: none } }

/* Mouse glow */
.cursor-glow { position: fixed; width: 520px; height: 520px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(43,160,232,0.12), transparent 65%); transform: translate(-50%,-50%); transition: opacity .3s; mix-blend-mode: screen; }

/* Scroll progress */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-cyan); z-index: 2000; transition: width .1s; box-shadow: 0 0 12px rgba(43,160,232,0.6); }

/* ---------- Theme toggle button ---------- */
.theme-toggle { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; flex: none;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; transition: background .25s, transform .25s, color .25s, border-color .25s; }
.theme-toggle:hover { background: rgba(43,160,232,0.22); transform: translateY(-2px); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .i-sun { display: block; } .theme-toggle .i-moon { display: none; }
html[data-theme="light"] .theme-toggle .i-sun { display: none; }
html[data-theme="light"] .theme-toggle .i-moon { display: block; }

/* ========================================================================
   LIGHT THEME OVERRIDES (toggled via html[data-theme="light"])
   Hero, footer, CTA and "bg-navy" sections intentionally stay dark.
   ======================================================================== */
html[data-theme="light"] {
  --ink: #eef2f8;
  --head: #0f172a; --text: #334155; --text-soft: #475569; --muted-ink: #64748b;
  --slate-900:#0f172a; --slate-700:#334155; --slate-600:#475569; --slate-500:#64748b;
  --slate-300:#cbd5e1; --slate-200:#e2e8f0; --slate-100:#f1f5f9; --slate-50:#f8fafc;
  --card-bg: #ffffff; --card-border: #e6ebf3;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 10px 30px rgba(15,23,42,0.10);
  --shadow-lg: 0 26px 60px rgba(15,23,42,0.16);
  --shadow-glow: 0 0 0 1px rgba(15,23,42,0.05), 0 30px 60px rgba(15,23,42,0.14);
}
html[data-theme="light"] body { background: var(--ink); color: var(--text); }
html[data-theme="light"] body::before {
  background: radial-gradient(900px 600px at 88% -8%, rgba(43,160,232,0.12), transparent 58%),
              radial-gradient(700px 520px at 4% 6%, rgba(245,158,11,0.07), transparent 55%), var(--ink);
}
html[data-theme="light"] body::after { opacity: 0.6;
  background-image: linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px); }

/* Navbar (scrolled state) */
html[data-theme="light"] .nav.scrolled { background: rgba(255,255,255,0.82); border-color: #e6ebf3; box-shadow: 0 8px 24px rgba(15,23,42,0.08); }
html[data-theme="light"] .nav.scrolled .nav-links a { color: #334155; }
html[data-theme="light"] .nav.scrolled .nav-links a:hover { color: var(--blue-700); background: rgba(43,160,232,0.1); }
html[data-theme="light"] .nav.scrolled .nav-links a.active { color: var(--blue-700); }
html[data-theme="light"] .nav.scrolled .nav-toggle { color: #0f172a; }
html[data-theme="light"] .nav.scrolled .brand .pobo-logo { filter: none; }
html[data-theme="light"] .nav.scrolled .theme-toggle { color: #0f172a; background: rgba(15,23,42,0.05); border-color: rgba(15,23,42,0.12); }

/* Trust bar */
html[data-theme="light"] .trustbar { background: #fff; border-color: #e6ebf3; }
html[data-theme="light"] .trust-item { color: #334155; }
html[data-theme="light"] .trust-item b { color: #0f172a; }

/* Soft panels & accents */
html[data-theme="light"] .bg-soft { background: linear-gradient(180deg,#f4f7fb,#eef2f8); border-color: #e6ebf3; }
html[data-theme="light"] .eyebrow { color: var(--blue-700); background: rgba(43,160,232,0.1); border-color: rgba(43,160,232,0.28); }
html[data-theme="light"] .card:hover { background: #fff; border-color: rgba(43,160,232,0.45); }
html[data-theme="light"] .card-icon { color: var(--blue-600); }
html[data-theme="light"] .feat-list li { color: #334155; }

/* Forms */
html[data-theme="light"] .form { background: #fff; border-color: #e6ebf3; }
html[data-theme="light"] .field input, html[data-theme="light"] .field textarea, html[data-theme="light"] .field select { background:#fff; border-color:#cbd5e1; color:#0f172a; }
html[data-theme="light"] .field input::placeholder, html[data-theme="light"] .field textarea::placeholder { color:#94a3b8; }
html[data-theme="light"] .field select option { background:#fff; color:#0f172a; }
html[data-theme="light"] .contact-info .ci a:hover { color: var(--blue-700); }

/* Tabs & dark "screen" visual stays dark for contrast */
html[data-theme="light"] .tab-btn { background:#eef2f8; border-color:#e6ebf3; color:#475569; }
html[data-theme="light"] .tab-btn:hover { color: var(--blue-700); border-color: rgba(43,160,232,0.4); }
html[data-theme="light"] .tab-visual { background:#0f172a; border-color:#0f172a; }

/* Carousel controls */
html[data-theme="light"] .carousel-controls button { background:#fff; border-color:#cbd5e1; color:#334155; }
html[data-theme="light"] .carousel-controls button:hover { background: var(--blue); color:#fff; border-color: var(--blue); }

/* Map renders normally in light mode */
html[data-theme="light"] .map-embed { border-color:#e2e8f0; }
html[data-theme="light"] .map-embed iframe { filter: none; }

/* Competence chips on light sections (Partners) */
html[data-theme="light"] #partners .cap { background: #ffffff; border-color: #e2e8f0; color: #1e293b; box-shadow: var(--shadow-sm); }
html[data-theme="light"] #partners .cap:hover { background: rgba(43,160,232,0.1); border-color: rgba(43,160,232,0.45); }
html[data-theme="light"] #partners .cap svg { color: var(--blue-600); }
html[data-theme="light"] #partners .muted { color: #475569 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .img-card { transform: none; }
  .ai-widget { left: 0; }
  .tab-layout, .contact-layout, .split { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 18px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; padding-right: 0; }
  .tl-item .tl-dot { left: 9px !important; right: auto !important; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 6px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 24px; }
  .sec { padding: 66px 0; }
  .hero-meta { gap: 18px; }
}

/* ============================================================
   HERO CAROUSEL — full-screen, fade + parallax, glassmorphism
   ============================================================ */
.hero-carousel { position: relative; height: 100vh; min-height: 660px; overflow: hidden; color: #fff; isolation: isolate; background: var(--grad-hero); }
.hc-mesh { position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 48% at 80% 18%, rgba(43,160,232,0.30), transparent 60%),
    radial-gradient(34% 44% at 14% 76%, rgba(91,208,245,0.20), transparent 62%),
    radial-gradient(32% 42% at 52% 112%, rgba(21,101,163,0.34), transparent 60%);
  animation: hcMesh 18s ease-in-out infinite alternate; }
@keyframes hcMesh { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-3%,-2%,0) scale(1.1); } }
.hc-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.45;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px; mask-image: radial-gradient(circle at 72% 38%, #000, transparent 78%); }
.hc-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hc-topbadge { position: absolute; top: calc(var(--nav-h) + 16px); left: 50%; transform: translateX(-50%); z-index: 6;
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: 999px; white-space: nowrap;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px);
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.05em; color: #e3f3fc; }
.hc-topbadge .lp { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 10px var(--blue-bright); animation: blink 1.6s infinite; }

.hc-track { position: absolute; inset: 0; z-index: 2; }
.hc-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.9s ease, visibility 0.9s; }
.hc-slide.is-active { opacity: 1; visibility: visible; }
.hc-slide .container { position: relative; z-index: 3; height: 100%; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding-top: 92px; padding-bottom: 112px; }

/* themed animated scene */
.hc-scene { display: none; }
.hc-glyph { position: absolute; color: rgba(91,208,245,0.13); will-change: transform; }
.hc-slide.is-active .hc-glyph.g1 { animation: gd1 9s ease-in-out infinite; }
.hc-slide.is-active .hc-glyph.g2 { animation: gd2 11s ease-in-out infinite; }
.hc-slide.is-active .hc-glyph.g3 { animation: gd3 8s ease-in-out infinite; }
@keyframes gd1 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(20px,-24px) rotate(8deg); } }
@keyframes gd2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-18px,16px); } }
@keyframes gd3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(12px,20px) scale(1.1); } }

/* glass content card */
.hc-card { max-width: 640px; padding: 36px 40px; border-radius: 26px;
  background: rgba(10,17,32,0.34); border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-glow);
  transform: translateY(8px); }
.hc-kicker { opacity: 0; transform: translateY(26px); }
.hc-card h1, .hc-card h2 { color: #fff; font-weight: 700; font-size: clamp(2.1rem, 4.4vw, 3.7rem); margin: 16px 0 0; opacity: 0; transform: translateY(26px); }
.hc-card .hc-sub { color: rgba(255,255,255,0.84); font-size: clamp(1.02rem, 1.5vw, 1.22rem); max-width: 560px; margin: 16px 0 0; opacity: 0; transform: translateY(26px); }
.hc-icons { display: flex; gap: 12px; margin-top: 24px; opacity: 0; transform: translateY(26px); }
.hc-icons span { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--blue-bright); backdrop-filter: blur(8px); transition: transform .3s, background .3s; }
.hc-icons span svg { width: 22px; height: 22px; }
.hc-icons span:hover { transform: translateY(-5px); background: rgba(43,160,232,0.22); color: #fff; }
.hc-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; opacity: 0; transform: translateY(26px); }
.hc-slide.is-active .hc-kicker { animation: hcUp .8s cubic-bezier(.16,1,.3,1) .02s forwards; }
.hc-slide.is-active .hc-card h1, .hc-slide.is-active .hc-card h2 { animation: hcUp .8s cubic-bezier(.16,1,.3,1) .12s forwards; }
.hc-slide.is-active .hc-card .hc-sub { animation: hcUp .8s cubic-bezier(.16,1,.3,1) .22s forwards; }
.hc-slide.is-active .hc-icons { animation: hcUp .8s cubic-bezier(.16,1,.3,1) .32s forwards; }
.hc-slide.is-active .hc-cta { animation: hcUp .8s cubic-bezier(.16,1,.3,1) .42s forwards; }
@keyframes hcUp { to { opacity: 1; transform: none; } }

/* arrows */
.hc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 7; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; cursor: pointer; backdrop-filter: blur(8px); transition: background .25s, transform .25s; }
.hc-arrow svg { width: 22px; height: 22px; }
.hc-arrow:hover { background: rgba(43,160,232,0.28); transform: translateY(-50%) scale(1.08); }
.hc-arrow.prev { left: 22px; } .hc-arrow.next { right: 22px; }

/* dots with autoplay progress */
.hc-dots { position: absolute; bottom: 104px; left: 50%; transform: translateX(-50%); z-index: 7; display: flex; gap: 10px; }
.hc-dots button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,0.28); cursor: pointer; position: relative; overflow: hidden; transition: width .35s ease, background .35s; }
.hc-dots button.active { width: 38px; background: rgba(255,255,255,0.22); }
.hc-dots button.active::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--grad-cyan); animation: dotfill 5s linear forwards; }
.hero-carousel.hc-paused .hc-dots button.active::after { animation-play-state: paused; }
@keyframes dotfill { to { width: 100%; } }

/* stat strip */
.hc-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 6; display: flex; justify-content: center;
  background: rgba(7,11,22,0.42); border-top: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); }
.hc-stats .s { flex: 1; max-width: 240px; text-align: center; padding: 16px 12px; border-right: 1px solid rgba(255,255,255,0.06); }
.hc-stats .s:last-child { border-right: 0; }
.hc-stats .s b { font-family: var(--font-head); font-size: 1.55rem; display: block; background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hc-stats .s span { font-size: 0.76rem; color: rgba(255,255,255,0.66); }

@media (prefers-reduced-motion: reduce) {
  .hc-mesh, .hc-glyph, .hc-dots button.active::after { animation: none !important; }
}
@media (max-width: 980px) {
  .hc-arrow { display: none; }
  .hc-card { max-width: none; padding: 26px 22px; }
  .hc-topbadge { font-size: 0.66rem; padding: 7px 13px; white-space: normal; text-align: center; max-width: 90%; }
}
@media (max-width: 760px) {
  .hero-carousel { height: auto; min-height: 100svh; }
  .hc-slide { position: absolute; }
  .hc-dots { bottom: 120px; }
  .hc-stats { flex-wrap: wrap; }
  .hc-stats .s { flex: 1 1 50%; max-width: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hc-card h1, .hc-card h2 { font-size: 2rem; }
}

/* First slide = original two-column hero */
.hc-slide.hero-slide .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding-top: 96px; padding-bottom: 116px; }
.hc-slide.hero-slide h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.7rem); }
.hc-slide.hero-slide h1 .hl { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hc-slide.hero-slide .sub { color: rgba(255,255,255,0.82); font-size: clamp(1.02rem, 1.5vw, 1.2rem); margin: 20px 0 30px; max-width: 560px; }
.hc-slide.hero-slide .hero-figure { width: 100%; max-width: 560px; justify-self: end; }
@media (max-width: 980px) {
  .hc-slide.hero-slide .container { grid-template-columns: 1fr; gap: 30px; padding-top: 116px; padding-bottom: 116px; }
  .hc-slide.hero-slide .img-card { transform: none; }
  .hc-slide.hero-slide .hero-figure { justify-self: center; max-width: 460px; }
}
@media (max-width: 760px) {
  .hc-slide.hero-slide .hero-figure { display: none; }
}

/* Right-side animated visual (orb + floating icons) for module slides */
.hc-visual { position: relative; height: 420px; justify-self: end; width: 100%; max-width: 480px; display: flex; align-items: center; }
.hc-orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 230px; height: 230px; border-radius: 50%;
  display: grid; place-items: center; backdrop-filter: blur(8px);
  background: radial-gradient(circle at 36% 30%, rgba(43,160,232,0.4), rgba(11,19,38,0.55));
  border: 1px solid rgba(255,255,255,0.16); box-shadow: var(--shadow-glow), inset 0 0 46px rgba(43,160,232,0.28); }
.hc-orb svg { width: 92px; height: 92px; color: #fff; }
.hc-orb::before, .hc-orb::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(91,208,245,0.35); }
.hc-slide.is-active .hc-orb::before { animation: orbring 3s ease-out infinite; }
.hc-slide.is-active .hc-orb::after { animation: orbring 3s ease-out infinite 1.5s; }
@keyframes orbring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.55); opacity: 0; } }
.hc-bub { position: absolute; width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--blue-bright); backdrop-filter: blur(8px); box-shadow: var(--shadow-md); }
.hc-bub svg { width: 27px; height: 27px; }
.hc-bub.b1 { top: 6%; left: 12%; } .hc-bub.b2 { top: 16%; right: 6%; }
.hc-bub.b3 { bottom: 14%; left: 4%; } .hc-bub.b4 { bottom: 6%; right: 14%; }
.hc-slide.is-active .hc-bub.b1 { animation: floaty 5s ease-in-out infinite; }
.hc-slide.is-active .hc-bub.b2 { animation: floaty 6s ease-in-out infinite .4s; }
.hc-slide.is-active .hc-bub.b3 { animation: floaty 5.5s ease-in-out infinite .8s; }
.hc-slide.is-active .hc-bub.b4 { animation: floaty 6.5s ease-in-out infinite .2s; }
@media (max-width: 980px) {
  .hc-slide .container { grid-template-columns: 1fr; gap: 30px; }
  .hc-visual { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hc-orb::before, .hc-orb::after, .hc-bub { animation: none !important; }
}

/* Live dashboard card visual (slide-1 style) for module slides */
.hc-livecard { position: relative; width: 100%; border-radius: var(--r-lg); padding: 18px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); box-shadow: var(--shadow-glow);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transform: perspective(1700px) rotateY(-9deg) rotateX(4deg); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.hc-visual:hover .hc-livecard { transform: perspective(1700px) rotateY(-3deg) rotateX(1deg); }
.hc-livecard .dash-top .title { margin-left: 6px; font-size: 0.78rem; color: rgba(255,255,255,0.6); font-family: var(--font-head); }
.hc-livecard .hc-dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hc-livecard .val small { font-size: 0.8rem; color: #4ade80; }
@media (max-width: 980px) { .hc-livecard { transform: none; } }

/* Distinct animated art visual per slide */
.hc-art { width: 100%; transform: perspective(1600px) rotateY(-6deg); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.hc-visual:hover .hc-art { transform: perspective(1600px) rotateY(-2deg); }
.hc-art svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 46px rgba(2,6,23,0.55)); }
@media (max-width: 980px) { .hc-art { transform: none; } }

/* Forwarding slide — real image with animated tracking overlay */
.hc-photo { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-glow); background: var(--grad-blue-navy);
  transform: perspective(1700px) rotateY(-8deg) rotateX(3deg); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.hc-visual:hover .hc-photo { transform: perspective(1700px) rotateY(-3deg) rotateX(1deg); }
.hc-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.88; animation: kb 16s ease-in-out infinite alternate; }
.hc-photo .ph-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,22,0.25) 0%, rgba(7,11,22,0.32) 48%, rgba(7,11,22,0.86) 100%); }
.hc-photo .ph-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.hc-photo .ph-head { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px;
  background: rgba(11,19,38,0.72); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(8px); font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; color: #fff; }
.hc-photo .ph-head .lp { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: blink 1.6s infinite; }
.hc-photo .ph-stats { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; gap: 8px; padding: 12px 14px; border-radius: 14px;
  background: rgba(11,19,38,0.62); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px); }
.hc-photo .ph-stats > div { flex: 1; text-align: center; }
.hc-photo .ph-stats b { display: block; font-family: var(--font-head); font-size: 1.12rem; color: #fff; line-height: 1; }
.hc-photo .ph-stats span { font-size: 0.66rem; color: rgba(255,255,255,0.62); }
@media (max-width: 980px) { .hc-photo { transform: none; } }

/* Case Studies — rich banner impact stats */
.cs-impact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cs-impact .si { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  transition: transform .3s, border-color .3s, background .3s; }
.cs-impact .si:hover { transform: translateY(-4px); border-color: rgba(43,160,232,0.45); background: rgba(43,160,232,0.1); }
.cs-impact .si .ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: none; background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.cs-impact .si .ico svg { width: 24px; height: 24px; }
.cs-impact .si b { font-family: var(--font-head); font-size: 1.6rem; line-height: 1; display: block; background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cs-impact .si span { font-size: 0.82rem; color: rgba(255,255,255,0.68); }
@media (max-width: 860px) { .cs-impact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .cs-impact { grid-template-columns: 1fr; } }

/* Industries — animated supply chain journey banner */
.chain-cap { text-align: center; font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 30px; }
.chain { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; padding: 6px 6px 4px; }
.chain-track { position: absolute; left: 9%; right: 9%; top: 42px; height: 3px; border-radius: 3px; z-index: 0;
  background-image: linear-gradient(90deg, rgba(91,208,245,0.7) 0 10px, transparent 10px 22px); background-size: 22px 100%;
  animation: chainflow 1.1s linear infinite; }
@keyframes chainflow { to { background-position: -22px 0; } }
.chain-pkg { position: absolute; top: 42px; left: 9%; transform: translate(-50%,-50%); z-index: 0; width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-amber); display: grid; place-items: center; color: #1a1205; box-shadow: 0 6px 16px rgba(245,158,11,0.55);
  animation: chainmove 7s cubic-bezier(.65,0,.35,1) infinite; }
.chain-pkg svg { width: 17px; height: 17px; }
@keyframes chainmove { 0% { left: 9%; } 46%,54% { left: 91%; } 100% { left: 9%; } }
.chain-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; text-align: center; }
.chain-node .cn-ic { width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center;
  background: #0e1a33; border: 1px solid rgba(255,255,255,0.16); color: var(--blue-bright);
  box-shadow: var(--shadow-md); transition: transform .3s, background .3s, color .3s, border-color .3s; }
.chain-node .cn-ic svg { width: 34px; height: 34px; }
.chain-node:hover .cn-ic { transform: translateY(-6px); background: var(--grad-blue); color: #fff; border-color: transparent; }
.chain-node b { font-family: var(--font-head); font-size: 0.92rem; color: #fff; font-weight: 600; }
.chain-node .cn-sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
@media (max-width: 760px) {
  .chain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 8px; }
  .chain-track, .chain-pkg { display: none; }
  .chain-node .cn-ic { width: 60px; height: 60px; }
  .chain-node .cn-ic svg { width: 28px; height: 28px; }
}

/* Services — animated marquees (service chips + real images) */
.marquee { overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee .track { display: flex; gap: 14px; width: max-content; animation: scrollx 36s linear infinite; }
.marquee.rev .track { animation-duration: 44s; animation-direction: reverse; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.svc-chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; flex: none;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; white-space: nowrap; transition: background .3s, border-color .3s; }
.svc-chip svg { width: 20px; height: 20px; color: var(--blue-bright); flex: none; }
.svc-chip:hover { background: rgba(43,160,232,0.18); border-color: rgba(43,160,232,0.4); }
.img-tile { position: relative; width: 250px; height: 150px; border-radius: 16px; overflow: hidden; flex: none;
  border: 1px solid rgba(255,255,255,0.12); background: var(--grad-blue-navy); }
.img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.img-tile:hover img { transform: scale(1.08); }
.img-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(7,11,22,0.72)); }
.img-tile b { position: absolute; left: 14px; bottom: 11px; z-index: 1; font-family: var(--font-head); font-weight: 600; font-size: 0.84rem; color: #fff; }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* Solutions — animated image mosaic with icon badges */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sol-tile { position: relative; height: 200px; border-radius: 20px; overflow: hidden; display: block;
  border: 1px solid rgba(255,255,255,0.12); background: var(--grad-blue-navy); box-shadow: var(--shadow-md);
  transition: transform .4s, box-shadow .4s, border-color .4s; }
.sol-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(43,160,232,0.45); }
.sol-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; animation: kb 14s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.1); } }
.sol-tile:nth-child(2) img { animation-delay: -3s; } .sol-tile:nth-child(3) img { animation-delay: -6s; }
.sol-tile:nth-child(4) img { animation-delay: -9s; } .sol-tile:nth-child(5) img { animation-delay: -2s; } .sol-tile:nth-child(6) img { animation-delay: -5s; }
.sol-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,22,0.15) 0%, rgba(7,11,22,0.88) 100%); }
.sol-tile .st-badge { position: absolute; top: 16px; left: 16px; z-index: 1; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: #fff; backdrop-filter: blur(8px); transition: background .4s; }
.sol-tile:hover .st-badge { background: var(--grad-blue); }
.sol-tile .st-badge svg { width: 24px; height: 24px; }
.sol-tile .st-in { position: absolute; inset: 0; z-index: 1; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.sol-tile .st-in b { font-family: var(--font-head); font-size: 1.12rem; color: #fff; }
.sol-tile .st-in span { font-size: 0.82rem; color: rgba(255,255,255,0.74); margin-top: 4px; }
.sol-tile .st-arrow { position: absolute; top: 22px; right: 18px; z-index: 1; color: var(--blue-bright); opacity: 0; transform: translate(-4px,4px); transition: .35s; }
.sol-tile .st-arrow svg { width: 20px; height: 20px; }
.sol-tile:hover .st-arrow { opacity: 1; transform: none; }
@media (max-width: 860px) { .sol-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sol-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .sol-tile img { animation: none; } }
/* Solutions auto-moving marquee (single row) */
.sol-marquee .track { gap: 18px; animation-duration: 46s; }
.sol-marquee .sol-tile { flex: 0 0 340px; max-width: 340px; height: 220px; }
@media (max-width: 560px) { .sol-marquee .sol-tile { flex: 0 0 76vw; max-width: 76vw; } }

/* About — credential medallions with spinning rings */
.creds { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.cred { width: 152px; text-align: center; }
.cred .medal { position: relative; width: 112px; height: 112px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 36% 30%, rgba(43,160,232,0.42), rgba(11,19,38,0.65)); border: 1px solid rgba(255,255,255,0.16); box-shadow: var(--shadow-glow); color: #fff; transition: box-shadow .3s; }
.cred .medal svg { width: 38px; height: 38px; }
.cred .medal::before { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px dashed rgba(91,208,245,0.5); animation: spin 16s linear infinite; }
.cred .medal::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); }
@keyframes spin { to { transform: rotate(360deg); } }
.cred:hover .medal { box-shadow: 0 0 0 1px rgba(43,160,232,0.4), 0 20px 44px rgba(43,160,232,0.3); }
.cred b { font-family: var(--font-head); font-size: 1.5rem; line-height: 1; display: block; background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cred .ct { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: #fff; display: block; }
.cred .cl { font-size: 0.78rem; color: rgba(255,255,255,0.62); margin-top: 5px; display: block; }
@media (max-width: 760px) { .creds { gap: 18px; } .cred { width: 124px; } .cred .medal { width: 94px; height: 94px; } }

/* Contact — pulsing contact-method cards */
.cm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cm-card { display: block; padding: 24px 20px; border-radius: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(12px); transition: transform .3s, border-color .3s, background .3s; }
.cm-card:hover { transform: translateY(-5px); border-color: rgba(43,160,232,0.45); background: rgba(43,160,232,0.1); }
.cm-card .cm-ic { position: relative; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); margin-bottom: 16px; }
.cm-card .cm-ic svg { width: 24px; height: 24px; }
.cm-card .cm-ic::after { content: ""; position: absolute; inset: 0; border-radius: 15px; border: 2px solid var(--blue-bright); opacity: 0; animation: cmping 2.6s ease-out infinite; }
.cm-card:nth-child(2) .cm-ic::after { animation-delay: .65s; } .cm-card:nth-child(3) .cm-ic::after { animation-delay: 1.3s; } .cm-card:nth-child(4) .cm-ic::after { animation-delay: 1.95s; }
@keyframes cmping { 0% { transform: scale(1); opacity: .65; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
.cm-card .cm-lbl { font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-bright); }
.cm-card .cm-val { color: #fff; font-family: var(--font-head); font-size: 1.02rem; margin-top: 4px; word-break: break-word; }
.cm-card .cm-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
@media (max-width: 860px) { .cm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .cm-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: r