/* ============================================================
   VBRS — Light Theme  |  Sky Blue + Orange Brand
   style.css v4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:   #ffffff;
  --bg-secondary: #f0f9ff;
  --bg-tertiary:  #e0f2fe;
  --bg-accent-soft: #fff7ed;

  /* Brand — Sky Blue + Orange */
  --blue:        #0ea5e9;
  --blue-dark:   #0284c7;
  --blue-light:  #38bdf8;
  --blue-xlight: #bae6fd;
  --orange:      #f97316;
  --orange-dark: #ea580c;
  --orange-light:#fdba74;

  /* Semantic */
  --color-primary:   var(--blue);
  --color-secondary: var(--blue-dark);
  --color-accent:    var(--orange);
  --color-green:     #10b981;
  --color-purple:    #8b5cf6;

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;
  --text-dim:       #94a3b8;

  /* Borders */
  --border-subtle: #e2e8f0;
  --border-light:  #cbd5e1;
  --border-medium: #94a3b8;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(14,165,233,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 4px 12px rgba(14,165,233,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-md: 0 8px 28px rgba(14,165,233,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(14,165,233,.16), 0 8px 20px rgba(0,0,0,.10);
  --shadow-xl: 0 32px 80px rgba(14,165,233,.18), 0 12px 32px rgba(0,0,0,.12);

  /* Glow */
  --glow-blue:   0 0 28px rgba(14,165,233,.35);
  --glow-orange: 0 0 28px rgba(249,115,22,.35);
  --glow-strong: 0 0 60px rgba(14,165,233,.50);

  /* Cards */
  --card-bg:     #ffffff;
  --card-border: #e2e8f0;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing */
  --section-padding: clamp(24px, 4vh, 48px);
  --container-max:   1280px;
  --container-pad:   clamp(16px, 4vw, 64px);

  /* Motion */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);
  --t-fast:   0.18s var(--ease-smooth);
  --t-normal: 0.32s var(--ease-smooth);
  --t-slow:   0.65s var(--ease-expo);

  /* Z-index */
  --z-cursor: 10000;
  --z-nav:    1000;
}

/* ─── RESET ───────────────────────────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:auto; font-size:15px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(14,165,233,.2); color: var(--blue-dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
button { cursor: none; }

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--blue-xlight); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ─── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress, .reading-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: calc(var(--z-nav) + 1);
  box-shadow: 0 0 8px rgba(249,115,22,.5);
  transition: width .1s linear;
}

/* ─── CURSOR ──────────────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--blue); border-radius: 50%;
  pointer-events: none; z-index: var(--z-cursor);
  transform: translate(-50%,-50%);
  transition: width .28s var(--ease-bounce), height .28s var(--ease-bounce), background .2s;
  will-change: transform;
}
.cursor-follower {
  position: fixed; width: 34px; height: 34px;
  border: 2px solid rgba(14,165,233,.4); border-radius: 50%;
  pointer-events: none; z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%,-50%);
  transition: width .38s var(--ease-expo), height .38s var(--ease-expo), border-color .2s;
  will-change: transform;
}
.cursor.cursor--hover { width: 6px; height: 6px; background: var(--orange); }
.cursor-follower.cursor--hover { width: 50px; height: 50px; border-color: rgba(249,115,22,.4); }
@media (max-width:480px) { .cursor,.cursor-follower { display:none; } body { cursor:auto; } button { cursor:pointer; } }

/* ─── NOISE OVERLAY (subtle paper texture) ────────────────── */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none;
  z-index: calc(var(--z-cursor) - 2); opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── LOADER ──────────────────────────────────────────────── */
.loader {
  display: none !important;
  position: fixed; inset: 0; background: #fff;
  z-index: 99999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity .65s var(--ease-expo), visibility .65s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo { /* kept for backward compat */ font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.loader__logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}
.loader__bar { width: 160px; height: 3px; background: #e0f2fe; border-radius: 3px; overflow: hidden; }
.loader__fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 3px; }
.loader__text { font-size: .7rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* ════════════════════════════════════════════════════════════
   NAVIGATION — Premium Light
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav); padding: 8px 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 var(--border-subtle), 0 2px 16px rgba(14,165,233,.06);
  transition: all .3s var(--ease-smooth);
}

.nav.nav--scrolled {
  padding: 4px 0;
  box-shadow: 0 1px 0 var(--border-subtle), 0 6px 28px rgba(14,165,233,.12);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform .3s var(--ease-bounce), opacity .2s;
}
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }

/* Links */
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 7px 14px; font-size: .85rem; font-weight: 500;
  color: var(--text-secondary); border-radius: 8px;
  transition: all var(--t-fast); position: relative;
}
.nav__link:hover { color: var(--blue); background: rgba(14,165,233,.07); }
.nav__link--active { color: var(--blue); background: rgba(14,165,233,.08); font-weight: 600; }

/* Orange CTA */
.nav__cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 100px; font-size: .85rem; font-weight: 700; color: #fff; letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(249,115,22,.32);
  transition: all .3s var(--ease-smooth); white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.45); }

/* Hamburger */
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: none; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }

