/* Flexicom Solutions — Main Stylesheet */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0F1F3D;
    --navy-mid: #1A3260;
    --teal: #00C2A8;
    --teal-dark: #009E88;
    --white: #FFFFFF;
    --grey-bg: #F4F6F9;
    --grey-mid: #E2E8F0;
    --text-body: #475569;
    --text-dark: #1E293B;
    --text-light: #94A3B8;
    --red-alert: #EF4444;
    --font: 'Inter', sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(15,31,61,0.10);
    --shadow-sm: 0 2px 10px rgba(15,31,61,0.07);
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; font-size: 16px; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ── NAVIGATION ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 62px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .nav-logo {
    font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--teal); }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.80); transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta {
    background: var(--teal); color: var(--navy) !important; font-weight: 700 !important;
    padding: 9px 20px; border-radius: var(--radius); transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
  .mobile-menu { display: none; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    padding: 90px 5% 80px;
    position: relative; overflow: hidden;
    min-height: 560px; display: flex; align-items: center;
  }
  .hero-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0;
  }
  /* Animated grid lines */
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,194,168,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,194,168,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 6s linear infinite;
  }
  @keyframes gridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px, 60px); }
  }
  /* Floating connection nodes */
  .hero-node {
    position: absolute; border-radius: 50%;
    background: var(--teal); opacity: 0;
    animation: nodePulse 2.5s ease-in-out infinite;
  }
  .hero-node::after {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    border: 1.5px solid rgba(0,194,168,0.35);
    animation: ringExpand 2.5s ease-in-out infinite;
  }
  @keyframes nodePulse {
    0%   { opacity: 0; transform: scale(0.4); }
    20%  { opacity: 0.9; transform: scale(1); }
    80%  { opacity: 0.9; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.4); }
  }
  @keyframes ringExpand {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
  }
  
  .hero-node:nth-child(1) { width:6px;height:6px; top:86%; right:17%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(1)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(2) { width:8px;height:8px; top:18%; right:89%; background:var(--teal); animation-delay:3.0s; animation-duration:2.0s; }
  .hero-node:nth-child(2)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(3) { width:9px;height:9px; top:16%; right:30%; background:#ffffff; animation-delay:3.0s; animation-duration:2.8s; }
  .hero-node:nth-child(3)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(4) { width:8px;height:8px; top:88%; right:92%; background:#ffffff; animation-delay:1.1s; animation-duration:2.9s; }
  .hero-node:nth-child(4)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.9s; }
  .hero-node:nth-child(5) { width:12px;height:12px; top:5%; right:23%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(5)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(6) { width:7px;height:7px; top:48%; right:16%; background:#ffffff; animation-delay:0.5s; animation-duration:3.3s; }
  .hero-node:nth-child(6)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(7) { width:6px;height:6px; top:82%; right:36%; background:var(--teal); animation-delay:2.3s; animation-duration:2.2s; }
  .hero-node:nth-child(7)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.2s; }
  .hero-node:nth-child(8) { width:8px;height:8px; top:53%; right:13%; background:var(--teal); animation-delay:4.1s; animation-duration:2.9s; }
  .hero-node:nth-child(8)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.9s; }
  .hero-node:nth-child(9) { width:9px;height:9px; top:51%; right:76%; background:var(--teal); animation-delay:0.3s; animation-duration:3.0s; }
  .hero-node:nth-child(9)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.0s; }
  .hero-node:nth-child(10) { width:9px;height:9px; top:42%; right:13%; background:var(--teal); animation-delay:1.9s; animation-duration:2.7s; }
  .hero-node:nth-child(10)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(11) { width:11px;height:11px; top:51%; right:23%; background:var(--teal); animation-delay:1.0s; animation-duration:2.4s; }
  .hero-node:nth-child(11)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.4s; }
  .hero-node:nth-child(12) { width:7px;height:7px; top:92%; right:85%; background:#ffffff; animation-delay:3.2s; animation-duration:2.8s; }
  .hero-node:nth-child(12)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(13) { width:7px;height:7px; top:36%; right:23%; background:#ffffff; animation-delay:1.3s; animation-duration:3.4s; }
  .hero-node:nth-child(13)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.4s; }
  .hero-node:nth-child(14) { width:11px;height:11px; top:76%; right:31%; background:var(--teal); animation-delay:1.1s; animation-duration:2.0s; }
  .hero-node:nth-child(14)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(15) { width:10px;height:10px; top:45%; right:54%; background:var(--teal); animation-delay:1.1s; animation-duration:3.4s; }
  .hero-node:nth-child(15)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.4s; }
  .hero-node:nth-child(16) { width:7px;height:7px; top:45%; right:30%; background:#ffffff; animation-delay:4.4s; animation-duration:3.0s; }
  .hero-node:nth-child(16)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  .hero-node:nth-child(17) { width:8px;height:8px; top:23%; right:36%; background:var(--teal); animation-delay:3.7s; animation-duration:2.8s; }
  .hero-node:nth-child(17)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(18) { width:6px;height:6px; top:79%; right:57%; background:#ffffff; animation-delay:1.8s; animation-duration:3.5s; }
  .hero-node:nth-child(18)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.5s; }
  .hero-node:nth-child(19) { width:7px;height:7px; top:22%; right:68%; background:var(--teal); animation-delay:3.8s; animation-duration:3.3s; }
  .hero-node:nth-child(19)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(20) { width:8px;height:8px; top:24%; right:83%; background:var(--teal); animation-delay:2.1s; animation-duration:2.1s; }
  .hero-node:nth-child(20)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.1s; }
  .hero-node:nth-child(21) { width:7px;height:7px; top:53%; right:79%; background:#ffffff; animation-delay:1.3s; animation-duration:2.8s; }
  .hero-node:nth-child(21)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(22) { width:7px;height:7px; top:6%; right:90%; background:var(--teal); animation-delay:4.4s; animation-duration:3.1s; }
  .hero-node:nth-child(22)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.1s; }
  .hero-node:nth-child(23) { width:7px;height:7px; top:87%; right:46%; background:var(--teal); animation-delay:2.2s; animation-duration:2.7s; }
  .hero-node:nth-child(23)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(24) { width:8px;height:8px; top:38%; right:67%; background:#ffffff; animation-delay:4.6s; animation-duration:3.3s; }
  .hero-node:nth-child(24)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(25) { width:8px;height:8px; top:43%; right:84%; background:#ffffff; animation-delay:1.0s; animation-duration:2.6s; }
  .hero-node:nth-child(25)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.6s; }
  .hero-node:nth-child(26) { width:8px;height:8px; top:25%; right:72%; background:var(--teal); animation-delay:3.0s; animation-duration:2.7s; }
  .hero-node:nth-child(26)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(27) { width:10px;height:10px; top:19%; right:49%; background:var(--teal); animation-delay:0.3s; animation-duration:3.3s; }
  .hero-node:nth-child(27)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(28) { width:7px;height:7px; top:15%; right:13%; background:var(--teal); animation-delay:4.9s; animation-duration:2.8s; }
  .hero-node:nth-child(28)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(29) { width:7px;height:7px; top:21%; right:19%; background:#ffffff; animation-delay:0.8s; animation-duration:2.8s; }
  .hero-node:nth-child(29)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(30) { width:9px;height:9px; top:82%; right:57%; background:#ffffff; animation-delay:3.8s; animation-duration:3.0s; }
  .hero-node:nth-child(30)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  
  .hero-node:nth-child(1) { width:6px;height:6px; top:86%; right:17%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(1)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(2) { width:8px;height:8px; top:18%; right:89%; background:var(--teal); animation-delay:3.0s; animation-duration:2.0s; }
  .hero-node:nth-child(2)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(3) { width:9px;height:9px; top:16%; right:30%; background:#ffffff; animation-delay:3.0s; animation-duration:2.8s; }
  .hero-node:nth-child(3)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(4) { width:8px;height:8px; top:88%; right:92%; background:#ffffff; animation-delay:1.1s; animation-duration:2.9s; }
  .hero-node:nth-child(4)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.9s; }
  .hero-node:nth-child(5) { width:12px;height:12px; top:5%; right:23%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(5)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(6) { width:7px;height:7px; top:48%; right:16%; background:#ffffff; animation-delay:0.5s; animation-duration:3.3s; }
  .hero-node:nth-child(6)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(7) { width:6px;height:6px; top:82%; right:36%; background:var(--teal); animation-delay:2.3s; animation-duration:2.2s; }
  .hero-node:nth-child(7)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.2s; }
  .hero-node:nth-child(8) { width:8px;height:8px; top:53%; right:13%; background:var(--teal); animation-delay:4.1s; animation-duration:2.9s; }
  .hero-node:nth-child(8)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.9s; }
  .hero-node:nth-child(9) { width:9px;height:9px; top:51%; right:76%; background:var(--teal); animation-delay:0.3s; animation-duration:3.0s; }
  .hero-node:nth-child(9)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.0s; }
  .hero-node:nth-child(10) { width:9px;height:9px; top:42%; right:13%; background:var(--teal); animation-delay:1.9s; animation-duration:2.7s; }
  .hero-node:nth-child(10)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(11) { width:11px;height:11px; top:51%; right:23%; background:var(--teal); animation-delay:1.0s; animation-duration:2.4s; }
  .hero-node:nth-child(11)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.4s; }
  .hero-node:nth-child(12) { width:7px;height:7px; top:92%; right:85%; background:#ffffff; animation-delay:3.2s; animation-duration:2.8s; }
  .hero-node:nth-child(12)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(13) { width:7px;height:7px; top:36%; right:23%; background:#ffffff; animation-delay:1.3s; animation-duration:3.4s; }
  .hero-node:nth-child(13)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.4s; }
  .hero-node:nth-child(14) { width:11px;height:11px; top:76%; right:31%; background:var(--teal); animation-delay:1.1s; animation-duration:2.0s; }
  .hero-node:nth-child(14)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(15) { width:10px;height:10px; top:45%; right:54%; background:var(--teal); animation-delay:1.1s; animation-duration:3.4s; }
  .hero-node:nth-child(15)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.4s; }
  .hero-node:nth-child(16) { width:7px;height:7px; top:45%; right:30%; background:#ffffff; animation-delay:4.4s; animation-duration:3.0s; }
  .hero-node:nth-child(16)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  .hero-node:nth-child(17) { width:8px;height:8px; top:23%; right:36%; background:var(--teal); animation-delay:3.7s; animation-duration:2.8s; }
  .hero-node:nth-child(17)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(18) { width:6px;height:6px; top:79%; right:57%; background:#ffffff; animation-delay:1.8s; animation-duration:3.5s; }
  .hero-node:nth-child(18)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.5s; }
  .hero-node:nth-child(19) { width:7px;height:7px; top:22%; right:68%; background:var(--teal); animation-delay:3.8s; animation-duration:3.3s; }
  .hero-node:nth-child(19)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(20) { width:8px;height:8px; top:24%; right:83%; background:var(--teal); animation-delay:2.1s; animation-duration:2.1s; }
  .hero-node:nth-child(20)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.1s; }
  .hero-node:nth-child(21) { width:7px;height:7px; top:53%; right:79%; background:#ffffff; animation-delay:1.3s; animation-duration:2.8s; }
  .hero-node:nth-child(21)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(22) { width:7px;height:7px; top:6%; right:90%; background:var(--teal); animation-delay:4.4s; animation-duration:3.1s; }
  .hero-node:nth-child(22)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.1s; }
  .hero-node:nth-child(23) { width:7px;height:7px; top:87%; right:46%; background:var(--teal); animation-delay:2.2s; animation-duration:2.7s; }
  .hero-node:nth-child(23)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(24) { width:8px;height:8px; top:38%; right:67%; background:#ffffff; animation-delay:4.6s; animation-duration:3.3s; }
  .hero-node:nth-child(24)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(25) { width:8px;height:8px; top:43%; right:84%; background:#ffffff; animation-delay:1.0s; animation-duration:2.6s; }
  .hero-node:nth-child(25)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.6s; }
  .hero-node:nth-child(26) { width:8px;height:8px; top:25%; right:72%; background:var(--teal); animation-delay:3.0s; animation-duration:2.7s; }
  .hero-node:nth-child(26)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(27) { width:10px;height:10px; top:19%; right:49%; background:var(--teal); animation-delay:0.3s; animation-duration:3.3s; }
  .hero-node:nth-child(27)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(28) { width:7px;height:7px; top:15%; right:13%; background:var(--teal); animation-delay:4.9s; animation-duration:2.8s; }
  .hero-node:nth-child(28)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(29) { width:7px;height:7px; top:21%; right:19%; background:#ffffff; animation-delay:0.8s; animation-duration:2.8s; }
  .hero-node:nth-child(29)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(30) { width:9px;height:9px; top:82%; right:57%; background:#ffffff; animation-delay:3.8s; animation-duration:3.0s; }
  .hero-node:nth-child(30)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  
  .hero-node:nth-child(1) { width:6px;height:6px; top:86%; right:17%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(1)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(2) { width:8px;height:8px; top:18%; right:89%; background:var(--teal); animation-delay:3.0s; animation-duration:2.0s; }
  .hero-node:nth-child(2)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(3) { width:9px;height:9px; top:16%; right:30%; background:#ffffff; animation-delay:3.0s; animation-duration:2.8s; }
  .hero-node:nth-child(3)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(4) { width:8px;height:8px; top:88%; right:92%; background:#ffffff; animation-delay:1.1s; animation-duration:2.9s; }
  .hero-node:nth-child(4)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.9s; }
  .hero-node:nth-child(5) { width:12px;height:12px; top:5%; right:23%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(5)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(6) { width:7px;height:7px; top:48%; right:16%; background:#ffffff; animation-delay:0.5s; animation-duration:3.3s; }
  .hero-node:nth-child(6)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(7) { width:6px;height:6px; top:82%; right:36%; background:var(--teal); animation-delay:2.3s; animation-duration:2.2s; }
  .hero-node:nth-child(7)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.2s; }
  .hero-node:nth-child(8) { width:8px;height:8px; top:53%; right:13%; background:var(--teal); animation-delay:4.1s; animation-duration:2.9s; }
  .hero-node:nth-child(8)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.9s; }
  .hero-node:nth-child(9) { width:9px;height:9px; top:51%; right:76%; background:var(--teal); animation-delay:0.3s; animation-duration:3.0s; }
  .hero-node:nth-child(9)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.0s; }
  .hero-node:nth-child(10) { width:9px;height:9px; top:42%; right:13%; background:var(--teal); animation-delay:1.9s; animation-duration:2.7s; }
  .hero-node:nth-child(10)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(11) { width:11px;height:11px; top:51%; right:23%; background:var(--teal); animation-delay:1.0s; animation-duration:2.4s; }
  .hero-node:nth-child(11)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.4s; }
  .hero-node:nth-child(12) { width:7px;height:7px; top:92%; right:85%; background:#ffffff; animation-delay:3.2s; animation-duration:2.8s; }
  .hero-node:nth-child(12)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(13) { width:7px;height:7px; top:36%; right:23%; background:#ffffff; animation-delay:1.3s; animation-duration:3.4s; }
  .hero-node:nth-child(13)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.4s; }
  .hero-node:nth-child(14) { width:11px;height:11px; top:76%; right:31%; background:var(--teal); animation-delay:1.1s; animation-duration:2.0s; }
  .hero-node:nth-child(14)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(15) { width:10px;height:10px; top:45%; right:54%; background:var(--teal); animation-delay:1.1s; animation-duration:3.4s; }
  .hero-node:nth-child(15)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.4s; }
  .hero-node:nth-child(16) { width:7px;height:7px; top:45%; right:30%; background:#ffffff; animation-delay:4.4s; animation-duration:3.0s; }
  .hero-node:nth-child(16)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  .hero-node:nth-child(17) { width:8px;height:8px; top:23%; right:36%; background:var(--teal); animation-delay:3.7s; animation-duration:2.8s; }
  .hero-node:nth-child(17)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(18) { width:6px;height:6px; top:79%; right:57%; background:#ffffff; animation-delay:1.8s; animation-duration:3.5s; }
  .hero-node:nth-child(18)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.5s; }
  .hero-node:nth-child(19) { width:7px;height:7px; top:22%; right:68%; background:var(--teal); animation-delay:3.8s; animation-duration:3.3s; }
  .hero-node:nth-child(19)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(20) { width:8px;height:8px; top:24%; right:83%; background:var(--teal); animation-delay:2.1s; animation-duration:2.1s; }
  .hero-node:nth-child(20)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.1s; }
  .hero-node:nth-child(21) { width:7px;height:7px; top:53%; right:79%; background:#ffffff; animation-delay:1.3s; animation-duration:2.8s; }
  .hero-node:nth-child(21)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(22) { width:7px;height:7px; top:6%; right:90%; background:var(--teal); animation-delay:4.4s; animation-duration:3.1s; }
  .hero-node:nth-child(22)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.1s; }
  .hero-node:nth-child(23) { width:7px;height:7px; top:87%; right:46%; background:var(--teal); animation-delay:2.2s; animation-duration:2.7s; }
  .hero-node:nth-child(23)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(24) { width:8px;height:8px; top:38%; right:67%; background:#ffffff; animation-delay:4.6s; animation-duration:3.3s; }
  .hero-node:nth-child(24)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(25) { width:8px;height:8px; top:43%; right:84%; background:#ffffff; animation-delay:1.0s; animation-duration:2.6s; }
  .hero-node:nth-child(25)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.6s; }
  .hero-node:nth-child(26) { width:8px;height:8px; top:25%; right:72%; background:var(--teal); animation-delay:3.0s; animation-duration:2.7s; }
  .hero-node:nth-child(26)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(27) { width:10px;height:10px; top:19%; right:49%; background:var(--teal); animation-delay:0.3s; animation-duration:3.3s; }
  .hero-node:nth-child(27)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(28) { width:7px;height:7px; top:15%; right:13%; background:var(--teal); animation-delay:4.9s; animation-duration:2.8s; }
  .hero-node:nth-child(28)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(29) { width:7px;height:7px; top:21%; right:19%; background:#ffffff; animation-delay:0.8s; animation-duration:2.8s; }
  .hero-node:nth-child(29)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(30) { width:9px;height:9px; top:82%; right:57%; background:#ffffff; animation-delay:3.8s; animation-duration:3.0s; }
  .hero-node:nth-child(30)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  
  .hero-node:nth-child(1) { width:6px;height:6px; top:86%; right:17%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(1)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(2) { width:8px;height:8px; top:18%; right:89%; background:var(--teal); animation-delay:3.0s; animation-duration:2.0s; }
  .hero-node:nth-child(2)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(3) { width:9px;height:9px; top:16%; right:30%; background:#ffffff; animation-delay:3.0s; animation-duration:2.8s; }
  .hero-node:nth-child(3)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(4) { width:8px;height:8px; top:88%; right:92%; background:#ffffff; animation-delay:1.1s; animation-duration:2.9s; }
  .hero-node:nth-child(4)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.9s; }
  .hero-node:nth-child(5) { width:12px;height:12px; top:5%; right:23%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(5)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(6) { width:7px;height:7px; top:48%; right:16%; background:#ffffff; animation-delay:0.5s; animation-duration:3.3s; }
  .hero-node:nth-child(6)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(7) { width:6px;height:6px; top:82%; right:36%; background:var(--teal); animation-delay:2.3s; animation-duration:2.2s; }
  .hero-node:nth-child(7)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.2s; }
  .hero-node:nth-child(8) { width:8px;height:8px; top:53%; right:13%; background:var(--teal); animation-delay:4.1s; animation-duration:2.9s; }
  .hero-node:nth-child(8)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.9s; }
  .hero-node:nth-child(9) { width:9px;height:9px; top:51%; right:76%; background:var(--teal); animation-delay:0.3s; animation-duration:3.0s; }
  .hero-node:nth-child(9)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.0s; }
  .hero-node:nth-child(10) { width:9px;height:9px; top:42%; right:13%; background:var(--teal); animation-delay:1.9s; animation-duration:2.7s; }
  .hero-node:nth-child(10)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(11) { width:11px;height:11px; top:51%; right:23%; background:var(--teal); animation-delay:1.0s; animation-duration:2.4s; }
  .hero-node:nth-child(11)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.4s; }
  .hero-node:nth-child(12) { width:7px;height:7px; top:92%; right:85%; background:#ffffff; animation-delay:3.2s; animation-duration:2.8s; }
  .hero-node:nth-child(12)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(13) { width:7px;height:7px; top:36%; right:23%; background:#ffffff; animation-delay:1.3s; animation-duration:3.4s; }
  .hero-node:nth-child(13)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.4s; }
  .hero-node:nth-child(14) { width:11px;height:11px; top:76%; right:31%; background:var(--teal); animation-delay:1.1s; animation-duration:2.0s; }
  .hero-node:nth-child(14)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(15) { width:10px;height:10px; top:45%; right:54%; background:var(--teal); animation-delay:1.1s; animation-duration:3.4s; }
  .hero-node:nth-child(15)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.4s; }
  .hero-node:nth-child(16) { width:7px;height:7px; top:45%; right:30%; background:#ffffff; animation-delay:4.4s; animation-duration:3.0s; }
  .hero-node:nth-child(16)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  .hero-node:nth-child(17) { width:8px;height:8px; top:23%; right:36%; background:var(--teal); animation-delay:3.7s; animation-duration:2.8s; }
  .hero-node:nth-child(17)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(18) { width:6px;height:6px; top:79%; right:57%; background:#ffffff; animation-delay:1.8s; animation-duration:3.5s; }
  .hero-node:nth-child(18)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.5s; }
  .hero-node:nth-child(19) { width:7px;height:7px; top:22%; right:68%; background:var(--teal); animation-delay:3.8s; animation-duration:3.3s; }
  .hero-node:nth-child(19)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(20) { width:8px;height:8px; top:24%; right:83%; background:var(--teal); animation-delay:2.1s; animation-duration:2.1s; }
  .hero-node:nth-child(20)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.1s; }
  .hero-node:nth-child(21) { width:7px;height:7px; top:53%; right:79%; background:#ffffff; animation-delay:1.3s; animation-duration:2.8s; }
  .hero-node:nth-child(21)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(22) { width:7px;height:7px; top:6%; right:90%; background:var(--teal); animation-delay:4.4s; animation-duration:3.1s; }
  .hero-node:nth-child(22)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.1s; }
  .hero-node:nth-child(23) { width:7px;height:7px; top:87%; right:46%; background:var(--teal); animation-delay:2.2s; animation-duration:2.7s; }
  .hero-node:nth-child(23)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(24) { width:8px;height:8px; top:38%; right:67%; background:#ffffff; animation-delay:4.6s; animation-duration:3.3s; }
  .hero-node:nth-child(24)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(25) { width:8px;height:8px; top:43%; right:84%; background:#ffffff; animation-delay:1.0s; animation-duration:2.6s; }
  .hero-node:nth-child(25)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.6s; }
  .hero-node:nth-child(26) { width:8px;height:8px; top:25%; right:72%; background:var(--teal); animation-delay:3.0s; animation-duration:2.7s; }
  .hero-node:nth-child(26)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(27) { width:10px;height:10px; top:19%; right:49%; background:var(--teal); animation-delay:0.3s; animation-duration:3.3s; }
  .hero-node:nth-child(27)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(28) { width:7px;height:7px; top:15%; right:13%; background:var(--teal); animation-delay:4.9s; animation-duration:2.8s; }
  .hero-node:nth-child(28)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(29) { width:7px;height:7px; top:21%; right:19%; background:#ffffff; animation-delay:0.8s; animation-duration:2.8s; }
  .hero-node:nth-child(29)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(30) { width:9px;height:9px; top:82%; right:57%; background:#ffffff; animation-delay:3.8s; animation-duration:3.0s; }
  .hero-node:nth-child(30)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  
  .hero-node:nth-child(1) { width:6px;height:6px; top:86%; right:17%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(1)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(2) { width:8px;height:8px; top:18%; right:89%; background:var(--teal); animation-delay:3.0s; animation-duration:2.0s; }
  .hero-node:nth-child(2)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(3) { width:9px;height:9px; top:16%; right:30%; background:#ffffff; animation-delay:3.0s; animation-duration:2.8s; }
  .hero-node:nth-child(3)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(4) { width:8px;height:8px; top:88%; right:92%; background:#ffffff; animation-delay:1.1s; animation-duration:2.9s; }
  .hero-node:nth-child(4)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.9s; }
  .hero-node:nth-child(5) { width:12px;height:12px; top:5%; right:23%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(5)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(6) { width:7px;height:7px; top:48%; right:16%; background:#ffffff; animation-delay:0.5s; animation-duration:3.3s; }
  .hero-node:nth-child(6)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(7) { width:6px;height:6px; top:82%; right:36%; background:var(--teal); animation-delay:2.3s; animation-duration:2.2s; }
  .hero-node:nth-child(7)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.2s; }
  .hero-node:nth-child(8) { width:8px;height:8px; top:53%; right:13%; background:var(--teal); animation-delay:4.1s; animation-duration:2.9s; }
  .hero-node:nth-child(8)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.9s; }
  .hero-node:nth-child(9) { width:9px;height:9px; top:51%; right:76%; background:var(--teal); animation-delay:0.3s; animation-duration:3.0s; }
  .hero-node:nth-child(9)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.0s; }
  .hero-node:nth-child(10) { width:9px;height:9px; top:42%; right:13%; background:var(--teal); animation-delay:1.9s; animation-duration:2.7s; }
  .hero-node:nth-child(10)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(11) { width:11px;height:11px; top:51%; right:23%; background:var(--teal); animation-delay:1.0s; animation-duration:2.4s; }
  .hero-node:nth-child(11)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.4s; }
  .hero-node:nth-child(12) { width:7px;height:7px; top:92%; right:85%; background:#ffffff; animation-delay:3.2s; animation-duration:2.8s; }
  .hero-node:nth-child(12)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(13) { width:7px;height:7px; top:36%; right:23%; background:#ffffff; animation-delay:1.3s; animation-duration:3.4s; }
  .hero-node:nth-child(13)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.4s; }
  .hero-node:nth-child(14) { width:11px;height:11px; top:76%; right:31%; background:var(--teal); animation-delay:1.1s; animation-duration:2.0s; }
  .hero-node:nth-child(14)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(15) { width:10px;height:10px; top:45%; right:54%; background:var(--teal); animation-delay:1.1s; animation-duration:3.4s; }
  .hero-node:nth-child(15)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.4s; }
  .hero-node:nth-child(16) { width:7px;height:7px; top:45%; right:30%; background:#ffffff; animation-delay:4.4s; animation-duration:3.0s; }
  .hero-node:nth-child(16)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  .hero-node:nth-child(17) { width:8px;height:8px; top:23%; right:36%; background:var(--teal); animation-delay:3.7s; animation-duration:2.8s; }
  .hero-node:nth-child(17)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(18) { width:6px;height:6px; top:79%; right:57%; background:#ffffff; animation-delay:1.8s; animation-duration:3.5s; }
  .hero-node:nth-child(18)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.5s; }
  .hero-node:nth-child(19) { width:7px;height:7px; top:22%; right:68%; background:var(--teal); animation-delay:3.8s; animation-duration:3.3s; }
  .hero-node:nth-child(19)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(20) { width:8px;height:8px; top:24%; right:83%; background:var(--teal); animation-delay:2.1s; animation-duration:2.1s; }
  .hero-node:nth-child(20)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.1s; }
  .hero-node:nth-child(21) { width:7px;height:7px; top:53%; right:79%; background:#ffffff; animation-delay:1.3s; animation-duration:2.8s; }
  .hero-node:nth-child(21)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(22) { width:7px;height:7px; top:6%; right:90%; background:var(--teal); animation-delay:4.4s; animation-duration:3.1s; }
  .hero-node:nth-child(22)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.1s; }
  .hero-node:nth-child(23) { width:7px;height:7px; top:87%; right:46%; background:var(--teal); animation-delay:2.2s; animation-duration:2.7s; }
  .hero-node:nth-child(23)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(24) { width:8px;height:8px; top:38%; right:67%; background:#ffffff; animation-delay:4.6s; animation-duration:3.3s; }
  .hero-node:nth-child(24)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(25) { width:8px;height:8px; top:43%; right:84%; background:#ffffff; animation-delay:1.0s; animation-duration:2.6s; }
  .hero-node:nth-child(25)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.6s; }
  .hero-node:nth-child(26) { width:8px;height:8px; top:25%; right:72%; background:var(--teal); animation-delay:3.0s; animation-duration:2.7s; }
  .hero-node:nth-child(26)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(27) { width:10px;height:10px; top:19%; right:49%; background:var(--teal); animation-delay:0.3s; animation-duration:3.3s; }
  .hero-node:nth-child(27)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(28) { width:7px;height:7px; top:15%; right:13%; background:var(--teal); animation-delay:4.9s; animation-duration:2.8s; }
  .hero-node:nth-child(28)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(29) { width:7px;height:7px; top:21%; right:19%; background:#ffffff; animation-delay:0.8s; animation-duration:2.8s; }
  .hero-node:nth-child(29)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(30) { width:9px;height:9px; top:82%; right:57%; background:#ffffff; animation-delay:3.8s; animation-duration:3.0s; }
  .hero-node:nth-child(30)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  
  .hero-node:nth-child(1) { width:6px;height:6px; top:86%; right:17%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(1)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(2) { width:8px;height:8px; top:18%; right:89%; background:var(--teal); animation-delay:3.0s; animation-duration:2.0s; }
  .hero-node:nth-child(2)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(3) { width:9px;height:9px; top:16%; right:30%; background:#ffffff; animation-delay:3.0s; animation-duration:2.8s; }
  .hero-node:nth-child(3)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(4) { width:8px;height:8px; top:88%; right:92%; background:#ffffff; animation-delay:1.1s; animation-duration:2.9s; }
  .hero-node:nth-child(4)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.9s; }
  .hero-node:nth-child(5) { width:12px;height:12px; top:5%; right:23%; background:var(--teal); animation-delay:1.4s; animation-duration:2.3s; }
  .hero-node:nth-child(5)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.3s; }
  .hero-node:nth-child(6) { width:7px;height:7px; top:48%; right:16%; background:#ffffff; animation-delay:0.5s; animation-duration:3.3s; }
  .hero-node:nth-child(6)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(7) { width:6px;height:6px; top:82%; right:36%; background:var(--teal); animation-delay:2.3s; animation-duration:2.2s; }
  .hero-node:nth-child(7)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.2s; }
  .hero-node:nth-child(8) { width:8px;height:8px; top:53%; right:13%; background:var(--teal); animation-delay:4.1s; animation-duration:2.9s; }
  .hero-node:nth-child(8)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.9s; }
  .hero-node:nth-child(9) { width:9px;height:9px; top:51%; right:76%; background:var(--teal); animation-delay:0.3s; animation-duration:3.0s; }
  .hero-node:nth-child(9)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.0s; }
  .hero-node:nth-child(10) { width:9px;height:9px; top:42%; right:13%; background:var(--teal); animation-delay:1.9s; animation-duration:2.7s; }
  .hero-node:nth-child(10)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(11) { width:11px;height:11px; top:51%; right:23%; background:var(--teal); animation-delay:1.0s; animation-duration:2.4s; }
  .hero-node:nth-child(11)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.4s; }
  .hero-node:nth-child(12) { width:7px;height:7px; top:92%; right:85%; background:#ffffff; animation-delay:3.2s; animation-duration:2.8s; }
  .hero-node:nth-child(12)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(13) { width:7px;height:7px; top:36%; right:23%; background:#ffffff; animation-delay:1.3s; animation-duration:3.4s; }
  .hero-node:nth-child(13)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.4s; }
  .hero-node:nth-child(14) { width:11px;height:11px; top:76%; right:31%; background:var(--teal); animation-delay:1.1s; animation-duration:2.0s; }
  .hero-node:nth-child(14)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.0s; }
  .hero-node:nth-child(15) { width:10px;height:10px; top:45%; right:54%; background:var(--teal); animation-delay:1.1s; animation-duration:3.4s; }
  .hero-node:nth-child(15)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.4s; }
  .hero-node:nth-child(16) { width:7px;height:7px; top:45%; right:30%; background:#ffffff; animation-delay:4.4s; animation-duration:3.0s; }
  .hero-node:nth-child(16)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  .hero-node:nth-child(17) { width:8px;height:8px; top:23%; right:36%; background:var(--teal); animation-delay:3.7s; animation-duration:2.8s; }
  .hero-node:nth-child(17)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(18) { width:6px;height:6px; top:79%; right:57%; background:#ffffff; animation-delay:1.8s; animation-duration:3.5s; }
  .hero-node:nth-child(18)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.5s; }
  .hero-node:nth-child(19) { width:7px;height:7px; top:22%; right:68%; background:var(--teal); animation-delay:3.8s; animation-duration:3.3s; }
  .hero-node:nth-child(19)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(20) { width:8px;height:8px; top:24%; right:83%; background:var(--teal); animation-delay:2.1s; animation-duration:2.1s; }
  .hero-node:nth-child(20)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.1s; }
  .hero-node:nth-child(21) { width:7px;height:7px; top:53%; right:79%; background:#ffffff; animation-delay:1.3s; animation-duration:2.8s; }
  .hero-node:nth-child(21)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(22) { width:7px;height:7px; top:6%; right:90%; background:var(--teal); animation-delay:4.4s; animation-duration:3.1s; }
  .hero-node:nth-child(22)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.1s; }
  .hero-node:nth-child(23) { width:7px;height:7px; top:87%; right:46%; background:var(--teal); animation-delay:2.2s; animation-duration:2.7s; }
  .hero-node:nth-child(23)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(24) { width:8px;height:8px; top:38%; right:67%; background:#ffffff; animation-delay:4.6s; animation-duration:3.3s; }
  .hero-node:nth-child(24)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.3s; }
  .hero-node:nth-child(25) { width:8px;height:8px; top:43%; right:84%; background:#ffffff; animation-delay:1.0s; animation-duration:2.6s; }
  .hero-node:nth-child(25)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.6s; }
  .hero-node:nth-child(26) { width:8px;height:8px; top:25%; right:72%; background:var(--teal); animation-delay:3.0s; animation-duration:2.7s; }
  .hero-node:nth-child(26)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.7s; }
  .hero-node:nth-child(27) { width:10px;height:10px; top:19%; right:49%; background:var(--teal); animation-delay:0.3s; animation-duration:3.3s; }
  .hero-node:nth-child(27)::after { border-color: rgba(0,194,168,0.4); animation-duration:3.3s; }
  .hero-node:nth-child(28) { width:7px;height:7px; top:15%; right:13%; background:var(--teal); animation-delay:4.9s; animation-duration:2.8s; }
  .hero-node:nth-child(28)::after { border-color: rgba(0,194,168,0.4); animation-duration:2.8s; }
  .hero-node:nth-child(29) { width:7px;height:7px; top:21%; right:19%; background:#ffffff; animation-delay:0.8s; animation-duration:2.8s; }
  .hero-node:nth-child(29)::after { border-color: rgba(255,255,255,0.3); animation-duration:2.8s; }
  .hero-node:nth-child(30) { width:9px;height:9px; top:82%; right:57%; background:#ffffff; animation-delay:3.8s; animation-duration:3.0s; }
  .hero-node:nth-child(30)::after { border-color: rgba(255,255,255,0.3); animation-duration:3.0s; }
  /* Animated connection lines (SVG) */
  .hero-lines {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0.18;
  }
  .hero-line {
    stroke: var(--teal); stroke-width: 1; fill: none;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine2 1.8s ease-in-out infinite;
  }
  .hero-line:nth-child(1) { animation-delay: 0s; }
  .hero-line:nth-child(2) { animation-delay: 1.2s; }
  .hero-line:nth-child(3) { animation-delay: 2.4s; }
  .hero-line:nth-child(4) { animation-delay: 3.6s; }
  @keyframes drawLine2 {
    0%   { stroke-dashoffset: 300; opacity: 0; }
    20%  { opacity: 1; }
    60%  { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -300; opacity: 0; }
  }
  /* Floating data packets */
  .hero-packet {
    position: absolute; width: 5px; height: 5px;
    background: var(--teal); border-radius: 50%;
    opacity: 0;
    animation: packetTravel 2s linear infinite;
  }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  @keyframes packetTravel {
    0%   { opacity:0; transform: translate(0,0) scale(0.5); }
    10%  { opacity:1; transform: translate(0,0) scale(1); }
    90%  { opacity:1; }
    100% { opacity:0; transform: translate(var(--tx), var(--ty)) scale(0.5); }
  }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  
  .hero-packet:nth-child(31) { top:87%; right:46%; background:#ffffff; --tx:264px; --ty:-225px; animation-delay:2.0s; animation-duration:2.1s; }
  .hero-packet:nth-child(32) { top:45%; right:54%; background:var(--teal); --tx:280px; --ty:-120px; animation-delay:2.6s; animation-duration:1.4s; }
  .hero-packet:nth-child(33) { top:16%; right:30%; background:var(--teal); --tx:56px; --ty:175px; animation-delay:0.1s; animation-duration:1.9s; }
  .hero-packet:nth-child(34) { top:53%; right:13%; background:var(--teal); --tx:-32px; --ty:165px; animation-delay:0.4s; animation-duration:2.0s; }
  .hero-packet:nth-child(35) { top:16%; right:30%; background:var(--teal); --tx:88px; --ty:25px; animation-delay:0.2s; animation-duration:1.6s; }
  .hero-packet:nth-child(36) { top:53%; right:13%; background:var(--teal); --tx:-504px; --ty:-10px; animation-delay:3.3s; animation-duration:1.5s; }
  .hero-packet:nth-child(37) { top:38%; right:67%; background:var(--teal); --tx:80px; --ty:220px; animation-delay:4.4s; animation-duration:1.9s; }
  .hero-packet:nth-child(38) { top:25%; right:72%; background:var(--teal); --tx:336px; --ty:100px; animation-delay:4.0s; animation-duration:1.4s; }
  .hero-packet:nth-child(39) { top:6%; right:90%; background:var(--teal); --tx:472px; --ty:350px; animation-delay:1.8s; animation-duration:1.7s; }
  .hero-packet:nth-child(40) { top:18%; right:89%; background:var(--teal); --tx:-8px; --ty:-60px; animation-delay:3.3s; animation-duration:2.0s; }
  .hero-packet:nth-child(41) { top:36%; right:23%; background:var(--teal); --tx:-352px; --ty:10px; animation-delay:1.7s; animation-duration:2.3s; }
  .hero-packet:nth-child(42) { top:82%; right:36%; background:var(--teal); --tx:0px; --ty:0px; animation-delay:2.7s; animation-duration:1.4s; }
  .hero-packet:nth-child(43) { top:51%; right:76%; background:#ffffff; --tx:176px; --ty:-30px; animation-delay:1.2s; animation-duration:2.4s; }
  .hero-packet:nth-child(44) { top:25%; right:72%; background:var(--teal); --tx:472px; --ty:-50px; animation-delay:4.3s; animation-duration:1.3s; }
  .hero-packet:nth-child(45) { top:79%; right:57%; background:var(--teal); --tx:64px; --ty:-300px; animation-delay:0.1s; animation-duration:1.3s; }
  .hero-packet:nth-child(46) { top:48%; right:16%; background:#ffffff; --tx:-120px; --ty:140px; animation-delay:2.4s; animation-duration:1.5s; }
  .hero-packet:nth-child(47) { top:21%; right:19%; background:#ffffff; --tx:-560px; --ty:-15px; animation-delay:0.8s; animation-duration:1.2s; }
  .hero-packet:nth-child(48) { top:51%; right:76%; background:#ffffff; --tx:152px; --ty:155px; animation-delay:3.9s; animation-duration:1.8s; }
  .hero-packet:nth-child(49) { top:87%; right:46%; background:var(--teal); --tx:-168px; --ty:-245px; animation-delay:5.0s; animation-duration:1.9s; }
  .hero-packet:nth-child(50) { top:45%; right:30%; background:var(--teal); --tx:56px; --ty:-200px; animation-delay:0.9s; animation-duration:1.5s; }
  /* Glow orbs */
  .hero-orb {
    position: absolute; border-radius: 50%; filter: blur(70px);
    animation: orbFloat 5s ease-in-out infinite alternate;
  }
  .hero-orb-1 {
    width: 380px; height: 380px;
    background: rgba(0,194,168,0.09);
    top: -80px; right: -60px;
  }
  .hero-orb-2 {
    width: 260px; height: 260px;
    background: rgba(0,100,200,0.08);
    bottom: -40px; right: 30%;
    animation-delay: -5s;
  }
  @keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.1); }
  }
  /* Dark overlay so text stays readable */
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(15,31,61,0.97) 0%,
      rgba(15,31,61,0.88) 45%,
      rgba(15,31,61,0.55) 100%
    );
    z-index: 1;
  }
  .hero-inner { max-width: 760px; position: relative; z-index: 2; }
  .hero-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); background: rgba(0,194,168,0.12);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
  }
  .hero h1 {
    font-size: clamp(34px, 5vw, 54px); font-weight: 800; color: var(--white);
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 24px;
  }
  .hero h1 .underline-wrap { position: relative; display: inline-block; }
  .hero h1 .underline-wrap::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    height: 3px; width: 0; background: var(--teal);
    border-radius: 2px;
    animation: drawLine 1.2s ease-out 0.6s forwards;
  }
  @keyframes drawLine { to { width: 100%; } }
  .hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.7;
    max-width: 620px; margin-bottom: 40px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
  .btn-primary {
    background: var(--teal); color: var(--navy); font-weight: 700; font-size: 15px;
    padding: 14px 28px; border-radius: var(--radius); border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s; display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--white); font-weight: 600; font-size: 15px;
    padding: 13px 28px; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,0.30);
    cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--teal); background: rgba(0,194,168,0.08); }
  .hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
  .trust-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

  /* ── ALERT BANNER ── */
  .alert-banner {
    background: #FEF2F2; border-bottom: 3px solid var(--red-alert);
    padding: 16px 5%; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  }
  .alert-badge {
    background: var(--red-alert); color: var(--white);
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
  }
  .alert-text { font-size: 14px; color: #991B1B; font-weight: 500; flex: 1; }
  .alert-link { font-size: 14px; font-weight: 700; color: var(--red-alert); white-space: nowrap; }
  .alert-link:hover { text-decoration: underline; }

  /* ── SECTIONS ── */
  section { padding: 80px 5%; }
  .section-white { background: var(--white); }
  .section-grey { background: var(--grey-bg); }
  .section-navy { background: var(--navy); }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 14px;
  }
  .section-label-light { color: rgba(0,194,168,0.9); }
  h2.section-title {
    font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--text-dark);
    letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px;
  }
  h2.section-title-light { color: var(--white); }
  .section-sub { font-size: 17px; color: var(--text-body); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
  .section-sub-light { color: rgba(255,255,255,0.68); }
  .centered { text-align: center; }
  .centered .section-sub { margin-left: auto; margin-right: auto; }

  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
  }
  .service-card {
    background: var(--white); border: 1.5px solid var(--grey-mid);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer; display: flex; flex-direction: column;
  }
  .service-card p { flex: 1; }
  .service-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
  .service-icon {
    width: 48px; height: 48px; background: rgba(0,194,168,0.10);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .service-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
  .service-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
  .service-link { font-size: 13px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 4px; }
  .service-link::after { content: '→'; transition: transform 0.2s; }
  .service-card:hover .service-link::after { transform: translateX(4px); }

  /* ── WHY FLEXICOM ── */
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
  .why-item { }
  .why-num {
    font-size: 64px !important; font-weight: 800 !important; color: #00C2A8 !important;
    line-height: 1 !important; margin-bottom: 16px; font-variant-numeric: tabular-nums;
  }
  .why-item h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .why-item p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.65; }

  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--grey-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  @media (max-width: 700px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
  }
  .stat-item { background: var(--white); padding: 32px 24px; text-align: center; }
  .stat-num { font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
  .stat-num span { color: var(--teal); }
  .stat-label { font-size: 13px; color: var(--text-body); line-height: 1.4; }

  /* ── SERVICE DETAIL PAGES ── */
  .service-detail { scroll-margin-top: 62px; }
  @media (max-width: 768px) {
    .service-detail { scroll-margin-top: 120px; }
  }
  .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .detail-grid.reverse { direction: rtl; }
  .detail-grid.reverse > * { direction: ltr; }
  .detail-content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px; }
  .detail-content p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
  .detail-features { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
  .detail-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); }
  .detail-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
  .detail-visual {
    background: var(--grey-bg); border-radius: var(--radius-lg);
    padding: 40px; display: flex; flex-direction: column; gap: 16px;
    border: 1.5px solid var(--grey-mid);
  }
  .detail-visual-title { font-size: 13px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
  .feature-pill {
    background: var(--white); border: 1.5px solid var(--grey-mid); border-radius: 8px;
    padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--text-dark);
    display: flex; align-items: center; gap: 10px;
  }
  .feature-pill-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
  .btn-navy {
    background: var(--navy); color: var(--white); font-weight: 700; font-size: 15px;
    padding: 13px 26px; border-radius: var(--radius); border: none; cursor: pointer;
    display: inline-block; transition: background 0.2s;
  }
  .btn-navy:hover { background: var(--navy-mid); }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .testimonial-card {
    background: var(--white); border: 1.5px solid var(--grey-mid); border-radius: var(--radius-lg);
    padding: 28px 24px;
  }
  .stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
  .testimonial-card blockquote { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
  .testimonial-author { font-size: 13px; font-weight: 700; color: var(--text-dark); }
  .testimonial-role { font-size: 12px; color: var(--text-light); }

  /* ── CTA SECTION ── */
  .cta-box {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute; bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,194,168,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-box h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.5px; }
  .cta-box p { font-size: 16px; color: rgba(255,255,255,0.68); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
  .cta-box-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-phone { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 18px; }
  .cta-phone a { color: var(--teal); font-weight: 700; }

  /* ── CONTACT FORM ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-info h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 16px; }
  .contact-info p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 28px; }
  .contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
  .contact-icon {
    width: 40px; height: 40px; background: rgba(0,194,168,0.10); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .contact-detail-text p { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
  .contact-detail-text span { font-size: 14px; color: var(--text-body); }
  .contact-form { background: var(--grey-bg); border-radius: var(--radius-lg); padding: 36px; border: 1.5px solid var(--grey-mid); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--font);
    border: 1.5px solid var(--grey-mid); border-radius: var(--radius); background: var(--white);
    color: var(--text-dark); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,194,168,0.12);
  }
  .form-group textarea { min-height: 100px; resize: vertical; }
  .form-submit { width: 100%; padding: 14px; background: var(--teal); color: var(--navy); font-size: 15px; font-weight: 700; border: none; border-radius: var(--radius); cursor: pointer; transition: background 0.2s; font-family: var(--font); }
  .form-submit:hover { background: var(--teal-dark); color: var(--white); }
  .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

  /* ── ABOUT ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .about-content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 16px; }
  .about-content p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
  .values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
  .value-item { display: flex; gap: 14px; align-items: flex-start; }
  .value-icon { width: 36px; height: 36px; background: rgba(0,194,168,0.10); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .value-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .value-text h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
  .value-text p { font-size: 13px; color: var(--text-body); line-height: 1.5; margin: 0; }

  /* ── FOOTER ── */
  footer {
    background: #080F1E; color: rgba(255,255,255,0.55);
    padding: 60px 5% 30px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand .nav-logo { font-size: 20px; margin-bottom: 14px; display: block; }
  .footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--teal); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
  .footer-bottom p { font-size: 12px; }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.45); }
  .footer-bottom-links a:hover { color: var(--teal); }

  /* ── MOBILE ── */

  .logo-svg-wrap { display: inline-block; line-height: 0; }
  .logo-svg-wrap svg { display: block; width: auto; }
  .logo-svg-nav svg { width: auto; height: 40px; }
  .logo-svg-footer { display: block; margin-bottom: 14px; }
  .logo-svg-footer svg { width: auto; height: 50px; }
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      padding: 16px 20px 10px;
      position: static;
    }
    .nav-logo {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }
    .logo-svg-wrap.logo-svg-nav {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .logo-svg-nav svg {
      width: auto !important;
      height: 70px !important;
      max-width: 80vw !important;
      display: block;
      margin: 0 auto;
    }
    .nav-toggle {
      position: static !important;
      transform: none !important;
      display: block;
      margin: 0 auto 4px;
    }
    .nav-links { display: none; }
    .mobile-menu {
      position: fixed; top: 140px; left: 0; right: 0; bottom: 0;
      background: var(--navy); z-index: 99; padding: 32px 24px;
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
    .mobile-menu a { display: block; padding: 14px 0; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .mobile-menu a:hover { color: var(--teal); }
    .mobile-menu .mob-cta { margin-top: 20px; background: var(--teal); color: var(--navy); border-radius: var(--radius); padding: 14px; text-align: center; font-weight: 700; border: none; }
    section { padding: 56px 20px; }
    .hero { padding: 56px 20px 48px; }
    .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 36px 24px; }
    .alert-banner { padding: 14px 20px; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ── SMOOTH REVEAL ── */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  /* ── POLICY MODALS ── */
  .modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(10,20,40,0.7); backdrop-filter: blur(3px);
    overflow-y: auto; padding: 40px 20px;
  }
  .modal-backdrop.open { display: flex; align-items: flex-start; justify-content: center; }
  .modal {
    background: var(--white); border-radius: var(--radius-lg);
    max-width: 760px; width: 100%; padding: 48px;
    position: relative; margin: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--grey-bg); border: none; border-radius: 50%;
    width: 36px; height: 36px; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-body); transition: background 0.2s;
  }
  .modal-close:hover { background: var(--grey-mid); }
  .modal h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.5px; }
  .modal .policy-date { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
  .modal h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 24px 0 8px; }
  .modal p { font-size: 14px; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; }
  .modal ul { padding-left: 20px; margin-bottom: 12px; }
  .modal ul li { font-size: 14px; color: var(--text-body); line-height: 1.8; margin-bottom: 4px; }
  .modal a { color: var(--teal); }
  .modal .policy-divider { border: none; border-top: 1px solid var(--grey-mid); margin: 20px 0; }
  @media (max-width: 768px) { .modal { padding: 32px 24px; } }

  /* ── COOKIE CONSENT BANNER ── */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--navy); border-top: 3px solid var(--teal);
    padding: 18px 5%; display: flex; align-items: center;
    justify-content: space-between; gap: 24px; flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner-text { flex: 1; min-width: 260px; }
  .cookie-banner-text p {
    font-size: 13px; color: rgba(255,255,255,0.80);
    line-height: 1.6; margin: 0;
  }
  .cookie-banner-text a { color: var(--teal); text-decoration: underline; }
  .cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
  .cookie-btn-accept {
    background: var(--teal); color: var(--navy);
    font-size: 13px; font-weight: 700; padding: 9px 22px;
    border: none; border-radius: var(--radius); cursor: pointer;
    transition: background 0.2s; white-space: nowrap; font-family: var(--font);
  }
  .cookie-btn-accept:hover { background: var(--teal-dark); color: var(--white); }
  .cookie-btn-decline {
    background: transparent; color: rgba(255,255,255,0.70);
    font-size: 13px; font-weight: 500; padding: 9px 18px;
    border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius);
    cursor: pointer; transition: border-color 0.2s, color 0.2s;
    white-space: nowrap; font-family: var(--font);
  }
  .cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
  @media (max-width: 600px) {
    .cookie-banner { padding: 16px 20px; }
    .cookie-banner-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
  }  .section-navy

  
/* BACK TO TOP */
a.btt {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #00C2A8;
  text-decoration: none;
  margin-top: 24px;
  padding: 4px 0;
  opacity: 0.85;
}
a.btt:hover { opacity: 1; }
.section-navy a.btt { color: rgba(255,255,255,0.60); }
.section-navy a.btt:hover { color: #00C2A8; }
