/*
Theme Name: Digma Theme
Theme URI: https://digma-ec.com/
Author: Adrian
Description: Tema para sitio OnePage basado en Digma.
Version: 1.0
*/

/* --- AQUÍ PEGAREMOS TODO TU CSS --- */
/* (He extraído las variables y estilos de tu <style> original) */
  :root {
    --black: #080c14;
    --deep: #0d1527;
    --navy: #0f2044;
    --blue: #1a6cf6;
    --cyan: #00c6ff;
    --ice: #7dd4fc;
    --white: #f0f6ff;
    --ghost: rgba(240,246,255,0.06);
    --border: rgba(0,198,255,0.15);
    --glow: 0 0 40px rgba(26,108,246,0.35);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ── */
  #cursor {
    width: 12px; height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .1s, width .25s, height .25s, background .25s;
    mix-blend-mode: screen;
  }
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(0,198,255,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform .18s ease, width .3s, height .3s, opacity .3s;
  }
  body:hover #cursor { opacity: 1; }
  a:hover ~ #cursor, button:hover ~ #cursor { width: 20px; height: 20px; }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9000; opacity: .5;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .4s, backdrop-filter .4s, padding .4s;
  }
  nav.scrolled {
    background: rgba(8,12,20,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: .9rem 4rem;
  }
  .logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800; font-size: 1.6rem;
    letter-spacing: .12em;
    background: linear-gradient(90deg, var(--white) 30%, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-decoration: none;
  }
  .logo-img-wrap {
    display: flex; align-items: center; gap: .7rem;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 42px; width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0,198,255,0.4));
    transition: filter .3s, transform .3s;
  }
  .logo-img-wrap:hover .nav-logo-img {
    filter: drop-shadow(0 0 16px rgba(0,198,255,0.7));
    transform: scale(1.05);
  }
  .logo-wordmark {
    font-family: 'Inter', sans-serif;
    font-weight: 800; font-size: 1.55rem;
    letter-spacing: .1em;
    background: linear-gradient(90deg, var(--white) 30%, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .logo-wordmark span { -webkit-text-fill-color: var(--cyan); }

  /* ── HERO VIDEO BG ── */
  .hero-video-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: saturate(1.6) hue-rotate(195deg) brightness(0.85);
    z-index: 0;
  }
  .hero-hex-overlay {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('hex-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    mix-blend-mode: screen;
  }
  .hero-hex-pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='rgba(0,198,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 92px;
    animation: hexShiftHero 25s linear infinite;
    opacity: 0.8;
  }
  @keyframes hexShiftHero { from { background-position: 0 0; } to { background-position: 80px 184px; } }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: rgba(240,246,255,0.65);
    text-decoration: none;
    font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
    font-weight: 500;
    position: relative; padding-bottom: 3px;
    transition: color .3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--cyan);
    transition: width .3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: transparent;
    border: 1.5px solid var(--cyan);
    color: var(--cyan) !important;
    padding: .45rem 1.2rem;
    border-radius: 4px;
    transition: background .3s, color .3s, box-shadow .3s !important;
  }
  .nav-cta:hover {
    background: var(--cyan) !important;
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
    box-shadow: 0 0 20px rgba(0,198,255,0.4) !important;
  }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, #0d2a5e 0%, var(--black) 70%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,198,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,198,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 8s ease-in-out infinite alternate;
  }
  .orb1 { width: 500px; height: 500px; background: rgba(26,108,246,0.18); top: -100px; left: -100px; animation-delay: 0s; }
  .orb2 { width: 400px; height: 400px; background: rgba(0,198,255,0.12); bottom: -80px; right: -80px; animation-delay: -3s; }
  .orb3 { width: 300px; height: 300px; background: rgba(26,108,246,0.1); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -5s; }

  @keyframes drift {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(40px, 30px) scale(1.1); }
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    border: 1px solid var(--border);
    background: rgba(0,198,255,0.06);
    padding: .35rem 1rem;
    border-radius: 100px;
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 2rem;
    position: relative; z-index: 1;
    animation: fadeUp 1s .2s both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--cyan); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(0,198,255,0.6); } 50%{ box-shadow: 0 0 0 6px rgba(0,198,255,0); } }

  .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.02em;
    position: relative; z-index: 1;
    animation: fadeUp 1s .4s both;
  }
  .hero-title .line { display: block; }
  .hero-title .accent {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    max-width: 560px;
    color: rgba(240,246,255,0.55);
    font-size: 1.3rem; line-height: 1.7;
    margin: 1.8rem auto 2.8rem;
    position: relative; z-index: 1;
    animation: fadeUp 1s .6s both;
  }
  .hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 1;
    animation: fadeUp 1s .8s both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--black); border: none;
    padding: .85rem 2.2rem; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-weight: 700; font-size: .95rem;
    letter-spacing: .06em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 30px rgba(26,108,246,0.4);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(0,198,255,0.5); }
  .btn-ghost {
    background: transparent;
    color: var(--white); border: 1.5px solid rgba(240,246,255,0.2);
    padding: .85rem 2.2rem; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
    letter-spacing: .06em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: border-color .2s, background .2s;
  }
  .btn-ghost:hover { border-color: var(--cyan); background: rgba(0,198,255,0.06); }

  .hero-stats {
    position: relative; z-index: 1;
    display: flex; gap: 4rem; justify-content: center;
    margin-top: 5rem;
    animation: fadeUp 1s 1s both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 2.4rem; color: var(--white);
    background: linear-gradient(135deg, var(--white), var(--ice));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .stat-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,246,255,0.4); margin-top: .3rem; }

  @keyframes scrollDown { 0%,100%{ transform: scaleY(1); opacity: 1; } 50%{ transform: scaleY(.5); opacity: .4; } }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION BASE ── */
  section { padding: 7rem 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--cyan); font-weight: 500; margin-bottom: .8rem;
    display: flex; align-items: center; gap: .6rem;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--cyan); }
  .section-title {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1; letter-spacing: -.02em;
  }
  .section-desc {
    color: rgba(240,246,255,0.5); font-size: 1.3rem; line-height: 1.8;
    max-width: 550px; margin-top: 1rem;
  }

  /* ── MARQUEE STRIP ── */
  .marquee-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(0,198,255,0.03);
    overflow: hidden; padding: 1rem 0;
  }
  .marquee-track {
    display: flex; gap: 4rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
    color: rgba(240,246,255,0.3); flex-shrink: 0;
    display: flex; align-items: center; gap: 1rem;
  }
  .marquee-item::after { content: '◆'; color: var(--cyan); font-size: .5rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── PILLARS (nos superamos etc) ── */
  #pillars { background: var(--deep); }
  .pillars-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    margin-top: 4rem;
  }
  .pillar {
    background: rgba(13,21,39,0.8);
    padding: 2.8rem 2rem;
    position: relative; overflow: hidden;
    transition: background .3s;
  }
  .pillar::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0); transition: transform .4s;
  }
  .pillar:hover { background: rgba(26,108,246,0.08); }
  .pillar:hover::before { transform: scaleX(1); }
  .pillar-icon {
    width: 52px; height: 52px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(0,198,255,0.06);
    transition: border-color .3s, box-shadow .3s;
  }
  .pillar:hover .pillar-icon { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,198,255,0.2); }
  .pillar-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
  .pillar-title {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: .8rem;
  }
  .pillar p { color: rgba(240,246,255,0.5); font-size: 1.1rem; line-height: 1.7; }

  /* ── ABOUT ── */
  #about { background: var(--black); }
  .about-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
    margin-top: 3rem;
  }
  .about-visual {
    position: relative;
  }
  .about-img-frame {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    background: var(--deep);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,108,246,0.1), rgba(0,198,255,0.05));
  }
  .about-media-mosaic {
    display: contents; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 1rem; padding: 2rem; width: 100%;
  }
  .media-tile {
    background: rgba(0,198,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex; flex-direction: column; gap: .4rem;
    transition: transform .3s, border-color .3s;
  }
  .media-tile:hover { transform: translateY(-4px); border-color: rgba(0,198,255,0.35); }
  .media-tile svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
  .media-tile-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
  .media-tile-sub { font-size: .72rem; color: rgba(240,246,255,0.4); }
  .about-float {
    position: absolute;
    top: -20px; right: -20px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--black); border-radius: 10px;
    padding: 1rem 1.4rem;
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 10px 40px rgba(0,198,255,0.3);
    z-index: 2;
  }
  .about-float span { display: block; font-size: .65rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
  .about-text { }
  .about-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .about-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: border-color .3s, background .3s;
  }
  .about-item:hover { border-color: var(--border); background: rgba(0,198,255,0.03); }
  .about-item-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cyan); flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 10px rgba(0,198,255,0.6);
  }
  .about-item p { color: rgba(240,246,255,0.6); font-size: 1.1rem; line-height: 1.6; }
  .about-item strong { color: var(--white); font-weight: 500; }

  /* ── HIGHLIGHTS ── */
  #highlights { background: var(--deep); }
  .highlights-header { text-align: center; margin-bottom: 4rem; }
  .highlights-header .section-label { justify-content: center; }
  .highlights-header .section-label::before { display: none; }
  .highlights-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .highlight-card {
    background: rgba(8,12,20,0.6);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2.5rem 1.8rem;
    text-align: center;
    position: relative; overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: default;
  }
  .highlight-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0,198,255,0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s;
  }
  .highlight-card:hover { transform: translateY(-6px); border-color: rgba(0,198,255,0.35); box-shadow: var(--glow); }
  .highlight-card:hover::before { opacity: 1; }
  .highlight-icon-wrap {
    width: 64px; height: 64px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(0,198,255,0.05);
    transition: border-color .3s;
    position: relative; z-index: 1;
  }
  .highlight-card:hover .highlight-icon-wrap { border-color: var(--cyan); }
  .highlight-icon-wrap svg { width: 28px; height: 28px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
  .highlight-title {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: .6rem; position: relative; z-index: 1;
    word-break: break-word; overflow-wrap: break-word; hyphens: auto;
    line-height: 1.3;
  }
  .highlight-card p { color: rgba(240,246,255,0.5); font-size: 1.1rem; line-height: 1.65; position: relative; z-index: 1; }

  /* ── SERVICES ── */
  #services { background: var(--black); }
  .services-layout {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 5rem; align-items: start;
    margin-top: 3rem;
  }
  .services-sticky { position: sticky; top: 8rem; }
  .services-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
  .service-item {
    border: 1px solid var(--border);
    border-radius: 12px; padding: 1.8rem;
    cursor: pointer;
    transition: border-color .3s, background .3s, transform .2s;
    position: relative; overflow: hidden;
  }
  .service-item.active, .service-item:hover {
    border-color: rgba(0,198,255,0.5);
    background: rgba(0,198,255,0.05);
  }
  .service-item.active { transform: translateX(6px); }
  .service-item-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: .7rem;
  }
  .service-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .3s; flex-shrink: 0; }
  .service-item.active .service-dot, .service-item:hover .service-dot { background: var(--cyan); box-shadow: 0 0 10px rgba(0,198,255,0.6); }
  .service-item-title {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase;
  }
  .service-item p { color: rgba(240,246,255,0.45); font-size: 1.1rem; line-height: 1.6; padding-left: 1.4rem; }
  .services-visual {
    position: sticky; top: 8rem;
  }
  .service-display {
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 3rem;
    min-height: 400px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all .4s;
  }
  .service-display-icon {
    width: 70px; height: 70px;
    border: 1.5px solid rgba(0,198,255,0.3);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,198,255,0.06);
    margin-bottom: 2rem;
  }
  .service-display-icon svg { width: 34px; height: 34px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
  .service-display h3 {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 1.8rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--ice));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .service-display p { color: rgba(240,246,255,0.5); line-height: 1.8; font-size: 1.15rem; }
  .service-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
  .tag {
    padding: .3rem .8rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ice);
    background: rgba(0,198,255,0.04);
  }

  /* ── PRODUCTS ── */
  #products { background: var(--deep); }
  .products-header { margin-bottom: 4rem; }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .product-card {
    border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    background: rgba(8,12,20,0.6);
    transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex; flex-direction: column;
  }
  .product-card:hover { transform: translateY(-8px); border-color: rgba(0,198,255,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow); }
  .product-screen {
    background: #0a1628;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    min-height: 160px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .product-screen::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
  }
  .product-screen-dots { display: flex; gap: 5px; position: absolute; top: 12px; left: 14px; }
  .product-screen-dots span { width: 7px; height: 7px; border-radius: 50%; }
  .dot-r { background: #ff5f57; }
  .dot-y { background: #febc2e; }
  .dot-g { background: #28c840; }
  .product-screen-content {
    text-align: center; color: rgba(0,198,255,0.6);
    font-size: .75rem; letter-spacing: .08em;
  }
  .product-screen-content svg { width: 40px; height: 40px; stroke: rgba(0,198,255,0.4); fill: none; stroke-width: 1; margin-bottom: .5rem; }
  .product-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
  .product-tag {
    display: inline-block;
    padding: .25rem .7rem;
    border-radius: 100px; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase;
    background: rgba(0,198,255,0.1); color: var(--cyan);
    border: 1px solid rgba(0,198,255,0.2);
    margin-bottom: 1rem;
  }
  .product-title {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 1.3rem; margin-bottom: .7rem;
  }
  .product-desc { color: rgba(240,246,255,0.45); font-size: 1.1rem; line-height: 1.65; flex: 1; }
  .product-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    margin-top: 1.5rem;
    color: var(--cyan); font-size: 1.1rem; font-weight: 500;
    text-decoration: none;
    transition: gap .2s;
  }
  .product-cta:hover { gap: .9rem; }
  .product-cta svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2; transition: transform .2s; }
  .product-cta:hover svg { transform: translateX(3px); }

  /* ── CTA BAND ── */
  #cta-band {
    background: linear-gradient(135deg, #0a1f5c 0%, #0d1527 50%, #051233 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 6rem 2rem;
    position: relative; overflow: hidden;
  }
  #cta-band::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,198,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  #cta-band h2 {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: clamp(2rem,4vw,3rem);
    margin-bottom: 1rem;
    position: relative; z-index: 1;
  }
  #cta-band p { color: rgba(240,246,255,0.5); max-width: 500px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }

  /* ── CONTACT ── */
  #contact { background: var(--black); }
  .contact-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; align-items: start;
    margin-top: 3rem;
  }
  .contact-info { display: flex; flex-direction: column; gap: 2rem; }
  .contact-block {
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,198,255,0.05);
  }
  .contact-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
  .contact-block h4 {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 1.1rem; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: .3rem;
  }
  .contact-block p { color: rgba(240,246,255,0.5); font-size: 1.1rem; }
  .social-row { display: flex; gap: 1rem; margin-top: 1rem; }
  .social-btn {
    width: 42px; height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, background .2s, transform .2s;
    text-decoration: none;
  }
  .social-btn svg { width: 18px; height: 18px; stroke: rgba(240,246,255,0.5); fill: none; stroke-width: 1.5; transition: stroke .2s; }
  .social-btn:hover { border-color: var(--cyan); background: rgba(0,198,255,0.08); transform: translateY(-3px); }
  .social-btn:hover svg { stroke: var(--cyan); }

  .contact-form {
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
  .form-group label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,246,255,0.45); font-weight: 500; }
  .form-group input, .form-group textarea, .form-group select {
    background: rgba(8,12,20,0.8);
    border: 1.5px solid var(--border);
    color: var(--white);
    padding: .85rem 1rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: .95rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    resize: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: rgba(0,198,255,0.5);
    box-shadow: 0 0 0 3px rgba(0,198,255,0.08);
  }
  .form-group select option { background: var(--deep); }
  .form-group textarea { min-height: 110px; }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .footer-bg-layer {
    position: absolute; inset: 0;
    z-index: 0; pointer-events: none;
  }
  .footer-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.13;
    filter: saturate(1.4) hue-rotate(200deg);
  }
  .footer-hex-overlay {
    position: absolute; inset: 0;
    background-image: url('hex-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: screen;
  }
  .footer-gradient-mask {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, var(--deep) 0%, transparent 25%, transparent 75%, var(--deep) 100%),
      linear-gradient(135deg, rgba(26,108,246,0.15) 0%, rgba(0,198,255,0.06) 50%, rgba(13,21,39,0.8) 100%);
  }
  /* SVG hex pattern drawn in CSS for extra depth */
  .footer-bg-layer::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='rgba(0,198,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 92px;
    animation: hexShift 20s linear infinite;
    opacity: 0.7;
  }
  @keyframes hexShift { from { background-position: 0 0; } to { background-position: 80px 184px; } }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-brand .logo { font-size: 1.3rem; }
  .footer-brand p { color: rgba(240,246,255,0.3); font-size: .82rem; margin-top: .4rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: rgba(240,246,255,0.35); font-size: .82rem; text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: var(--cyan); }
  .footer-copy { color: rgba(240,246,255,0.2); font-size: .78rem; width: 100%; text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); }

  /* ── REVEAL ANIMATIONS ── */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* ── HAMBURGER (mobile) ── */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: .3s; }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: .8rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .pillars-grid, .highlights-grid { grid-template-columns: 1fr 1fr; }
    .about-layout, .services-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .services-sticky, .services-visual { position: static; }
  }
  @media (max-width: 600px) {
    .pillars-grid, .highlights-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    nav { padding: 1rem; }
  }