/* Mobile overlay */
.nav__mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,.97); backdrop-filter: blur(24px);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  opacity: 0; pointer-events: none; transition: opacity var(--t-normal);
}
.nav__mobile.active { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile-link {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700;
  color: var(--text-secondary); transition: color var(--t-fast);
}
.nav__mobile-link:hover { color: var(--blue); }

/* ════════════════════════════════════════════════════════════
   HERO — Spectacular Light Hero
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: #fff;
}

/* Multi-layer hero background */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(14,165,233,.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(249,115,22,.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(14,165,233,.05) 0%, transparent 60%);
}

/* Decorative grid */
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__canvas { position: absolute; inset: 0; z-index: 1; opacity: .55; }

/* Floating decoration blobs */
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(50px);
  pointer-events: none; z-index: 1;
}
.hero__blob--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,.18) 0%, transparent 70%);
  top: -80px; right: 10%;
  animation: blob-float 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,.14) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: blob-float 10s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
  top: 50%; right: 5%;
  animation: blob-float 12s ease-in-out infinite;
}
@keyframes blob-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-24px) scale(1.04)} }

.hero__content {
  position: relative; z-index: 3; width: 100%;
  padding-top: 80px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

/* Left — Text */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(249,115,22,.08));
  border: 1px solid rgba(14,165,233,.25);
  border-radius: 100px; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: 20px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%; animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.03em;
  color: var(--text-primary); margin-bottom: 8px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .char { display: inline-block; }

/* Sky blue + Orange gradient headline */
.hero__title .grad {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem); color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}

.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero stats row */
.hero__stats {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.hero__stat-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; display: block; margin-bottom: 2px;
}
.hero__stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }

/* Right — Visual card */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__roadmap-wrap {
  width: 100%; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(14,165,233,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.hero__roadmap-img { width: 100%; height: auto; display: block; border-radius: 16px; }
.hero__card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}
.hero__card-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero__card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: rgba(14,165,233,.1); border-radius: 100px;
  font-size: .68rem; font-weight: 700; color: var(--blue);
}
.hero__card-badge::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; animation: badge-pulse 1.5s infinite; }
.hero__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hero__metric {
  background: var(--bg-secondary); border-radius: 14px; padding: 16px 14px;
  border: 1px solid var(--bg-tertiary);
}
.hero__metric-val {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--blue-dark); display: block; margin-bottom: 3px;
}
.hero__metric-val.orange { color: var(--orange); }
.hero__metric-label { font-size: .72rem; color: var(--text-muted); }
.hero__bar-label { font-size: .75rem; color: var(--text-secondary); margin-bottom: 6px; font-weight: 500; }
.hero__bar { height: 7px; background: #e0f2fe; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.hero__bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.hero__services-mini { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.hero__service-chip {
  padding: 5px 12px; background: var(--bg-secondary);
  border: 1px solid var(--border-subtle); border-radius: 100px;
  font-size: .72rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--t-fast);
}
.hero__service-chip:hover { background: rgba(14,165,233,.1); color: var(--blue); border-color: rgba(14,165,233,.3); }

/* Floating accent cards */
.hero__float-card {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle); font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  animation: float-card 5s ease-in-out infinite;
}
.hero__float-card--1 { top: -20px; right: -16px; animation-delay: 0s; }
.hero__float-card--2 { bottom: 30px; left: -20px; animation-delay: -2.5s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero__float-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: var(--text-dim); cursor: pointer;
}
.hero__scroll span { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.hero__scroll-mouse {
  width: 22px; height: 34px; border: 2px solid var(--border-light);
  border-radius: 12px; position: relative; display: flex; align-items: flex-start; justify-content: center; padding-top: 5px;
}
.hero__scroll-wheel { width: 3px; height: 7px; background: var(--blue); border-radius: 2px; animation: wheel-scroll 1.8s ease-in-out infinite; }
@keyframes wheel-scroll { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 100px;
  font-size: .875rem; font-weight: 700; letter-spacing: .01em;
  transition: all var(--t-normal); position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.14); opacity: 0; transition: opacity var(--t-fast); }
.btn:hover::after { opacity: 1; }

/* Blue primary */
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(14,165,233,.38);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,.52); }

/* Orange accent */
.btn--orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(249,115,22,.38);
}
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.52); }

