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

    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }

    :root {
      --neon-pink: #ff00ea;
      --neon-blue: #00e5ff;
      --neon-green: #39ff14;
      --dark-purple: #130526;
      --darker-purple: #05010a;
      --surface: rgba(30, 10, 60, 0.4);
      --surface-solid: #1e0a3c;
      --text-main: #ffffff;
      --text-muted: #bda8d9;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--darker-purple);
      color: var(--text-main);
      overflow-x: hidden;
      position: relative;
      width: 100%;
    }

    /* ── FLOATING BACKGROUND SPHERES ── */
    .bg-spheres {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      z-index: -1;
      pointer-events: none;
      isolation: isolate;
      contain: strict;
    }
.sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px); 
  opacity: 0.34;
  mix-blend-mode: screen;
  will-change: transform;
}
.sphere-1 {
  width: 62vw;
  height: 62vw;
  background: radial-gradient(
    circle at 34% 34%, 
    rgba(255, 110, 247, 0.95) 0%, 
    rgba(255, 0, 234, 0.72) 24%, 
    rgba(160, 40, 255, 0.38) 50%, 
    rgba(160, 40, 255, 0.1) 70%,   
    rgba(160, 40, 255, 0.02) 85%,  
    transparent 100%               
  );
  top: -16%;
  left: -12%;
  animation: sphereDrift1 30s ease-in-out infinite alternate;
}
    .sphere-2 {
      width: 56vw;
      height: 56vw;
      background: radial-gradient(circle at 64% 38%, rgba(126, 247, 255, 0.9) 0%, rgba(0, 229, 255, 0.72) 24%, rgba(0, 123, 255, 0.34) 50%, rgba(0, 123, 255, 0.08) 66%, rgba(0, 123, 255, 0) 78%);
      right: -10%;
      bottom: -18%;
      animation: sphereDrift2 34s ease-in-out infinite alternate;
    }
    .sphere-3 {
      width: 48vw;
      height: 48vw;
      background: radial-gradient(circle at 45% 46%, rgba(168, 255, 120, 0.78) 0%, rgba(57, 255, 20, 0.56) 25%, rgba(0, 232, 150, 0.24) 50%, rgba(0, 232, 150, 0.05) 66%, rgba(0, 232, 150, 0) 79%);
      top: 42%;
      left: 56%;
      opacity: 0.24;
      animation: sphereDrift3 28s ease-in-out infinite alternate;
    }
    .sphere-4 {
      width: 44vw;
      height: 44vw;
      background: radial-gradient(circle at 42% 40%, rgba(196, 116, 255, 0.7) 0%, rgba(138, 43, 226, 0.5) 25%, rgba(255, 0, 170, 0.22) 52%, rgba(255, 0, 170, 0.04) 68%, rgba(255, 0, 170, 0) 80%);
      bottom: 14%;
      left: 8%;
      opacity: 0.22;
      animation: sphereDrift4 38s ease-in-out infinite alternate;
    }

    @keyframes sphereDrift1 {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      25% { transform: translate3d(8vw, 4vh, 0) scale(1.06); }
      50% { transform: translate3d(14vw, 12vh, 0) scale(1.12); }
      75% { transform: translate3d(7vw, 18vh, 0) scale(1.04); }
      100% { transform: translate3d(-2vw, 8vh, 0) scale(0.98); }
    }
    @keyframes sphereDrift2 {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      25% { transform: translate3d(-6vw, -5vh, 0) scale(1.04); }
      50% { transform: translate3d(-14vw, -12vh, 0) scale(1.11); }
      75% { transform: translate3d(-9vw, -18vh, 0) scale(1.06); }
      100% { transform: translate3d(2vw, -8vh, 0) scale(0.99); }
    }
    @keyframes sphereDrift3 {
      0% { transform: translate3d(0, 0, 0) scale(0.98); }
      33% { transform: translate3d(-10vw, -8vh, 0) scale(1.06); }
      66% { transform: translate3d(-18vw, 6vh, 0) scale(1.12); }
      100% { transform: translate3d(-8vw, 14vh, 0) scale(1.02); }
    }
    @keyframes sphereDrift4 {
      0% { transform: translate3d(0, 0, 0) scale(0.96); }
      30% { transform: translate3d(7vw, -10vh, 0) scale(1.02); }
      60% { transform: translate3d(14vw, -18vh, 0) scale(1.08); }
      100% { transform: translate3d(5vw, -6vh, 0) scale(1); }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(2deg); }
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── NAV ── */
    nav {
      position: absolute; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 39px 60px;
      background: linear-gradient(180deg, rgba(0,0,0,0.985) 0%, rgba(0,0,0,0.965) 18%, rgba(0,0,0,0.9) 38%, rgba(0,0,0,0.68) 62%, rgba(0,0,0,0.32) 82%, rgba(0,0,0,0.08) 94%, rgba(0,0,0,0) 100%);
      transition: transform 0.45s ease, opacity 0.45s ease;
    }
    nav.scrolled {
      background: linear-gradient(180deg, rgba(0,0,0,0.985) 0%, rgba(0,0,0,0.965) 18%, rgba(0,0,0,0.9) 38%, rgba(0,0,0,0.68) 62%, rgba(0,0,0,0.32) 82%, rgba(0,0,0,0.08) 94%, rgba(0,0,0,0) 100%);
      padding: 39px 60px;
      backdrop-filter: none;
      border-bottom: none;
    }
    .nav-logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: var(--text-main);
      text-decoration: none;
      text-transform: uppercase;
      text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
      z-index: 1001; 
      position: relative;
    }
    .nav-logo span { color: var(--neon-pink); text-shadow: 0 0 10px rgba(255, 0, 234, 0.5); }
    
    .nav-links {
      display: none;
      list-style: none;
      align-items: center;
      gap: 28px;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      color: var(--text-main);
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
    }
    .nav-links a:hover {
      color: var(--neon-blue);
      text-shadow: 0 0 12px rgba(0,229,255,0.35);
      transform: translateY(-1px);
    }
    .nav-links .nav-cta {
      padding: 12px 22px;
      border-radius: 999px;
      background: rgba(57,255,20,0.14);
      border: 1px solid rgba(57,255,20,0.55);
      color: var(--neon-green);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 18px rgba(57,255,20,0.12);
    }
    .nav-links .nav-cta:hover {
      color: var(--darker-purple);
      background: var(--neon-green);
      text-shadow: none;
      box-shadow: 0 0 20px rgba(57,255,20,0.24);
      transform: translateY(-1px);
    }

    /* Hamburger Menu Button */
    .menu-btn {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      width: 32px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
      padding: 0;
    }
    .menu-btn span {
      display: block;
      width: 100%;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(57,255,20,0.15), rgba(0,229,255,0.95), rgba(57,255,20,1), rgba(0,229,255,0.95), rgba(57,255,20,0.15));
      background-size: 220% auto;
      animation: dividerSweep 3s linear infinite;
      transition: all 0.3s linear;
      box-shadow: 0 0 8px rgba(57, 255, 20, 0.55), 0 0 14px rgba(0, 229, 255, 0.22);
    }
    .menu-btn span:nth-child(2) { animation-direction: reverse; }
    .menu-btn span:nth-child(3) { animation-duration: 3.6s; }

    /* Fullscreen Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100vh;
      background:
        radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.12), transparent 36%),
        radial-gradient(circle at 82% 78%, rgba(57, 255, 20, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(16, 8, 30, 0.82) 0%, rgba(7, 3, 16, 0.76) 100%);
      backdrop-filter: blur(26px) saturate(145%);
      -webkit-backdrop-filter: blur(26px) saturate(145%);
      border: 1px solid rgba(255,255,255,0.08);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease-in-out;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 80px rgba(0,0,0,0.45);
    }
    .mobile-menu.active { opacity: 1; visibility: visible; }
    
    .mobile-close-btn {
      position: absolute;
      top: 24px;
      right: 60px;
      background: transparent;
      border: none;
      color: var(--neon-pink);
      font-size: 3.5rem;
      cursor: pointer;
      line-height: 1;
      transition: text-shadow 0.3s, color 0.3s;
    }
    .mobile-close-btn:hover {
      color: #fff;
      text-shadow: 0 0 15px var(--neon-pink);
    }
    @media (max-width: 900px) {
        .mobile-close-btn { right: 24px; top: 16px; }
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 22px;
      text-align: center;
      list-style: none;
      margin-bottom: 36px;
    }
    .mobile-menu-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.62rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-main);
      text-decoration: none;
      transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
    }
    .mobile-menu-links a:hover {
      color: var(--neon-blue);
      text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
      transform: translateY(-2px);
    }
    
    .mobile-cta {
      padding: 18px 40px;
      background: var(--neon-green);
      color: var(--darker-purple);
      font-weight: 800;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 50px;
      margin-bottom: 30px;
      box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: visible;
    }
    .mobile-cta::after {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: 999px;
      border: 2px solid rgba(57, 255, 20, 0.9);
      opacity: 0;
      animation: btn-pulse 2.8s ease-out infinite;
      pointer-events: none;
    }
    .mobile-cta:hover {
      transform: scale(1.05);
      box-shadow: 0 0 24px rgba(57, 255, 20, 0.5);
    }

    /* ── HERO ── */
    .hero { 
      height: 100vh; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      text-align: center; 
      padding: 0 20px;
      position: relative;
      background: linear-gradient(rgba(5, 1, 10, 0.7), rgba(5, 1, 10, 0.7)), url('https://eagpvutjzngaqokqeamx.supabase.co/storage/v1/object/public/partynuoma/hero.png');
      background-size: cover;
      background-position: center;
      z-index: 1;
    }

    .bg-spheres {
      position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
      overflow: hidden; 
      pointer-events: none;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      padding-top: 112px;
      width: min(100%, 980px);
      margin: 0 auto;
    }

    section:not(.hero) {
      position: relative;
      z-index: 3;
    }
    .hero-eyebrow {
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--neon-blue);
      margin-bottom: 20px;
      animation: fadeUp 1s 0.2s both;
      text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
    }
    .hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(3rem, 7.5vw, 7rem);
      font-weight: 900;
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 24px;
      animation: fadeUp 1s 0.45s both;
      position: relative;
    }
    .hero h1 .w-pink {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 2px var(--neon-pink);
      text-stroke: 2px var(--neon-pink);
      text-shadow: 0 0 30px rgba(255,0,234,0.55), 0 0 60px rgba(255,0,234,0.2);
      font-style: normal;
    }
    .hero h1 .w-blue {
      color: var(--neon-blue);
      -webkit-text-stroke: 0;
      text-shadow: 0 0 20px rgba(0,229,255,0.7), 0 0 50px rgba(0,229,255,0.25);
      font-style: normal;
    }
    .hero h1 .w-green {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 2px var(--neon-green);
      text-stroke: 2px var(--neon-green);
      text-shadow: 0 0 25px rgba(57,255,20,0.55), 0 0 55px rgba(57,255,20,0.2);
      font-style: normal;
    }
    .hero h1 .w-solid {
      color: #ffffff;
      -webkit-text-stroke: 0;
      text-shadow: 0 0 15px rgba(255,255,255,0.4);
      font-style: normal;
    }
    .hero h1 .w-sep {
      color: rgba(255,255,255,0.25);
      font-style: normal;
      -webkit-text-stroke: 0;
      font-size: 0.7em;
      vertical-align: middle;
    }
    .hero h1 em { 
      font-style: inherit;
    }
    .hero-sub {
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: #e0d8f0;
      max-width: 540px;
      margin: 0 auto 44px;
      line-height: 1.6;
      animation: fadeUp 1s 0.65s both;
    }
    .hero-btns {
      display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 1s 0.85s both;
    }
    
    .btn-primary {
      padding: 16px 44px;
      background: linear-gradient(45deg, var(--neon-pink), #8a2be2);
      border-radius: 50px;
      color: var(--text-main);
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 20px rgba(255, 0, 234, 0.4);
      border: none;
    }
    .btn-primary:hover { 
      transform: translateY(-3px) scale(1.02); 
      box-shadow: 0 0 30px rgba(255, 0, 234, 0.7);
    }
    
    .btn-ghost {
      padding: 16px 44px;
      border-radius: 50px;
      border: 2px solid var(--neon-blue);
      color: var(--neon-blue);
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      background: rgba(0, 229, 255, 0.05);
      backdrop-filter: blur(5px);
    }
    .btn-ghost:hover { 
      background: var(--neon-blue); 
      color: var(--darker-purple);
      box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    }

    /* ── STRIP (TICKER) ── */
    .strip-wrap {
      overflow: visible;
      position: relative;
      z-index: 10;
      margin-top: 20px;
      padding: 22px 0 18px;
    }
    .strip {
      background: var(--neon-green);
      min-height: 72px;
      display: flex;
      align-items: center;
      overflow: hidden;
      transform: rotate(-3deg) scaleX(1.05);
      transform-origin: center;
      position: relative;
      box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    }
    .strip-inner {
      display: flex;
      animation: marquee 15s linear infinite;
      white-space: nowrap;
    }
    .strip-item {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--darker-purple);
      padding: 0 30px;
      display: flex; align-items: center; gap: 30px;
    }
    .strip-item::before { content: '⚡'; font-size: 1rem; }

    /* ── SECTION HELPERS ── */
    section { position: relative; z-index: 2; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    
    .section-label {
      font-weight: 800;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--neon-pink);
      margin-bottom: 14px;
      text-shadow: 0 0 8px rgba(255, 0, 234, 0.5);
    }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.1;
      text-transform: uppercase;
      color: var(--text-main);
      margin-bottom: 24px;
    }
    .section-title em { 
      font-style: normal; 
      color: var(--neon-blue); 
      text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    }
    .section-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 520px;
    }
    .divider {
      width: 80px; height: 4px;
      background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
      margin: 30px 0;
      border-radius: 2px;
    }

    /* ── INTRO SPLIT ── */
    .intro { padding: 120px 0 68px; background: transparent; }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .intro-imgs {
      position: relative;
      height: 520px;
    }
    .intro-img-main {
      position: absolute;
      top: 0; left: 0; right: 80px; bottom: 80px;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: -10px 10px 0px var(--neon-blue);
    }
    .intro-img-main img { width:100%; height:100%; object-fit:cover; filter: contrast(1.2) saturate(1.2); }
    
    .intro-img-sub {
      position: absolute;
      bottom: 0; right: 0;
      width: 55%; height: 55%;
      overflow: hidden;
      border-radius: 20px;
      border: 4px solid var(--dark-purple);
      box-shadow: 10px -10px 0px var(--neon-pink);
    }
    .intro-img-sub img { width:100%; height:100%; object-fit:cover; filter: contrast(1.2) saturate(1.2); }
    
    .intro-badge {
      position: absolute;
      top: 45%; left: 45%; transform: translate(-50%, -50%);
      width: 120px; height: 120px;
      background: var(--darker-purple);
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--neon-green);
      z-index: 2;
      border: 4px solid var(--neon-green);
      box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
    }
    .intro-badge strong { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; line-height:1; color: #fff;}

    /* ── CATEGORIES (FLOATING STYLE & FULL WIDTH BUTTONS) ── */
    .categories { padding: 42px 0 100px; background: transparent; }
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 0;
      padding: 28px 0 8px; 
      overflow: visible;
      align-items: start;
    }
    
    .cat-card {
      position: relative;
      background: var(--surface);
      backdrop-filter: blur(10px);
      padding: 16px 16px 20px;
      border-radius: 20px 20px 20px 0px;
      border-left: 5px solid var(--neon-pink);
      animation: float 4s infinite ease-in-out;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .cat-card:nth-child(even) {
      animation-delay: 1s;
      border-left: none;
      border-right: 5px solid var(--neon-blue);
      border-radius: 20px 20px 0px 20px;
    }

    .cat-img-wrapper {
      width: 100%;
      height: 440px !important; 
      overflow: hidden;
      position: relative;
      border-radius: 12px 12px 12px 0px; 
    }
    .cat-card:nth-child(even) .cat-img-wrapper {
      border-radius: 12px 12px 0px 12px;
    }
    
    .cat-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s ease, filter 0.4s;
      filter: grayscale(20%) brightness(0.88);
    }
    .cat-card:hover img { transform: scale(1.1); filter: grayscale(0%) brightness(1.06); }
    
    .cat-info { padding: 0 5px; flex-grow: 1; display: flex; flex-direction: column; margin-top: 16px; }
    
    .cat-num {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: auto;
      padding: 12px 20px;
      border-radius: 999px;
      background:
        linear-gradient(rgba(5, 1, 10, 0.78), rgba(5, 1, 10, 0.78)) padding-box,
        linear-gradient(90deg, rgba(57,255,20,0.08), rgba(57,255,20,0.95), rgba(255,255,255,0.98), rgba(57,255,20,0.95), rgba(57,255,20,0.08)) border-box;
      background-size: 100% 100%, 220% auto;
      animation: dividerSweep 8.8s linear infinite;
      backdrop-filter: blur(14px);
      border: 1.5px solid transparent;
      box-shadow: 0 12px 30px rgba(0,0,0,0.32), 0 0 18px rgba(57,255,20,0.2), inset 0 0 14px rgba(57,255,20,0.08);
      font-weight: 900;
      font-size: 0.95rem;
      line-height: 1;
      letter-spacing: 0.03em;
      color: #fff;
      -webkit-text-stroke: 0;
      margin-bottom: 0;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .cat-card:nth-child(even) .cat-num {
      box-shadow: 0 12px 30px rgba(0,0,0,0.32), 0 0 18px rgba(57,255,20,0.24), inset 0 0 14px rgba(57,255,20,0.08);
    }
    
    /* Updated .cat-name to remove glassmorphism, align left, increase size, and add drop shadow */
    .cat-name {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      z-index: 4;
      text-align: left;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--text-main);
      line-height: 1.2;
      margin-bottom: 0;
      text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 2px 5px rgba(0,0,0,0.8);
    }

    /* New Button Styles for Categories */
    .cat-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: auto;
    }
    .cat-btn {
      width: 100%;
      padding: 12px;
      text-align: center;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
    }
    .cat-btn-primary {
      background: var(--neon-pink);
      color: #fff;
      border: none;
    }
    .cat-btn-primary:hover {
      background: #fff;
      color: var(--neon-pink);
      box-shadow: 0 0 15px var(--neon-pink);
    }
    .cat-btn-secondary {
      background: rgba(0, 229, 255, 0.05);
      color: var(--neon-blue);
      border: 1px solid var(--neon-blue);
    }
    .cat-btn-secondary:hover {
      background: var(--neon-blue);
      color: var(--darker-purple);
      box-shadow: 0 0 15px var(--neon-blue);
    }
    .cat-card:nth-child(even) .cat-btn-primary {
        background: var(--neon-blue);
    }
    .cat-card:nth-child(even) .cat-btn-primary:hover {
        background: #fff;
        color: var(--neon-blue);
        box-shadow: 0 0 15px var(--neon-blue);
    }
    .cat-card:nth-child(even) .cat-btn-secondary {
        color: var(--neon-pink);
        border: 1px solid var(--neon-pink);
    }
    .cat-card:nth-child(even) .cat-btn-secondary:hover {
        background: var(--neon-pink);
        color: var(--text-main);
        box-shadow: 0 0 15px var(--neon-pink);
    }

    /* ── FEATURE ROW ── */
    .features { padding: 110px 0; background: transparent; }
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 40px;
      margin-top: 64px;
    }
    .feat-item { 
      text-align: center; 
      padding: 30px;
      background: var(--surface);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      border-bottom: 4px solid var(--neon-blue);
      transition: transform 0.3s;
    }
    .feat-item:hover { transform: translateY(-10px); border-color: var(--neon-pink); }
    
    .feat-icon {
      width: 70px; height: 70px;
      background: rgba(0, 229, 255, 0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-size: 2rem;
      box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    }
    .feat-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .feat-desc {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* ── CTA BAND ── */
    .cta-band {
      position: relative;
      padding: 130px 0;
      text-align: center;
      overflow: hidden;
    }
    .cta-overlay {
      position: absolute; 
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(5, 1, 10, 0.4);
      backdrop-filter: blur(8px);
      z-index: 2;
      border-top: 1px solid rgba(0, 229, 255, 0.2);
      border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    }
    .cta-content { 
      position: relative; 
      z-index: 3; 
    }
    .cta-band .section-label { color: var(--neon-green); display: block; margin-bottom: 18px; }
    .cta-band h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--text-main);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .cta-band h2 em { 
      display: inline-block;
      font-family: 'Oxanium', 'Montserrat', sans-serif;
      font-style: normal; 
      font-weight: 800;
      letter-spacing: 0.08em;
      color: rgba(57,255,20,0.16);
      -webkit-text-stroke: 2.8px var(--neon-green);
      text-shadow: 0 0 16px rgba(57, 255, 20, 0.26), 0 0 34px rgba(0, 229, 255, 0.12);
      animation: ctaOutlinePulse 2.8s ease-in-out infinite;
      transform-origin: center;
    }
    @keyframes ctaOutlinePulse {
      0%, 100% { transform: scale(1); text-shadow: 0 0 16px rgba(57, 255, 20, 0.22), 0 0 32px rgba(0, 229, 255, 0.12); }
      50% { transform: scale(1.05); text-shadow: 0 0 22px rgba(57, 255, 20, 0.34), 0 0 42px rgba(0, 229, 255, 0.18); }
    }
    .cta-band p {
      font-size: 1.1rem;
      color: #e0d8f0;
      max-width: 500px;
      margin: 0 auto 44px;
      line-height: 1.6;
    }

    /* ── CONTACT ── */
    .contact { padding: 110px 0; background: transparent; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }
    .contact-info-item {
      display: flex; gap: 20px;
      margin-bottom: 36px;
      align-items: flex-start;
    }
    .contact-icon {
      width: 60px; height: 60px; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(57, 255, 20, 0.08));
      backdrop-filter: blur(8px);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.12), 0 0 20px rgba(57, 255, 20, 0.08);
    }
    .contact-svg { width: 28px; height: 28px; }
    .contact-svg .cyan { stroke: var(--neon-blue); }
    .contact-svg .green { stroke: var(--neon-green); }
    .contact-label { font-weight: 800; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--neon-pink); margin-bottom: 6px; }
    .contact-val { font-size: 1.1rem; font-weight: 600; color: var(--text-main); }
    
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
    .form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .form-group.no-entry, .form-group.no-entry > * { opacity: 1; transform: none; }
    .form-group label { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

    .checkbox-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 10px;
      text-align: left;
    }
    .checkbox-option {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text-main);
      font-weight: 500;
      text-transform: none !important;
      letter-spacing: 0 !important;
      cursor: pointer;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .checkbox-option:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 229, 255, 0.4);
      box-shadow: 0 10px 22px rgba(0,0,0,0.18), 0 0 18px rgba(0, 229, 255, 0.08);
    }
    .checkbox-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .checkbox-mark {
      width: 21px;
      height: 21px;
      border-radius: 7px;
      border: 1.5px solid rgba(0, 229, 255, 0.72);
      background: rgba(5, 1, 10, 0.72);
      box-shadow: inset 0 0 12px rgba(0, 229, 255, 0.08);
      position: relative;
      flex-shrink: 0;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .checkbox-mark::after {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
      transform: scale(0.2);
      opacity: 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .checkbox-text {
      line-height: 1.35;
    }
    .checkbox-option input:checked + .checkbox-mark {
      border-color: rgba(57, 255, 20, 0.85);
      background: rgba(5, 1, 10, 0.9);
      box-shadow: inset 0 0 12px rgba(0, 229, 255, 0.12), 0 0 16px rgba(57, 255, 20, 0.18);
    }
    .checkbox-option input:checked + .checkbox-mark::after {
      transform: scale(1);
      opacity: 1;
    }
    .checkbox-option input:checked ~ .checkbox-text {
      color: #ffffff;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--surface);
      backdrop-filter: blur(10px);
      border: none;
      border-bottom: 2px solid rgba(255,255,255,0.1);
      padding: 16px 20px;
      border-radius: 8px 8px 0 0;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      color: var(--text-main);
      outline: none;
      transition: all 0.3s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { 
      border-bottom-color: var(--neon-blue); 
      background: rgba(0, 229, 255, 0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    
    .form-group select option { background: var(--surface-solid); color: var(--text-main); }

    /* ── FOOTER ── */
    footer {
      background: rgba(5, 1, 10, 0.8);
      backdrop-filter: blur(15px);
      padding: 80px 0 40px;
      border-top: 1px solid rgba(255, 0, 234, 0.2);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
      align-items: start;
    }
    .footer-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .footer-brand span { color: var(--neon-pink); }
    .footer-about {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 30px;
    }
    .social-links { display: flex; gap: 16px; justify-content: center; } 
    .social-link {
      width: 44px; height: 115px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-main);
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s;
    }
    .social-link:hover { 
      background: var(--neon-blue); 
      color: var(--darker-purple);
      box-shadow: 0 0 15px var(--neon-blue);
      transform: translateY(-3px);
    }
    .footer-mobile-row {
      display: contents;
    }
    .footer-socials {
      justify-content: flex-start;
      margin-top: 26px;
    }
    .footer-social-link {
      width: 30px;
      height: 30px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      color: var(--neon-blue);
      box-shadow: none;
    }
    .footer-social-link svg {
      stroke: var(--neon-blue);
    }
    .footer-social-link:hover {
      background: transparent;
      color: var(--neon-blue);
      box-shadow: none;
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--neon-green);
      margin-bottom: 24px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 14px; }
    .footer-col ul a {
      font-size: 0.95rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--neon-pink); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 30px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

    /* PAGE ENTRY + SCROLL ANIMATIONS */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 234, 0.08), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(0, 229, 255, 0.07), transparent 24%),
        radial-gradient(circle at 50% 75%, rgba(57, 255, 20, 0.05), transparent 30%);
      opacity: 0;
      transition: opacity 1.2s ease;
      z-index: 1;
    }
    body.is-loaded::before { opacity: 1; }

    .page-load,
    .reveal,
    [data-animate] {
      opacity: 1;
      transform: none;
      filter: none;
      will-change: transform, opacity, filter;
    }

    .js .page-load.js-animate-init {
      opacity: 0;
      transform: translateY(36px) scale(0.985);
      filter: blur(10px);
      transition:
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .js body.is-loaded .page-load.js-animate-init {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
    .js body.is-loaded .delay-1 { transition-delay: 0.08s; }
    .js body.is-loaded .delay-2 { transition-delay: 0.16s; }
    .js body.is-loaded .delay-3 { transition-delay: 0.24s; }
    .js body.is-loaded .delay-4 { transition-delay: 0.32s; }

    .js .reveal.js-animate-init,
    .js [data-animate].js-animate-init {
      opacity: 0;
      filter: blur(10px);
      transition:
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .js .reveal.js-animate-init { transform: translateY(48px) scale(0.985); }
    .js .reveal.visible.js-animate-init,
    .js [data-animate].is-visible.js-animate-init {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      filter: blur(0);
    }

    .js [data-animate="up"].js-animate-init { transform: translate3d(0, 56px, 0) scale(0.985); }
    .js [data-animate="left"].js-animate-init { transform: translate3d(-56px, 22px, 0) scale(0.985); }
    .js [data-animate="right"].js-animate-init { transform: translate3d(56px, 22px, 0) scale(0.985); }
    .js [data-animate="zoom"].js-animate-init { transform: translate3d(0, 42px, 0) scale(0.9); }
    .js [data-animate="rotate-left"].js-animate-init { transform: translate3d(-42px, 28px, 0) rotate(-3deg) scale(0.97); }
    .js [data-animate="rotate-right"].js-animate-init { transform: translate3d(42px, 28px, 0) rotate(3deg) scale(0.97); }
    [data-delay="1"] { transition-delay: 0.08s; }
    [data-delay="2"] { transition-delay: 0.16s; }
    [data-delay="3"] { transition-delay: 0.24s; }
    [data-delay="4"] { transition-delay: 0.32s; }
    [data-delay="5"] { transition-delay: 0.40s; }

    .hero-content > * { will-change: transform, opacity, filter; }
    .cat-card,
    .feat-item,
    .contact-info-item,
    .footer-col,
    .footer-bottom,
    .intro-img-main,
    .intro-img-sub,
    .intro-badge,
    .cta-content,
    .social-links {
      will-change: transform, opacity, filter;
    }

    .scroll-top-btn {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 62px;
      height: 62px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)),
        rgba(5, 1, 10, 0.78);
      backdrop-filter: blur(16px);
      color: var(--text-main);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.45rem;
      cursor: pointer;
      z-index: 1200;
      box-shadow:
        0 16px 34px rgba(0,0,0,0.38),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 22px rgba(0, 229, 255, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(18px) scale(0.88);
      transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        bottom 0.35s ease;
    }
    .scroll-top-btn::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 17px;
      background: linear-gradient(135deg, rgba(255,0,234,0.14), rgba(0,229,255,0.1));
      opacity: 0.9;
      pointer-events: none;
    }
    .scroll-top-btn span {
      position: relative;
      z-index: 1;
      text-shadow: 0 0 12px rgba(255,255,255,0.32);
      transform: translateY(-1px);
    }
    .scroll-top-btn.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }
    .scroll-top-btn:hover {
      border-color: rgba(0, 229, 255, 0.5);
      box-shadow:
        0 18px 40px rgba(0,0,0,0.45),
        0 0 26px rgba(0, 229, 255, 0.28),
        0 0 20px rgba(255, 0, 234, 0.18);
      transform: translateY(-4px) scale(1.04);
    }

    @media (prefers-reduced-motion: reduce) {
      .page-load,
      .reveal,
      [data-animate],
      .scroll-top-btn,
      .cat-card,
      .strip-inner,
      .sphere {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
      }
    }

    @media (max-width: 1024px) {
      .cat-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      nav { padding: 35px 24px; }
      nav.scrolled { padding: 35px 24px; }
      .hero { min-height: 100svh; height: 100svh; align-items: flex-start; padding: 0 20px 26px; }
      .hero-content { padding-top: 168px; }
      .hero h1 { font-size: clamp(2.35rem, 10.2vw, 3.7rem); margin-bottom: 16px; }
      .hero-sub { font-size: 0.98rem; margin: 0 auto 24px; max-width: 520px; }
      .hero-btns { gap: 12px; }
      .btn-primary, .btn-ghost { padding: 14px 28px; font-size: 0.78rem; }
      .menu-btn { width: 34px; height: 24px; }
      .container { padding: 0 24px; }
      .intro-grid, .contact-grid { grid-template-columns: 1fr; }
      .contact-heading {
        margin: 0 auto 36px;
        text-align: center;
      }
      .contact-heading .divider {
        margin: 24px auto 0;
      }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer-mobile-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
      .intro { padding: 96px 0 46px; }
      .categories { padding: 26px 0 88px; }
      .intro-imgs { height: 350px; margin-bottom: 40px; }
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .checkbox-group { grid-template-columns: 1fr; }
      .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
      .cta-band h2 em { display: block; margin-top: 18px; }
    }
    @media (max-width: 500px) {
      .cat-grid, .feat-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
      .footer-col h4 { margin-bottom: 16px; }
      .footer-col ul li { margin-bottom: 10px; }
      .cat-img-wrapper {
        height: 200px;
      }
      .sphere {
        filter: blur(90px);
        opacity: 0.28;
      }
      .sphere-1 {
        width: 88vw;
        height: 88vw;
        top: -18%;
        left: -24%;
      }
      .sphere-2 {
        width: 82vw;
        height: 82vw;
        right: -22%;
        bottom: -18%;
      }
      .sphere-3 {
        width: 68vw;
        height: 68vw;
        top: 46%;
        left: 44%;
      }
      .sphere-4 {
        width: 62vw;
        height: 62vw;
        left: -8%;
        bottom: 16%;
      }
    }

    /* ══════════════════════════════════════════
       ENHANCED ANIMATIONS
    ══════════════════════════════════════════ */

    /* ── TECHNO WORD FLICKER ── */
    @keyframes techFlicker {
      0%, 94%, 100% { opacity: 1; filter: none; }
      95% { opacity: 0.6; filter: blur(1px); }
      96% { opacity: 1; }
      97% { opacity: 0.75; }
      98% { opacity: 1; }
    }
    @keyframes techFlicker2 {
      0%, 88%, 100% { opacity: 1; filter: none; }
      89% { opacity: 0.5; filter: blur(1.5px); }
      90% { opacity: 1; }
      91% { opacity: 0.8; }
    }
    .hero h1 .w-pink  { animation: techFlicker  8s 0.3s infinite; }
    .hero h1 .w-blue  { animation: techFlicker2 9s 1.2s infinite; }
    .hero h1 .w-green { animation: techFlicker  7s 0.7s infinite; }
    .hero h1 .w-solid { animation: techFlicker2 10s 2s infinite; }

    /* ── SCANLINE OVERLAY ON HERO ── */
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 4px
      );
      pointer-events: none;
      z-index: 2;
      animation: scanlines 8s linear infinite;
    }
    @keyframes scanlines {
      0% { background-position: 0 0; }
      100% { background-position: 0 40px; }
    }

    /* ── NEON PULSE RING ON BUTTONS ── */
    .btn-primary, .btn-ghost {
      position: relative;
      overflow: visible;
    }
    .btn-primary::after {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: 50px;
      background: transparent;
      border: 2px solid var(--neon-pink);
      opacity: 0;
      animation: btn-pulse 2.5s ease-out infinite;
    }
    @keyframes btn-pulse {
      0%   { opacity: 0.7; transform: scale(1); }
      70%  { opacity: 0; transform: scale(1.18); }
      100% { opacity: 0; transform: scale(1.18); }
    }

    /* ── CARD MAGNETIC + NEON BORDER SWEEP ── */
    .cat-card {
      transition: box-shadow 0.3s, filter 0.3s;
    }
    .cat-card:hover {
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(255,0,234,0.28);
      filter: brightness(1.05);
    }
    .cat-card:nth-child(even):hover {
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(0,229,255,0.28);
    }
    .cat-img-wrapper img {
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s;
      transform-origin: center;
    }
    .cat-card:hover .cat-img-wrapper img {
      transform: scale(1.08);
      filter: contrast(1.3) saturate(1.4) brightness(1.05);
    }

    /* ── COUNTER NUMBER POP ── */
    @keyframes numberPop {
      0%   { transform: scale(0.5) translateY(20px); opacity: 0; }
      60%  { transform: scale(1.15) translateY(-4px); opacity: 1; }
      100% { transform: scale(1) translateY(0); opacity: 1; }
    }
    .intro-badge strong {
      display: block;
      animation: numberPop 1.2s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    /* ── FEAT ITEM NEON GLOW PULSE ── */
    @keyframes featPulse {
      0%, 100% { box-shadow: 0 0 0px rgba(0,229,255,0); border-color: var(--neon-blue); }
      50% { box-shadow: 0 0 22px rgba(0,229,255,0.28), 0 0 50px rgba(0,229,255,0.1); border-color: var(--neon-pink); }
    }
    .feat-item {
      animation: featPulse 4s ease-in-out infinite;
    }
    .feat-item:nth-child(2) { animation-delay: 1s; }
    .feat-item:nth-child(3) { animation-delay: 2s; }
    .feat-item:nth-child(4) { animation-delay: 3s; }

    /* ── MARQUEE HOVER PAUSE ── */
    .strip-wrap:hover .strip-inner { animation-play-state: paused; }

    /* ── FOOTER BRAND TEXT SHIMMER ── */
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .footer-brand {
      background: linear-gradient(90deg, #fff 30%, var(--neon-pink) 45%, var(--neon-blue) 55%, #fff 70%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 5s linear infinite;
    }
    .footer-brand span {
      background: none;
      -webkit-text-fill-color: var(--neon-pink);
    }
    .footer-logo {
      background: none;
      -webkit-background-clip: initial;
      -webkit-text-fill-color: initial;
      background-clip: initial;
      animation: none;
    }

    /* ── SECTION LABEL FLICKER ── */
    @keyframes labelFlicker {
      0%, 95%, 100% { opacity: 1; }
      96% { opacity: 0.5; }
      97% { opacity: 1; }
      98% { opacity: 0.7; }
      99% { opacity: 1; }
    }
    .section-label {
      animation: labelFlicker 6s infinite;
    }

    /* ── DIVIDER GLOW SWEEP ── */
    @keyframes dividerSweep {
      0%   { background-position: -100% 0; }
      100% { background-position: 200% 0; }
    }
    .divider {
      background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-green), var(--neon-pink));
      background-size: 200% auto;
      animation: dividerSweep 3s linear infinite;
    }

    /* ── HERO EYEBROW TYPEWRITER BLINK ── */
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
    .hero-eyebrow::after {
      content: "|";
      display: inline-block;
      margin-left: 3px;
      animation: blink 1s step-end infinite;
      color: var(--neon-blue);
    }

    /* ── NAV LOGO GLOW BREATHE ── */
    @keyframes logoBreathe {
      0%, 100% { text-shadow: 0 0 10px rgba(0,229,255,0.5); }
      50% { text-shadow: 0 0 20px rgba(0,229,255,0.9), 0 0 40px rgba(0,229,255,0.4); }
    }
    .nav-logo { animation: logoBreathe 3s ease-in-out infinite; }
    .nav-logo.logo-image,
    .nav-logo.logo-image img,
    .footer-logo,
    .footer-logo img { animation: none !important; }


    /* ── CONTACT ICON SPIN ON HOVER ── */
    .contact-icon {
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    }
    .contact-info-item:hover .contact-icon {
      transform: rotate(15deg) scale(1.15);
      box-shadow: inset 0 0 10px rgba(0,229,255,0.4), 0 0 20px rgba(0,229,255,0.3);
    }

    /* ── SOCIAL LINKS WOBBLE ── */
    @keyframes wobble {
      0%, 100% { transform: rotate(0deg); }
      25%  { transform: rotate(-8deg) scale(1.1); }
      75%  { transform: rotate(8deg) scale(1.1); }
    }
    .social-link:hover { animation: wobble 0.5s ease-in-out; }

    /* ── CTA BAND ANIMATED BORDER ── */
    .cta-overlay {
      background: rgba(5, 1, 10, 0.4);
      backdrop-filter: blur(8px);
      z-index: 2;
    }
    .cta-overlay::before, .cta-overlay::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      height: 2px;
    }
    .cta-overlay::before {
      top: 0;
      background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), var(--neon-green), transparent);
      background-size: 200% auto;
      animation: dividerSweep 3s linear infinite;
    }
    .cta-overlay::after {
      bottom: 0;
      background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-pink), var(--neon-blue), transparent);
      background-size: 200% auto;
      animation: dividerSweep 3s linear infinite reverse;
    }


    img, svg { max-width: 100%; }

    .container,
    .intro-grid > *,
    .contact-grid > *,
    .footer-grid > *,
    .footer-mobile-row > *,
    .cat-grid > * {
      min-width: 0;
    }

    section,
    .container,
    .page-load,
    .reveal,
    [data-animate],
    .hero-content,
    .cta-content,
    footer {
      overflow: visible;
    }

    .hero h1,
    .section-title,
    .hero-sub,
    .contact-val,
    .footer-about,
    .strip-item {
      overflow-wrap: anywhere;
    }

    .contact-val a {
      color: inherit;
      text-decoration: none;
    }
    .contact-val a:hover {
      color: var(--neon-blue);
      text-shadow: 0 0 14px rgba(0, 229, 255, 0.34);
    }

    .nav-logo.logo-image,
    .footer-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      text-transform: none;
      letter-spacing: 0;
    }

    .nav-logo.logo-image img {
      display: block;
      width: auto;
      max-width: min(59vw, 378px);
      height: 121px;
      filter: none;
    }

    .footer-logo img {
      display: block;
      width: auto;
      max-width: min(74vw, 399px);
      height: 126px;
      filter: none;
    }

    .section-title em {
      display: inline-block;
      animation: techFlicker2 9s 1s infinite;
    }

    @media (max-width: 900px) {
      nav { padding: 0 24px 35px; }
      nav.scrolled { padding: 0 24px 35px; }
      .nav-logo.logo-image,
      .menu-btn { margin-top: 0; }
      .nav-logo.logo-image img { height: 95px; max-width: 84vw; margin-top: 0; }
      .footer-logo img { height: 103px; max-width: 90vw; }
    }


    /* ── FINAL TWEAKS V3 ── */
    .cat-num {
      background-size: 100% 100%, 240% auto;
      animation: dividerSweep 8.8s linear infinite;
    }

    .hero-btns .btn-primary {
      padding: 19px 53px;
      font-size: 1.02rem;
      box-shadow: 0 0 24px rgba(255, 0, 234, 0.46);
    }

    .contact .section-title em {
      white-space: nowrap;
    }

    .contact-info-item {
      align-items: center;
      gap: 24px;
    }

    .contact-icon {
      width: auto;
      height: auto;
      background: none;
      backdrop-filter: none;
      border-radius: 0;
      border: none;
      box-shadow: none;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-info-item > div:last-child {
      min-height: 62px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-svg {
      width: 56px;
      height: 56px;
      filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.2)) drop-shadow(0 0 10px rgba(57, 255, 20, 0.14));
    }

    .cta-band h2 em {
      position: relative;
      display: inline-block;
      color: transparent;
      -webkit-text-stroke: 1.2px var(--neon-green);
      text-stroke: 1.2px var(--neon-green);
      text-shadow: 0 0 12px rgba(57, 255, 20, 0.18), 0 0 26px rgba(57, 255, 20, 0.08);
      animation: beOutlinePulse 3.4s ease-in-out infinite;
      transform-origin: center;
    }

    .cta-band h2 em::before,
    .cta-band h2 em::after {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      color: transparent;
      -webkit-text-stroke: 1.2px rgba(57, 255, 20, 0.98);
      text-stroke: 1.2px rgba(57, 255, 20, 0.98);
      pointer-events: none;
    }

    .cta-band h2 em::before {
      clip-path: polygon(0 0, 36% 0, 28% 100%, 0 100%);
      animation: outlineFlickerLeft 7.4s steps(1, end) infinite;
    }

    .cta-band h2 em::after {
      clip-path: polygon(72% 0, 100% 0, 100% 100%, 64% 100%);
      animation: outlineFlickerRight 8.2s steps(1, end) infinite;
    }

    @keyframes beOutlinePulse {
      0%, 100% { transform: scale(1); text-shadow: 0 0 12px rgba(57, 255, 20, 0.16), 0 0 26px rgba(57, 255, 20, 0.08); }
      50% { transform: scale(1.035); text-shadow: 0 0 18px rgba(57, 255, 20, 0.26), 0 0 34px rgba(57, 255, 20, 0.14); }
    }

    @keyframes outlineFlickerLeft {
      0%, 14%, 15%, 31%, 32%, 64%, 65%, 86%, 87%, 100% { opacity: 1; filter: none; }
      14.4% { opacity: 0.28; filter: blur(0.6px); }
      31.4% { opacity: 0.58; filter: blur(0.35px); }
      64.4% { opacity: 0.16; filter: blur(0.95px); }
      86.2% { opacity: 0.44; filter: blur(0.55px); }
    }

    @keyframes outlineFlickerRight {
      0%, 11%, 12%, 38%, 39%, 58%, 59%, 82%, 83%, 100% { opacity: 1; filter: none; }
      11.5% { opacity: 0.42; filter: blur(0.4px); }
      38.3%, 38.7% { opacity: 0.18; filter: blur(0.85px); }
      58.2% { opacity: 0.54; filter: blur(0.35px); }
      82.4% { opacity: 0.24; filter: blur(0.75px); }
    }

    .contact-info-item:hover .contact-icon {
      transform: none;
      box-shadow: none;
    }

    @media (max-width: 900px) {
      .hero-btns .btn-primary {
        padding: 17px 34px;
        font-size: 0.94rem;
      }

      .contact .section-title {
        font-size: clamp(2.25rem, 8.2vw, 3.1rem);
      }

      .cta-band h2 em {
        margin-top: 18px;
      }

      .mobile-menu-links a {
        font-size: 1.42rem;
      }
    }

    @media (max-width: 500px) {
      .contact-info-item {
        gap: 16px;
      }

      .contact-svg {
        width: 54px;
        height: 54px;
      }

      .mobile-menu-links {
        gap: 18px;
        margin-bottom: 28px;
      }

      .mobile-menu-links a {
        font-size: 1.18rem;
      }

      .mobile-cta {
        padding: 16px 28px;
      }

      .contact .section-title em {
        white-space: nowrap;
      }
    }


    @media (min-width: 901px) {
      nav {
        padding: 0 60px 203px;
        min-height: 489px;
        align-items: flex-start;
        background: linear-gradient(180deg, rgba(0,0,0,0.985) 0%, rgba(0,0,0,0.955) 13%, rgba(0,0,0,0.84) 28%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.22) 56%, rgba(0,0,0,0.08) 68%, rgba(0,0,0,0.02) 78%, rgba(0,0,0,0) 88%);
        z-index: 180;
      }

      nav.scrolled {
        padding: 0 60px 203px;
        min-height: 489px;
        background: linear-gradient(180deg, rgba(0,0,0,0.985) 0%, rgba(0,0,0,0.955) 13%, rgba(0,0,0,0.84) 28%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.22) 56%, rgba(0,0,0,0.08) 68%, rgba(0,0,0,0.02) 78%, rgba(0,0,0,0) 88%);
        z-index: 180;
      }

      .hero {
        z-index: 1;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 420px;
        background: linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.09) 26%, rgba(0,0,0,0.04) 54%, rgba(0,0,0,0.01) 78%, rgba(0,0,0,0) 100%);
        pointer-events: none;
        z-index: 2;
      }

      .hero-content {
        position: relative;
        z-index: 4;
        padding-top: 136px;
        transform: translateY(-50px);
      }

      .hero h1 {
        position: relative;
        z-index: 5;
      }

      .nav-logo.logo-image,
      .nav-links,
      .menu-btn {
        margin-top: 0;
        align-self: flex-start;
        position: relative;
        z-index: 130;
      }

      .nav-logo.logo-image img {
        height: 136px;
      }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 24px;
        padding-top: 18px;
      }

      .menu-btn {
        display: none;
      }

      .strip-wrap {
        z-index: 30;
      }

      .categories {
        padding-top: 56px;
      }

      #paslaugos > .container {
        width: 90vw;
        max-width: 90vw;
        padding-left: 0;
        padding-right: 0;
      }

      #cat-cards {
        min-height: 80vh;
        align-items: stretch;
      }

      #cat-cards .cat-card {
        min-height: 80vh;
        height: 100%;
      }

      #cat-cards .cat-img-wrapper {
        flex: 1 1 auto;
        height: auto !important;
        min-height: 0;
      }

      .contact-heading {
        max-width: 820px;
        margin: 0 auto 54px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .contact-heading .divider {
        margin: 24px auto 0;
      }

      .contact-grid {
        grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
        gap: 56px;
        align-items: start;
      }

      .contact-info-list {
        width: 100%;
        max-width: 520px;
        justify-self: end;
      }

      .contact-form {
        width: 100%;
        max-width: 760px;
      }
    }


