/* ═══════════════════════════════════════
   THEME VARIABLES
═══════════════════════════════════════ */
[data-theme="dark"] {
  --ac:        #00f6b2;
  --ac-rgb:    0,246,178;
  --ac-dim:    rgba(0,246,178,.12);
  --bg:        #020d0a;
  --sf:        #061c1b;
  --sf2:       #050e0b;
  --tx-h:      #ffffff;
  --tx-s:      rgba(200,221,210,.65);
  --tx-d:      rgba(200,221,210,.4);
  --gl:        rgba(255,255,255,.04);
  --gl-bd:     rgba(255,255,255,.08);
  --card:      rgba(255,255,255,.03);
  --card-bd:   rgba(255,255,255,.06);
  --card-shd:  0 4px 32px rgba(0,0,0,.4);
  --hero-bg:   radial-gradient(ellipse 120% 80% at 60% -10%,#001a5e 0%,#020d0a 55%), radial-gradient(ellipse 60% 60% at 0% 100%,#061c1b 0%,transparent 60%);
  --btn-bg:    #00f6b2;
  --btn-fg:    #020d0a;
  --btn-shd:   rgba(0,246,178,.35);
  --ft:        #010806;
  --ft-col:    rgba(200,221,210,.25);
  --ft-bd:     rgba(0,246,178,.08);
  --cur:       #00f6b2;
  --cur-ring:  rgba(0,246,178,.5);
  --mosaic-shd: 0 32px 72px rgba(0,0,0,.5), 0 8px 24px rgba(0,0,0,.3);
  --mosaic-bd: rgba(0,246,178,.14);
  --s1: #020d0a; --s2: #061c1b; --s4: #050e0b;
  --s5: linear-gradient(165deg,#020d0a 40%,#0d2828 100%);
  --s6: #020d0a; --s8: radial-gradient(ellipse 100% 80% at 80% 50%,#0a2828 0%,#020d0a 60%); --s9: #020d0a;
}

[data-theme="light"] {
  --ac:        #00349a;
  --ac-rgb:    0,52,154;
  --ac-dim:    rgba(0,52,154,.1);
  --bg:        #f8faff;
  --sf:        #f0f6f2;
  --sf2:       #e8f0ff;
  --tx-h:      #0a1525;
  --tx-s:      #3a5449;
  --tx-d:      rgba(10,21,37,.5);
  --gl:        rgba(255,255,255,.9);
  --gl-bd:     rgba(0,52,154,.1);
  --card:      #ffffff;
  --card-bd:   rgba(0,52,154,.09);
  --card-shd:  0 4px 32px rgba(0,52,154,.09), 0 1px 4px rgba(0,52,154,.04);
  --hero-bg:   linear-gradient(150deg,#ddeeff 0%,#e8f7f0 45%,#f8faff 100%);
  --btn-bg:    #00349a;
  --btn-fg:    #ffffff;
  --btn-shd:   rgba(0,52,154,.35);
  --ft:        #0d3736;
  --ft-col:    rgba(255,255,255,.45);
  --ft-bd:     rgba(0,246,178,.1);
  --cur:       #00349a;
  --cur-ring:  rgba(0,52,154,.4);
  --mosaic-shd: 0 20px 56px rgba(0,52,154,.14), 0 4px 16px rgba(0,52,154,.07);
  --mosaic-bd: rgba(0,52,154,.12);
  --s1: #f8faff; --s2: #f0f6f2; --s4: #e8f0ff; --s5: #f0f6f2;
  --s6: #f8faff; --s8: #f8faff; --s9: #f0f6f2;
}

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
body { background: var(--bg); color: var(--tx-s); overflow-x: hidden; }
body:has(#v2-cursor) { cursor: none; }

/* ═══════════════════════════════════════
   SMOOTH THEME TRANSITION
═══════════════════════════════════════ */
html.switching *,
html.switching *::before,
html.switching *::after {
  transition:
    background-color .55s cubic-bezier(.4,0,.2,1),
    background .55s cubic-bezier(.4,0,.2,1),
    color .45s cubic-bezier(.4,0,.2,1),
    border-color .45s cubic-bezier(.4,0,.2,1),
    box-shadow .45s cubic-bezier(.4,0,.2,1),
    opacity .35s ease !important;
}

/* ═══════════════════════════════════════
   NAVBAR — LIGHT MODE OVERRIDES
═══════════════════════════════════════ */
/* Force white navbar background in light mode */
[data-theme="light"] .ts-navbar::after {
  height: 100% !important;
  background-color: rgba(248,250,255,.97) !important;
  box-shadow: 0 1px 0 rgba(0,52,154,.08), 0 8px 24px rgba(0,52,154,.06) !important;
  transition: background-color .4s ease, box-shadow .4s ease;
}
/* Nav links */
[data-theme="light"] .ts-navbar .navbar-nav .nav-link { color: #1a3040 !important; }
[data-theme="light"] .ts-navbar .navbar-nav .nav-link:hover { color: #00349a !important; }
/* Logo swap */
[data-theme="light"] .ts-navbar .navbar-brand.white { display: none !important; }
[data-theme="light"] .ts-navbar .navbar-brand.color { display: inline-block !important; }
/* CTA buttons */
[data-theme="light"] .ts-navbar .btn-outline-white {
  color: #00349a !important;
  border-color: rgba(0,52,154,.45) !important;
  background: transparent !important;
}
[data-theme="light"] .ts-navbar .btn-outline-white:hover {
  background: #00349a !important;
  color: #fff !important;
  border-color: #00349a !important;
}
[data-theme="light"] .ts-navbar .btn-primary-transparent {
  background: #00349a !important;
  color: #fff !important;
  border-color: #00349a !important;
}
[data-theme="light"] .ts-navbar .btn-primary-transparent:hover {
  background: #001f7a !important;
  border-color: #001f7a !important;
}
/* Language selector */
[data-theme="light"] .ts-navbar .select_location { color: #1a3040 !important; }
/* Hamburger icon */
[data-theme="light"] .ts-navbar .navbar-toggler .fa-bars { color: #1a3040 !important; }

/* ═══════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════ */
#v2-theme-btn {
  display: none; /* hidden by default on pages without design-v2.css */
}

/* show only when design-v2.css is active — !important beats inline style="display:none" */
body #v2-theme-btn {
  display: inline-flex !important;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1.5px solid rgba(var(--ac-rgb),.25);
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s, border-color .3s, box-shadow .3s;
  color: var(--ac); flex-shrink: 0; vertical-align: middle;
  position: relative; overflow: hidden;
}
body #v2-theme-btn:hover {
  transform: rotate(22deg) scale(1.12);
  background: var(--ac-dim);
  border-color: var(--ac);
  box-shadow: 0 0 20px rgba(var(--ac-rgb),.25);
}
body #v2-theme-btn svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  position: relative; z-index: 1;
}
/* ripple on click */
body #v2-theme-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--ac); opacity: 0; transform: scale(0);
  transition: transform .5s ease, opacity .5s ease;
}
body #v2-theme-btn.clicked::after { transform: scale(2.2); opacity: 0; transition: transform .5s ease, opacity .4s .1s ease; }

[data-theme="dark"] .v2-icon-moon  { display: none; }
[data-theme="light"] .v2-icon-sun  { display: none; }

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
#v2-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; }
[data-theme="dark"] #v2-cursor { mix-blend-mode: difference; }
[data-theme="light"] #v2-cursor { mix-blend-mode: normal; }
#v2-cursor-dot {
  width: 6px; height: 6px; background: var(--cur); border-radius: 50%;
  position: absolute; transform: translate(-50%,-50%);
}
#v2-cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--cur-ring); border-radius: 50%;
  position: absolute; transform: translate(-50%,-50%);
  transition: width .3s cubic-bezier(.4,0,.2,1), height .3s cubic-bezier(.4,0,.2,1), border-color .3s;
}
body:has(a:hover) #v2-cursor-ring,
body:has(button:hover) #v2-cursor-ring { width: 52px; height: 52px; border-color: var(--cur); }

/* ═══════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════ */
#v2-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg,#00349a,#00f6b2); width: 0%;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#v2-hero {
  min-height: 100vh;
  background: var(--hero-bg);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 3rem 4rem;
  transition: background .6s ease;
}
#v2-hero-canvas { position: absolute; inset: 0; opacity: .5; }
.v2-hero-grid-lines {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(to right, var(--ac) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ac) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  transition: opacity .5s ease;
}
.v2-hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: 0; transition: opacity .8s ease; }
[data-theme="light"] .v2-hero-blob { opacity: 1; }
.v2-hero-blob-1 { width: 700px; height: 550px; top: -15%; right: -5%; background: rgba(0,52,154,.09); }
.v2-hero-blob-2 { width: 500px; height: 400px; bottom: 0; left: -5%; background: rgba(0,246,178,.08); }

.v2-hero-content { position: relative; z-index: 2; max-width: 720px; }
.v2-hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(var(--ac-rgb),.28); background: rgba(255, 255, 255, .9);
  color: var(--ac); padding: .38rem 1.1rem; border-radius: 50px;
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 2rem; opacity: 0; animation: v2FromBottom .8s .2s cubic-bezier(.4,0,.2,1) forwards;
}
.v2-tag-ping { width: 6px; height: 6px; background: var(--ac); border-radius: 50%; animation: v2Ping 1.6s infinite; }
@keyframes v2Ping { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.6)} }

.v2-hero-title {
  font-size: clamp(3.2rem,7vw,6.5rem); font-weight: 200; line-height: 1.02;
  letter-spacing: -.03em; color: #ffffff;
  opacity: 0; animation: v2FromBottom .9s .4s cubic-bezier(.4,0,.2,1) forwards;
}
.v2-hero-title .v2-accent { color: var(--ac); font-weight: 300; font-style: italic; }
.v2-hero-title .v2-line2 { display: block; color: var(--tx-d); font-size: .82em; }
[data-theme="light"] .v2-hero-title .v2-line2 { color: var(--tx-h); }

/* Hero background image overlay */
.v2-hero-img-wrap {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
}
.v2-hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  opacity: .18; filter: saturate(.55) brightness(.65);
  transition: opacity .7s ease;
}
[data-theme="light"] .v2-hero-bg-img { opacity: 0.4; filter: saturate(.4) brightness(.9); }
/* Make sure hero content is above image */
#v2-hero-canvas { z-index: 2; }
.v2-hero-grid-lines { z-index: 3; }
.v2-hero-blob { z-index: 3; }
.v2-hero-content { z-index: 4; }
.v2-hero-data-panel { z-index: 4; }
.v2-hero-scroll-hint { z-index: 4; }