/* Outline */
.btn--outline {
  background: transparent; color: var(--text-primary);
  border: 2px solid var(--border-light);
}
.btn--outline:hover { background: rgba(14,165,233,.06); border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* Ghost blue */
.btn--ghost {
  background: rgba(14,165,233,.08); color: var(--blue);
  border: 1px solid rgba(14,165,233,.2);
}
.btn--ghost:hover { background: rgba(14,165,233,.14); transform: translateY(-2px); }

.btn__icon { width: 18px; height: 18px; transition: transform var(--t-fast); flex-shrink: 0; }
.btn:hover .btn__icon { transform: translateX(3px); }

/* ─── SECTION BASE ────────────────────────────────────────── */
.section { position: relative; padding: var(--section-padding) 0; overflow: hidden; }
.section--alt { background: var(--bg-secondary); }
.section--blue-tint { background: linear-gradient(180deg, var(--bg-secondary) 0%, #fff 100%); }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section__eyebrow::before { content: ''; display: block; width: 16px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 1px; }
.section__eyebrow--center { justify-content: center; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.025em;
  color: var(--text-primary); margin-bottom: 12px;
}
.section__subtitle {
  font-size: clamp(.875rem, 1.3vw, 1rem);
  color: var(--text-muted); line-height: 1.68; max-width: 500px;
}
.section__header { margin-bottom: clamp(16px, 2vw, 32px); }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }
.section__header--center .section__eyebrow { justify-content: center; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Divider */
.glow-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(14,165,233,.35), rgba(249,115,22,.25), transparent); }

/* Light-theme aurora — subtle blue/orange blobs */
.aurora-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora-orb { position: absolute; border-radius: 50%; filter: blur(70px); animation: aurora-float 18s ease-in-out infinite; }
.aurora-orb:nth-child(1) { width: 380px; height: 380px; background: rgba(14,165,233,.10); top: -80px; left: -80px; animation-delay: 0s; }
.aurora-orb:nth-child(2) { width: 300px; height: 300px; background: rgba(249,115,22,.08); top: 40%; right: -60px; animation-delay: -6s; }
.aurora-orb:nth-child(3) { width: 440px; height: 440px; background: rgba(14,165,233,.07); bottom: -120px; left: 28%; animation-delay: -12s; }
@keyframes aurora-float { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(20px,-14px) scale(1.03)} 66%{transform:translate(-14px,20px) scale(.97)} }

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats { background: var(--bg-secondary); }
.stats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-subtle); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.stats__item { background: #fff; padding: 28px 24px; text-align: center; transition: background var(--t-normal); }
.stats__item:hover { background: var(--bg-secondary); }
.stats__number { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; background: linear-gradient(135deg,var(--blue),var(--orange)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:6px; display:block; }
.stats__label { font-size: .9rem; color: var(--text-secondary); font-weight: 600; display: block; margin-bottom: 3px; }
.stats__sublabel { font-size: .75rem; color: var(--text-muted); }

/* ─── CARD BASE ───────────────────────────────────────────── */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 24px 22px;
  box-shadow: var(--shadow-xs); transition: all var(--t-normal);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(14,165,233,.25); }
.card--elevated { box-shadow: var(--shadow-sm); }
.card--elevated:hover { box-shadow: var(--shadow-lg); }

/* ─── CHALLENGE CARDS ─────────────────────────────────────── */
.challenges__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 14px; margin-top: 32px; }
.challenge-card {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
  padding: 22px 20px; position: relative; overflow: hidden;
  transition: all var(--t-normal); box-shadow: var(--shadow-xs);
}
.challenge-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--orange)); opacity: 0; transition: opacity var(--t-normal); }
.challenge-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(14,165,233,.2); }
.challenge-card:hover::before { opacity: 1; }
.challenge-card__icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 14px; }
.challenge-card__number { position: absolute; top: 14px; right: 16px; font-family: var(--font-mono); font-size: .65rem; color: var(--text-dim); letter-spacing: .08em; }
.challenge-card__title { font-family: var(--font-display); font-size: .975rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.challenge-card__desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* icon variants */
.icon-blue   { background: rgba(14,165,233,.12); color: var(--blue); }
.icon-orange { background: rgba(249,115,22,.12);  color: var(--orange); }
.icon-sky    { background: rgba(56,189,248,.12);  color: var(--blue-light); }
.icon-green  { background: rgba(16,185,129,.12);  color: var(--color-green); }
.icon-purple { background: rgba(139,92,246,.12);  color: var(--color-purple); }

/* Old aliases */
.icon-indigo { background: rgba(14,165,233,.12); color: var(--blue); }
.icon-violet { background: rgba(139,92,246,.12); color: var(--color-purple); }
.icon-cyan   { background: rgba(56,189,248,.12); color: var(--blue-light); }
.icon-pink   { background: rgba(249,115,22,.12); color: var(--orange); }

/* ─── TRANSFORMATION ──────────────────────────────────────── */
.transformation__journey { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 44px; position: relative; }
.transformation__journey::before { content: ''; position: absolute; top: 50px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--orange)); z-index: 0; }
.journey-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.journey-step__orb { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 16px; position: relative; background: #fff; border: 2px solid var(--border-subtle); box-shadow: var(--shadow-sm); transition: all var(--t-slow); }
.journey-step:hover .journey-step__orb { box-shadow: var(--shadow-md); border-color: var(--blue); }
.journey-step__num { position: absolute; top: -6px; right: -2px; width: 22px; height: 22px; background: linear-gradient(135deg,var(--blue),var(--orange)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: #fff; }
.journey-step__title { font-family: var(--font-display); font-size: .9rem; font-weight: 700; margin-bottom: 5px; color: var(--text-primary); }
.journey-step__desc { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ─── SERVICE CARDS ───────────────────────────────────────── */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 14px; }
.service-card {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
  padding: 22px 20px; position: relative; overflow: hidden;
  transition: all .3s var(--ease-smooth); cursor: none;
  box-shadow: var(--shadow-xs);
}
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--blue),var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-expo); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(14,165,233,.22); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__glow-border { display: none; } /* not needed in light mode */
.service-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 13px; transition: transform var(--t-normal); }
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-4deg); }
.service-card__title { font-family: var(--font-display); font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.service-card__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.service-card__arrow { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 700; color: var(--blue); transition: gap var(--t-fast); }
.service-card:hover .service-card__arrow { gap: 9px; }

/* ─── TECH UNIVERSE ───────────────────────────────────────── */
.tech-universe { height: 85vh; min-height: 500px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg-secondary); }
.tech-universe__canvas { position: absolute; inset: 0; z-index: 0; opacity: .6; }
.tech-universe__content { position: relative; z-index: 1; text-align: center; }
.tech-universe__orbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; max-width: 860px; margin-left: auto; margin-right: auto; }
.tech-orb { padding: 7px 17px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 100px; font-size: .8rem; font-weight: 600; color: var(--text-secondary); box-shadow: var(--shadow-xs); transition: all var(--t-normal); }
.tech-orb:hover { background: rgba(14,165,233,.08); border-color: var(--blue); color: var(--blue); box-shadow: var(--glow-blue); transform: scale(1.04); }