.section-desc-spaced {
  margin-top: 20px;
}

.btn-block {
  width: 100%;
}

.btn-clickable {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.scroll-top-btn.at-footer {
  bottom: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px rgba(0,229,255,0.3), 0 0 20px rgba(0,229,255,0.15);
}

.spark-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px currentColor;
  transition: transform 0.5s ease, opacity 0.5s ease;
}


/* === Updates: comparison, badges, trust, quick selector, WhatsApp === */
.hero-trust{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin:0 auto 28px;max-width:900px}
.hero-trust-item{padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);font-size:.84rem;color:#fff;backdrop-filter:blur(12px)}
.hero-quick-pick{margin:14px auto 0;max-width:860px}
.hero-quick-pick-label{margin-bottom:12px;font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;color:#bffcff;font-weight:800}
.hero-quick-pick-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
.quick-pick-btn{padding:13px 18px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.05);color:#fff;text-decoration:none;font-weight:800;font-size:.84rem;letter-spacing:.05em;text-transform:uppercase;transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease}
.quick-pick-btn:hover{transform:translateY(-2px);border-color:rgba(0,229,255,.65);box-shadow:0 0 20px rgba(0,229,255,.18)}
.page-intro{padding:30px 0 28px}
.page-intro .section-desc{max-width:760px}
.compare-section{padding:8px 0 72px}
.compare-wrap{border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.045);backdrop-filter:blur(18px);border-radius:28px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.24)}
.compare-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.compare-table{width:100%;min-width:920px;border-collapse:collapse}
.compare-table th,.compare-table td{padding:18px 16px;border-bottom:1px solid rgba(255,255,255,.08);text-align:center;vertical-align:middle}
.compare-table thead th{position:sticky;top:0;background:rgba(12,4,24,.96);backdrop-filter:blur(16px);z-index:2;font-size:.88rem;text-transform:uppercase;letter-spacing:.08em}
.compare-table th:first-child,.compare-table td:first-child{text-align:left;min-width:170px;font-weight:800;color:#fff}
.compare-table tbody tr:hover td{background:rgba(255,255,255,.025)}
.compare-note{margin-top:14px;color:rgba(255,255,255,.62);font-size:.86rem}
.package-copy{margin:0;color:rgba(255,255,255,.78);line-height:1.6;font-size:.98rem}
.package-card{position:relative}
.package-card .cat-img-wrapper{position:relative;display:flex;align-items:flex-end;justify-content:center;overflow:hidden;padding:22px 22px 14px;isolation:isolate;min-height:280px;height:280px!important}
.package-card .cat-img-wrapper::before{display:none}
.package-card .cat-img-wrapper img{position:relative;z-index:1;display:block;width:100%;height:100%;object-fit:contain;object-position:center;transform:none;filter:none}
.package-card .cat-img-wrapper .cat-num{position:absolute;top:18px;left:18px;z-index:3}
.package-card .cat-img-wrapper .cat-name{position:absolute;left:18px;bottom:18px;z-index:3}
.package-badge{position:absolute;top:18px;right:18px;z-index:4;padding:9px 12px;border-radius:999px;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;box-shadow:0 12px 30px rgba(0,0,0,.3)}
.badge-popular{background:linear-gradient(135deg,#39ff14,#00e5ff);color:#09110f}
.badge-new{background:linear-gradient(135deg,#ff00ea,#00e5ff);color:#fff}
.cat-actions .cat-btn-primary{margin-top:18px}
.package-tags{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 0;padding:0;list-style:none}
.package-tags li{padding:8px 12px;border-radius:999px;border:none;color:#fff;font-size:.86rem;line-height:1.2;font-weight:800}
.package-tags .tag-watts{background:rgba(255,0,234,.16);color:#ffd1fa;box-shadow:inset 0 0 0 1px rgba(255,0,234,.26)}
.package-tags .tag-visual{background:rgba(0,229,255,.14);color:#cbfbff;box-shadow:inset 0 0 0 1px rgba(0,229,255,.24)}
.package-tags .tag-mic{background:rgba(255,255,255,.08);color:#fff;box-shadow:inset 0 0 0 1px rgba(255,255,255,.14)}
.package-tags .tag-light{background:rgba(57,255,20,.14);color:#d7ffd0;box-shadow:inset 0 0 0 1px rgba(57,255,20,.24)}
.package-tags .tag-speaker{background:rgba(255,187,0,.12);color:#ffe8a6;box-shadow:inset 0 0 0 1px rgba(255,187,0,.24)}
.package-copy-why{margin-top:12px;font-size:.88rem;color:rgba(255,255,255,.64)}
.package-note{margin-top:14px;color:rgba(255,255,255,.62);font-size:.86rem}
.package-card.is-highlighted{box-shadow:0 0 0 2px rgba(0,229,255,.55),0 24px 60px rgba(0,0,0,.55),0 0 42px rgba(0,229,255,.22)!important;transform:translateY(-6px) scale(1.01)}
.faq-section{padding:18px 0 110px}
.faq-list{display:grid;gap:18px;margin-top:36px}
.faq-item{border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.04);backdrop-filter:blur(16px);border-radius:24px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.2)}
.faq-item summary{list-style:none;cursor:pointer;padding:24px 28px;font-weight:700;font-size:1.05rem;display:flex;align-items:center;justify-content:space-between;gap:16px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.5rem;line-height:1;color:#6df7ff;flex:0 0 auto;transition:transform .25s ease}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-answer{padding:0 28px 24px;color:rgba(255,255,255,.78);line-height:1.7}
.floating-whatsapp{position:fixed;right:24px;bottom:98px;z-index:1195;display:inline-flex;align-items:center;gap:10px;padding:14px 16px;border-radius:999px;text-decoration:none;background:linear-gradient(135deg,rgba(37,211,102,.95),rgba(24,162,73,.95));color:#fff;font-weight:900;box-shadow:0 18px 34px rgba(0,0,0,.36),0 0 30px rgba(37,211,102,.22)}
.floating-whatsapp svg{width:20px;height:20px;flex:0 0 auto}
@media (max-width: 820px){
  .package-card .cat-img-wrapper{padding:18px 18px 12px;min-height:280px;height:280px!important}
  .package-card .cat-img-wrapper .cat-num{top:14px;left:14px}
  .package-car