.v2-hero-sub {
  margin-top: 2rem; font-size: 1.15rem; line-height: 1.85; color: var(--tx-s); max-width: 540px;
  opacity: 0; animation: v2FromBottom .9s .6s cubic-bezier(.4,0,.2,1) forwards;
}
.v2-hero-actions {
  margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: v2FromBottom .9s .8s cubic-bezier(.4,0,.2,1) forwards;
}
.v2-btn-fill {
  background: var(--btn-bg); color: var(--btn-fg);
  padding: .9rem 2.4rem; border-radius: 50px; font-weight: 700; font-size: .88rem;
  text-decoration: none; border: none; cursor: pointer; letter-spacing: .03em;
  transition: box-shadow .35s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 0 40px var(--btn-shd);
}
.v2-btn-fill:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 48px var(--btn-shd); color: var(--btn-fg); text-decoration: none; }
.v2-btn-outline {
  background: rgba(255,255,255,.9); color: var(--ac);
  padding: .9rem 2.4rem; border-radius: 50px; font-weight: 500; font-size: .88rem;
  text-decoration: none; border: 1.5px solid rgba(var(--ac-rgb),.3); cursor: pointer;
  transition: border-color .3s, background .3s, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.v2-btn-outline:hover { border-color: var(--ac); background: rgba(var(--ac-rgb),.07); color: var(--ac); text-decoration: none; transform: translateY(-2px); }

/* hero data panel */
.v2-hero-data-panel {
  position: absolute; right: 3rem; top: 30%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 1rem;
  opacity: 0; animation: v2FromRight 1s .9s cubic-bezier(.4,0,.2,1) forwards;
}
.v2-data-card {
  background: rgba(255, 255, 255, .9); border: 1px solid rgba(var(--ac-rgb),.14);
  border-radius: 18px; padding: 1.25rem 1.6rem; min-width: 210px;
  backdrop-filter: blur(24px); box-shadow: var(--card-shd);
  transition: border-color .3s, background .3s, transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
[data-theme="light"] .v2-data-card { background: rgba(255,255,255,.9); }
.v2-data-card:hover { border-color: rgba(var(--ac-rgb),.4); transform: translateX(-4px); box-shadow: 0 8px 40px rgba(var(--ac-rgb),.12); }
.v2-data-card-label { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ac); opacity: .8; margin-bottom: .4rem; }
.v2-data-card-val { font-size: 2.2rem; font-weight: 200; color: #0a1525; letter-spacing: -.02em; }
.v2-data-card-unit { font-size: .72rem; color: #0a1525; margin-top: .2rem; }
.v2-data-sparkline { margin-top: .8rem; height: 32px; }
.v2-sparkline-svg { width: 100%; height: 100%; }
[data-theme="dark"] .v2-sparkline-svg { color: #00f6b2; }
[data-theme="light"] .v2-sparkline-svg { color: #00349a; }

.v2-hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--tx-d); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: 0; animation: v2FromBottom .8s 1.4s ease forwards;
}
.v2-scroll-mouse { width: 22px; height: 36px; border: 1.5px solid rgba(var(--ac-rgb),.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.v2-scroll-wheel { width: 3px; height: 7px; background: var(--ac); border-radius: 2px; animation: v2ScrollWheel 1.9s infinite; }
@keyframes v2ScrollWheel { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(13px)} }

/* ═══════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════ */
.v2-section { position: relative; overflow: hidden; transition: background .5s ease; }
.v2-container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; margin-top: 1rem;}
.v2-section-pad { padding: 8rem 0; }
.v2-section-pad-sm { padding: 5rem 0; }

/* Refined scroll-reveal animations */
.v2-reveal {
  opacity: 0; transform: translateY(40px) scale(.985);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.v2-reveal.in { opacity: 1; transform: none; }

.v2-from-left {
  opacity: 0; transform: translateX(-56px) scale(.985);
  transition: opacity .78s cubic-bezier(.4,0,.2,1), transform .78s cubic-bezier(.4,0,.2,1);
}
.v2-from-right {
  opacity: 0; transform: translateX(56px) scale(.985);
  transition: opacity .78s cubic-bezier(.4,0,.2,1), transform .78s cubic-bezier(.4,0,.2,1);
}
.v2-from-left.in, .v2-from-right.in { opacity: 1; transform: none; }

.v2-stagger .v2-s-item {
  opacity: 1; transform: translateY(32px) scale(.99);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.v2-stagger.in .v2-s-item:nth-child(1){opacity:1;transform:none;transition-delay:.00s}
.v2-stagger.in .v2-s-item:nth-child(2){opacity:1;transform:none;transition-delay:.08s}
.v2-stagger.in .v2-s-item:nth-child(3){opacity:1;transform:none;transition-delay:.16s}
.v2-stagger.in .v2-s-item:nth-child(4){opacity:1;transform:none;transition-delay:.24s}
.v2-stagger.in .v2-s-item:nth-child(5){opacity:1;transform:none;transition-delay:.32s}
.v2-stagger.in .v2-s-item:nth-child(6){opacity:1;transform:none;transition-delay:.40s}

/* Eyebrow with animated line */
.v2-section-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ac); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.v2-section-eyebrow::before {
  content: ''; display: block; height: 1.5px; background: var(--ac);
  width: 0; transition: width .8s cubic-bezier(.4,0,.2,1) .1s;
}
.v2-reveal.in .v2-section-eyebrow::before,
.v2-from-left.in .v2-section-eyebrow::before,
.v2-from-right.in .v2-section-eyebrow::before,
.v2-section-eyebrow { width: 28px; }
.v2-h-display {
  font-size: clamp(2.8rem,3.5vw,4.6rem); font-weight: 200; line-height: 1.08;
  letter-spacing: -.025em; color: var(--tx-h); transition: color .45s ease;
}
.v2-h-display .v2-em    { color: var(--ac); font-style: italic; }
.v2-h-display .v2-muted { color: var(--tx-d); }
.v2-body-text { font-size: 1.05rem; line-height: 1.88; color: var(--tx-s); transition: color .45s ease; font-weight: bold; }
.v2-body-text + .v2-body-text { margin-top: 1.1rem; }

/* ═══════════════════════════════════════
   PARALLAX STRIP (always dark)
═══════════════════════════════════════ */
.v2-parallax-strip { height: 260px; position: relative; overflow: hidden; }
.v2-parallax-strip-bg {
  position: absolute; inset: -20%; will-change: transform;
  background: linear-gradient(135deg,#0d3736 0%,#001a5e 60%,#061c1b 100%);
  display: flex; align-items: center; justify-content: center;
}
.v2-strip-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(to right,#00f6b2 1px,transparent 1px), linear-gradient(to bottom,#00f6b2 1px,transparent 1px);
  background-size: 60px 60px;
}
.v2-strip-text {
  position: relative; z-index: 2; font-size: clamp(1.4rem,3.5vw,2.8rem); font-weight: 200;
  color: rgba(255,255,255,.12); white-space: nowrap; letter-spacing: .08em;
  animation: v2Marquee 20s linear infinite;
}
@keyframes v2Marquee { from{transform:translateX(10%)} to{transform:translateX(-40%)} }

/* ═══════════════════════════════════════
   IMAGE MOSAIC — improved framing
═══════════════════════════════════════ */
#v2-what-we-do { background: var(--s1); }
.v2-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.v2-parallax-layer { will-change: transform; }

.v2-img-mosaic { position: relative; height: 490px; }

.v2-mosaic-a, .v2-mosaic-b {
  position: absolute; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--mosaic-bd);
  box-shadow: var(--mosaic-shd);
  transition: box-shadow .5s ease, transform .5s cubic-bezier(.4,0,.2,1), border-color .4s ease;
}
.v2-mosaic-a { width: 65%; height: 305px; top: 0; right: 0; }
.v2-mosaic-b { width: 56%; height: 245px; bottom: 0; left: 0; }

/* Image zoom on hover */
.v2-mosaic-a img, .v2-mosaic-b img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .75s cubic-bezier(.4,0,.2,1), filter .5s ease;
  filter: brightness(.92) saturate(1.05);
}
.v2-mosaic-a:hover img, .v2-mosaic-b:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}
.v2-mosaic-a:hover { box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 8px 24px rgba(0,0,0,.3); transform: translateY(-4px); }
[data-theme="light"] .v2-mosaic-a:hover { box-shadow: 0 24px 60px rgba(0,52,154,.2), 0 4px 16px rgba(0,52,154,.1); }
.v2-mosaic-b:hover { box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.3); transform: translateY(-3px); }
[data-theme="light"] .v2-mosaic-b:hover { box-shadow: 0 20px 48px rgba(0,52,154,.18), 0 4px 12px rgba(0,52,154,.08); }

/* Bottom-gradient overlay on every mosaic panel */
.v2-mosaic-a::after, .v2-mosaic-b::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 40%, transparent 70%);
  transition: opacity .4s ease;
}
[data-theme="light"] .v2-mosaic-a::after,
[data-theme="light"] .v2-mosaic-b::after {
  background: linear-gradient(to top, rgba(0,20,60,.4) 0%, rgba(0,20,60,.08) 45%, transparent 70%);
}
.v2-mosaic-a:hover::after, .v2-mosaic-b:hover::after { opacity: .7; }

/* Mosaic label is above the overlay */
.v2-mosaic-label {
  position: absolute; bottom: 1rem; left: 1.1rem; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.3); backdrop-filter: blur(8px);
  padding: .28rem .7rem; border-radius: 30px;
  border: 1px solid rgba(255,255,255,.15);
}

/* Floating badges */
.v2-floating-badge {
  position: absolute; z-index: 5;
  background: var(--gl); backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--ac-rgb),.22); border-radius: 16px; padding: .9rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.1);
  animation: v2Float 4.5s cubic-bezier(.4,0,.6,1) infinite;
}
[data-theme="light"] .v2-floating-badge {
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 32px rgba(0,52,154,.12), 0 2px 8px rgba(0,52,154,.06);
}
.v2-floating-badge-a { top: 1rem; left: 1.8rem; animation-delay: 0s; }
.v2-floating-badge-b { bottom: 2rem; right: -1.2rem; animation-delay: -2.2s; }
.v2-fb-val { font-size: 1.25rem; font-weight: 300; color: var(--ac); }
.v2-fb-lbl { font-size: .58rem; color: var(--tx-d); margin-top: .15rem; letter-spacing: .04em; }
@keyframes v2Float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Video button */
.v2-video-btn-wrap { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.2rem; }
.v2-video-btn {
  width: 56px; height: 56px; border-radius: 50%; background: var(--ac);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; flex-shrink: 0; position: relative;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  text-decoration: none;
}
[data-theme="dark"] .v2-video-btn { animation: v2PulseBtnD 2.8s infinite; }
[data-theme="light"] .v2-video-btn { animation: v2PulseBtnL 2.8s infinite; }
@keyframes v2PulseBtnD { 0%,100%{box-shadow:0 0 0 0 rgba(0,246,178,.4)} 50%{box-shadow:0 0 0 20px rgba(0,246,178,0)} }
@keyframes v2PulseBtnL { 0%,100%{box-shadow:0 0 0 0 rgba(0,52,154,.35)} 50%{box-shadow:0 0 0 20px rgba(0,52,154,0)} }
.v2-video-btn::before {
  content: ''; border-left: 15px solid var(--btn-fg);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 5px;
}
.v2-video-btn:hover { transform: scale(1.1); }
.v2-video-label { font-size: .82rem; color: var(--tx-d); }
.v2-video-label strong { display: block; color: var(--tx-h); font-weight: 500; margin-bottom: .1rem; }