/* ─── SOLUTION CARDS ──────────────────────────────────────── */
.solutions__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.solution-card {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px;
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: all var(--t-normal); box-shadow: var(--shadow-xs);
}
.solution-card__num { font-family: var(--font-mono); font-size: 3rem; font-weight: 700; color: var(--bg-tertiary); line-height: 1; margin-bottom: 14px; transition: color var(--t-normal); }
.solution-card:hover .solution-card__num { color: rgba(14,165,233,.2); }
.solution-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(14,165,233,.25); }
.solution-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; color: var(--text-primary); }
.solution-card__desc { font-size: .82rem; color: var(--text-muted); line-height: 1.62; margin-bottom: 16px; }
.solution-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 4px 10px; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 100px; font-size: .7rem; font-weight: 600; color: var(--text-muted); transition: all var(--t-fast); }
.tag:hover { background: rgba(14,165,233,.1); color: var(--blue); border-color: rgba(14,165,233,.3); }

/* ─── PROCESS TIMELINE ────────────────────────────────────── */
.process__timeline { position: relative; margin-top: 44px; }
.process__line { position: absolute; left: 34px; top: 0; bottom: 0; width: 2px; background: var(--bg-tertiary); overflow: hidden; }
.process__line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(180deg,var(--blue),var(--orange)); transition: height .1s linear; box-shadow: 0 0 8px rgba(14,165,233,.4); }
.process__steps { padding-left: 84px; display: flex; flex-direction: column; gap: 20px; }
.process-step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.process-step__dot { position: absolute; left: 25px; width: 20px; height: 20px; background: #fff; border: 2px solid var(--border-light); border-radius: 50%; transition: all var(--t-normal); z-index: 1; }
.process-step.active .process-step__dot { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 14px rgba(14,165,233,.45); }
.process-step__num { font-family: var(--font-mono); font-size: .68rem; color: var(--text-dim); margin-top: 2px; white-space: nowrap; }
.process-step__content { padding: 16px 20px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; transition: all var(--t-normal); box-shadow: var(--shadow-xs); }
.process-step.active .process-step__content { border-color: rgba(14,165,233,.3); background: rgba(14,165,233,.03); box-shadow: var(--shadow-sm); }
.process-step__title { font-family: var(--font-display); font-size: .94rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.process-step__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.58; }

/* ─── WHY VBRS ────────────────────────────────────────────── */
.why-vbrs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why-vbrs__advantages { display: flex; flex-direction: column; gap: 10px; }
.advantage-item { display: flex; align-items: flex-start; gap: 13px; padding: 15px 18px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; transition: all var(--t-normal); box-shadow: var(--shadow-xs); }
.advantage-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: rgba(14,165,233,.22); }
.advantage-item__icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(14,165,233,.1); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; transition: all var(--t-normal); }
.advantage-item:hover .advantage-item__icon { background: rgba(14,165,233,.18); transform: scale(1.06); }
.advantage-item__title { font-family: var(--font-display); font-size: .9rem; font-weight: 700; margin-bottom: 2px; color: var(--text-primary); }
.advantage-item__desc { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }
.why-vbrs__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; padding: 20px 16px; text-align: center; box-shadow: var(--shadow-xs); transition: all var(--t-normal); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(14,165,233,.22); }
.stat-card__number { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; background: linear-gradient(135deg,var(--blue),var(--orange)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:5px; }
.stat-card__label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

/* ─── CASE STUDIES ────────────────────────────────────────── */
.case-studies__track-wrapper { position: relative; overflow: hidden; margin-top: 32px; }
.case-studies__track { display: flex; gap: 16px; width: max-content; }
.case-card { flex-shrink: 0; width: 400px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; overflow: hidden; transition: all var(--t-normal); cursor: none; box-shadow: var(--shadow-sm); }
.case-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: rgba(14,165,233,.25); }
.case-card__image { width: 100%; height: 170px; position: relative; overflow: hidden; }
.case-card__image-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; transition: transform .55s var(--ease-expo); }
.case-card:hover .case-card__image-bg { transform: scale(1.06); }
.case-card__image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,.6) 100%); }
.case-card__industry { position: absolute; bottom: 10px; left: 14px; padding: 4px 12px; background: var(--blue); border-radius: 100px; font-size: .7rem; font-weight: 700; color: #fff; }
.case-card__body { padding: 18px; }
.case-card__title { font-family: var(--font-display); font-size: .95rem; font-weight: 700; margin-bottom: 7px; line-height: 1.35; color: var(--text-primary); }
.case-card__desc { font-size: .78rem; color: var(--text-muted); line-height: 1.58; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.case-card__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.metric { text-align: center; padding: 9px 6px; background: var(--bg-secondary); border-radius: 8px; }
.metric__value { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--blue); display: block; }
.metric__label { font-size: .65rem; color: var(--text-muted); margin-top: 2px; }
.case-card__techs { display: flex; flex-wrap: wrap; gap: 5px; }
.case-card__tech { padding: 3px 9px; background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.18); border-radius: 100px; font-size: .68rem; font-weight: 600; color: var(--blue); }
.case-studies__controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border-light); color: var(--text-primary); font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all var(--t-normal); cursor: none; box-shadow: var(--shadow-xs); }
.slider-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--glow-blue); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-light); transition: all var(--t-normal); cursor: none; }
.slider-dot.active { width: 20px; border-radius: 3px; background: var(--blue); }

