:root {
    --navy: #0F2854;
    --navy-dark: #081830;
    --navy-mid: #142f60;
    --electric: #0066FF;
    --electric-light: #2d84ff;
    --neon: #FFD400;
    --neon-dim: rgba(255,212,0,0.15);
    --white: #ffffff;
    --gray-100: #f0f4fa;
    --gray-200: #d8e2f0;
    --gray-400: #8a9fc0;
    --gray-600: #4a6080;
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.08);
    --glow-blue: rgba(0,102,255,0.3);
    --glow-neon: rgba(255,212,0,0.25);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
  }

  h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }

  /* ── CANVAS BACKGROUND ── */
  #bg-canvas {
    position: fixed; top:0; left:0; width:100%; height:100%;
    z-index: 0; pointer-events: none; opacity: 0.55;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    background: rgba(8,24,48,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s;
  }
  nav.scrolled {
    height: 62px;
    background: rgba(8,24,48,0.97);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .nav-logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--electric), var(--navy));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .nav-logo-icon::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,212,0,0.3));
  }
  .nav-logo-icon svg { width:20px; height:20px; color: white; }
  .nav-logo-text { font-family:'Syne',sans-serif; font-weight:700; font-size:1rem; color:white; line-height:1.1; }
  .nav-logo-text span { display:block; font-size:0.65rem; font-weight:400; color:var(--gray-400); letter-spacing:0.12em; text-transform:uppercase; }
  .nav-links { display:flex; gap:2rem; list-style:none; }
  .nav-links a {
    text-decoration:none; color:var(--gray-400); font-size:0.88rem; font-weight:500;
    letter-spacing:0.02em; transition:color 0.2s; position:relative; padding-bottom:2px;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:0; left:0; width:0; height:1px;
    background:var(--neon); transition:width 0.3s;
  }
  .nav-links a:hover { color:white; }
  .nav-links a:hover::after { width:100%; }
  .nav-cta {
    background: var(--electric); color: white; padding: 9px 22px;
    border-radius: 6px; text-decoration: none; font-size: 0.85rem; font-weight: 600;
    transition: all 0.2s; box-shadow: 0 0 0 0 var(--glow-blue);
    font-family: 'DM Sans', sans-serif;
  }
  .nav-cta:hover {
    background: var(--electric-light);
    box-shadow: 0 0 20px var(--glow-blue), 0 4px 16px rgba(0,0,0,0.3);
    transform: translateY(-1px);
  }
  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
  .hamburger span { display:block; width:24px; height:2px; background:white; border-radius:2px; transition:0.3s; }

  /* ── SECTIONS GENERAL ── */
  section { position: relative; z-index: 1; }

  
  .container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--neon); margin-bottom: 1rem;
  }
  .section-label::before {
    content: ''; display: block; width: 20px; height: 2px; background: var(--neon); border-radius: 2px;
  }
  .section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15;
    color: white; margin-bottom: 1rem;
  }
  .section-subtitle {
    font-size: 1.05rem; color: var(--gray-400); line-height: 1.7; max-width: 560px;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative; overflow: hidden;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    max-width: 1200px; margin: 0 auto; width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.3);
    padding: 6px 14px; border-radius: 100px; margin-bottom: 1.5rem;
    font-size: 0.78rem; font-weight: 500; color: var(--electric-light);
    letter-spacing: 0.06em;
  }
  .hero-eyebrow::before {
    content: ''; display:block; width:6px; height:6px; border-radius:50%;
    background: var(--neon); box-shadow: 0 0 8px var(--neon);
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)}
  }
  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1;
    margin-bottom: 1.4rem; color: white;
  }
  .hero-title .accent { color: var(--neon); }
  .hero-title .blue { color: var(--electric-light); }
  .hero-desc {
    font-size: 1.05rem; color: var(--gray-400); line-height: 1.75;
    margin-bottom: 2.2rem; max-width: 480px;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--electric); color: white; padding: 13px 28px;
    border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.92rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s; box-shadow: 0 4px 24px rgba(0,102,255,0.35);
    font-family: 'DM Sans', sans-serif; border: none; cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--electric-light); transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,102,255,0.5);
  }
  .btn-secondary {
    background: transparent; color: white; padding: 13px 28px;
    border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.92rem;
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--card-border); transition: all 0.25s;
    font-family: 'DM Sans', sans-serif; cursor: pointer;
  }
  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }
  .hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--card-border);
  }
  .hero-stat-num {
    font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800;
    color: white; line-height: 1;
  }
  .hero-stat-num span { color: var(--neon); }
  .hero-stat-label { font-size: 0.78rem; color: var(--gray-400); margin-top: 4px; }

  /* Hero Visual */
  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    min-height: 460px;
  }
  .hero-orb {
    position: absolute; width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(0,102,255,0.35), rgba(15,40,84,0.1) 60%, transparent);
    filter: blur(1px);
    animation: orb-float 8s ease-in-out infinite;
  }
  @keyframes orb-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
  .hero-device {
    position: relative; z-index: 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 40px;
    backdrop-filter: blur(10px);
    width: 340px; box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,102,255,0.15);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-device-logo {
    width: 220px; height: 220px;
    display: flex; align-items: center; justify-content: center;
    animation: orb-float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 32px rgba(0,102,255,0.45));
  }
  .device-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
  }
  .device-dots { display:flex; gap:6px; }
  .device-dots span { width:8px; height:8px; border-radius:50%; }
  .device-dots span:nth-child(1) { background:#ff5f57; }
  .device-dots span:nth-child(2) { background:#ffbd2e; }
  .device-dots span:nth-child(3) { background:#28ca42; }
  .device-title { font-size:0.7rem; color:var(--gray-400); font-weight:500; letter-spacing:0.08em; }
  .device-status { display:flex; align-items:center; gap:5px; font-size:0.65rem; color:#28ca42; }
  .device-status::before { content:''; width:5px; height:5px; border-radius:50%; background:#28ca42; animation:pulse-dot 1.5s infinite; }
  .network-nodes { position: relative; height: 200px; margin-bottom: 16px; }
  .node {
    position: absolute; width: 10px; height: 10px; border-radius: 50%;
    background: var(--electric); box-shadow: 0 0 12px var(--glow-blue);
    animation: node-pulse 3s ease-in-out infinite;
  }
  .node.core {
    width: 16px; height: 16px; background: var(--neon);
    box-shadow: 0 0 20px var(--glow-neon);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
  }
  .node:nth-child(2) { top:15%; left:20%; animation-delay:-0.5s; }
  .node:nth-child(3) { top:10%; left:70%; animation-delay:-1s; }
  .node:nth-child(4) { top:65%; left:10%; animation-delay:-1.5s; }
  .node:nth-child(5) { top:75%; left:75%; animation-delay:-2s; }
  .node:nth-child(6) { top:35%; left:85%; animation-delay:-0.8s; }
  .node:nth-child(7) { top:80%; left:42%; animation-delay:-2.5s; }
  @keyframes node-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.4)} }
  .node.core { animation: none; }
  svg.connections { position:absolute; inset:0; width:100%; height:100%; }
  .conn-line { stroke:rgba(0,102,255,0.35); stroke-width:1; stroke-dasharray:4 4; animation:dash-move 3s linear infinite; }
  .conn-line.bright { stroke:rgba(0,102,255,0.6); stroke-dasharray:none; }
  @keyframes dash-move { to { stroke-dashoffset: -20; } }
  .device-metrics { display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; }
  .metric {
    background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06);
    border-radius:8px; padding:10px; text-align:center;
  }
  .metric-val { font-family:'Syne',sans-serif; font-size:1rem; font-weight:700; color:white; }
  .metric-val.green { color:#28ca42; }
  .metric-val.yellow { color:var(--neon); }
  .metric-label { font-size:0.6rem; color:var(--gray-400); margin-top:2px; text-transform:uppercase; letter-spacing:0.08em; }
  .floating-badge {
    position:absolute; background:rgba(8,24,48,0.92); border:1px solid rgba(0,102,255,0.4);
    border-radius:10px; padding:10px 14px; backdrop-filter:blur(12px);
    display:flex; align-items:center; gap:8px; white-space:nowrap;
    box-shadow:0 8px 32px rgba(0,0,0,0.3);
  }
  .floating-badge.b1 { top: -20px; right: -30px; animation: badge-float 6s ease-in-out infinite; }
  .floating-badge.b2 { bottom: 20px; left: -40px; animation: badge-float 6s ease-in-out infinite 3s; }
  @keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .badge-icon { width:28px; height:28px; border-radius:6px; display:flex; align-items:center; justify-content:center; }
  .badge-icon.blue { background:rgba(0,102,255,0.2); }
  .badge-icon.yellow { background:rgba(255,212,0,0.2); }
  .badge-icon svg { width:14px; height:14px; }
  .badge-text-main { font-family:'Syne',sans-serif; font-size:0.82rem; font-weight:700; color:white; }
  .badge-text-sub { font-size:0.65rem; color:var(--gray-400); }

  /* ── SERVICES ── */
  #services { padding: 110px 0; }
  .services-header {
    display:flex; justify-content:space-between; align-items:flex-end;
    margin-bottom:3.5rem; flex-wrap:wrap; gap:1.5rem;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .services-grid-last {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: calc(66.66% - 0.5rem);
    margin-left: auto;
    margin-right: auto;
  }
  .service-card {
    background: rgba(8,24,48,0.9); padding: 2.2rem;
    position: relative; cursor: pointer; overflow: hidden;
    transition: background 0.3s; border-radius: 16px;
    border: 1px solid var(--card-border);
  }
  .service-card::before {
    content: ''; position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(0,102,255,0.08), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .service-card:hover { background: rgba(10,30,65,0.95); border-color: rgba(0,102,255,0.35); }
  .service-card:hover::before { opacity: 1; }
  .service-card-accent {
    position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, var(--electric), transparent);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .service-card:hover .service-card-accent { transform: scaleX(1); }
  .service-icon-wrap {
    width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1.2rem;
    background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.25);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .service-card:hover .service-icon-wrap {
    background: rgba(0,102,255,0.2); box-shadow: 0 0 20px rgba(0,102,255,0.25);
  }
  .service-icon-wrap svg { width:24px; height:24px; color:var(--electric-light); }
  .service-name {
    font-family:'Syne',sans-serif; font-size:1.05rem; font-weight:700;
    color:white; margin-bottom:0.8rem;
  }
  .service-desc {
    font-size:0.88rem; color:var(--gray-400); line-height:1.7;
    max-height:0; overflow:hidden; opacity:0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  .service-card:hover .service-desc { max-height:120px; opacity:1; }
  .service-arrow {
    margin-top: 1rem; display:inline-flex; align-items:center; gap:6px;
    font-size:0.78rem; color:var(--electric-light); font-weight:500;
    opacity:0; transform:translateY(6px); transition:all 0.3s 0.1s;
    text-decoration:none;
  }
  .service-card:hover .service-arrow { opacity:1; transform:translateY(0); }

  /* ── WHY CHOOSE US ── */
  #why { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(0,30,80,0.3), transparent); }
  .why-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
  .why-features { display:grid; gap:1rem; }
  .why-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 1.4rem 1.6rem;
    display: flex; gap: 1rem; align-items: flex-start;
    transition: all 0.3s; cursor: default;
  }
  .why-card:hover {
    background: rgba(0,102,255,0.07); border-color: rgba(0,102,255,0.3);
    transform: translateX(6px);
  }
  .why-card-icon {
    width: 42px; height: 42px; min-width:42px; border-radius: 10px;
    background: rgba(255,212,0,0.1); border: 1px solid rgba(255,212,0,0.2);
    display: flex; align-items: center; justify-content: center;
  }
  .why-card-icon svg { width:20px; height:20px; color:var(--neon); }
  .why-card h4 {
    font-family:'Syne',sans-serif; font-size:0.95rem; font-weight:700;
    color:white; margin-bottom:4px;
  }
  .why-card p { font-size:0.85rem; color:var(--gray-400); line-height:1.65; }

  /* ── ABOUT ── */
  #about { padding: 100px 0; }
  .about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
  .about-image-wrap {
    position:relative; border-radius:20px; overflow:hidden;
    background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(15,40,84,0.5));
    border: 1px solid var(--card-border); min-height:400px;
    display:flex; align-items:center; justify-content:center;
  }
  .about-illustration { position:relative; width:100%; padding:2rem; }
  .tech-ring {
    position:absolute; border-radius:50%; border:1px dashed rgba(0,102,255,0.25);
    top:50%; left:50%; transform:translate(-50%,-50%);
  }
  .tech-ring.r1 { width:180px; height:180px; animation:spin-slow 20s linear infinite; }
  .tech-ring.r2 { width:260px; height:260px; animation:spin-slow 30s linear infinite reverse; border-color:rgba(255,212,0,0.15); }
  .tech-ring.r3 { width:340px; height:340px; animation:spin-slow 40s linear infinite; border-color:rgba(0,102,255,0.1); }
  @keyframes spin-slow { to { transform:translate(-50%,-50%) rotate(360deg); } }
  .tech-center {
    position:relative; z-index:2; text-align:center; padding:2rem;
  }
  .tech-center-badge {
    display:inline-flex; align-items:center; justify-content:center;
    width:90px; height:90px; border-radius:50%;
    background:linear-gradient(135deg,var(--electric),var(--navy));
    box-shadow:0 0 40px rgba(0,102,255,0.4); margin-bottom:1rem;
  }
  .tech-center-badge svg { width:40px; height:40px; color:white; }
  .ring-node {
    position:absolute; width:10px; height:10px; border-radius:50%;
    background:var(--electric); box-shadow:0 0 10px var(--glow-blue); top:50%; left:0;
    transform:translateY(-50%);
  }
  .about-text .section-subtitle { max-width:100%; }
  .about-points { margin-top:2rem; display:grid; gap:0.8rem; }
  .about-point {
    display:flex; gap:10px; align-items:flex-start;
    font-size:0.9rem; color:var(--gray-400); line-height:1.6;
  }
  .about-point::before {
    content:''; min-width:6px; height:6px; border-radius:50%;
    background:var(--neon); margin-top:6px;
  }

  /* ── PROJECTS ── */
  #projects { padding: 100px 0; background:linear-gradient(180deg,transparent,rgba(0,20,60,0.25),transparent); }
  .projects-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem;
  }
  .project-card {
    background:var(--card-bg); border:1px solid var(--card-border);
    border-radius:16px; overflow:hidden; transition:all 0.3s; cursor:default;
  }
  .project-card:hover {
    border-color:rgba(0,102,255,0.4); transform:translateY(-5px);
    box-shadow:0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,102,255,0.2);
  }
  .project-thumb {
    height:180px; position:relative; overflow:hidden;
    background:linear-gradient(135deg, rgba(0,50,140,0.6), rgba(8,24,48,0.9));
    display:flex; align-items:center; justify-content:center;
  }
  .project-thumb-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
    position:absolute; inset:0; opacity:0.3;
  }
  .project-thumb-grid div { background:rgba(0,102,255,0.3); }
  .project-thumb-icon {
    position:relative; z-index:2; width:60px; height:60px; border-radius:14px;
    background:rgba(0,102,255,0.2); border:1px solid rgba(0,102,255,0.4);
    display:flex; align-items:center; justify-content:center;
  }
  .project-thumb-icon svg { width:28px; height:28px; color:var(--electric-light); }
  .project-tag {
    position:absolute; top:12px; right:12px; z-index:2;
    background:rgba(255,212,0,0.15); border:1px solid rgba(255,212,0,0.4);
    color:var(--neon); font-size:0.65rem; font-weight:600;
    padding:4px 10px; border-radius:100px; letter-spacing:0.08em; text-transform:uppercase;
  }
  .project-body { padding:1.4rem; }
  .project-title { font-family:'Syne',sans-serif; font-size:0.95rem; font-weight:700; color:white; margin-bottom:6px; }
  .project-desc { font-size:0.83rem; color:var(--gray-400); line-height:1.65; margin-bottom:1rem; }
  .project-meta { display:flex; gap:1rem; flex-wrap:wrap; }
  .project-meta-item { display:flex; align-items:center; gap:5px; font-size:0.72rem; color:var(--gray-600); }
  .project-meta-item svg { width:12px; height:12px; }

  /* ── CTA ── */
  #cta { padding: 100px 5%; }
  .cta-wrap {
    max-width:900px; margin:0 auto; text-align:center;
    background:linear-gradient(135deg, rgba(0,60,160,0.3), rgba(15,40,84,0.2));
    border:1px solid rgba(0,102,255,0.25); border-radius:24px; padding:5rem 4rem;
    position:relative; overflow:hidden;
  }
  .cta-wrap::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse at 50% 0%, rgba(0,102,255,0.2), transparent 60%);
    pointer-events:none;
  }
  .cta-title {
    font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800; color:white;
    line-height:1.2; margin-bottom:1rem;
  }
  .cta-title .neon { color:var(--neon); }
  .cta-sub { font-size:1rem; color:var(--gray-400); margin-bottom:2.5rem; max-width:500px; margin-left:auto; margin-right:auto; }

  /* ── CONTACT ── */
  #contact { padding: 100px 0; }
  .contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:start; }
  .contact-info-item {
    display:flex; gap:1rem; margin-bottom:1.5rem;
  }
  .contact-info-icon {
    width:42px; height:42px; min-width:42px; border-radius:10px;
    background:rgba(0,102,255,0.1); border:1px solid rgba(0,102,255,0.2);
    display:flex; align-items:center; justify-content:center;
  }
  .contact-info-icon svg { width:18px; height:18px; color:var(--electric-light); }
  .contact-info-label { font-size:0.72rem; color:var(--gray-400); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:3px; }
  .contact-info-val { font-size:0.92rem; color:white; font-weight:500; }
  .contact-form { display:grid; gap:1rem; }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .form-group { display:grid; gap:6px; }
  .form-label { font-size:0.78rem; color:var(--gray-400); font-weight:500; letter-spacing:0.05em; }
  .form-input, .form-textarea {
    background:rgba(255,255,255,0.04); border:1px solid var(--card-border);
    border-radius:8px; padding:11px 14px; color:white;
    font-family:'DM Sans',sans-serif; font-size:0.9rem; outline:none;
    transition:all 0.2s; width:100%; resize:none;
  }
  .form-input:focus, .form-textarea:focus {
    border-color:rgba(0,102,255,0.5); background:rgba(0,102,255,0.06);
    box-shadow:0 0 0 3px rgba(0,102,255,0.12);
  }
  .form-input::placeholder, .form-textarea::placeholder { color:var(--gray-600); }
  .form-textarea { height:130px; }
  .map-placeholder {
    margin-top:2rem; border-radius:12px; overflow:hidden;
    border:1px solid var(--card-border); height:200px;
    background:linear-gradient(135deg,rgba(0,50,130,0.3),rgba(8,24,48,0.8));
    display:flex; align-items:center; justify-content:center;
    color:var(--gray-400); font-size:0.85rem; gap:8px; flex-direction:column;
  }
  .map-placeholder svg { width:32px; height:32px; color:var(--electric-light); opacity:0.7; }
  /* Real map embed overrides */
  .map-iframe-wrap {
    margin-top:2rem; border-radius:12px; overflow:hidden;
    border:1px solid var(--card-border); height:200px;
  }
  .map-iframe-wrap iframe { width:100%; height:100%; display:block; border:none; filter:invert(0.85) hue-rotate(180deg); }

  /* ── PARTNERS FOOTER ── */
  .partners-footer {
    background: rgba(8,24,48,0.95); border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 1.4rem 0; overflow: hidden; position: relative; z-index: 1;
    display: flex; align-items: center; gap: 2rem;
  }
  .partners-label {
    font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
    color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.15em;
    white-space: nowrap; padding: 0 2rem 0 5%;
    border-right: 1px solid var(--card-border);
    min-width: max-content;
  }
  .marquee-wrap { flex: 1; overflow: hidden; }
  .marquee-track {
    display: flex; align-items: center; gap: 2.5rem;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .partner-item {
    display: flex; align-items: center; gap: 0.6rem;
    opacity: 0.55; transition: opacity 0.2s; cursor: default;
    white-space: nowrap;
  }
  .partner-item:hover { opacity: 1; }
  .partner-dot {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 0.58rem; font-weight: 800;
    color: var(--electric-light); letter-spacing: 0.04em;
  }
  .partner-name { font-size: 0.82rem; font-weight: 600; color: var(--gray-400); }

  /* ── FOOTER ── */
  footer {
    background:var(--navy-dark); border-top:1px solid var(--card-border);
    padding:4rem 5% 2rem; position:relative; z-index:1;
  }
  .footer-grid {
    max-width:1200px; margin:0 auto;
    display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:3rem;
    margin-bottom:3rem; padding-bottom:3rem; border-bottom:1px solid var(--card-border);
  }
  .footer-brand p { font-size:0.85rem; color:var(--gray-400); line-height:1.7; margin-top:1rem; max-width:280px; }
  .footer-socials { display:flex; gap:0.75rem; margin-top:1.5rem; }
  .social-btn {
    width:34px; height:34px; border-radius:8px;
    background:rgba(255,255,255,0.06); border:1px solid var(--card-border);
    display:flex; align-items:center; justify-content:center;
    transition:all 0.2s; cursor:pointer;
  }
  .social-btn:hover { background:rgba(0,102,255,0.2); border-color:rgba(0,102,255,0.4); }
  .social-btn svg { width:15px; height:15px; color:var(--gray-400); }
  .social-btn:hover svg { color:white; }
  .footer-col h5 {
    font-family:'Syne',sans-serif; font-size:0.82rem; font-weight:700;
    color:white; text-transform:uppercase; letter-spacing:0.12em; margin-bottom:1.2rem;
  }
  .footer-col ul { list-style:none; display:grid; gap:0.65rem; }
  .footer-col ul li a {
    text-decoration:none; color:var(--gray-400); font-size:0.85rem;
    transition:color 0.2s;
  }
  .footer-col ul li a:hover { color:white; }
  .footer-bottom {
    max-width:1200px; margin:0 auto;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
  }
  .footer-copy { font-size:0.8rem; color:var(--gray-600); }
  .footer-legal { display:flex; gap:1.5rem; }
  .footer-legal a { font-size:0.8rem; color:var(--gray-600); text-decoration:none; transition:color 0.2s; }
  .footer-legal a:hover { color:var(--gray-400); }

  /* ── MOBILE NAV MENU ── */
  .mobile-menu {
    display:none; position:fixed; top:72px; left:0; right:0; bottom:0;
    background:rgba(8,24,48,0.98); backdrop-filter:blur(20px);
    z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:2rem;
  }
  .mobile-menu.open { display:flex; }
  .mobile-menu a {
    text-decoration:none; color:white; font-family:'Syne',sans-serif;
    font-size:1.5rem; font-weight:700; transition:color 0.2s;
  }
  .mobile-menu a:hover { color:var(--neon); }

  /* ── RESPONSIVE ── */
  @media(max-width:1024px) {
    .hero-grid,.about-grid,.why-layout,.contact-grid { grid-template-columns:1fr; }
    .hero-visual { display:none; }
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .services-grid-last { grid-template-columns:repeat(2,1fr); max-width:100%; }
    .projects-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr 1fr; }
  }
  @media(max-width:768px) {
    .nav-links,.nav-cta { display:none; }
    .hamburger { display:flex; }
    .services-grid,.projects-grid { grid-template-columns:1fr; }
    .services-grid-last { grid-template-columns:1fr; max-width:100%; }
    .form-row { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .hero-stats { gap:1.5rem; flex-wrap:wrap; }
    .cta-wrap { padding:3rem 2rem; }
    .footer-bottom { flex-direction:column; text-align:center; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* glowing divider */
  .glow-line {
    height:1px; background:linear-gradient(90deg,transparent,rgba(0,102,255,0.6),var(--neon),rgba(0,102,255,0.6),transparent);
    margin:0 auto; max-width:600px;
  }

  /* ── SECTION SEPARATOR ── */
  .section-separator {
    height: 8px;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.3) 20%, 
      rgba(255, 255, 255, 0.6) 50%, 
      rgba(255, 255, 255, 0.3) 80%, 
      transparent
    );
    margin: 0;
    position: relative;
    z-index: 1;
  }
/* ── MISSION / VISION / GOALS – ABSTRACT GRID ── */
#mission-vision {
  padding: 5rem 0 4rem;
  position: relative;
}