/* ═══════════════════════════════════════
   OFFER
═══════════════════════════════════════ */
#v2-offer { background: var(--s2); }
.v2-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.v2-offer-title {
  background: linear-gradient(90deg, var(--ac) 0%, #00c0dc 55%, #1A6FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-offer-title .v2-em {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.v2-co2-meter {
  background: var(--card); border: 1px solid rgba(var(--ac-rgb),.15);
  border-radius: 26px; padding: 2rem 2.2rem; display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: var(--card-shd);
  transition: box-shadow .4s ease, transform .4s cubic-bezier(.4,0,.2,1);
}
.v2-co2-meter:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(var(--ac-rgb),.1), 0 4px 16px rgba(0,0,0,.12); }
[data-theme="light"] .v2-co2-meter { background: #fff; }
.v2-meter-header { display: flex; justify-content: space-between; align-items: center; }
.v2-meter-title { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ac); opacity: .75; }
.v2-meter-status { display: flex; align-items: center; gap: .45rem; font-size: .64rem; color: var(--ac); }
.v2-meter-status-dot { width: 6px; height: 6px; background: #00f6b2; border-radius: 50%; animation: v2Ping 1.5s infinite; }
.v2-meter-big { font-size: 4.8rem; font-weight: 200; color: var(--tx-h); letter-spacing: -.04em; line-height: 1; }
.v2-meter-big span { font-size: 3.1rem; color: var(--tx-d); }
.v2-meter-bar-track { height: 3px; background: rgba(var(--ac-rgb),.1); border-radius: 2px; }
.v2-meter-bar-fill {
  height: 3px; border-radius: 2px; width: 0%;
  background: linear-gradient(90deg,#00349a,#00f6b2);
  transition: width 2.2s cubic-bezier(.22,.68,0,1);
}
.v2-meter-bar-fill.active { width: 73%; }
.v2-meter-readings { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.v2-reading { text-align: center; padding: 1rem; border-radius: 14px; background: rgba(var(--ac-rgb),.04); border: 1px solid rgba(var(--ac-rgb),.08); }
.v2-reading-val { font-size: 1.5rem; font-weight: 300; color: var(--tx-h); }
.v2-reading-lbl { font-size: .65rem; color: var(--tx-d); letter-spacing: .06em; margin-top: .2rem; }

/* ═══════════════════════════════════════
   KPIs (always dark)
═══════════════════════════════════════ */
#v2-kpis {
  background: linear-gradient(160deg,#001a5e 0%,#020d0a 60%,#061c1b 100%);
  position: relative; padding: 8rem 0;
}
#v2-kpi-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .22; }
.v2-kpis-title {
  background: linear-gradient(90deg, #00f6b2 0%, #00e5ff 60%, #7eb8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-kpi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
.v2-kpi-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 26px; padding: 2rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
  transition: transform .45s cubic-bezier(.4,0,.2,1), border-color .35s, background .35s, box-shadow .35s;
  backdrop-filter: blur(12px);
}
.v2-kpi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(0,246,178,.6),transparent);
  transform: scaleX(0); transform-origin: center; transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.v2-kpi-card:hover::before { transform: scaleX(1); }
.v2-kpi-card:hover { transform: translateY(-8px); border-color: rgba(0,246,178,.28); background: rgba(0,246,178,.06); box-shadow: 0 24px 56px rgba(0,0,0,.3); }

.v2-kpi-ring-wrap { width: 80px; height: 80px; margin: 0 auto 1.2rem; position: relative; }
.v2-kpi-ring { transform: rotate(-90deg); }
.v2-kpi-ring-bg   { fill:none; stroke:rgba(255,255,255,.07); stroke-width:4; }
.v2-kpi-ring-fill { fill:none; stroke:#00f6b2; stroke-width:4; stroke-linecap:round; stroke-dasharray:220; stroke-dashoffset:220; transition:stroke-dashoffset 2.2s cubic-bezier(.22,.68,0,1); }
.v2-kpi-ring-fill.active { stroke-dashoffset: 55; }
.v2-kpi-icon-inner { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:1.5rem; }
.v2-kpi-number { font-size: 3rem; font-weight: 200; color: #fff; letter-spacing: -.03em; }
.v2-kpi-number .v2-unit { font-size: .95rem; color: rgba(200,221,210,.45); }
.v2-kpi-label   { font-size: .82rem; color: rgba(200,221,210,.55); margin-top: .5rem; letter-spacing: .05em; }

/* Measurement live counter card */
.v2-kpi-measure-card {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.75rem 2.5rem;
  background: rgba(0,246,178,.04);
  border: 1px solid rgba(0,246,178,.14);
  border-radius: 26px;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
  transition: border-color .35s, background .35s;
}
.v2-kpi-measure-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,246,178,.55), transparent);
}
.v2-kpi-measure-card:hover {
  border-color: rgba(0,246,178,.28);
  background: rgba(0,246,178,.06);
}
.v2-kpi-measure-left {
  display: flex; align-items: center; gap: 1.25rem; flex: 1; min-width: 0;
}
.v2-kpi-measure-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #00f6b2; flex-shrink: 0;
  animation: v2TcBlink 1.2s step-end infinite;
}
.v2-kpi-measure-info {
  display: flex; flex-direction: column; gap: .25rem;
}
.v2-kpi-measure-info strong {
  font-size: .7rem; font-weight: 700;
  color: rgba(0,246,178,.75); text-transform: uppercase; letter-spacing: .12em;
}
.v2-kpi-measure-info span {
  font-size: .82rem; color: rgba(200,221,210,.55); letter-spacing: .03em;
}
.v2-kpi-measure-right {
  text-align: right; flex-shrink: 0;
}
.v2-kpi-measure-count {
  font-size: 3rem; font-weight: 200; color: #fff;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
  line-height: 1;
}
.v2-kpi-measure-unit {
  font-size: .7rem; color: rgba(200,221,210,.4);
  text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem;
}

@media (max-width: 600px) {
  .v2-kpi-measure-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .v2-kpi-measure-right { text-align: left; }
  .v2-kpi-measure-count { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════
   OBJECTIVES
═══════════════════════════════════════ */
#v2-objectives { background: var(--s4); }
.v2-obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.v2-obj-list { display: flex; flex-direction: column; gap: 0; }
.v2-obj-item {
  border-top: 1px solid rgba(var(--ac-rgb),.09); padding: 1.8rem 1rem;
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.2rem; align-items: start;
  cursor: default;
  transition: background .3s ease, padding-left .3s ease, border-color .3s;
  border-radius: 0;
}
.v2-obj-item:last-child { border-bottom: 1px solid rgba(var(--ac-rgb),.09); }
.v2-obj-item:hover { background: rgba(var(--ac-rgb),.04); padding-left: 1.5rem; border-color: rgba(var(--ac-rgb),.2); }
.v2-obj-num { font-size: 1.68rem; font-weight: 800; letter-spacing: .12em; color: var(--ac); opacity: .7; padding-top: .2rem; }
.v2-obj-text { font-size: 1.02rem; line-height: 1.78; color: var(--tx-s); transition: color .3s; }
.v2-obj-text strong { color: var(--tx-h); font-weight: 600; }
.v2-obj-item:hover .v2-obj-text { color: var(--tx-h); }

.v2-tech-stack-visual { position: sticky; top: 10rem; height: fit-content; display: flex; flex-direction: column; gap: .85rem; }
.v2-tech-node {
  background: var(--card); border: 1px solid rgba(var(--ac-rgb),.1);
  border-radius: 18px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color .3s, transform .35s cubic-bezier(.4,0,.2,1), background .3s, box-shadow .3s;
  box-shadow: var(--card-shd);
}
.v2-tech-node:hover { border-color: rgba(var(--ac-rgb),.35); transform: translateX(8px); background: rgba(var(--ac-rgb),.04); box-shadow: 0 8px 32px rgba(var(--ac-rgb),.08); }
.v2-tech-node-icon {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  background: rgba(var(--ac-rgb),.09); border: 1px solid rgba(var(--ac-rgb),.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.v2-tech-node:hover .v2-tech-node-icon { background: rgba(var(--ac-rgb),.16); border-color: rgba(var(--ac-rgb),.35); }
.v2-tech-node-icon svg { width: 20px; height: 20px; stroke: var(--ac); fill: none; stroke-width: 1.6; stroke-linecap: round; }
.v2-tech-node-name { font-size: .85rem; font-weight: 600; color: var(--tx-h); transition: color .3s; }
.v2-tech-node-desc { font-size: .7rem; color: var(--tx-d); margin-top: .15rem; }

/* ═══════════════════════════════════════
   HOW WE ACHIEVE
═══════════════════════════════════════ */
#v2-achieve { background: var(--s5); }
.v2-achieve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.v2-timeline { position: relative; padding-left: 2rem; }
.v2-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--ac-rgb),.35) 20%, rgba(var(--ac-rgb),.35) 80%, transparent);
}
.v2-tl-item {
  position: relative; padding: 0 0 2.5rem 2rem;
  opacity: 0; transform: translateX(-24px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.v2-tl-item.in { opacity: 1; transform: none; }
.v2-tl-item:nth-child(1){transition-delay:.00s} .v2-tl-item:nth-child(2){transition-delay:.1s}
.v2-tl-item:nth-child(3){transition-delay:.2s} .v2-tl-item:nth-child(4){transition-delay:.3s}
.v2-tl-item:nth-child(5){transition-delay:.4s}
.v2-tl-dot {
  position: absolute; left: -2rem; top: .3rem; width: 10px; height: 10px; border-radius: 50%;
  background: #020d0a; border: 2px solid rgba(var(--ac-rgb),.4);
  transition: border-color .3s, box-shadow .3s, background .3s; transform: translateX(-4px);
}
[data-theme="light"] .v2-tl-dot { background: var(--bg); }
.v2-tl-item:hover .v2-tl-dot { border-color: var(--ac); box-shadow: 0 0 14px rgba(var(--ac-rgb),.45); background: rgba(var(--ac-rgb),.1); }
.v2-tl-num   { font-size: 1.25rem; font-weight: 800; letter-spacing: .14em; color: var(--ac); opacity: .65; margin-bottom: .4rem; }
.v2-tl-title { font-size: 1.05rem; font-weight: 600; color: var(--tx-h); margin-bottom: .5rem; transition: color .3s; }
.v2-tl-body  { font-size: .95rem; line-height: 1.78; color: var(--tx-d); }
.v2-tl-item:hover .v2-tl-title { color: var(--ac); }

/* ═══════════════════════════════════════
   DIFFERENT (TECH CARDS)
═══════════════════════════════════════ */
#v2-different { background: var(--s6); }
.v2-diff-header { text-align: center; margin-bottom: 4rem; }
.v2-diff-title {
  background: linear-gradient(90deg, var(--ac) 0%, #00c0dc 55%, #1A6FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-diff-sub-title {
  color: var(--ac);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 1.5rem 0 1rem;
}
.v2-diff-cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.v2-diff-card {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 26px; padding: 2.4rem;
  position: relative; overflow: hidden;
  transition: transform .45s cubic-bezier(.4,0,.2,1), border-color .35s, background .35s, box-shadow .35s;
  cursor: default; box-shadow: var(--card-shd);
  transform-style: preserve-3d;
}
/* shimmer line on top */
.v2-diff-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,#00349a,#00f6b2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.v2-diff-card:hover::after { transform: scaleX(1); }
.v2-diff-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(var(--ac-rgb),.28);
  background: rgba(var(--ac-rgb),.03);
  box-shadow: 0 24px 56px rgba(var(--ac-rgb),.1), 0 4px 12px rgba(0,0,0,.12);
}
.v2-diff-icon {
  width: 54px; height: 54px; border-radius: 17px; margin-bottom: 1.4rem;
  background: rgba(var(--ac-rgb),.08); border: 1px solid rgba(var(--ac-rgb),.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, border-color .35s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.v2-diff-card:hover .v2-diff-icon { background: rgba(var(--ac-rgb),.15); border-color: rgba(var(--ac-rgb),.4); transform: scale(1.08) rotate(-3deg); }
.v2-diff-icon svg { width: 24px; height: 24px; stroke: var(--ac); fill: none; stroke-width: 1.6; stroke-linecap: round; }
.v2-diff-card h3  { font-size: 1.15rem; font-weight: 600; color: var(--tx-h); margin-bottom: .8rem; transition: color .3s; }
.v2-diff-card:hover h3 { color: var(--ac); }
.v2-diff-card p   { font-size: .95rem; line-height: 1.78; color: var(--tx-s); margin-bottom: 0; }
.v2-diff-card strong { color: var(--tx-h); font-weight: 500; }

/* ═══════════════════════════════════════
   BUREAU VERITAS
═══════════════════════════════════════ */
#v2-bureau { padding: 5rem 0; }
[data-theme="dark"] #v2-bureau { background: linear-gradient(135deg,#061c1b,#020d0a); }
[data-theme="light"] #v2-bureau { background: #e8f0ff; }
.v2-bureau-wrap {
  border: 1px solid rgba(var(--ac-rgb),.14); border-radius: 26px;
  padding: 4rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  backdrop-filter: blur(16px); position: relative; overflow: hidden;
  transition: box-shadow .4s ease;
}
[data-theme="dark"] .v2-bureau-wrap { background: rgba(0,246,178,.025); }
[data-theme="light"] .v2-bureau-wrap { background: rgba(255,255,255,.75); box-shadow: 0 8px 48px rgba(0,52,154,.1); }
.v2-bureau-wrap::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--ac-rgb),.07) 0%, transparent 70%);
}
.v2-bureau-cert {
  width: 180px; border-radius: 20px; aspect-ratio: 1;
  background: rgba(var(--ac-rgb),.05); border: 1px solid rgba(var(--ac-rgb),.18);
  padding: 1.5rem; display: flex; align-items: center; justify-content: center;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  overflow: hidden;
}
.v2-bureau-cert img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.v2-bureau-cert:hover { transform: scale(1.06) rotate(-3deg); box-shadow: 0 20px 56px rgba(var(--ac-rgb),.2); }
.v2-bureau-cert:hover img { transform: scale(1.05); }


/* ═══════════════════════════════════════
  ICR
═══════════════════════════════════════ */
#v2-icr { padding: 5rem 0; }
[data-theme="dark"] #v2-icr { background: linear-gradient(135deg,#061c1b,#020d0a); }
[data-theme="light"] #v2-icr { background: #e8f0ff; }
.v2-icr-wrap {
  border: 1px solid rgba(var(--ac-rgb),.14); border-radius: 26px;
  padding: 4rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  backdrop-filter: blur(16px); position: relative; overflow: hidden;
  transition: box-shadow .4s ease;
}
[data-theme="dark"] .v2-icr-wrap { background: rgba(0,246,178,.025); }
[data-theme="light"] .v2-icr-wrap { background: rgba(255,255,255,.75); box-shadow: 0 8px 48px rgba(0,52,154,.1); }
.v2-icr-wrap::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--ac-rgb),.07) 0%, transparent 70%);
}
.v2-icr-cert {
  width: 180px; border-radius: 20px; aspect-ratio: 1;
  background: rgba(var(--ac-rgb),.05); border: 1px solid rgba(var(--ac-rgb),.18);
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  overflow: hidden;
}
.v2-icr-cert img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.v2-icr-cert:hover { transform: scale(1.06) rotate(-3deg); box-shadow: 0 20px 56px rgba(var(--ac-rgb),.2); }
.v2-icr-cert:hover img { transform: scale(1.05); }