/* ─── LEADERSHIP ──────────────────────────────────────────── */
.leadership__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: center; }
.leadership__portrait { display: flex; flex-direction: column; align-items: center; position: relative; }
.portrait__frame { width: 100%; max-width: 320px; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; position: relative; background: linear-gradient(160deg,rgba(14,165,233,.12) 0%,rgba(249,115,22,.06) 60%,rgba(56,189,248,.1) 100%); box-shadow: 0 0 0 6px rgba(14,165,233,.15), var(--shadow-xl); transform-style: preserve-3d; transition: transform .1s linear; margin: 0 auto; }
.portrait__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.portrait__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.portrait__icon { font-size: 4rem; opacity: .5; }
.portrait__name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-align: center; color: var(--text-secondary); }
.portrait__spotlight { position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,30%),rgba(14,165,233,.15) 0%,transparent 55%); pointer-events: none; }
.portrait__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; align-items: center; }
.portrait__badge { padding: 8px 14px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 100px; font-size: .72rem; font-weight: 600; color: var(--text-secondary); box-shadow: var(--shadow-sm); white-space: nowrap; }
.leadership__role { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.leadership__name { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; letter-spacing: -.025em; margin-bottom: 16px; color: var(--text-primary); }
.leadership__bio { font-size: .9rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 18px; }
.leadership__quote { padding: 16px 20px; border-left: 3px solid var(--blue); background: rgba(14,165,233,.05); border-radius: 0 10px 10px 0; font-style: italic; font-size: .94rem; color: var(--text-secondary); line-height: 1.62; margin-bottom: 20px; }
.leadership__socials { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-secondary); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--text-muted); transition: all var(--t-normal); }
.social-link:hover { background: rgba(14,165,233,.1); border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--glow-blue); }

/* ─── TEAM CARDS ──────────────────────────────────────────── */
/* Scroll track: full-bleed width, hides scrollbar, left-pads to match container */
.team-scroll-track {
  margin-top: 48px;
}

/* Two-column responsive grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 680px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Individual card — horizontal: image left, info right */
.team-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-shadow: 0 4px 18px rgba(14,165,233,.10), 0 1px 4px rgba(0,0,0,.07);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(14,165,233,.18), 0 4px 12px rgba(0,0,0,.10);
  border-color: #93c5fd;
}

/* Photo strip — fixed-width left column */
.team-card__photo-wrap {
  position: relative;
  width: 110px;
  min-width: 110px;
  background: linear-gradient(160deg, #bfdbfe 0%, #7dd3fc 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.team-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .4s ease; }
.team-card:hover .team-card__photo { transform: scale(1.05); }
.team-card__initials {
  width: 100%; height: 100%; min-height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.team-card__photo-glow { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,.08) 100%); pointer-events: none; }

/* Info pane — right side */
.team-card__info { padding: 14px 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; flex: 1; min-width: 0; }
.team-card__name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.team-card__role { font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.team-card__bio { font-size: .79rem; color: #475569; line-height: 1.55; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.team-card__links { display: flex; gap: 8px; margin-top: 10px; }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials__carousel { position: relative; overflow: hidden; margin-top: 32px; }
.testimonials__track { display: flex; gap: 16px; transition: transform .55s var(--ease-expo); }
.testimonial-card { flex-shrink: 0; width: calc(33.333% - 11px); min-width: 260px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; padding: 22px 20px; position: relative; overflow: hidden; transition: all var(--t-normal); box-shadow: var(--shadow-xs); }
.testimonial-card::before { content: '"'; position: absolute; top: -6px; right: 14px; font-size: 5rem; font-family: Georgia,serif; color: rgba(14,165,233,.1); line-height: 1; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(14,165,233,.22); }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 10px; color: var(--orange); font-size: .8rem; }
.testimonial-card__text { font-size: .82rem; color: var(--text-muted); line-height: 1.68; margin-bottom: 16px; }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; }
.testimonial-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--orange)); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; border: 2px solid var(--bg-secondary); }
.testimonial-card__name { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--text-primary); }
.testimonial-card__position { font-size: .72rem; color: var(--text-muted); }
.testimonial-card__company { font-size: .7rem; color: var(--blue); margin-top: 1px; font-weight: 600; }