.mvg-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mvg-header-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  white-space: nowrap;
}

.mvg-header-line {
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

/* top row: 2 columns */
.mvg-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--card-border);
  border-bottom: none;
}

/* bottom row: single centered item */
.mvg-bottom-row {
  border: 1px solid var(--card-border);
  border-top: none;
  display: flex;
  justify-content: center;
}

.mvg-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.mvg-top-row .mvg-item:last-child {
  border-right: none;
}

.mvg-item-center {
  border-right: none;
  max-width: 50%;
  width: 100%;
  border-top: 1px solid var(--card-border);
}

.mvg-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--neon), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mvg-item:hover::before { transform: scaleX(1); }
.mvg-item:hover { background: rgba(0,200,150,0.03); }

.mvg-item:hover .mvg-item-num {
  -webkit-text-stroke-color: rgba(0,200,150,0.35);
}

.mvg-item:hover .mvg-item-divider {
  width: 100%;
  background: var(--neon);
}

/* number */
.mvg-item-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  line-height: 1;
  padding-top: 0.2rem;
  transition: -webkit-text-stroke-color 0.3s ease;
  user-select: none;
  align-self: start;
}

/* content */
.mvg-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mvg-item-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.mvg-item-divider {
  height: 1px;
  width: 36px;
  background: rgba(255,255,255,0.15);
  transition: width 0.5s ease, background 0.3s ease;
}

.mvg-item-text {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.mvg-item-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.mvg-item:hover .mvg-item-tag { color: rgba(0,200,150,0.45); }

@media (max-width: 768px) {
  .mvg-top-row { grid-template-columns: 1fr; border-bottom: 1px solid var(--card-border); }
  .mvg-top-row .mvg-item { border-right: none; border-bottom: 1px solid var(--card-border); }
  .mvg-bottom-row { border-top: none; }
  .mvg-item-center { max-width: 100%; border-top: none; }
  .mvg-item { padding: 2rem 1.5rem; }
  .mvg-item-num { font-size: 2.2rem; }
}