/* ── Combined certifiers section (ICR + TÜV) ── */
#v2-certifiers { padding: 5rem 0; }
[data-theme="dark"] #v2-certifiers { background: linear-gradient(135deg,#061c1b,#020d0a); }
[data-theme="light"] #v2-certifiers { background: #e8f0ff; }

.v2-certs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.75rem; align-items: stretch;
}

/* ── Card container ── */
.v2-cert-card {
  display: flex; flex-direction: column;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(var(--ac-rgb),.14);
  transition: transform .35s cubic-bezier(.34,1.46,.64,1), box-shadow .35s ease, border-color .3s;
  backdrop-filter: blur(16px);
}
[data-theme="dark"] .v2-cert-card { background: rgba(255,255,255,.03); }
[data-theme="light"] .v2-cert-card { background: #fff; box-shadow: 0 6px 36px rgba(0,52,154,.09); }
.v2-cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--ac-rgb),.32);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

/* ── Logo zone (top, full-width) ── */
.v2-cert-card-logo {
  position: relative; overflow: hidden;
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg,#012b26 0%,#023a30 55%,#01231c 100%);
}
.v2-cert-card-tuv .v2-cert-card-logo {
  background: linear-gradient(140deg,#061540 0%,#0c2a6e 55%,#04102e 100%);
}

/* decorative radial glow blobs */
.v2-cert-card-logo-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.v2-cert-card-logo-bg::before,
.v2-cert-card-logo-bg::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,246,178,.18) 0%, transparent 65%);
}
.v2-cert-card-logo-bg::before { width: 280px; height: 280px; top: -80px; left: -60px; }
.v2-cert-card-logo-bg::after  { width: 220px; height: 220px; bottom: -70px; right: -50px; opacity: .7; }
.v2-cert-card-tuv .v2-cert-card-logo-bg::before,
.v2-cert-card-tuv .v2-cert-card-logo-bg::after {
  background: radial-gradient(circle, rgba(56,142,230,.22) 0%, transparent 65%);
}

.v2-cert-card-logo img {
  position: relative; z-index: 1;
  max-height: 172px; max-width: 72%; object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)) brightness(1.08);
  transition: transform .4s cubic-bezier(.34,1.46,.64,1), filter .4s ease;
}
.v2-cert-card:hover .v2-cert-card-logo img {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.55)) brightness(1.15);
}

/* ── Badge pill (bottom-right of logo zone) ── */
.v2-cert-card-badge {
  position: absolute; bottom: 14px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px 5px 9px;
  border-radius: 100px;
  background: rgba(0,246,178,.15); border: 1px solid rgba(0,246,178,.4);
  color: #00f6b2; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.v2-cert-card-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.v2-cert-card-badge-blue {
  background: rgba(56,142,230,.16); border-color: rgba(56,142,230,.45); color: #64b5f6;
}

/* ── Body (text below logo) ── */
.v2-cert-card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex; flex-direction: column; flex: 1;
}
.v2-cert-card-body .v2-h-display { margin-bottom: .85rem; }
.v2-cert-title {
  background: linear-gradient(90deg, var(--ac) 0%, #00c0dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-cert-title-blue {
  background: linear-gradient(90deg, #4da6ff 0%, #1A6FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Tag pills ── */
.v2-cert-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.v2-cert-tag {
  display: inline-flex; align-items: center;
  font-family: 'Space Mono','Courier New',monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  color: var(--ac); border: 1px solid rgba(var(--ac-rgb),.3);
  background: rgba(var(--ac-rgb),.06); border-radius: 100px;
  padding: 3px 11px;
}

@media (max-width: 900px) {
  .v2-certs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .v2-cert-card-body { padding: 1.4rem 1.4rem 1.6rem; }
  .v2-cert-card-logo { min-height: 160px; }
}

/* ═══════════════════════════════════════
   STANDARD
═══════════════════════════════════════ */
#v2-standard { background: var(--s8); }
.v2-standard-title {
  background: linear-gradient(90deg, var(--ac) 0%, #00c0dc 55%, #1A6FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-standard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }

.v2-drone-visual { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.v2-drone-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(var(--ac-rgb),.14);
  animation: v2Expand 3.2s cubic-bezier(.4,0,.2,1) infinite;
}
.v2-drone-ring:nth-child(1){width:200px;height:200px;animation-delay:0s}
.v2-drone-ring:nth-child(2){width:310px;height:310px;animation-delay:.9s}
.v2-drone-ring:nth-child(3){width:420px;height:420px;animation-delay:1.8s}
@keyframes v2Expand { 0%{opacity:.65;transform:scale(.65)} 100%{opacity:0;transform:scale(1.05)} }
.v2-drone-center {
  position: relative; z-index: 2; text-align: center;
  border: 1px solid rgba(var(--ac-rgb),.24); border-radius: 50%;
  width: 148px; height: 148px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  backdrop-filter: blur(16px);
  transition: box-shadow .4s ease, border-color .4s ease;
}
[data-theme="dark"] .v2-drone-center { background: rgba(2,13,10,.92); }
[data-theme="light"] .v2-drone-center { background: rgba(255,255,255,.95); box-shadow: 0 8px 40px rgba(0,52,154,.12); }
.v2-drone-center:hover { box-shadow: 0 0 40px rgba(var(--ac-rgb),.25); border-color: var(--ac); }
.v2-drone-img {
  position: relative; z-index: 3; width: 120px;
  margin-top: -165px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.4));
  animation: v2Float 5s ease-in-out infinite;
}
.v2-drone-center-val { font-size: 2.6rem; font-weight: 200; color: var(--ac); }
.v2-drone-center-lbl { font-size: .68rem; color: var(--tx-d); letter-spacing: .08em; line-height: 1.5; }

/* ═══════════════════════════════════════
   INVESTMENT
═══════════════════════════════════════ */
#v2-invest { background: var(--s9); }
.v2-invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.v2-invest-quote {
  border-left: 2px solid var(--ac); padding: 1.6rem 2rem; margin-top: 2.5rem;
  background: rgba(var(--ac-rgb),.04); border-radius: 0 20px 20px 0;
  transition: background .3s, border-color .3s;
}
.v2-invest-quote:hover { background: rgba(var(--ac-rgb),.08); }
.v2-invest-quote p { font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--tx-h); line-height: 1.65; opacity: .88; margin: 0; }
.v2-sensor-viz { position: relative; height: 420px; width: 100%; }
#v2-sensor-canvas { position: absolute; inset: 0; }

/* ═══════════════════════════════════════
   ORGANIC IMAGE COMPOSE SYSTEM
═══════════════════════════════════════ */
/* Primary + secondary stacked — matches original ts-cover organic feel */
.v2-img-compose {
  position: relative;
  padding-bottom: 5.5rem;
}
.v2-img-compose.v2-compose-right {
  padding-bottom: 5.5rem;
  padding-right: 1.5rem;
}

/* Primary: 80% width, dominant (on top) */
.v2-img-primary {
  display: block; width: 80%; height: auto;
  margin-left: auto; /* right-align; secondary will emerge from bottom-left */
  border-radius: 4rem 4rem 4rem .75rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.48), 0 6px 20px rgba(0,0,0,.22);
  position: relative; z-index: 3;
  transition: transform .6s cubic-bezier(.4,0,.2,1), box-shadow .5s ease;
}
/* Compose-right: primary left-aligned, shape mirrored */
.v2-img-compose.v2-compose-right .v2-img-primary {
  margin-left: 0;
  border-radius: 4rem 4rem .75rem 4rem;
}
[data-theme="light"] .v2-img-primary {
  box-shadow: 0 16px 48px rgba(0,52,154,.2), 0 4px 12px rgba(0,52,154,.1);
  border: 1px solid rgba(0,52,154,.1);
}
.v2-img-compose:hover .v2-img-primary { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(0,0,0,.54); }
[data-theme="light"] .v2-img-compose:hover .v2-img-primary { box-shadow: 0 24px 64px rgba(0,52,154,.26); }

/* Secondary: 52% wide, behind primary — peeks from bottom corner */
.v2-img-secondary {
  display: block; width: 52%; height: auto;
  border-radius: 4rem 4rem .75rem 4rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.44), 0 4px 14px rgba(0,0,0,.22);
  position: absolute; bottom: 0; left: 0; z-index: 1;
  border: 2.5px solid rgba(var(--ac-rgb),.22);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
[data-theme="light"] .v2-img-secondary {
  box-shadow: 0 12px 36px rgba(0,52,154,.18), 0 3px 10px rgba(0,52,154,.08);
  border: 2px solid rgba(0,52,154,.15);
}
.v2-img-compose:hover .v2-img-secondary { transform: translate(-4px, 4px); }

/* Right variant: secondary bottom-right, shape mirrored */
.v2-img-compose.v2-compose-right .v2-img-secondary {
  left: auto; right: 0;
  border-radius: 4rem 4rem 4rem .75rem;
}
.v2-img-compose.v2-compose-right:hover .v2-img-secondary { transform: translate(4px, 4px); }

/* Tertiary image (depth layer, between secondary and primary) */
.v2-img-tertiary {
  display: block; width: 36%; height: auto;
  border-radius: 3rem 3rem .5rem 3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  position: absolute; top: 8%; left: 0; z-index: 2;
  border: 2px solid rgba(var(--ac-rgb),.08);
  opacity: .7;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
[data-theme="light"] .v2-img-tertiary { box-shadow: 0 6px 20px rgba(0,52,154,.1); border: 2px solid rgba(0,52,154,.08); }

/* GIF compose: two GIFs side by side at corners (matches ts-cover-card) */
.v2-gif-compose {
  position: relative;
  min-height: 460px;
}
.v2-gif-left  { position: absolute; left: 0; bottom: 0; width: 60%; z-index: 1; }
.v2-gif-right { position: absolute; right: 0; top: 0;   width: 62%; z-index: 2; }
.v2-gif-left img {
  display: block; width: 100%; height: auto;
  border-radius: 4rem 4rem 4rem .75rem;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.45));
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.v2-gif-right img {
  display: block; width: 100%; height: auto;
  border-radius: 4rem 4rem .75rem 4rem;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.45));
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.v2-gif-compose:hover .v2-gif-left  img { transform: translate(-3px, 3px); }
.v2-gif-compose:hover .v2-gif-right img { transform: translate(3px, -3px); }
[data-theme="light"] .v2-gif-left img,
[data-theme="light"] .v2-gif-right img { filter: drop-shadow(0 16px 28px rgba(0,52,154,.2)); }