/* ─── INDUSTRIES ──────────────────────────────────────────── */
.industries__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.industry-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 18px 12px; text-align: center; box-shadow: var(--shadow-xs); transition: all var(--t-normal); cursor: none; }
.industry-card:hover { box-shadow: var(--shadow-md); transform: scale(1.03) translateY(-3px); border-color: rgba(14,165,233,.22); }
.industry-card__icon { font-size: 1.8rem; margin-bottom: 8px; display: block; transition: transform var(--t-normal); }
.industry-card:hover .industry-card__icon { transform: scale(1.12); }
.industry-card__name { font-size: .76rem; font-weight: 600; color: var(--text-muted); transition: color var(--t-fast); }
.industry-card:hover .industry-card__name { color: var(--blue); }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--bg-secondary); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact__info-title { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; letter-spacing: -.025em; margin-bottom: 12px; color: var(--text-primary); }
.contact__info-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.contact__details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail { display: flex; align-items: center; gap: 12px; }
.contact-detail__icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(14,165,233,.1); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.contact-detail__label { font-size: .68rem; color: var(--text-muted); margin-bottom: 1px; text-transform: uppercase; letter-spacing: .08em; }
.contact-detail__value { font-size: .875rem; font-weight: 600; color: var(--text-primary); }
.contact__form-wrapper { background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.contact__form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--blue),var(--orange)); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.form-input { padding: 10px 13px; background: var(--bg-secondary); border: 1.5px solid var(--border-subtle); border-radius: 9px; color: var(--text-primary); font-size: .875rem; transition: all var(--t-fast); cursor: none; }
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { outline: none; background: #fff; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,165,233,.12); }
.form-input--select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; background-color: var(--bg-secondary); }
.form-input--select option { background: #fff; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; padding: 13px; border-radius: 10px; background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff; font-size: .9rem; font-weight: 700; cursor: none; transition: all var(--t-normal); margin-top: 6px; box-shadow: 0 4px 16px rgba(14,165,233,.3); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,.45); }
.form-submit.loading { opacity: .65; pointer-events: none; }
.form-success { display: none; text-align: center; padding: 28px 16px; animation: fadeIn .5s ease; }
.form-success.show { display: block; }
.form-success__icon { font-size: 2.5rem; margin-bottom: 10px; display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* ─── NEWSLETTER ──────────────────────────────────────────── */
.newsletter { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #0891b2 100%); padding: 48px 0; }
.newsletter__inner { text-align: center; max-width: 460px; margin: 0 auto; }
.newsletter__inner .section__eyebrow { color: rgba(255,255,255,.85); }
.newsletter__inner .section__eyebrow::before { background: rgba(255,255,255,.6); }
.newsletter__inner .section__title { color: #fff; font-size: 1.5rem; }
.newsletter__inner p { color: rgba(255,255,255,.75); font-size: .875rem; }
.newsletter__form { display: flex; gap: 8px; margin-top: 20px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 5px 5px 5px 18px; }
.newsletter__input { flex: 1; background: transparent; color: #fff; font-size: .875rem; padding: 6px 0; cursor: none; }
.newsletter__input::placeholder { color: rgba(255,255,255,.55); }
.newsletter__btn { padding: 10px 22px; border-radius: 100px; background: linear-gradient(135deg,var(--orange),var(--orange-dark)); color: #fff; font-size: .82rem; font-weight: 700; cursor: none; transition: all var(--t-normal); flex-shrink: 0; box-shadow: 0 4px 12px rgba(249,115,22,.4); }
.newsletter__btn:hover { box-shadow: var(--glow-orange); transform: scale(1.03); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: #0f172a; border-top: none; padding-top: 48px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand-logo { display: flex; align-items: center; margin-bottom: 12px; }
.footer__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: opacity .2s;
}
.footer__logo-img:hover { opacity: 1; }
.footer__brand-desc { font-size: .8rem; color: #94a3b8; line-height: 1.65; max-width: 255px; margin-bottom: 18px; }
.footer__socials { display: flex; gap: 8px; }
.footer__social { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: #94a3b8; transition: all var(--t-normal); }
.footer__social:hover { background: rgba(14,165,233,.2); border-color: var(--blue); color: var(--blue-light); transform: translateY(-2px); }
.footer__col-title { font-family: var(--font-display); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #f0f9ff; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link { font-size: .82rem; color: #94a3b8; transition: color var(--t-fast); }
.footer__link:hover { color: var(--blue-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: .75rem; color: #64748b; }
.footer__legal { display: flex; gap: 16px; }
.footer__legal-link { font-size: .75rem; color: #64748b; transition: color var(--t-fast); }
.footer__legal-link:hover { color: #94a3b8; }

/* ─── BLOGS PAGE ──────────────────────────────────────────── */
.blogs-hero { padding: calc(var(--section-padding) + 72px) 0 var(--section-padding); position: relative; overflow: hidden; background: var(--bg-secondary); }
.blogs-hero__canvas { position: absolute; inset: 0; z-index: 0; opacity: .4; }
.blogs-hero__content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.blogs-hero__title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; color: var(--text-primary); }
.blogs-hero__subtitle { font-size: .95rem; color: var(--text-muted); line-height: 1.68; }

.blogs-filter { padding: 18px 0; background: #fff; border-bottom: 1px solid var(--border-subtle); position: sticky; top: 56px; z-index: 100; box-shadow: 0 2px 8px rgba(14,165,233,.06); }
.blogs-filter__inner { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.blogs-filter__inner::-webkit-scrollbar { display: none; }
.filter-btn { padding: 6px 16px; border-radius: 100px; font-size: .78rem; font-weight: 600; color: var(--text-muted); background: var(--bg-secondary); border: 1.5px solid var(--border-subtle); cursor: none; transition: all var(--t-normal); white-space: nowrap; flex-shrink: 0; }
.filter-btn:hover { color: var(--blue); border-color: rgba(14,165,233,.3); background: rgba(14,165,233,.05); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: var(--glow-blue); }

.featured-post { padding: var(--section-padding) 0; background: #fff; }
.featured-post__card { display: grid; grid-template-columns: 1.2fr 1fr; background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; overflow: hidden; transition: all var(--t-normal); cursor: none; box-shadow: var(--shadow-sm); }
.featured-post__card:hover { box-shadow: var(--shadow-xl); }
.featured-post__image { position: relative; overflow: hidden; min-height: 300px; background: linear-gradient(135deg,rgba(14,165,233,.15),rgba(249,115,22,.08)); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.featured-post__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,transparent 60%,rgba(255,255,255,.7) 100%); }
.featured-post__body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.featured-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px; background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.25); border-radius: 100px; font-size: .7rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; width: fit-content; }
.post-category { display: inline-block; padding: 4px 11px; border-radius: 100px; font-size: .7rem; font-weight: 700; background: rgba(249,115,22,.1); color: var(--orange); border: 1px solid rgba(249,115,22,.2); margin-bottom: 10px; }
.post-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 9px; color: var(--text-primary); transition: color var(--t-fast); }
.featured-post__card:hover .post-title { color: var(--blue); }
.post-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.62; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; align-items: center; gap: 14px; font-size: .75rem; color: var(--text-dim); margin-bottom: 14px; }
.read-more { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: var(--blue); transition: gap var(--t-fast); }
.read-more:hover { gap: 11px; }

.blogs-grid-section { padding: 40px 0 var(--section-padding); background: var(--bg-secondary); }
.blogs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.blog-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; transition: all var(--t-normal); cursor: none; box-shadow: var(--shadow-xs); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(14,165,233,.22); }
.blog-card__image { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; background: linear-gradient(135deg,rgba(14,165,233,.1),rgba(249,115,22,.06)); transition: transform .5s var(--ease-expo); overflow: hidden; }
.blog-card:hover .blog-card__image { transform: scale(1.04); }
.blog-card__body { padding: 16px 14px; }
.blog-card__title { font-family: var(--font-display); font-size: .9rem; font-weight: 700; margin-bottom: 6px; line-height: 1.35; color: var(--text-primary); transition: color var(--t-fast); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card:hover .blog-card__title { color: var(--blue); }
.blog-card__excerpt { font-size: .78rem; color: var(--text-muted); line-height: 1.58; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── BLOG DETAIL ─────────────────────────────────────────── */
.blog-detail { padding-top: 96px; background: #fff; }
.blog-detail__header { max-width: 740px; margin: 0 auto; padding: 0 var(--container-pad); text-align: center; margin-bottom: 32px; }
.blog-detail__title { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.8rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 16px; color: var(--text-primary); }
.blog-detail__meta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: var(--text-muted); margin-bottom: 20px; }
.blog-detail__featured-image { max-width: 860px; margin: 0 auto 40px; border-radius: 16px; overflow: hidden; aspect-ratio: 16/7; background: linear-gradient(135deg,rgba(14,165,233,.15),rgba(249,115,22,.08)); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.blog-detail__layout { display: grid; grid-template-columns: 1fr 270px; gap: 44px; max-width: 1060px; margin: 0 auto; padding: 0 var(--container-pad); }
.blog-detail__content { font-size: .95rem; line-height: 1.78; color: var(--text-secondary); }
.blog-detail__content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 12px; }
.blog-detail__content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin: 22px 0 9px; }
.blog-detail__content p { margin-bottom: 14px; }
.blog-detail__content strong { color: var(--text-primary); font-weight: 600; }
.blog-detail__content ul,.blog-detail__content ol { margin: 14px 0; padding-left: 20px; }
.blog-detail__content ul { list-style: disc; }
.blog-detail__content ol { list-style: decimal; }
.blog-detail__content li { margin-bottom: 6px; }
.blog-detail__content blockquote { margin: 22px 0; padding: 16px 20px; border-left: 3px solid var(--blue); background: rgba(14,165,233,.04); border-radius: 0 10px 10px 0; font-style: italic; font-size: 1rem; color: var(--text-secondary); }
.blog-detail__content pre { background: #0f172a; border-radius: 10px; padding: 18px; overflow-x: auto; margin: 16px 0; font-family: var(--font-mono); font-size: .82rem; color: var(--blue-light); }
.blog-detail__content code { font-family: var(--font-mono); font-size: .82em; background: rgba(14,165,233,.1); padding: 2px 6px; border-radius: 4px; color: var(--blue-dark); }
.blog-detail__content pre code { background: none; padding: 0; color: inherit; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 84px; height: fit-content; display: flex; flex-direction: column; gap: 12px; }
.sidebar-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 16px; box-shadow: var(--shadow-xs); }
.sidebar-card__title { font-family: var(--font-display); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-bottom: 11px; }
.toc-list { display: flex; flex-direction: column; gap: 3px; }
.toc-item { display: block; padding: 5px 10px; font-size: .78rem; color: var(--text-muted); border-radius: 7px; border-left: 2px solid transparent; transition: all var(--t-fast); }
.toc-item:hover,.toc-item.active { color: var(--blue); background: rgba(14,165,233,.07); border-left-color: var(--blue); }
.share-buttons { display: flex; gap: 7px; }
.share-btn { flex: 1; padding: 8px; border-radius: 8px; background: var(--bg-secondary); border: 1px solid var(--border-subtle); font-size: .76rem; font-weight: 600; color: var(--text-muted); text-align: center; transition: all var(--t-fast); cursor: none; }
.share-btn:hover { background: rgba(14,165,233,.08); border-color: var(--blue); color: var(--blue); }
.recent-list { display: flex; flex-direction: column; gap: 10px; }
.recent-item { display: flex; gap: 10px; align-items: center; cursor: none; transition: opacity var(--t-fast); }
.recent-item:hover { opacity: .8; }
.recent-item__image { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg,rgba(14,165,233,.15),rgba(249,115,22,.08)); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.recent-item__title { font-size: .76rem; font-weight: 600; line-height: 1.35; color: var(--text-primary); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-form { display: flex; gap: 6px; }
.search-input { flex: 1; padding: 8px 11px; background: var(--bg-secondary); border: 1.5px solid var(--border-subtle); border-radius: 9px; color: var(--text-primary); font-size: .82rem; cursor: none; transition: border-color var(--t-fast); }
.search-input:focus { border-color: var(--blue); outline: none; }
.search-input::placeholder { color: var(--text-dim); }
.search-btn { padding: 8px 12px; background: rgba(14,165,233,.1); border: 1.5px solid rgba(14,165,233,.2); border-radius: 9px; color: var(--blue); cursor: none; font-size: .78rem; font-weight: 600; transition: all var(--t-fast); }
.search-btn:hover { background: rgba(14,165,233,.18); }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-chip { padding: 3px 10px; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 100px; font-size: .7rem; font-weight: 600; color: var(--text-muted); cursor: none; transition: all var(--t-fast); }
.tag-chip:hover { background: rgba(14,165,233,.1); color: var(--blue); border-color: rgba(14,165,233,.3); }
.related-posts { padding: 48px 0; border-top: 1px solid var(--border-subtle); margin-top: 40px; background: var(--bg-secondary); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1100px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: 88vh; }
  .solutions__grid { grid-template-columns: repeat(2,1fr); }
  .transformation__journey { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .transformation__journey::before { display: none; }
  .industries__grid { grid-template-columns: repeat(4,1fr); }
  .blogs-grid { grid-template-columns: repeat(2,1fr); }
  .blog-detail__layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width:1024px) {
  .nav__links,.nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .why-vbrs__grid { grid-template-columns: 1fr; gap: 28px; }
  .leadership__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  :root { --section-padding: 32px; }
  .hero__title { font-size: clamp(2rem,7vw,3rem); }
  .challenges__grid,.services__grid { grid-template-columns: 1fr 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }
  .transformation__journey { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-card { width: calc(90vw - 32px); min-width: unset; }
  .blogs-grid { grid-template-columns: 1fr; }
  .featured-post__card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .process__steps { padding-left: 52px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact__form-wrapper { padding: 20px; }
  .newsletter__form { flex-direction: column; border-radius: 14px; padding: 12px; }
  .newsletter__btn { width: 100%; padding: 12px; border-radius: 9px; }
}
@media (max-width:480px) {
  :root { --container-pad: 14px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .challenges__grid,.services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .case-card { width: calc(90vw - 28px); }
}

/* ─── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.reveal,.reveal-left,.reveal-right,.reveal-scale { opacity: 1; transform: none; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.animate-float { animation: float 4s ease-in-out infinite; }
