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

    :root {
      --bg: #06061a;
      --bg-card: rgba(15, 20, 45, 0.75);
      --border: rgba(99, 102, 241, 0.25);
      --text: #f1f5f9;
      --muted: #94a3b8;
      --gradient: linear-gradient(135deg, #6366f1, #a855f7);
      --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open { overflow: hidden; }

    a { text-decoration: none; color: inherit; }

    .bg-grid {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    .bg-glow {
      position: fixed; width: 600px; height: 600px; border-radius: 50%;
      filter: blur(120px); opacity: 0.25; pointer-events: none; z-index: 0;
    }
    .bg-glow-1 { top: -150px; right: 10%; background: #6366f1; }
    .bg-glow-2 { bottom: 20%; left: -100px; background: #a855f7; opacity: 0.15; }

    .page { position: relative; z-index: 1; }

    /* HEADER */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(6, 6, 26, 0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    }

    .nav {
      max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }

    .logo { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.25rem; }

    .logo-icon {
      width: 32px; height: 32px; border-radius: 9px; background: var(--gradient);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 1rem; color: #fff;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.45);
    }

    .nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
    .nav-links a { font-size: 0.925rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }
    .nav-links a.nav-active {
      color: #a78bfa;
      position: relative;
    }
    .nav-links a.nav-active::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 2px;
      background: linear-gradient(90deg, #6366f1, #a855f7);
      border-radius: 2px;
    }

    .nav-actions { display: flex; align-items: center; gap: 0.75rem; }

    .btn-login {
      padding: 0.5rem 1.1rem; font-size: 0.9rem; font-weight: 500; color: var(--muted);
      border: 1px solid rgba(148, 163, 184, 0.3); border-radius: 999px;
      background: transparent; cursor: pointer; transition: all 0.2s;
    }
    .btn-login:hover { color: #fff; border-color: rgba(148, 163, 184, 0.5); }

    .btn-get-started {
      padding: 0.55rem 1.25rem; font-size: 0.9rem; font-weight: 600; color: #fff;
      background: var(--gradient); border: none; border-radius: 999px; cursor: pointer;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-get-started:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(99, 102, 241, 0.55); }

    /* Burger → Cross */
    .menu-toggle {
      display: none; width: 36px; height: 36px; background: none; border: none;
      cursor: pointer; position: relative; z-index: 200; padding: 0;
    }
    .menu-toggle span {
      display: block; position: absolute; left: 6px; width: 24px; height: 2.5px;
      background: #fff; border-radius: 2px; transition: all 0.3s ease;
    }
    .menu-toggle span:nth-child(1) { top: 10px; }
    .menu-toggle span:nth-child(2) { top: 17px; }
    .menu-toggle span:nth-child(3) { top: 24px; }
    .menu-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
    .menu-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

    /* Full-screen mobile menu */
    .mobile-menu {
      position: fixed; top: 0; right: 0; width: 100%; height: 100%;
      background: rgba(6, 6, 26, 0.98); backdrop-filter: blur(20px); z-index: 150;
      display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
      transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    .mobile-menu.open { transform: translateX(0); pointer-events: auto; }

    .mobile-close {
      position: absolute; top: 1.25rem; right: 1.25rem; width: 44px; height: 44px;
      border: none; background: rgba(255,255,255,0.08); border-radius: 50%;
      color: #fff; font-size: 1.5rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10;
    }
    .mobile-close:hover { background: rgba(255,255,255,0.15); }

    .mobile-menu a { font-size: 1.5rem; font-weight: 600; color: #e2e8f0; transition: color 0.2s; }
    .mobile-menu a:hover { color: #a78bfa; }

    .mobile-menu .mobile-actions {
      display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; width: 200px;
    }
    .mobile-menu .btn-login, .mobile-menu .btn-get-started { width: 100%; text-align: center; padding: 0.75rem; }

    /* HERO */
    .hero {
      max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.5rem 5rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    }

    .hero-badge {
      display: inline-block; padding: 0.35rem 0.9rem; font-size: 0.78rem; font-weight: 500;
      color: #c4b5fd; background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 999px; margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15;
      letter-spacing: -0.03em; margin-bottom: 1.25rem;
    }
    .hero h1 .grad {
      background: linear-gradient(90deg, #818cf8, #c084fc);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .hero-desc { font-size: 1.05rem; color: var(--muted); max-width: 460px; margin-bottom: 2rem; line-height: 1.7; }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 0.9rem; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.8rem 1.5rem;
      font-size: 0.95rem; font-weight: 600; color: #fff; background: var(--gradient);
      border: none; border-radius: 999px; cursor: pointer;
      box-shadow: 0 0 25px rgba(99, 102, 241, 0.4); transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(99, 102, 241, 0.55); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.8rem 1.5rem;
      font-size: 0.95rem; font-weight: 600; color: #e2e8f0; background: transparent;
      border: 1.5px solid rgba(148, 163, 184, 0.35); border-radius: 999px; cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: rgba(148, 163, 184, 0.6); background: rgba(255, 255, 255, 0.04); }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-height: 480px;
    }

    .network {
      position: relative;
      width: 440px;
      height: 440px;
    }

    /* Bottom mirror / reflection glow */
    .network::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -40px;
      transform: translateX(-50%);
      width: 380px;
      height: 100px;
      background: radial-gradient(ellipse at center,
        rgba(99, 102, 241, 0.65) 0%,
        rgba(139, 92, 246, 0.35) 35%,
        transparent 70%);
      filter: blur(22px);
      z-index: 0;
      pointer-events: none;
    }

    .network::before {
      content: '';
      position: absolute;
      left: 8%;
      right: 8%;
      bottom: 8px;
      height: 2px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(129, 140, 248, 0.3) 20%,
        rgba(165, 180, 252, 0.9) 50%,
        rgba(129, 140, 248, 0.3) 80%,
        transparent 100%);
      box-shadow:
        0 0 15px 3px rgba(99, 102, 241, 0.5),
        0 0 40px 8px rgba(99, 102, 241, 0.25);
      z-index: 1;
    }

    /* Outer soft ring around center */
    .network-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 1px solid rgba(99, 102, 241, 0.25);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
      z-index: 1;
      pointer-events: none;
    }

    .network-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: radial-gradient(circle at 32% 28%, #c4b5fd 0%, #818cf8 30%, #6366f1 60%, #4338ca 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.3rem;
      font-weight: 800;
      color: #fff;
      z-index: 4;
      box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.45),
        0 0 0 10px rgba(99, 102, 241, 0.12),
        0 0 30px 10px rgba(99, 102, 241, 0.65),
        0 0 70px 25px rgba(139, 92, 246, 0.4),
        0 0 120px 45px rgba(99, 102, 241, 0.18);
      animation: centerPulse 3.2s ease-in-out infinite;
    }

    @keyframes centerPulse {
      0%, 100% {
        box-shadow:
          0 0 0 4px rgba(99, 102, 241, 0.45),
          0 0 0 10px rgba(99, 102, 241, 0.12),
          0 0 30px 10px rgba(99, 102, 241, 0.65),
          0 0 70px 25px rgba(139, 92, 246, 0.4),
          0 0 120px 45px rgba(99, 102, 241, 0.18);
      }
      50% {
        box-shadow:
          0 0 0 5px rgba(99, 102, 241, 0.6),
          0 0 0 14px rgba(99, 102, 241, 0.18),
          0 0 40px 14px rgba(99, 102, 241, 0.8),
          0 0 90px 32px rgba(139, 92, 246, 0.5),
          0 0 140px 55px rgba(99, 102, 241, 0.25);
      }
    }

    .network-node {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.55rem;
      z-index: 3;
    }

    .network-node .icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 25%, rgba(40, 50, 110, 0.95), rgba(8, 12, 35, 0.98));
      border: 1.5px solid rgba(129, 140, 248, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      color: #e0e7ff;
      box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.3),
        0 0 20px 5px rgba(99, 102, 241, 0.4),
        inset 0 0 14px rgba(99, 102, 241, 0.18);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .network-node:hover .icon {
      transform: scale(1.1);
      border-color: #a5b4fc;
      box-shadow:
        0 0 0 2px rgba(165, 180, 252, 0.45),
        0 0 32px 10px rgba(99, 102, 241, 0.6),
        inset 0 0 18px rgba(99, 102, 241, 0.28);
    }

    .network-node span {
      font-size: 0.8rem;
      font-weight: 600;
      color: #e0e7ff;
      white-space: nowrap;
      text-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
      letter-spacing: 0.01em;
    }

    /* Precise circular positions matching the reference */
    .node-1 { top: 0;    left: 50%; transform: translateX(-50%); }          /* top - QuickPOS */
    .node-2 { top: 18%;  right: 4%; }                                       /* top-right - QuickCRM */
    .node-3 { bottom: 18%; right: 4%; }                                     /* bottom-right - QuickHR */
    .node-4 { bottom: 0; left: 50%; transform: translateX(-50%); }          /* bottom - QuickAnalytics */
    .node-5 { bottom: 18%; left: 4%; }                                      /* bottom-left - QuickInventory */
    .node-6 { top: 18%;  left: 4%; }                                        /* top-left - QuickERP */

    .network-lines {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .network-lines svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }



    /* ABOUT */
    .about { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 5rem; text-align: center; }
    .section-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; color: #a78bfa; margin-bottom: 0.75rem; text-transform: uppercase; }
    .section-title { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
    .section-sub { color: var(--muted); max-width: 520px; margin: 0 auto 3rem; font-size: 1.05rem; }

    .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .feature-card {
      background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
      padding: 1.75rem 1.4rem; text-align: left; transition: border-color 0.25s, box-shadow 0.25s;
    }
    .feature-card:hover { border-color: rgba(139, 92, 246, 0.45); box-shadow: 0 0 30px rgba(99, 102, 241, 0.12); }
    .feature-icon {
      width: 44px; height: 44px; border-radius: 12px; background: rgba(99, 102, 241, 0.15);
      display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem;
    }
    .feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.45rem; }
    .feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

    /* PRODUCTS */
    .products { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 4rem; text-align: center; }
    .products-slider { position: relative; margin-top: 2.5rem; overflow: hidden; }

    .products-track {
      display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; padding: 0.5rem 0.25rem 1.5rem; -webkit-overflow-scrolling: touch;
    }
    .products-track::-webkit-scrollbar { display: none; }

    .product-card {
      flex: 0 0 280px; scroll-snap-align: start; background: var(--bg-card);
      border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem 1.4rem;
      text-align: left; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .product-card:hover { border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 0 30px rgba(99, 102, 241, 0.15); transform: translateY(-4px); }

    .product-icon {
      width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center;
      justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
    }
    .product-icon.blue { background: rgba(59, 130, 246, 0.2); }
    .product-icon.purple { background: rgba(139, 92, 246, 0.25); }
    .product-icon.green { background: rgba(34, 197, 94, 0.2); }
    .product-icon.cyan { background: rgba(6, 182, 212, 0.2); }
    .product-icon.orange { background: rgba(249, 115, 22, 0.2); }
    .product-icon.pink { background: rgba(236, 72, 153, 0.2); }

    .product-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
    .product-card .tagline { font-size: 0.85rem; color: #a5b4fc; margin-bottom: 0.7rem; }
    .product-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.55; }
    .product-card .learn { font-size: 0.9rem; font-weight: 600; color: #a78bfa; display: inline-flex; align-items: center; gap: 0.3rem; }
    .product-card .learn:hover { gap: 0.5rem; }

    .slider-nav { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 0.5rem; }
    .slider-btn {
      width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(148, 163, 184, 0.3);
      background: transparent; color: #fff; font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s;
    }
    .slider-btn:hover { background: rgba(99, 102, 241, 0.2); border-color: rgba(99, 102, 241, 0.5); }

    .dots { display: flex; gap: 0.4rem; }
    .dot {
      width: 8px; height: 8px; border-radius: 50%; background: rgba(148, 163, 184, 0.35);
      cursor: pointer; transition: background 0.2s, transform 0.2s;
    }
    .dot.active { background: #818cf8; transform: scale(1.2); }

    /* INDUSTRIES */
    .industries { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 5rem; text-align: center; }
    .industries-track {
      display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; padding: 1.5rem 0.25rem; -webkit-overflow-scrolling: touch;
    }
    .industries-track::-webkit-scrollbar { display: none; }

    .industry-card {
      flex: 0 0 130px; scroll-snap-align: start; background: var(--bg-card);
      border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem 1rem;
      display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
      transition: border-color 0.25s, transform 0.25s; cursor: pointer;
    }
    .industry-card:hover { border-color: rgba(139, 92, 246, 0.5); transform: translateY(-3px); }
    .industry-card .ico { font-size: 1.6rem; }
    .industry-card span { font-size: 0.85rem; font-weight: 600; color: #e2e8f0; }

    /* CTA */
    .cta { max-width: 1100px; margin: 0 auto 4rem; padding: 0 1.5rem; }
    .cta-inner {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.2));
      border: 1px solid rgba(139, 92, 246, 0.35); border-radius: 20px; padding: 2.2rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    }
    .cta-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.35rem; }
    .cta-text p { color: var(--muted); font-size: 0.95rem; }
    .cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

    /* FOOTER */
    footer { border-top: 1px solid rgba(99, 102, 241, 0.15); padding: 3.5rem 1.5rem 2rem; }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2rem;
    }
    .footer-brand .logo { margin-bottom: 0.75rem; }
    @media (max-width: 768px) {
      .footer-brand .logo { justify-content: center; }
    }
    .footer-brand p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; max-width: 220px; }
    .socials { display: flex; gap: 0.7rem; }
    .socials a {
      width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(148, 163, 184, 0.25);
      display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--muted);
      transition: color 0.2s, border-color 0.2s;
    }
    .socials a:hover { color: #fff; border-color: rgba(148, 163, 184, 0.5); }
    .footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; color: #e2e8f0; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.5rem; }
    .footer-col a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
    .footer-col a:hover { color: #a78bfa; }
    .footer-bottom {
      max-width: 1100px; margin: 2.5rem auto 0; padding-top: 1.5rem;
      border-top: 1px solid rgba(99, 102, 241, 0.1); text-align: center; font-size: 0.85rem; color: #64748b;
    }

    /* RESPONSIVE */
    @media (max-width: 980px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 3rem;
        position: relative;
        overflow: hidden;
      }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-btns { justify-content: center; }

      /* Network becomes background behind the text */
      .hero-visual {
        position: absolute;
        inset: 0;
        z-index: 0;
        min-height: 100%;
        opacity: 0.55;
        pointer-events: none;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 1rem;
      }
      .hero-left {
        position: relative;
        z-index: 2;
      }
      .network {
        width: 380px;
        height: 380px;
        transform: translateY(40px);
      }
      .network-center { width: 72px; height: 72px; font-size: 1.8rem; }
      .network-node .icon { width: 48px; height: 48px; }
      .network-ring { width: 130px; height: 130px; }

      .features { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .nav-actions .btn-login { display: none; }
      .cta-inner { flex-direction: column; text-align: center; padding: 1.75rem 1.5rem; }
      .cta-btns { justify-content: center; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-brand p { margin-left: auto; margin-right: auto; }
      .socials { justify-content: center; }

      .hero {
        padding-bottom: 2.5rem;
        min-height: 520px;
      }
      .hero-visual {
        opacity: 0.5;
        align-items: flex-end;
      }
      .network {
        width: 320px;
        height: 320px;
        transform: translateY(50px);
      }
      .network-node .icon { width: 44px; height: 44px; font-size: 1.05rem; }
      .network-center { width: 64px; height: 64px; font-size: 1.6rem; }
      .network-ring { width: 110px; height: 110px; }
      .network::after { width: 240px; height: 60px; bottom: -20px; }
    }


    /* ========== PRODUCTS PAGE ========== */
    .products-page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
    }

    .products-hero {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .products-hero h1 {
      font-size: clamp(2rem, 4.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }

    .products-sub {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.6;
    }

    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
    }

    .filter-tabs .tab {
      padding: 0.5rem 1.15rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted);
      background: transparent;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-tabs .tab:hover {
      color: #e2e8f0;
      border-color: rgba(148, 163, 184, 0.45);
    }

    .filter-tabs .tab.active {
      color: #fff;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-color: transparent;
      box-shadow: 0 0 18px rgba(99, 102, 241, 0.35);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.35rem;
      margin-bottom: 2.5rem;
    }

    .prod-card {
      background: rgba(15, 20, 45, 0.7);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 16px;
      padding: 1.6rem 1.4rem;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }

    .prod-card:hover {
      border-color: rgba(139, 92, 246, 0.45);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.12);
      transform: translateY(-3px);
    }

    .prod-card.hidden {
      display: none;
    }

    .prod-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .prod-icon.green { background: rgba(34, 197, 94, 0.18); }
    .prod-icon.cyan { background: rgba(6, 182, 212, 0.18); }
    .prod-icon.blue { background: rgba(59, 130, 246, 0.2); }
    .prod-icon.blue2 { background: rgba(99, 102, 241, 0.2); }
    .prod-icon.purple { background: rgba(139, 92, 246, 0.22); }
    .prod-icon.purple2 { background: rgba(168, 85, 247, 0.22); }

    .prod-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .prod-tag {
      font-size: 0.85rem;
      color: #a5b4fc;
      margin-bottom: 0.65rem;
      font-weight: 500;
    }

    .prod-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 1.1rem;
    }

    .prod-link {
      font-size: 0.9rem;
      font-weight: 600;
      color: #a78bfa;
      transition: gap 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .prod-link:hover { gap: 0.45rem; color: #c4b5fd; }

    .products-cta {
      background: linear-gradient(135deg, #4f46e5, #7c3aed);
      border-radius: 16px;
      padding: 1.6rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .products-cta-text h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .products-cta-text p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
    }

    .btn-talk {
      padding: 0.7rem 1.4rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: #4f46e5;
      background: #fff;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      white-space: nowrap;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-talk:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    @media (max-width: 900px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      .products-grid { grid-template-columns: 1fr; }
      .products-cta { flex-direction: column; text-align: center; }
      .filter-tabs { gap: 0.4rem; }
      .filter-tabs .tab { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
    }


    /* ========== SOLUTIONS PAGE ========== */
    .solutions-page {
      max-width: 1000px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
    }

    .solutions-hero {
      text-align: center;
      margin-bottom: 3rem;
    }

    .solutions-hero h1 {
      font-size: clamp(2rem, 4.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }

    .solutions-sub {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.65;
    }

    .solutions-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .solution-card {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 0;
      background: rgba(15, 20, 45, 0.7);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .solution-card:hover {
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    }

    .solution-img {
      min-height: 220px;
      overflow: hidden;
    }

    .solution-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .solution-card:hover .solution-img img {
      transform: scale(1.04);
    }

    .solution-body {
      padding: 1.75rem 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .solution-body h3 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .solution-body p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }

    @media (max-width: 750px) {
      .solution-card {
        grid-template-columns: 1fr;
      }
      .solution-img {
        min-height: 200px;
        max-height: 240px;
      }
    }


    /* ========== ABOUT PAGE ========== */
    .about-page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
    }

    .about-top {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .about-text .section-label {
      margin-bottom: 0.9rem;
    }

    .about-text h1 {
      font-size: clamp(1.9rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    .about-text p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .about-image {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(99, 102, 241, 0.2);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-height: 280px;
    }

    .about-values {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: rgba(15, 20, 45, 0.7);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 16px;
      margin-bottom: 3.5rem;
      overflow: hidden;
    }

    .value-item {
      padding: 1.75rem 1.4rem;
      text-align: center;
      border-right: 1px solid rgba(99, 102, 241, 0.15);
    }

    .value-item:last-child { border-right: none; }

    .value-icon {
      font-size: 1.6rem;
      margin-bottom: 0.85rem;
    }

    .value-item h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .value-item p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .journey h2 {
      font-size: 1.7rem;
      font-weight: 800;
      margin-bottom: 2rem;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
      position: relative;
    }

    .timeline-item {
      position: relative;
      padding-left: 1.1rem;
      border-left: 2px solid rgba(99, 102, 241, 0.25);
    }

    .timeline-dot {
      position: absolute;
      left: -6px;
      top: 4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #818cf8;
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    }

    .timeline-year {
      font-size: 0.85rem;
      font-weight: 600;
      color: #a78bfa;
      margin-bottom: 0.35rem;
    }

    .timeline-item h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .timeline-item p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.55;
    }

    @media (max-width: 900px) {
      .about-top { grid-template-columns: 1fr; }
      .about-values { grid-template-columns: 1fr 1fr; }
      .value-item { border-right: none; border-bottom: 1px solid rgba(99, 102, 241, 0.15); }
      .timeline { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 560px) {
      .about-values { grid-template-columns: 1fr; }
      .timeline { grid-template-columns: 1fr; }
    }


    /* ========== PRICING PAGE ========== */
    .pricing-page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
      text-align: center;
    }

    .pricing-hero h1 {
      font-size: clamp(2rem, 4.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 0.6rem;
    }

    .pricing-sub {
      color: var(--muted);
      font-size: 1.05rem;
      margin-bottom: 2rem;
    }

    .billing-toggle {
      display: inline-flex;
      background: rgba(15, 20, 45, 0.8);
      border: 1px solid rgba(99, 102, 241, 0.25);
      border-radius: 999px;
      padding: 4px;
      margin-bottom: 2.5rem;
    }

    .toggle-btn {
      padding: 0.55rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--muted);
      background: transparent;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .toggle-btn.active {
      color: #fff;
      background: linear-gradient(135deg, #6366f1, #a855f7);
      box-shadow: 0 0 18px rgba(99, 102, 241, 0.35);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.35rem;
      margin-bottom: 1.5rem;
      text-align: left;
    }

    .price-card {
      background: rgba(15, 20, 45, 0.7);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 16px;
      padding: 1.75rem 1.5rem;
      position: relative;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .price-card:hover {
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    }

    .price-card.popular {
      border-color: rgba(139, 92, 246, 0.55);
      box-shadow: 0 0 35px rgba(99, 102, 241, 0.18);
      background: rgba(20, 25, 55, 0.85);
    }

    .popular-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: #fff;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
    }

    .price-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .price-card.popular h3 { color: #c4b5fd; }

    .price-desc {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1.25rem;
      padding-bottom: 1.1rem;
      border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    }

    .price-amount {
      font-size: 2.1rem;
      font-weight: 800;
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
    }

    .price-amount.custom {
      font-size: 1.9rem;
    }

    .price-period {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--muted);
    }

    .price-features {
      list-style: none;
      margin-bottom: 1.5rem;
    }

    .price-features li {
      font-size: 0.92rem;
      color: #cbd5e1;
      margin-bottom: 0.55rem;
    }

    .price-btn {
      width: 100%;
      padding: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .price-btn.outline {
      background: transparent;
      border: 1.5px solid rgba(148, 163, 184, 0.35);
      color: #e2e8f0;
    }

    .price-btn.outline:hover {
      border-color: rgba(148, 163, 184, 0.6);
      background: rgba(255,255,255,0.04);
    }

    .price-btn.filled {
      background: linear-gradient(135deg, #6366f1, #a855f7);
      border: none;
      color: #fff;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
    }

    .price-btn.filled:hover {
      box-shadow: 0 0 28px rgba(99, 102, 241, 0.5);
      transform: translateY(-1px);
    }

    .pricing-note {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    .pricing-perks {
      display: flex;
      justify-content: center;
      gap: 0;
      background: rgba(15, 20, 45, 0.7);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 14px;
      overflow: hidden;
      max-width: 700px;
      margin: 0 auto;
    }

    .perk {
      flex: 1;
      padding: 1rem 1.25rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border-right: 1px solid rgba(99, 102, 241, 0.15);
    }

    .perk:last-child { border-right: none; }

    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .price-card.popular { order: -1; }
    }

    @media (max-width: 560px) {
      .pricing-perks { flex-direction: column; }
      .perk { border-right: none; border-bottom: 1px solid rgba(99, 102, 241, 0.15); }
      .perk:last-child { border-bottom: none; }
    }


    /* ========== FAQ PAGE ========== */
    .faq-page {
      max-width: 800px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
    }

    .faq-hero {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .faq-hero h1 {
      font-size: clamp(1.9rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 0.6rem;
    }

    .faq-sub {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
    }

    .faq-item {
      background: rgba(15, 20, 45, 0.7);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.25s;
    }

    .faq-item.open {
      border-color: rgba(139, 92, 246, 0.4);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.15rem 1.35rem;
      background: transparent;
      border: none;
      color: #e2e8f0;
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
    }

    .faq-icon {
      font-size: 1.35rem;
      font-weight: 400;
      color: #a78bfa;
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
    }

    .faq-answer p {
      padding: 0 1.35rem 1.2rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .faq-cta {
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.35), rgba(124, 58, 237, 0.3));
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .faq-cta-left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .faq-cta-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(99, 102, 241, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }

    .faq-cta h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .faq-cta p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.75);
    }

    @media (max-width: 560px) {
      .faq-cta { flex-direction: column; text-align: center; }
      .faq-cta-left { flex-direction: column; }
    }


    /* ========== CONTACT PAGE ========== */
    .contact-page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-left h1 {
      font-size: clamp(1.9rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .contact-intro {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.65;
      margin-bottom: 2.5rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .info-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(99, 102, 241, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      flex-shrink: 0;
    }

    .info-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #e2e8f0;
      margin-bottom: 0.2rem;
    }

    .info-value {
      font-size: 0.95rem;
      color: var(--muted);
    }

    .contact-form {
      background: rgba(15, 20, 45, 0.75);
      border: 1px solid rgba(99, 102, 241, 0.22);
      border-radius: 16px;
      padding: 1.75rem 1.6rem;
    }

    .form-group {
      margin-bottom: 1.15rem;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #e2e8f0;
      margin-bottom: 0.4rem;
    }

    .form-group label span {
      color: #a78bfa;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 1rem;
      font-size: 0.95rem;
      font-family: inherit;
      color: #e2e8f0;
      background: rgba(6, 6, 26, 0.6);
      border: 1px solid rgba(99, 102, 241, 0.25);
      border-radius: 10px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #64748b;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: rgba(139, 92, 246, 0.55);
    }

    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.2rem;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .btn-send {
      width: 100%;
      padding: 0.85rem;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, #6366f1, #a855f7);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      margin-top: 0.5rem;
      box-shadow: 0 0 22px rgba(99, 102, 241, 0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-send:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }

    @media (max-width: 850px) {
      .contact-page {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 500px) {
      .form-row { grid-template-columns: 1fr; }
    }


    .privacy-group {
      margin-bottom: 1.25rem;
    }

    .privacy-label {
      display: flex !important;
      align-items: flex-start;
      gap: 0.7rem;
      cursor: pointer;
      font-weight: 400 !important;
      margin-bottom: 0 !important;
    }

    .privacy-label input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      flex-shrink: 0;
      accent-color: #8b5cf6;
      cursor: pointer;
    }

    .privacy-text {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .privacy-text a {
      color: #a78bfa;
      text-decoration: underline;
    }

    .privacy-text a:hover {
      color: #c4b5fd;
    }

    .privacy-text .req {
      color: #a78bfa;
    }

    .privacy-group.error .privacy-text {
      color: #f87171;
    }