/* Drone card — organic layout matching ts-cover-card.cover-position-drone */
.v2-drone-card {
  position: relative;
  min-height: 500px;
}
.v2-dc-main {
  position: absolute; width: 74%; right: 0; top: 0; z-index: 2;
}
.v2-dc-main img {
  display: block; width: 100%; height: auto;
  border-radius: 4rem 4rem 4rem .75rem;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.44));
  transform: rotate(-4deg);
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.v2-drone-card:hover .v2-dc-main img { transform: rotate(-2deg) translateY(-8px); }
.v2-dc-scan {
  position: absolute; width: 62%; right: 0; bottom: 0; z-index: 3;
  transform: translateX(1.5rem);
}
.v2-dc-scan img {
  display: block; width: 100%; height: auto;
  border-radius: 4rem 4rem .75rem 4rem;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.38));
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.v2-drone-card:hover .v2-dc-scan img { transform: translateX(1.5rem) translate(3px, -4px); }
[data-theme="light"] .v2-dc-main img,
[data-theme="light"] .v2-dc-scan img { filter: drop-shadow(0 16px 28px rgba(0,52,154,.22)); }

/* Offer image stack */
.v2-img-stack { display: flex; flex-direction: column; gap: .9rem; }
.v2-img-stack-main { height: 210px; }
.v2-img-stack-sub { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.v2-img-stack-sub .v2-section-img-panel { height: 130px; }

/* Section image panel (for top banners in standard, bureau etc) */
.v2-section-img-panel {
  position: relative; overflow: hidden; border-radius: 22px;
  border: 1px solid var(--mosaic-bd);
  box-shadow: var(--mosaic-shd);
  transition: box-shadow .5s ease, transform .45s cubic-bezier(.4,0,.2,1);
  margin-bottom: 0.85rem;
}
.v2-section-img-panel:hover { transform: translateY(-4px); }
.v2-section-img-panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .75s cubic-bezier(.4,0,.2,1), filter .5s ease;
  filter: brightness(.9) saturate(1.05);
}
.v2-section-img-panel:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.1); }
.v2-section-img-panel::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.1) 45%, transparent 70%);
  z-index: 1; transition: opacity .4s ease;
}

.v2-section-img-panel-2 {
  position: relative; overflow: hidden; border-radius: 22px;
  border: 1px solid var(--mosaic-bd);
  box-shadow: var(--mosaic-shd);
  transition: box-shadow .5s ease, transform .45s cubic-bezier(.4,0,.2,1);
}
.v2-section-img-panel-2:hover { transform: translateY(-4px); }
.v2-section-img-panel-2 img {
  width: 100%; height: 100%; object-fit: none; display: block;
  transition: transform .75s cubic-bezier(.4,0,.2,1), filter .5s ease;
  filter: brightness(.9) saturate(1.05);
}
.v2-section-img-panel-2:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.1); }
.v2-section-img-panel-2::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.1) 45%, transparent 70%);
  z-index: 1; transition: opacity .4s ease;
}
[data-theme="light"] .v2-section-img-panel::after {
  background: linear-gradient(to top, rgba(0,20,60,.38) 0%, rgba(0,20,60,.06) 50%, transparent 70%);
}
.v2-section-img-panel .v2-img-caption {
  position: absolute; bottom: 1.1rem; left: 1.2rem; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.9); background: rgba(0,0,0,.32); backdrop-filter: blur(8px);
  padding: .3rem .8rem; border-radius: 30px; border: 1px solid rgba(255,255,255,.15);
}
.v2-section-img-panel .v2-img-badge {
  position: absolute; z-index: 2; top: 1.2rem; right: 1.2rem;
  background: rgba(0,0,0,.45); backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--ac-rgb),.3); border-radius: 14px;
  padding: .7rem 1rem;
}
[data-theme="light"] .v2-section-img-panel .v2-img-badge { background: rgba(255,255,255,.88); }
.v2-img-badge-val { font-size: 1.2rem; font-weight: 300; color: var(--ac); line-height: 1; }
.v2-img-badge-lbl { font-size: .58rem; color: rgba(255,255,255,.65); margin-top: .2rem; letter-spacing: .06em; }
[data-theme="light"] .v2-img-badge-lbl { color: var(--tx-d); }

/* ═══════════════════════════════════════
   EDDY STATION — GEO-POSITIONED BADGES
═══════════════════════════════════════ */

/* Override panel defaults for the station infographic */
.v2-eddy-station { cursor: default; }
.v2-eddy-station img {
  width: 100%; height: auto;
  object-fit: initial; filter: none;
  display: block;
}
.v2-eddy-station:hover { transform: none; }
.v2-eddy-station:hover img { transform: none; filter: none; }

/* SVG arrow overlay — preserveAspectRatio="none" maps 0-100 coords to % of container */
.v2-eddy-arrows {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}

/* Per-sensor badge positions */
.v2-eddy-station .v2-img-badge {
  min-width: 105px; max-width: 145px;
  padding: .55rem .8rem;
}
.v2-eddy-station .v2-img-badge.v2-eddy-badge--co2      { top: 7%;  left: 35%;  right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--par      { top: 10%;  left: 51%; right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--wind     { top: 17%; left: 22%;  right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--netrad   { top: 32%; left: 71%; right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--temp     { top: 49%; left: 22%;  right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--precip   { top: 44%; left: 71%; right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--soilheat { top: 64%; left: 79%;  right: auto; }
.v2-eddy-station .v2-img-badge.v2-eddy-badge--soilwater { top: 63%; left: 3%;  right: auto; }

/* Mobile stat grid (shown instead of overlay on small screens) */
.v2-eddy-mobile-grid { display: none; }
.v2-eddy-stat {
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: .75rem; padding: .65rem .9rem;
}
.v2-eddy-stat .v2-img-badge-val { font-size: 1.15rem; }
.v2-eddy-stat .v2-img-badge-lbl { font-size: .6rem; }

/* Tablet: shrink badges slightly */
@media (max-width: 900px) {
  .v2-eddy-station .v2-img-badge { min-width: 86px; max-width: 115px; padding: .42rem .6rem; }
  .v2-eddy-station .v2-img-badge .v2-img-badge-val { font-size: 1rem; }
}

/* Mobile: hide overlay, show grid below */
@media (max-width: 599px) {
  .v2-eddy-station .v2-img-badge,
  .v2-eddy-arrows { display: none; }
  .v2-eddy-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
    margin-top: .75rem;
  }
}

/* ═══════════════════════════════════════
   TECHNOLOGY SECTION
═══════════════════════════════════════ */
.v2-tech-section { background: var(--sf2); }

/* ── Header ── */
.v2-tech-hd { text-align: center; }
.v2-tech-title {
  background: linear-gradient(90deg, var(--ac) 0%, #00c0dc 50%, #1A6FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-tech-sub-title { color: var(--ac); }
.v2-tech-hd p { color: var(--tx-s); }

/* ── Breaking Paradigms section break ── */
.v2-paradigm-break {
  text-align: center;
  margin: 6rem 0 3.5rem;
  padding: 0 1rem;
}
.v2-paradigm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ac);
  opacity: .8;
  margin-bottom: 1.1rem;
}
.v2-paradigm-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ac);
  opacity: .6;
  flex-shrink: 0;
}
.v2-paradigm-title {
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  line-height: 1.1;
  margin: 0 auto .1rem;
}
.v2-paradigm-rule {
  width: 56px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ac), #1A6FDB);
  margin: 1.25rem auto 1.5rem;
}
.v2-paradigm-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--tx-s);
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .v2-paradigm-break { margin: 4rem 0 2.5rem; }
  .v2-paradigm-rule  { width: 40px; }
}

/* ── 3-column capability pillars (legacy, kept for reference) ── */
.v2-tech-pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

/* ── Three Solutions Grid ── */
/* ── Scoped colour tokens — one set per column variant ── */
.v2-sol-tech    { --sol-c: #00f6b2; --sol-r: 0,246,178; }
.v2-sol-method  { --sol-c: #4da6ff; --sol-r: 30,136,229; }
.v2-sol-finance { --sol-c: #f0b429; --sol-r: 224,168,32; }

.v2-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; align-items: start;
}

/* ── Card shell ── */
.v2-sol-col {
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--sol-r), .2);
  background: linear-gradient(155deg, rgba(var(--sol-r),.07) 0%, var(--card) 42%);
  padding: 2rem 1.75rem 2.25rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: box-shadow .38s ease, border-color .3s, transform .38s cubic-bezier(.34,1.3,.64,1);
  position: relative; overflow: hidden;
}

/* top accent bar */
.v2-sol-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sol-c) 0%, rgba(var(--sol-r),.15) 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

/* decorative glow blob */
.v2-sol-col::after {
  content: '';
  position: absolute; top: -70px; right: -70px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--sol-r),.13) 0%, transparent 65%);
  pointer-events: none;
}

.v2-sol-col:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--sol-r), .42);
  box-shadow: 0 22px 52px rgba(var(--sol-r),.14), 0 6px 18px rgba(0,0,0,.22);
}

/* ── Card header ── */
.v2-sol-hd {
  display: flex; align-items: flex-start; gap: 1rem;
  position: relative; z-index: 1;
}
.v2-sol-icon {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--sol-r), .14);
  border: 1px solid rgba(var(--sol-r), .3);
  color: var(--sol-c);
  filter: drop-shadow(0 2px 8px rgba(var(--sol-r),.25));
  transition: filter .3s, transform .3s;
}
.v2-sol-col:hover .v2-sol-icon {
  filter: drop-shadow(0 4px 14px rgba(var(--sol-r),.4));
  transform: scale(1.06);
}
.v2-sol-icon svg { width: 24px; height: 24px; }

.v2-sol-num {
  display: block;
  font-size: 1.2rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: .25rem;
  color: var(--sol-c); opacity: .75;
}
.v2-sol-title {
  font-size: 1.08rem; font-weight: 800;
  color: var(--tx-h); line-height: 1.25; margin: 0;
}

/* ── Lead sentence ── */
.v2-sol-lead {
  font-size: .84rem; color: var(--tx-s); line-height: 1.68;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(var(--sol-r), .14);
  margin: 0;
}

/* ── Sub-item list ── */
.v2-sol-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.v2-sol-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(var(--sol-r), .08);
}
.v2-sol-list li:last-child { border-bottom: none; padding-bottom: 0; }
.v2-sol-list li:first-child { padding-top: 0; }

.v2-sol-item-icon {
  flex-shrink: 0;
  width: 30px; height: 30px; margin-top: .05rem;
  border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--sol-r), .1);
  color: var(--sol-c);
}
.v2-sol-item-icon svg { width: 15px; height: 15px; }
.v2-sol-list li > div:last-child { display: flex; flex-direction: column; gap: .25rem; }
.v2-sol-list li strong { font-size: .82rem; font-weight: 700; color: var(--tx-h); line-height: 1.3; }
.v2-sol-list li p      { font-size: .75rem; color: var(--tx-d); line-height: 1.62; margin: 0; }

/* ── Light theme ── */
[data-theme="light"] .v2-sol-col {
  background: linear-gradient(155deg, rgba(var(--sol-r),.06) 0%, #fff 42%);
  box-shadow: 0 4px 24px rgba(var(--sol-r),.1), 0 1px 4px rgba(0,0,0,.06);
}
[data-theme="light"] .v2-sol-method { --sol-c: #1556C2; --sol-r: 21,86,194; }
[data-theme="light"] .v2-sol-finance { --sol-c: #b07d10; --sol-r: 176,125,16; }

/* ── Responsive ── */
@media (max-width: 1100px) { .v2-sol-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .v2-sol-grid { grid-template-columns: 1fr; } }

/* ── World-first badge ── */
/* ── World's First Methodology badge ── */
.v2-tech-first-badge {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 3rem; padding: 1.6rem 2rem;
  border-radius: 18px; border-left: 4px solid #00b4d8;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .v2-tech-first-badge {
  background: linear-gradient(130deg, rgba(0,180,216,.09) 0%, rgba(18,85,168,.09) 100%);
}
[data-theme="light"] .v2-tech-first-badge {
  background: linear-gradient(130deg, rgba(0,180,216,.07) 0%, rgba(18,85,168,.06) 100%);
  border-left-color: #0096b4;
}
.v2-tech-first-badge::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 65%);
  pointer-events: none;
}
.v2-tfb-icon {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px;
  background: rgba(0,180,216,.12); border: 1px solid rgba(0,180,216,.28);
  display: flex; align-items: center; justify-content: center;
  color: #00b4d8;
}
.v2-tfb-icon svg { width: 26px; height: 26px; }
.v2-tfb-body { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.v2-tfb-tags { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.v2-tfb-code {
  font-family: 'Space Mono','Courier New',monospace;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: #00b4d8; background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.3); border-radius: 100px;
  padding: 3px 11px;
}
.v2-tfb-world {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  color: #f9a825; background: rgba(249,168,37,.1);
  border: 1px solid rgba(249,168,37,.32); border-radius: 100px;
  padding: 3px 10px;
}
.v2-tfb-text {
  font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; color: var(--tx-h);
  line-height: 1.35; margin: 0;
}

/* ── Feature list ── */
.v2-tech-feat-list {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: flex; flex-direction: column; gap: .85rem;
}
.v2-tech-feat-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .84rem; color: var(--tx-s); line-height: 1.45;
}
.v2-tech-feat-list li svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--ac); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Methodology chart card ── */
.v2-tech-chart-card {
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 1.75rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--card-shd);
  position: relative; overflow: hidden;
}
.v2-tech-chart-card::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 85% 65% at 80% 30%, rgba(var(--ac-rgb),.04) 0%, transparent 70%);
}

.v2-tech-chart-legends {
  display: flex; gap: 1.25rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.v2-tc-legend {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; color: var(--tx-d);
}
.v2-tc-legend i {
  display: block; width: 18px; height: 2.5px;
  border-radius: 2px; flex-shrink: 0;
}
.v2-tc-project  i { background: var(--ac); }
.v2-tc-baseline i { background: rgba(200,221,210,.35); }
.v2-tc-bau      i { background: rgba(212,168,75,.85); }
.v2-tc-band     i { background: rgba(var(--ac-rgb),.2); height: 8px !important; border-radius: 2px; }

.v2-tech-chart-svg { width: 100%; height: auto; display: block; }

/* Chart line draw-in animations */
.v2-tc-pline {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: v2DrawPline 2.2s ease-out forwards .7s;
}
.v2-tc-bline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  animation: v2DrawBline 2s ease-out forwards .3s;
}
.v2-tc-area {
  opacity: 0;
  animation: v2FadeIn .8s ease forwards 2.2s;
}
.v2-tc-credit-lbl {
  opacity: 0;
  animation: v2FadeIn .5s ease forwards 2.8s;
}
.v2-tc-nee-area {
  opacity: 0;
  animation: v2FadeIn .8s ease forwards 1.8s;
}
@keyframes v2DrawPline { to { stroke-dashoffset: 0; } }
@keyframes v2DrawBline { to { stroke-dashoffset: 0; } }
@keyframes v2FadeIn    { to { opacity: 1; } }

/* Live dot pulse */
.v2-tc-live-dot { animation: v2TcPulse 2s ease-in-out infinite; }
@keyframes v2TcPulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.v2-tc-live-ring {
  transform-origin: 288px 45px;
  animation: v2TcRing 2.5s ease-out infinite;
}
@keyframes v2TcRing { from{transform:scale(1);opacity:.5} to{transform:scale(3);opacity:0} }

.v2-tech-chart-status {
  display: flex; align-items: center; gap: .5rem;
  font-size: .68rem; color: var(--ac);
  font-family: 'Space Mono','Courier New',monospace;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--card-bd);
}
.v2-tc-blink { animation: v2TcBlink 1.2s step-end infinite; }
@keyframes v2TcBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Methodology insight quote ── */
.v2-tech-insight {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid rgba(var(--ac-rgb),.35);
  background: rgba(var(--ac-rgb),.04);
  border-radius: 0 .75rem .75rem 0;
}
.v2-tech-insight p {
  font-size: .82rem; color: var(--tx-s); font-style: italic; line-height: 1.7; margin: 0;
}

/* ── NTT Data ── */
.v2-tech-ntt { color: var(--ac); font-style: normal; }
.v2-ntt-logos { display: inline-flex; align-items: center; gap: .55rem; vertical-align: middle; margin-left: .5rem; }
.v2-ntt-flag {
  height: 52px; width: 76px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.12);
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .v2-ntt-logos { display: flex; margin-left: 0; margin-top: .75rem; gap: .85rem; }
  .v2-ntt-logo { height: 82px; width: auto; }
  .v2-ntt-flag { height: 46px; width: 64px; }
}

.v2-tech-mv-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: rgba(var(--ac-rgb),.05);
  border: 1px solid rgba(var(--ac-rgb),.16);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  transition: border-color .25s, background .25s;
}
.v2-tech-mv-card:hover {
  background: rgba(var(--ac-rgb),.08);
  border-color: rgba(var(--ac-rgb),.3);
}
.v2-tech-mv-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: .75rem;
  background: rgba(var(--ac-rgb),.1);
  border: 1px solid rgba(var(--ac-rgb),.22);
  display: flex; align-items: center; justify-content: center;
}
.v2-tech-mv-icon svg {
  width: 20px; height: 20px;
  stroke: var(--ac); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.v2-tech-mv-info { display: flex; flex-direction: column; gap: .35rem; }
.v2-tech-mv-info strong {
  display: block; color: var(--ac);
  font-size: .95rem; letter-spacing: .03em;
}
.v2-tech-mv-info span { font-size: .78rem; color: var(--tx-s); line-height: 1.55; }

/* ── Nuestra Metodología section ── */
.v2-meth-header { text-align: center; margin-bottom: 2.5rem; }
.v2-meth-title { margin-bottom: .75rem; }
.v2-meth-sub { max-width: 55ch; margin: 0 auto; color: var(--tx-s); font-size: .95rem; }
.v2-meth-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3.5rem;
  background: rgba(var(--ac-rgb),.05);
  border: 1px solid rgba(var(--ac-rgb),.16);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
}
.v2-meth-content { display: flex; flex-direction: column; gap: 1.75rem; }
.v2-meth-btn { display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start; }
.v2-meth-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.v2-meth-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.v2-meth-qr-link {
  display: block; border-radius: 1rem; overflow: hidden;
  border: 1.5px solid rgba(var(--ac-rgb),.25);
  transition: border-color .25s, box-shadow .25s;
}
.v2-meth-qr-link:hover {
  border-color: rgba(var(--ac-rgb),.55);
  box-shadow: 0 0 24px rgba(var(--ac-rgb),.16);
}
.v2-meth-qr-img { width: 148px; height: 148px; display: block; background: #fff; padding: .6rem; }
.v2-meth-qr-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(var(--ac-rgb),.1);
  border: 1px solid rgba(var(--ac-rgb),.28);
  color: var(--ac);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem .95rem; border-radius: 50px;
}
.v2-meth-qr-badge svg { width: 13px; height: 13px; opacity: .8; flex-shrink: 0; }
@media (max-width: 768px) {
  .v2-meth-card { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; gap: 2rem; }
  .v2-meth-content { align-items: center; }
  .v2-meth-btn { align-self: center; }
}

/* ── Particle canvas background (shared across sections) ── */
.v2-particles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Theory of Change section ── */
.v2-toc-hd { text-align: center; margin-bottom: 2.5rem; }
.v2-toc-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ac);
  background: rgba(var(--ac-rgb),.08);
  border: 1px solid rgba(var(--ac-rgb),.22);
  padding: .3rem 1rem; border-radius: 100px;
  margin-bottom: 1rem;
}
.v2-toc-title {
  font-size: clamp(1.3rem,2.4vw,1.9rem);
  font-weight: 700; color: var(--tx-h);
  margin: .6rem 0 .75rem;
}
.v2-toc-sub { font-size: .88rem; color: var(--tx-s); max-width: 560px; margin: 0 auto; line-height: 1.65; }

.v2-toc-row {
  display: grid;
  grid-template-columns: 100px 1fr 52px 1fr;
  gap: 1rem;
  align-items: center;
  background: rgba(var(--ac-rgb),.025);
  border: 1px solid rgba(var(--ac-rgb),.08);
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
}
.v2-toc-row-label {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; text-align: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--tx-s);
  line-height: 1.4;
}
.v2-toc-row-icon {
  width: 48px; height: 48px;
  color: var(--ac);
  opacity: .7;
}
.v2-toc-row-icon svg { width: 100%; height: 100%; }

.v2-toc-scenario-col { min-width: 0; }
.v2-toc-col-header {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 100px;
  display: inline-block; margin-bottom: .85rem;
}
.v2-toc-bau-hd { background: rgba(212,168,75,.12); color: rgba(212,168,75,.85); border: 1px solid rgba(212,168,75,.22); }
.v2-toc-pro-hd { background: rgba(var(--ac-rgb),.1); color: var(--ac); border: 1px solid rgba(var(--ac-rgb),.25); }

.v2-toc-flow { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }

.v2-toc-node {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; text-align: center;
}
.v2-toc-node svg { width: 44px; height: 44px; flex-shrink: 0; }
.v2-toc-node span { font-size: .65rem; color: var(--tx-d); line-height: 1.35; max-width: 72px; }
.v2-toc-node-gray svg { color: var(--tx-d); opacity: .55; }
.v2-toc-node-green svg { color: var(--ac); }

.v2-toc-arr {
  font-size: 1.1rem; color: rgba(var(--ac-rgb),.3);
  flex-shrink: 0; line-height: 1;
}
.v2-toc-bau-col .v2-toc-arr { color: rgba(212,168,75,.35); }

.v2-toc-result {
  display: flex; flex-direction: column; gap: .4rem; text-align: center;
  padding: .6rem .75rem;
  border-radius: .85rem;
  min-width: 80px;
}
.v2-toc-result span { font-size: .65rem; color: var(--tx-s); line-height: 1.35; }
.v2-toc-result-bau { background: rgba(212,168,75,.06); border: 1px solid rgba(212,168,75,.18); }
.v2-toc-result-pro  { background: rgba(var(--ac-rgb),.07); border: 1px solid rgba(var(--ac-rgb),.22); }

.v2-toc-badges { display: flex; gap: .3rem; flex-wrap: wrap; justify-content: center; }
.v2-toc-badge {
  font-size: .6rem; font-weight: 700; font-family: 'Space Mono','Courier New',monospace;
  padding: .15rem .45rem; border-radius: 4px;
}
.v2-toc-badge-pos     { background: rgba(var(--ac-rgb),.15); color: var(--ac); }
.v2-toc-badge-neutral { background: rgba(212,168,75,.14); color: rgba(212,168,75,.9); }
.v2-toc-badge-warn    { background: rgba(220,80,80,.12); color: #e06060; }

.v2-toc-vs {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .2rem;
}
.v2-toc-vs span {
  font-size: .62rem; font-weight: 800; letter-spacing: .08em;
  color: var(--ac); font-family: 'Space Mono','Courier New',monospace;
  writing-mode: vertical-rl; text-orientation: mixed;
  background: rgba(var(--ac-rgb),.08);
  border: 1px solid rgba(var(--ac-rgb),.2);
  padding: .5rem .2rem; border-radius: 100px;
}

.v2-toc-footnote {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  margin-top: 1.5rem;
  font-size: .72rem; color: var(--tx-d);
  font-family: 'Space Mono','Courier New',monospace;
  letter-spacing: .03em;
}
.v2-toc-footnote svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--ac); }

/* ── Satellite orbit illustration (expanded: 3 satellites) ── */
.v2-tech-orbit {
  position: relative;
  width: 340px; height: 340px;
  flex-shrink: 0;
  perspective: 700px;
  perspective-origin: 50% 45%;
}

.v2-orbit-earth {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%,
    rgba(var(--ac-rgb),.07) 0%,
    rgba(0,0,0,.28) 55%,
    rgba(0,0,0,.58) 100%
  );
  box-shadow: 0 0 60px rgba(var(--ac-rgb),.2), 0 0 120px rgba(var(--ac-rgb),.08);
  z-index: 2;
}
.v2-orbit-earth::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 33%,
    rgba(255,255,255,.15) 0%,
    rgba(255,255,255,0) 44%,
    rgba(0,0,0,.22) 100%
  );
  z-index: 4;
  pointer-events: none;
}
.v2-orbit-earth::after {
  content: '';
  position: absolute; inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle,transparent 42%,rgba(var(--ac-rgb),.07) 58%,transparent 72%);
  pointer-events: none;
  z-index: 5;
}
/* World map SVG inside earth */
.v2-earth-map {
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
  animation: v2EarthSpin 26s linear infinite;
  z-index: 3;
}
.v2-eg { fill: none; stroke: rgba(var(--ac-rgb),.12); stroke-width: .35; }
.v2-ec { fill: rgba(var(--ac-rgb),.40); stroke: rgba(var(--ac-rgb),.60); stroke-width: .45; stroke-linejoin: round; }
@keyframes v2EarthSpin {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.v2-orbit-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--ac-rgb),.07) 0%, transparent 70%);
  z-index: 1;
}

/* Orbit tracks */
.v2-orbit-track {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--ac-rgb),.18);
  transform: rotateX(38deg) rotateZ(-10deg);
  z-index: 1;
}
.v2-orbit-ring-inner {
  inset: 64px;
  border-style: solid;
  border-color: rgba(var(--ac-rgb),.06);
  border-width: 1px;
  transform: none;
}
/* Inclined orbit track B — polar, rotated 60° en azimut */
.v2-orbit-track-b {
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--ac-rgb),.12);
  transform: rotateX(52deg) rotateZ(55deg);
  z-index: 1;
}
/* Inclined orbit track C — retrógrada, inclinación opuesta */
.v2-orbit-track-c {
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--ac-rgb),.09);
  transform: rotateX(58deg) rotateZ(-65deg);
  z-index: 1;
}

/* Satellite A — main circular orbit */
.v2-orbit-sat-wrap {
  position: absolute; inset: 0;
  animation: v2SatRevolve 12s linear infinite;
  z-index: 3;
}
.v2-orbit-sat {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  animation: v2SatUpright 12s linear infinite;
}
@keyframes v2SatRevolve {
  from { transform: rotateX(38deg) rotateZ(-10deg); }
  to   { transform: rotateX(38deg) rotateZ(350deg); }
}
@keyframes v2SatUpright  { 100% { transform: translateX(-50%) rotate(-360deg); } }

/* Data beam synced with Satellite A */
.v2-orbit-beam-wrap { z-index: 2; pointer-events: none; }
.v2-orbit-beam {
  position: absolute;
  top: 52px; left: 50%;
  width: 1.5px; height: 82px;
  transform: translateX(-0.75px);
  background: linear-gradient(to bottom, rgba(var(--ac-rgb),.65) 0%, rgba(var(--ac-rgb),0) 100%);
  animation: v2BeamFlicker 6s ease-in-out infinite;
}
@keyframes v2BeamFlicker { 0%,100%{opacity:.08} 45%,55%{opacity:.55} }

/* Satellite B — inclined orbit B, 17s */
.v2-orbit-sat-wrap-b {
  position: absolute; inset: 0;
  z-index: 3;
  animation: v2OrbitB 17s linear infinite;
}
.v2-orbit-sat-b {
  position: absolute;
  top: 42px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  animation: v2SatUprightB 17s linear infinite;
}
@keyframes v2OrbitB {
  from { transform: rotateX(52deg) rotateZ(55deg); }
  to   { transform: rotateX(52deg) rotateZ(415deg); }
}
@keyframes v2SatUprightB {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

/* Satellite C — inclined orbit C, 8s reverse */
.v2-orbit-sat-wrap-c {
  position: absolute; inset: 0;
  z-index: 3;
  animation: v2OrbitC 8s linear infinite;
}
.v2-orbit-sat-c {
  position: absolute;
  top: 62px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  animation: v2SatUprightC 8s linear infinite;
}
@keyframes v2OrbitC {
  from { transform: rotateX(58deg) rotateZ(-65deg); }
  to   { transform: rotateX(58deg) rotateZ(295deg); }
}
@keyframes v2SatUprightC {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

/* Orbit labels */
.v2-orbit-label-top {
  position: absolute;
  bottom: calc(100% + -2.2rem); left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--card-bd);
  padding: .35rem .9rem;
  border-radius: 100px;
  white-space: nowrap; z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.v2-orbit-mv-img {
  width: 90px; height: auto;
  display: block;
  filter: var(--mv-logo-filter, none);
}
.v2-orbit-label-bottom {
  position: absolute;
  top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; z-index: 10;
}

/* Marble Visions logo inside mv-card */
.v2-tech-mv-logo-wrap {
  background: #010806;
  border: 1px solid var(--card-bd);
  border-radius: .75rem;
  padding: .6rem 1rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  margin-bottom: .5rem;
}
.v2-tech-mv-logo {
  width: 60%; height: auto;
  display: block;
  filter: var(--mv-logo-filter, none);
}
.v2-tech-mv-text {
  font-size: 1.1rem !important;
  color: var(--tx-s); line-height: 1.65; margin: 0;
}
[data-theme="dark"] .v2-tech-mv-logo,
[data-theme="dark"] .v2-orbit-mv-img { filter: brightness(0) invert(1); }

/* Light theme adjustments */
[data-theme="light"] .v2-tech-section { background: var(--sf); }
[data-theme="light"] .v2-orbit-earth {
  background: radial-gradient(circle at 50% 50%,
    rgba(var(--ac-rgb),.05) 0%,
    rgba(0,52,154,.12) 55%,
    rgba(0,52,154,.28) 100%
  );
}
[data-theme="light"] .v2-ec { fill: rgba(var(--ac-rgb),.55); stroke: rgba(var(--ac-rgb),.75); }
[data-theme="light"] .v2-tech-chart-card { background: #fff; }
[data-theme="light"] .v2-tc-baseline i { background: rgba(0,52,154,.25); }
[data-theme="light"] .v2-tc-bline { stroke: rgba(212, 168, 75, 0.75) !important; }
[data-theme="light"] .v2-tc-bau i { background: rgba(160,110,0,.85); }
[data-theme="light"] .v2-tech-mv-logo,
[data-theme="light"] .v2-orbit-mv-img { filter: none; }
[data-theme="light"] .v2-toc-row { background: rgba(var(--ac-rgb),.02); }

/* Responsive */
@media (max-width: 1100px) {
  .v2-tech-orbit { width: 280px; height: 280px; }
  .v2-orbit-earth { width: 82px; height: 82px; }
  .v2-orbit-sat { top: 14px; }
  .v2-orbit-beam { top: 48px; height: 68px; }
  .v2-orbit-sat-b { top: 36px; }
  .v2-orbit-sat-c { top: 52px; }
}
@media (max-width: 900px) {
  .v2-tech-pillars { grid-template-columns: 1fr; }
  .v2-tech-orbit { width: 220px; height: 220px; }
  .v2-orbit-earth { width: 68px; height: 68px; }
  .v2-orbit-sat { top: 10px; width: 26px; height: 26px; }
  .v2-orbit-beam { top: 36px; height: 52px; }
  .v2-orbit-sat-b { top: 28px; width: 22px; height: 22px; }
  .v2-orbit-sat-c { top: 42px; width: 18px; height: 18px; }
  .v2-toc-row { grid-template-columns: 1fr; gap: .75rem; }
  .v2-toc-vs { display: none; }
  .v2-toc-col-header { font-size: .6rem; }
  .v2-toc-flow { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════
   ECOSYSTEM DIAGRAM
═══════════════════════════════════════ */
.v2-eco-section { background: var(--bg); }
.v2-eco-hd { text-align: center; }
.v2-eco-title {
  background: linear-gradient(90deg, var(--ac) 0%, #00c0dc 60%, #1A6FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-eco-hd p { color: var(--tx-s); }
.v2-eco-outer { display: flex; justify-content: center; overflow: visible; padding-bottom: 30px; }
.v2-eco-inner-scale { transform-origin: top center; display: flex; justify-content: center; }

.v2-eco-wrap {
  position: relative;
  width: 800px; height: 700px;
  flex-shrink: 0;
}
.v2-eco-arrows {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  overflow: visible;
}
.v2-eco-cluster {
  position: absolute;
  left: 120px; top: 55px;
  width: 560px; height: 590px;
  z-index: 1;
}

.v2-eco-hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--ac) 0%, #1A6FDB 100%);
  transition: transform .28s ease, filter .28s ease;
  cursor: default;
}
.v2-eco-hex:hover { transform: scale(1.07) translateY(-4px); filter: brightness(1.12); z-index: 10; }

.v2-eco-center-wrap { width: 188px; height: 218px; left: 186px; top: 186px; }
.v2-eco-top-wrap    { width: 164px; height: 190px; left: 198px; top: 8px;   }
.v2-eco-tr-wrap     { width: 164px; height: 190px; left: 364px; top: 104px; }
.v2-eco-br-wrap     { width: 164px; height: 190px; left: 364px; top: 296px; }
.v2-eco-bot-wrap    { width: 164px; height: 190px; left: 198px; top: 392px; }
.v2-eco-bl-wrap     { width: 164px; height: 190px; left: 32px;  top: 296px; }
.v2-eco-tl-wrap     { width: 164px; height: 190px; left: 32px;  top: 104px; }

.v2-eco-hex-inner {
  position: absolute; inset: 3px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: .22rem;
  padding: 1rem .55rem;
  transition: background .28s;
}
.v2-eco-hex:hover .v2-eco-hex-inner { background: var(--sf); }

.v2-eco-center-inner { background: linear-gradient(135deg, rgba(var(--ac-rgb),.09) 0%, rgba(26,111,219,.09) 100%); }
.v2-eco-hex-teal     { background: linear-gradient(135deg, rgba(var(--ac-rgb),.1) 0%, rgba(var(--ac-rgb),.03) 100%); }
.v2-eco-hex-blue     { background: linear-gradient(135deg, rgba(26,111,219,.12) 0%, rgba(26,111,219,.04) 100%); }

.v2-eco-center-icon { width: 50px; height: 58px; margin-bottom: .3rem; }
.v2-eco-center-icon svg { width: 100%; height: 100%; }
.v2-eco-center-name { font-size: .88rem; font-weight: 900; color: var(--tx-h); letter-spacing: .06em; line-height: 1.2; }
.v2-eco-center-name sup { font-size: .55em; }
.v2-eco-center-sub { font-size: .58rem; color: var(--tx-d); letter-spacing: .09em; text-transform: uppercase; line-height: 1.45; margin-top: .2rem; }

.v2-eco-node-icon { width: 38px; height: 38px; margin-bottom: .22rem; color: var(--ac); }
.v2-eco-node-blue { color: #1A6FDB; }
.v2-eco-node-icon svg { width: 100%; height: 100%; }

.v2-eco-hex-inner strong { font-size: .64rem; font-weight: 800; color: var(--tx-h); letter-spacing: .04em; text-transform: uppercase; line-height: 1.3; }
.v2-eco-node-sub { font-size: .54rem; color: var(--tx-s); font-weight: 400; line-height: 1.4; text-transform: none; letter-spacing: 0; margin-top: .1rem; }

[data-theme="light"] .v2-eco-section { background: var(--sf); padding-bottom: 1rem;}
[data-theme="light"] .v2-eco-node-blue { color: #1556C2; }

@media (max-width: 900px) { .v2-eco-inner-scale { transform: scale(.78); margin-bottom: -155px; } }
@media (max-width: 680px) { .v2-eco-inner-scale { transform: scale(.60); margin-bottom: -280px; } }
@media (max-width: 480px) { .v2-eco-inner-scale { transform: scale(.46); margin-bottom: -378px; } }

/* ══════════════════════════════════════
   TECH SECTION — INTERACTIVE ECO DIAGRAM
══════════════════════════════════════ */
.v2-tech-eco-diagram {
  position: relative;
  width: min(1040px, 100%);
  margin: 2rem auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.v2-tech-eco-diagram .v2eco-svg { flex: 1 1 auto; min-width: 0; width: 100%; height: auto; display: block; }

.v2eco-hg { cursor: pointer; }
.v2eco-hp {
  transition: filter .22s ease, transform .22s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.v2eco-hg:hover .v2eco-hp {
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0,80,200,.3));
  transform: scale(1.07);
}
.v2eco-hg.active .v2eco-hp {
  filter: brightness(1.18) drop-shadow(0 6px 22px rgba(0,80,200,.45));
  transform: scale(1.1);
}

/* ── Panel: slides in from right, diagram compresses left ── */
.v2eco-panel {
  flex-shrink: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(21,101,192,.16);
  transition: width .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.v2-tech-eco-diagram.panel-open { gap: 1.5rem; }
.v2-tech-eco-diagram.panel-open .v2eco-panel {
  width: 260px;
  opacity: 1;
  pointer-events: auto;
}
.v2eco-panel-inner {
  width: 260px;
  padding: 22px 36px 22px 22px;
  border-left: 5px solid #00b4d8;
  border-radius: 14px;
  position: relative;
}
.v2eco-panel h3 { font-size: .86rem; font-weight: 700; color: var(--tx-h); margin-bottom: 8px; }
.v2eco-panel p  { font-size: .79rem; color: var(--tx-s); line-height: 1.7; }
.v2eco-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 20px;
  color: #bbb; cursor: pointer; line-height: 1;
}
.v2eco-close:hover { color: var(--tx-h); }

/* ── Mobile: panel hidden completely ── */
@media (max-width: 700px) {
  .v2eco-panel { display: none; }
}

@keyframes v2ecoDash { to { stroke-dashoffset: -44; } }
.v2eco-fl { animation: v2ecoDash 2s linear infinite; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes v2FromBottom { from{opacity:0;transform:translateY(42px) scale(.98)} to{opacity:1;transform:none} }
@keyframes v2FromRight  { from{opacity:0;transform:translateX(52px) scale(.98)} to{opacity:1;transform:none} }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .v2-hero-data-panel { display: none; }
  .v2-hero-content { max-width: 100%; }
}
@media (max-width: 900px) {
  .v2-two-col,.v2-offer-grid,.v2-obj-grid,.v2-achieve-grid,.v2-standard-grid,.v2-invest-grid,.v2-diff-cards-grid,.v2-tech-method-grid { grid-template-columns: 1fr; }
  .v2-kpi-grid { grid-template-columns: repeat(2,1fr); }
  #v2-hero { padding: 7rem 1.5rem 4rem; }
  .v2-container { padding: 0 1.5rem; margin-top: 2rem; }
  .v2-tech-stack-visual { position: static; }
  .v2-bureau-wrap { grid-template-columns: 1fr; }
  .v2-img-mosaic { height: 360px; }
  /* Offer — center everything in single-column layout */
  .v2-offer-grid { gap: 2.5rem; }
  #v2-offer .v2-from-left,
  #v2-offer .v2-from-right { text-align: center; }
  .v2-co2-meter { max-width: 480px; margin-left: auto; margin-right: auto; }
  .v2-meter-header { justify-content: center; gap: 1rem; }
  .v2-meter-readings { max-width: 420px; margin-left: auto; margin-right: auto; }
  #v2-offer .v2-img-stack { align-items: center; }
  #v2-offer .v2-section-img-panel,
  #v2-offer .v2-img-stack-main { width: 100%; }
}
@media (max-width: 576px) {
  .v2-kpi-grid { grid-template-columns: 1fr; }
  .v2-section-pad { padding: 5rem 0; }
  .v2-diff-cards-grid { grid-template-columns: 1fr; }
  /* Offer — tighten card on small phones */
  .v2-co2-meter { padding: 1.5rem 1.25rem; }
  .v2-meter-big { font-size: 3.8rem; }
  .v2-meter-readings { grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
  .v2-reading { padding: .65rem .4rem; }
  .v2-reading-val { font-size: 1.1rem; }
}

/* ══════════════════════════════════════
   TECHNOLOGY — ECOSYSTEM DIAGRAM
══════════════════════════════════════ */
.v2-tech-eco-wrap { text-align: center; }
.v2-tech-eco-hd { margin-bottom: 2.5rem; }

@media (max-width:700px) {
  .v2-tech-eco-hd { margin-bottom:1.5rem; }
}

/* ══════════════════════════════════════
   METHODOLOGY COMPARISON CARDS
══════════════════════════════════════ */
.v2-compare-intro {
  text-align: center;
  margin: 0 0 2.5rem;
}
.v2-compare-eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ac);
  opacity: .7;
  margin-bottom: .5rem;
}
.v2-compare-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: .4rem 0 0;
}

.v2-compare-card {
  background: rgba(var(--ac-rgb), .025);
  border: 1px solid rgba(var(--ac-rgb), .1);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.v2-compare-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.v2-compare-card-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(var(--ac-rgb), .18);
  font-family: monospace;
  line-height: 1;
  flex-shrink: 0;
}

.v2-compare-card-title {
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--tx-s);
  letter-spacing: .01em;
  margin: 0;
}

.v2-compare-halves {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.v2-compare-half {
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.v2-compare-half--old {
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(255,255,255,.07);
}

.v2-compare-half--new {
  background: rgba(var(--ac-rgb), .04);
  border: 1px solid rgba(var(--ac-rgb), .18);
}

.v2-compare-label-old {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.055);
  padding: .15rem .55rem;
  border-radius: 2rem;
  width: fit-content;
}

.v2-compare-label-new {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ac);
  background: rgba(var(--ac-rgb), .1);
  padding: .15rem .55rem;
  border-radius: 2rem;
  width: fit-content;
}

.v2-compare-method-name {
  font-size: clamp(.85rem, 1.4vw, .98rem);
  font-weight: 600;
  color: var(--tx-s);
  margin: 0;
  line-height: 1.3;
}

.v2-cmp-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.v2-compare-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.v2-cmp-feat-bad,
.v2-cmp-feat-good {
  font-size: clamp(.78rem, 1.2vw, .86rem);
  padding-left: 1.1rem;
  position: relative;
  color: var(--tx-s);
  opacity: .82;
  line-height: 1.4;
}

.v2-cmp-feat-bad::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(220,80,80,.75);
  font-size: .72rem;
  top: .1em;
}

.v2-cmp-feat-good::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ac);
  font-size: .72rem;
  top: .1em;
}

.v2-compare-vs {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(var(--ac-rgb), .06);
  border: 1px solid rgba(var(--ac-rgb), .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(var(--ac-rgb), .55);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .v2-compare-halves {
    grid-template-columns: 1fr;
  }
  .v2-compare-vs {
    margin: .25rem auto;
  }
  .v2-compare-card {
    padding: 1.25rem 1rem;
  }
  .v2-compare-card-num {
    font-size: 1.2rem;
  }
}
