    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg-deep: #04080F;
      --bg-dark: #070D1B;
      --bg-card: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.07);
      --border-glow: rgba(0, 210, 255, 0.22);
      --accent: #00D2FF;
      --accent-2: #7B5CF0;
      --accent-3: #FF5C8A;
      --accent-4: #00E696;
      --text-primary: #EFF4FF;
      --text-muted: #7A88A8;
      --text-dim: #354060;
      --font-display: 'Syne', sans-serif;
      --font-body: 'Figtree', sans-serif;
      --r-sm: 10px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 36px;

    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg-deep);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      /* Default Dark Theme Cursor: Cyan Arrow */
      /* Base64 for stability */
      cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAyTDEzIDI4TDE2IDE4TDI2IDE0TDIgMloiIGZpbGw9IiMwNDA4MEYiIHN0cm9rZT0iIzAwRDJGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+'), auto;
    }

    /* Pointer Cursor for Links/Buttons (Dark Mode) */
    a,
    button,
    .btn,
    .svc-link,
    .ptile,
    .faq-q,
    .tcard,
    .connect-card,
    .logo,
    .mobile-nav-close,
    .hamburger {
      cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAyTDEzIDI4TDE2IDE4TDI2IDE0TDIgMloiIGZpbGw9IiMwMEQyRkYiIHN0cm9rZT0iIzA0MDgwRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+'), pointer;
    }


    /* ── AMBIENT BG ─────────────────────────────────── */
    .amb {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .amb-blob {
      position: absolute;
      border-radius: 50%;
    }

    .ab1 {
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(0, 210, 255, 0.10) 0%, transparent 65%);
      top: -250px;
      left: -200px;
      animation: fl1 20s ease-in-out infinite alternate;
    }

    .ab2 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(123, 92, 240, 0.12) 0%, transparent 65%);
      bottom: -150px;
      right: -150px;
      animation: fl2 25s ease-in-out infinite alternate;
    }

    .ab3 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 92, 138, 0.07) 0%, transparent 65%);
      top: 45%;
      left: 50%;
      animation: fl3 30s ease-in-out infinite alternate;
    }

    @keyframes fl1 {
      to {
        transform: translate(100px, 70px);
      }
    }

    @keyframes fl2 {
      to {
        transform: translate(-70px, -100px);
      }
    }

    @keyframes fl3 {
      to {
        transform: translate(-80px, 90px);
      }
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px;
    }

    /* ── LAYOUT ─────────────────────────────────────── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    /* ── NAV ────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-inner {
      width: 100%;
      height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      /* background: rgba(4, 8, 15, 0.72); REMOVED to let scroll handle it or default */
      background: rgba(4, 8, 15, 0.72);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }

    .nav-inner.scrolled {
      background: rgba(4, 8, 15, 0.92);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text-primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
    }

    .logo em {
      color: var(--accent);
      font-style: normal;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--text-primary);
    }

    .btn {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.875rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;

      .btn:active,
      .social-btn:active,
      .btn-primary:active,
      .btn-ghost:active,
      .btn-outline:active {
        transform: scale(0.95) !important;
      }

      .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--text-primary);
      }

      .nav-links a.active-link {
        color: var(--accent);
        font-weight: 700;
      }

      .nav-links a.active-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--accent);
        box-shadow: 0 0 10px var(--accent);
      }

      padding: 9px 20px;
      background: transparent;
      color: var(--text-muted);
      border: 1px solid var(--border);
    }

    .btn-ghost:hover {
      background: var(--bg-card);
      color: var(--text-primary);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .btn-primary {
      padding: 10px 22px;
      background: var(--accent);
      color: #03070F;
      box-shadow: 0 0 24px rgba(0, 210, 255, 0.28);
    }

    .btn-primary:hover {
      background: #2DDAFF;
      box-shadow: 0 0 36px rgba(0, 210, 255, 0.42);
      transform: translateY(-1px);
    }

    .btn-lg {
      padding: 14px 32px;
      font-size: 1rem;
      border-radius: var(--r-md);
    }

    .btn-outline {
      padding: 13px 30px;
      font-size: 1rem;
      border-radius: var(--r-md);
      background: transparent;
      color: var(--text-muted);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--text-primary);
      background: var(--bg-card);
    }

    /* ── HERO ───────────────────────────────────────── */
    .hero {
      padding: 110px 0 90px;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 210, 255, 0.07);
      border: 1px solid rgba(0, 210, 255, 0.18);
      border-radius: 100px;
      padding: 6px 18px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 32px;
      opacity: 0;
      animation: fup 0.7s ease forwards 0.1s;
    }

    .pulse {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.4;
        transform: scale(0.65)
      }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6.5vw, 5.2rem);
      font-weight: 800;
      letter-spacing: -2.5px;
      line-height: 1.06;
      max-width: 840px;
      margin: 0 auto 22px;
      color: var(--text-primary);
      opacity: 0;
      animation: fup 0.7s ease forwards 0.25s;
    }

    .hero h1 .g {
      background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 1.18rem;
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto 44px;
      line-height: 1.78;
      opacity: 0;
      animation: fup 0.7s ease forwards 0.4s;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fup 0.7s ease forwards 0.55s;
    }

    .hero-note {
      margin-top: 20px;
      font-size: 0.8rem;
      color: var(--text-dim);
      opacity: 0;
      animation: fup 0.6s ease forwards 0.7s;
    }

    .hero-note span {
      color: var(--text-muted);
      font-weight: 600;
    }

    .hero-showcase {
      margin-top: 72px;
      opacity: 0;
      animation: fup 0.9s ease forwards 0.75s;
    }

    .showcase-glass {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 36px 36px 28px;
      /* max-width: 960px; */
      margin: 0 auto;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 100px rgba(0, 210, 255, 0.04);
    }

    .sg-top {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }

    .sg-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .sg-r {
      background: #FF5F57;
    }

    .sg-y {
      background: #FFBD2E;
    }

    .sg-g {
      background: #28C840;
    }

    .sg-title {
      margin-left: 10px;
      font-size: 0.82rem;
      color: var(--text-dim);
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .sg-actions {
      margin-left: auto;
      display: flex;
      gap: 8px;
    }

    .sg-pill {
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 0.73rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--text-muted);
    }

    .sg-btn {
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 0.73rem;
      font-weight: 700;
      background: rgba(0, 210, 255, 0.1);
      border: 1px solid rgba(0, 210, 255, 0.2);
      color: var(--accent);
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .sg-btn:hover {
      background: rgba(0, 210, 255, 0.2);
      box-shadow: 0 0 12px rgba(0, 210, 255, 0.15);
      transform: translateY(-1px);
    }

    .product-tiles {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .ptile {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 22px 18px;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .ptile:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    }

    .ptile-icon {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .ptile-name {
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .ptile-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .ptile-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .pb-new {
      background: rgba(0, 230, 150, 0.1);
      color: var(--accent-4);
      border: 1px solid rgba(0, 230, 150, 0.2);
    }

    .pb-pop {
      background: rgba(255, 92, 138, 0.1);
      color: var(--accent-3);
      border: 1px solid rgba(255, 92, 138, 0.2);
    }

    .pb-pro {
      background: rgba(123, 92, 240, 0.1);
      color: #A98AF5;
      border: 1px solid rgba(123, 92, 240, 0.2);
    }

    @keyframes fup {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── HERO SPINNER & NOISE ───────────────────────── */
    .hero-noise {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.3;
      z-index: 0;
    }

    .hero-spinner-badge {
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      width: 130px;
      height: 130px;
      border: 3px solid var(--accent-3);
      /* using Yellow accent variable */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--accent-3);
      text-transform: uppercase;
      animation: spin 12s linear infinite;
      line-height: 1.5;
      z-index: 2;
      box-shadow: 0 0 20px rgba(255, 189, 46, 0.15);
      background: rgba(3, 7, 18, 0.4);
      backdrop-filter: blur(4px);
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @media (max-width: 768px) {
      .hero-spinner-badge {
        bottom: 2rem;
        right: 1.5rem;
        width: 100px;
        height: 100px;
        font-size: 0.55rem;
        border-width: 2px;
      }
    }

    /* ── MARQUEE TICKER ─────────────────────────────── */
    .marquee-strip {
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      z-index: 5;
    }

    .marquee-content {
      display: flex;
      gap: 32px;
      white-space: nowrap;
      animation: marquee 40s linear infinite;
      width: max-content;
    }

    .marquee-content span {
      font-family: var(--font-display);
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    .marquee-content span.sep {
      color: var(--accent);
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ── SOCIAL PROOF BAND ──────────────────────────── */
    .sp-band {
      padding: 36px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.01);
    }

    .sp-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .sp-stat {
      text-align: center;
    }

    .sp-num {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -1px;
    }

    .sp-label {
      font-size: 0.8rem;
      color: var(--text-dim);
      margin-top: 2px;
    }

    .sp-div {
      width: 1px;
      height: 40px;
      background: var(--border);
    }

    /* ── CONNECT ECOSYSTEM ──────────────────────────── */
    .connect-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      /* margin-top: 20px; */
      margin-bottom: 40px;
    }

    .connect-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 28px 20px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .connect-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .cc-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 16px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .cc-title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-primary);
    }

    .cc-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .browser-icons {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 16px;
      opacity: 0.6;
    }

    .bi-icon {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .btn-row {
      display: flex;
      gap: 8px;
      width: 100%;
    }

    .cc-btn {
      flex: 1;
      padding: 10px;
      border-radius: var(--r-sm);
      font-weight: 600;
      font-size: 0.8rem;
      text-decoration: none;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-primary);
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      white-space: nowrap;
    }

    .cc-btn:hover {
      background: var(--bg-card);
      border-color: var(--text-primary);
    }

    .cc-btn.primary {
      background: var(--accent);
      border-color: var(--accent);
      color: #000;
      flex: 1.4;
    }

    .cc-btn.primary:hover {
      background: #2DDAFF;
      border-color: #2DDAFF;
      box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    }

    @media (max-width: 1024px) {
      .connect-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .connect-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── SECTIONS ───────────────────────────────────── */
    section {
      padding: 96px 0;
      position: relative;
      z-index: 1;
    }

    .s-label {
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .s-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .s-sub {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.72;
      max-width: 500px;
    }

    /* ── WHAT WE DO ─────────────────────────────────── */
    .offer-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .offer-text {
      padding-right: 16px;
    }

    .offer-list {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .offer-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .oi-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .oi-teal {
      background: rgba(0, 210, 255, 0.1);
    }

    .oi-violet {
      background: rgba(123, 92, 240, 0.1);
    }

    .oi-pink {
      background: rgba(255, 92, 138, 0.1);
    }

    .oi-green {
      background: rgba(0, 230, 150, 0.1);
    }

    .oi-body h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .oi-body p {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .offer-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ov-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
      transition: border-color 0.3s, transform 0.3s;
    }

    .ov-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
    }

    .ov-card.tall {
      grid-column: span 2;
    }

    .ov-icon {
      font-size: 1.6rem;
      margin-bottom: 12px;
    }

    .ov-card h4 {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .ov-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .ov-meta {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 12px;
      font-size: 0.73rem;
      font-weight: 600;
      color: var(--accent);
    }

    /* ── HOW IT WORKS ──────────────────────────────── */
    #how {
      background: rgba(255, 255, 255, 0.01);
    }

    .steps-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .steps-header .s-sub {
      margin: 0 auto;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .step-box {
      background: var(--bg-dark);
      padding: 48px 36px;
      position: relative;
      transition: background 0.3s;
    }

    .step-box:hover {
      background: rgba(0, 210, 255, 0.025);
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 800;
      color: var(--text-dim);
      letter-spacing: -3px;
      line-height: 1;
      margin-bottom: 20px;
      display: block;
    }

    .step-icon {
      font-size: 1.8rem;
      margin-bottom: 14px;
      display: block;
    }

    .step-box h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-box p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .step-arrow {
      position: absolute;
      top: 50%;
      right: -14px;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      background: var(--bg-deep);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--text-dim);
      z-index: 2;
    }

    /* ── SERVICES ───────────────────────────────────── */
    .services-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 56px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .svc-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
      cursor: default;
    }

    .svc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.35s;
      background: linear-gradient(135deg, rgba(0, 210, 255, 0.04) 0%, transparent 70%);
      pointer-events: none;
      /* Ensure it doesn't block clicks */
    }

    .svc-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    }

    .svc-card:hover::before {
      opacity: 1;
    }

    .svc-card.wide {
      grid-column: span 2;
    }

    .svc-card.violet-card::before {
      background: linear-gradient(135deg, rgba(123, 92, 240, 0.06) 0%, transparent 70%);
    }

    .svc-card.violet-card:hover {
      border-color: rgba(123, 92, 240, 0.25);
    }

    .svc-card.pink-card::before {
      background: linear-gradient(135deg, rgba(255, 92, 138, 0.06) 0%, transparent 70%);
    }

    .svc-card.pink-card:hover {
      border-color: rgba(255, 92, 138, 0.2);
    }

    .svc-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 18px;
    }

    .si-t {
      background: rgba(0, 210, 255, 0.1);
    }

    .si-v {
      background: rgba(123, 92, 240, 0.1);
    }

    .si-p {
      background: rgba(255, 92, 138, 0.1);
    }

    .si-g {
      background: rgba(0, 230, 150, 0.1);
    }

    .si-a {
      background: rgba(255, 168, 0, 0.1);
    }

    .svc-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .svc-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 18px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      transition: gap 0.2s;
    }

    /* Stretched Link to make whole card clickable */
    .svc-link::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 5;
    }

    .svc-link:hover {
      gap: 9px;
    }

    /* ── TESTIMONIALS ──────────────────────────────── */
    #testimonials {
      background: rgba(255, 255, 255, 0.008);
    }

    .testi-intro {
      text-align: center;
      margin-bottom: 56px;
    }

    .testi-intro .s-sub {
      margin: 0 auto;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .tcard {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 30px;
      transition: border-color 0.3s, transform 0.3s;
    }

    .tcard:hover {
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
    }

    .tcard-stars {
      color: var(--accent);
      font-size: 0.88rem;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .tcard-text {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.72;
      margin-bottom: 22px;
      font-style: italic;
    }

    .tcard-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tcard-av {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 0.85rem;
      color: #03070F;
      object-fit: cover;
    }

    .av-c {
      background: var(--accent);
    }

    .av-v {
      background: var(--accent-2);
      color: white;
    }

    .av-p {
      background: var(--accent-3);
    }

    .tcard-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .tcard-role {
      font-size: 0.77rem;
      color: var(--text-muted);
    }

    /* ── FAQ ────────────────────────────────────────── */
    #faq {
      background: rgba(255, 255, 255, 0.008);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }

    .faq-sidebar {
      position: sticky;
      top: 100px;
    }

    .faq-sidebar .s-sub {
      margin-top: 14px;
    }

    .faq-contact {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-contact-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      transition: border-color 0.25s, transform 0.25s;
    }

    .faq-contact-card:hover {
      border-color: var(--border-glow);
      transform: translateX(4px);
    }

    .fcc-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .fcc-text h5 {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .fcc-text p {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-q {
      width: 100%;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0;
      text-align: left;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
      transition: color 0.2s;
    }

    .faq-q:hover {
      color: var(--accent);
    }

    .faq-q.open {
      color: var(--accent);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--text-muted);
      transition: transform 0.3s, border-color 0.3s, color 0.3s;
      line-height: 1;
    }

    .faq-q.open .faq-icon {
      transform: rotate(45deg);
      border-color: var(--border-glow);
      color: var(--accent);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0;
    }

    .faq-a.open {
      max-height: 300px;
      padding-bottom: 22px;
    }

    .faq-a p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.75;
    }



    .faq-a a {
      color: var(--accent);
      text-decoration: none;
    }

    .faq-a a:hover {
      text-decoration: underline;
    }

    /* ── CTA ────────────────────────────────────────── */
    .cta-box {
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(0, 210, 255, 0.06) 0%, transparent 70%);
    }

    .cta-box h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 14px;
    }

    .cta-box>p {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ── FOOTER ─────────────────────────────────────── */
    footer {
      padding: 60px 0 28px;
      border-top: 1px solid var(--border);
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .fc-brand p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-top: 14px;
      line-height: 1.7;
      max-width: 270px;
    }

    .fc h5 {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .fc ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .fc a {
      font-size: 0.88rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .fc a:hover {
      color: var(--text-primary);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    .foot-links {
      display: flex;
      gap: 20px;
    }

    .foot-links a {
      font-size: 0.8rem;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

    .foot-links a:hover {
      color: var(--text-muted);
    }

    .foot-socials {
      display: flex;
      gap: 10px;
    }

    .fsoc {
      width: 34px;
      height: 34px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 13px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .fsoc:hover {
      border-color: var(--border-glow);
      color: var(--accent);
    }

    /* ── REVEAL ─────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── HAMBURGER MENU ─────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      z-index: 200;
      padding: 0;
      transition: border-color 0.2s;
    }

    .hamburger:hover {
      border-color: rgba(255, 255, 255, 0.15);
    }

    .hamburger span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 150;
      background: rgba(4, 8, 15, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .mobile-nav.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 600;
      font-family: var(--font-display);
      padding: 14px 24px;
      border-radius: var(--r-sm);
      transition: color 0.2s, background 0.2s;
      width: 100%;
      max-width: 300px;
      text-align: center;
    }

    .mobile-nav a:hover {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.04);
    }

    .mobile-nav .btn-primary {
      margin-top: 16px;
      color: #03070F;
      font-size: 1rem;
    }

    .mobile-nav-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .mobile-nav-close:hover {
      color: var(--text-primary);
      border-color: var(--border-glow);
      background: rgba(255, 255, 255, 0.05);
    }

    /* ── RESPONSIVE ─────────────────────────────────── */

    /* ── DESKTOP OVERRIDE (>1024px) ── */
    @media (min-width: 1025px) {

      .hamburger,
      .mobile-nav,
      .mobile-nav-close {
        display: none !important;
      }
    }

    /* ── TABLET + SMALL LAPTOP (≤1024px) ── */
    @media (max-width: 1024px) {
      .hamburger {
        display: flex;
      }

      .mobile-nav {
        display: flex;
      }

      .nav-links {
        display: none;
      }

      /* Hide the desktop CTA container */
      .nav-inner>div:nth-of-type(1) {
        display: none !important;
      }

      .hero {
        padding: 80px 0 60px;
      }

      .hero h1 {
        letter-spacing: -2px;
      }

      .product-tiles {
        grid-template-columns: repeat(2, 1fr);
      }

      .offer-layout {
        grid-template-columns: 1fr;
      }

      .offer-text {
        padding-right: 0;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .step-arrow {
        display: none;
      }

      .services-intro {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .svc-card.wide {
        grid-column: span 2;
      }

      .testi-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .faq-sidebar {
        position: relative;
        top: 0;
      }

      .plans-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .showcase-glass {
        padding: 24px 24px 20px;
      }

      .sg-actions {
        gap: 6px;
      }

      .pc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .left-col {
        position: relative;
        top: 0;
        max-height: none;
      }
    }

    /* ── TABLET PORTRAIT (≤768px) ── */
    @media (max-width: 768px) {
      section {
        padding: 64px 0;
      }

      .hero {
        padding: 64px 0 48px;
      }

      .hero h1 {
        letter-spacing: -1.5px;
      }

      .hero-sub {
        font-size: 1.05rem;
      }

      .hero-showcase {
        margin-top: 48px;
      }

      .product-tiles {
        grid-template-columns: 1fr;
      }

      .ptile {
        padding: 18px 16px;
      }

      .offer-visual {
        grid-template-columns: 1fr;
      }

      .ov-card.tall {
        grid-column: span 1;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .svc-card.wide {
        grid-column: span 1;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .plans-grid {
        max-width: 100%;
      }

      .cta-box {
        padding: 48px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .sp-div {
        display: none;
      }

      .sp-inner {
        gap: 20px;
      }

      .sp-num {
        font-size: 1.35rem;
      }

      .faq-layout {
        gap: 32px;
      }

      .faq-contact {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .faq-contact-card {
        flex: 1;
        min-width: 200px;
      }

      /* Contact page */
      .contact-layout {
        grid-template-columns: 1fr;
      }

      /* About page */
      .about-story {
        margin-bottom: 48px;
      }

      .mission-band {
        padding: 40px 28px;
        margin-bottom: 48px;
      }

      /* Product pages */
      .pcs-grid {
        grid-template-columns: 1fr 1fr;
      }

      .pcs-meta-row {
        flex-wrap: wrap;
        gap: 12px;
      }

      .pc-main h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
      }

      .pc-main h2 {
        font-size: 1.4rem;
      }

      .ph-title {
        font-size: 2.5rem;
      }

      .ph-meta {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
      }

      /* Share modal */
      .share-modal {
        max-width: calc(100% - 32px);
        padding: 24px;
      }

      .social-btn {
        width: 46px;
        height: 46px;
      }

      /* Steps */
      .step-box {
        padding: 32px 24px;
      }

      .step-num {
        font-size: 3rem;
      }

      .steps-header {
        margin-bottom: 40px;
      }

      /* Services intro */
      .services-intro {
        margin-bottom: 36px;
      }
    }

    /* ── MOBILE (≤480px) ── */
    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }

      section {
        padding: 48px 0;
      }

      .nav-inner {
        padding: 12px 16px;
      }

      .logo {
        font-size: 1.2rem;
      }

      .logo-mark {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }

      .hero {
        padding: 48px 0 36px;
      }

      .hero h1 {
        letter-spacing: -1px;
      }

      .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 28px;
      }

      .hero-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
        margin-bottom: 20px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .hero-note {
        font-size: 0.72rem;
      }

      .hero-showcase {
        margin-top: 36px;
      }

      .showcase-glass {
        padding: 16px;
        border-radius: var(--r-lg);
      }

      .sg-top {
        gap: 6px;
        margin-bottom: 16px;
        padding-bottom: 14px;
        flex-wrap: wrap;
      }

      .sg-dot {
        width: 10px;
        height: 10px;
      }

      .sg-title {
        font-size: 0.72rem;
      }

      .sg-actions {
        display: none;
      }

      .ptile {
        padding: 16px 14px;
      }

      .ptile-name {
        font-size: 0.85rem;
      }

      .ptile-desc {
        font-size: 0.75rem;
      }

      /* Social proof */
      .sp-band {
        padding: 24px 0;
      }

      .sp-inner {
        gap: 16px;
        justify-content: space-around;
      }

      .sp-num {
        font-size: 1.2rem;
      }

      .sp-label {
        font-size: 0.72rem;
      }

      /* Section titles */
      .s-label {
        font-size: 0.7rem;
      }

      .s-sub {
        font-size: 0.9rem;
      }

      /* Offer items */
      .offer-list {
        gap: 18px;
      }

      .offer-item {
        gap: 12px;
      }

      .oi-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        font-size: 16px;
      }

      .oi-body h4 {
        font-size: 0.92rem;
      }

      .oi-body p {
        font-size: 0.82rem;
      }

      .ov-card {
        padding: 18px;
      }

      /* Steps */
      .step-box {
        padding: 28px 20px;
      }

      .step-num {
        font-size: 2.5rem;
        margin-bottom: 14px;
      }

      .step-box h3 {
        font-size: 1rem;
      }

      .step-box p {
        font-size: 0.82rem;
      }

      .steps-header {
        margin-bottom: 28px;
      }

      /* Services */
      .svc-card {
        padding: 22px;
      }

      .svc-card h3 {
        font-size: 1rem;
      }

      .svc-card p {
        font-size: 0.82rem;
      }

      /* Testimonials */
      .tcard {
        padding: 22px;
      }

      .tcard-text {
        font-size: 0.88rem;
      }

      /* FAQ */
      .faq-q {
        font-size: 0.9rem;
        padding: 18px 0;
      }

      .faq-a p {
        font-size: 0.85rem;
      }

      .faq-contact-card {
        min-width: 100%;
      }

      /* CTA */
      .cta-box {
        padding: 36px 16px;
        border-radius: var(--r-lg);
      }

      .cta-box h2 {
        font-size: 1.6rem;
        letter-spacing: -1px;
      }

      .cta-box>p {
        font-size: 0.92rem;
      }

      /* Footer */
      .fc-brand p {
        max-width: 100%;
      }

      footer {
        padding: 40px 0 20px;
      }

      .footer-grid {
        gap: 28px;
        margin-bottom: 28px;
      }

      /* Connect grid (services page & about page values) */
      .connect-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .connect-card {
        padding: 22px 18px;
      }

      /* About page */
      .about-story p {
        font-size: 0.95rem;
      }

      .mission-band {
        padding: 28px 18px;
        margin-bottom: 36px;
      }

      .mission-band h2 {
        font-size: 1.15rem !important;
      }

      .value-card {
        padding: 24px;
      }

      .value-card h3 {
        font-size: 1.1rem;
      }

      .value-card p {
        font-size: 0.88rem;
      }

      /* Contact page form */
      .contact-form {
        padding: 24px;
        border-radius: var(--r-lg);
      }

      .contact-form form>div:first-child {
        grid-template-columns: 1fr !important;
      }

      .ci-card {
        padding: 18px;
      }

      /* Product pages */
      .product-content {
        padding: 24px 0 48px;
      }

      .pc-grid {
        gap: 24px;
      }

      .pc-sidebar {
        padding: 18px;
      }

      .pcs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px 8px;
      }

      .pcs-meta-row {
        font-size: 0.75rem;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
      }

      .pc-main h1 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
      }

      .pc-main h2 {
        font-size: 1.25rem;
        margin-top: 28px;
      }

      .pc-main p {
        font-size: 0.88rem;
      }

      .feature-box {
        padding: 18px;
      }

      .feature-box h3 {
        font-size: 1.05rem;
      }

      .ph-title {
        font-size: 2rem;
      }

      .ph-desc {
        font-size: 1rem;
      }

      .thumb {
        width: 60px;
        height: 38px;
      }

      /* Share modal */
      .share-modal {
        max-width: calc(100% - 24px);
        padding: 20px;
        border-radius: var(--r-lg);
      }

      .share-header h3 {
        font-size: 1rem;
      }

      .social-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
      }

      .social-btn svg {
        width: 20px;
        height: 20px;
      }

      .share-socials {
        gap: 8px;
        margin-bottom: 20px;
      }

      #shareLinkInput {
        font-size: 0.78rem;
      }

      /* Ambient blobs — scaled down for performance + no overflow */
      .ab1 {
        width: 500px;
        height: 500px;
        top: -150px;
        left: -120px;
      }

      .ab2 {
        width: 400px;
        height: 400px;
      }

      .ab3 {
        width: 280px;
        height: 280px;
      }

      /* Solutions page cards */
      .solutions-grid {
        grid-template-columns: 1fr;
      }

      .solution-card {
        padding: 20px;
      }

      .solution-card h3 {
        font-size: 1rem;
      }

      .solution-card p {
        font-size: 0.85rem;
      }

      /* Buttons */
      .btn,
      .btn-lg,
      .btn-primary,
      .btn-outline,
      .btn-cyan {
        width: 100% !important;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 10px;
      }

      .btn-lg {
        padding: 12px 24px;
        font-size: 0.92rem;
      }

      .btn-outline {
        padding: 11px 22px;
        font-size: 0.92rem;
      }

      .svc-link,
      .tcard-author {
        flex-wrap: wrap;
      }

      /* Mobile nav fine-tuning */
      .mobile-nav a {
        font-size: 1.1rem;
        padding: 12px 20px;
      }
    }

    /* ── SOLUTIONS GRID ── */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .solution-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 24px;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .solution-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    }

    .sc-icon {
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .solution-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .solution-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .btn-text {
      background: none;
      border: none;
      padding: 0;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      margin-top: auto;
      text-align: left;
    }

    .btn-text:hover {
      text-decoration: underline;
    }

    /* ── SHARE MODAL ────────────────────────────────── */
    .btn-share {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-share:hover {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-primary);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .share-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .share-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .share-modal {
      background: #0f1115;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 32px;
      width: 100%;
      max-width: 440px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
      transform: scale(0.9);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .share-modal-overlay.active .share-modal {
      transform: scale(1);
    }

    .share-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .share-header h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 1.8rem;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s;
    }

    .close-btn:hover {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.05);
    }

    .share-socials {
      display: flex;
      gap: 12px;
      margin-bottom: 32px;
      justify-content: space-between;
    }

    .social-btn {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      transition: transform 0.2s;
      text-decoration: none;
      flex-shrink: 0;
    }

    .social-btn:hover {
      transform: translateY(-4px);
    }

    .social-btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    /* Brand Colors */
    .sb-ln {
      background: #0077b5;
    }

    .sb-fb {
      background: #1877f2;
    }

    .sb-rd {
      background: #ff4500;
    }

    .sb-x {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sb-wa {
      background: #25d366;
    }

    .share-link-box {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 6px 6px 6px 16px;
    }

    #shareLinkInput {
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 0.9rem;
      width: 100%;
      outline: none;
      font-family: var(--font-body);
    }

    #copyShareLink {
      background: transparent;
      border: none;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      padding: 10px 14px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background 0.2s;
      white-space: nowrap;
    }

    #copyShareLink:hover {
      background: rgba(0, 210, 255, 0.1);
    }

    /* adzen page */
    .product-header {
      padding: 120px 0 60px;
      text-align: center;
    }

    .ph-badge {
      display: inline-block;
      background: rgba(123, 92, 240, 0.1);
      color: #7B5CF0;
      border: 1px solid rgba(123, 92, 240, 0.2);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .ph-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .ph-desc {
      font-size: 1.2rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .ph-meta {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 40px;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .ph-meta span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ph-meta svg {
      color: #FFBD2E;
    }

    /* SPLIT CONTENT LAYOUT */
    .product-content {
      padding: 40px 0 80px;
    }

    .pc-grid {
      display: grid;
      grid-template-columns: 550px 1fr;
      gap: 60px;
      align-items: start;
    }

    /* LEFT COLUMN - STICKY */
    .left-col {
      position: sticky;
      top: 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
      scrollbar-width: none;
    }

    .left-col::-webkit-scrollbar {
      display: none;
    }

    /* Image Slider STYLES */
    .slider-container {
      width: 100%;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 10px;
      overflow: hidden;
    }

    .main-image-wrapper {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: var(--r-sm);
      overflow: hidden;
      margin-bottom: 12px;
      position: relative;
      background: #000;
    }

    .pcs-meta-row {
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
      font-size: 0.85rem;
      color: #FFBD2E;
      text-align: center;
    }

    .main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }

    .thumbnails {
      display: flex;
      justify-content: center;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
    }

    .thumbnails::-webkit-scrollbar {
      display: none;
    }

    .thumb {
      width: 80px;
      height: 50px;
      border-radius: 6px;
      cursor: pointer;
      opacity: 0.6;
      transition: all 0.2s;
      border: 1px solid transparent;
      object-fit: cover;
    }

    .thumb:hover,
    .thumb.active {
      opacity: 1;
      border-color: var(--accent);
    }

    /* Sidebar Info Box (Styled as Card) */
    .pc-sidebar {
      background: #0f1115;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-md);
      padding: 24px;
    }

    /* 2x2 Grid for Sidebar Details */
    .pcs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 20px 10px;
      margin-bottom: 20px;
      text-align: center;
    }

    .pcs-item {
      margin-bottom: 0;
    }

    .pcs-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 4px;
      display: block;
    }

    .pcs-val {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* RIGHT COLUMN CONTENT */
    .pc-main h1 {
      font-family: var(--font-display);
    }

    .pc-main h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      margin-bottom: 20px;
      margin-top: 40px;
      color: var(--text-primary);
    }

    .pc-main h2:first-of-type {
      margin-top: 0;
    }

    .pc-main p {
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .feature-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      padding: 24px;
      border-radius: var(--r-md);
      margin-bottom: 20px;
    }

    .feature-box h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--text-primary);
    }

    .pc-main ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .pc-main ul li {
      padding-left: 24px;
      position: relative;
      margin-bottom: 10px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .pc-main ul li::before {
      content: "•";
      color: var(--accent);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .sidebar-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn-cyan {
      background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
      color: #fff;
      padding: 14px 24px;
      border-radius: 8px;
      font-weight: 600;
      display: inline-block;
      transition: all 0.2s;
      border: none;
      text-decoration: none;
    }

    .btn-cyan:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    }

    /* ── Product Page Extracted Utilities ── */

    .product-title {
      text-align: center;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .sidebar-divider {
      border: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin: 0 0 20px 0;
    }

    .sidebar-section {
      margin-bottom: 20px;
    }

    .sidebar-list {
      padding-left: 20px;
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 4px;
      margin-bottom: 0;
    }

    .sidebar-list li {
      margin-bottom: 4px;
    }

    .btn-expand {
      flex: 1;
      text-align: center;
    }

    .check-list {
      list-style: none;
      padding: 0;
    }

    .check-list li {
      margin-bottom: 8px;
    }

    .share-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 16px;
    }

    .logo-img {
      border-radius: 9px;
    }

    /* Contact Page Specific Styles */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      margin-top: 40px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .ci-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .ci-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(0, 210, 255, 0.1);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .ci-content h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .ci-content p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .ci-content a {
      color: var(--text-primary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .ci-content a:hover {
      color: var(--accent);
    }

    .contact-form {
      background: var(--bg-dark);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 40px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 12px 16px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-primary);
      transition: border-color 0.2s;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(0, 210, 255, 0.02);
    }

    .form-textarea {
      min-height: 150px;
      resize: vertical;
    }

    @media (max-width: 900px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }
    }

    /* Fix for select options visibility */
    .form-input option {
      background-color: var(--bg-deep);
      /* Use solid dark color */
      color: var(--text-primary);
    }

    /* ── NUCLEAR PRODUCT PAGE RESPONSIVE ── */
    @media (max-width: 1024px) {
      .pc-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }

      .left-col {
        position: relative !important;
        top: 0 !important;
        max-height: none !important;
        overflow-y: visible !important;
      }
    }

    @media (max-width: 768px) {
      .pcs-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      .pcs-meta-row {
        flex-wrap: wrap;
        gap: 12px;
      }

      .product-title {
        font-size: 1.8rem;
      }

      .pc-main h2 {
        font-size: 1.4rem;
      }

      .feature-box {
        padding: 18px;
      }

      .thumb {
        width: 60px;
        height: 38px;
      }
    }

    @media (max-width: 480px) {
      .sidebar-actions {
        flex-wrap: wrap;
      }

      .sidebar-actions .btn,
      .sidebar-actions .btn-cyan,
      .sidebar-actions .btn-share {
        width: 100%;
        text-align: center;
        justify-content: center;
      }

      .product-title {
        font-size: 1.5rem;
        line-height: 1.15;
      }

      .product-content {
        padding: 20px 0 40px !important;
      }

      .pc-grid {
        gap: 20px !important;
      }

      .pc-sidebar {
        padding: 16px !important;
      }

      .pcs-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px 8px !important;
      }

      .pcs-meta-row {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.8rem;
        gap: 8px;
      }

      .pc-main h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
      }

      .pc-main h2 {
        font-size: 1.2rem;
        margin-top: 24px;
      }

      .pc-main p,
      .pc-main li {
        font-size: 0.88rem;
      }

      .feature-box {
        padding: 16px !important;
      }

      .feature-box h3 {
        font-size: 1rem;
      }

      .slider-container {
        padding: 6px !important;
      }

      .thumb {
        width: 50px;
        height: 32px;
      }

      .thumbnails {
        gap: 4px;
        justify-content: flex-start;
      }
    }


    /* -- LIGHT MODE (NEO-BRUTALISM) ------------------- */
    body.light-mode {
      --bg-deep: #ffffff;
      --bg-dark: #f0f0f0;
      --bg-card: #ffffff;
      --border: #000000;
      --border-glow: #000000;
      --accent: #FF5F57;
      /* Reddish Orange */
      --accent-2: #7B5CF0;
      /* Purple */
      --accent-3: #FFBD2E;
      /* Yellow */
      --accent-4: #28C840;
      /* Green */
      --text-primary: #000000;
      --text-muted: #333333;
      --text-dim: #555555;
      --r-sm: 0px;
      /* Sharp corners */
      --r-md: 4px;
      --r-lg: 6px;
      --r-xl: 8px;
      background-image: radial-gradient(#000000 1px, transparent 1px);
      background-size: 24px 24px;
      /* Dot grid pattern */


      /* Default Light Theme Cursor: White Arrow / Black Stroke */
      cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAyTDEzIDI4TDE2IDE4TDI2IDE0TDIgMloiIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+'), auto;
    }

    /* Pointer Cursor Override for Light Mode */
    body.light-mode a,
    body.light-mode button,
    body.light-mode .btn,
    body.light-mode .svc-link,
    body.light-mode .ptile,
    body.light-mode .faq-q,
    body.light-mode .tcard,
    body.light-mode .connect-card,
    body.light-mode .logo,
    body.light-mode .mobile-nav-close,
    body.light-mode .hamburger {
      cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAyTDEzIDI4TDE2IDE4TDI2IDE0TDIgMloiIGZpbGw9IiMwMDAwMDAiIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+'), pointer;
    }




    body.light-mode .amb,
    body.light-mode .noise {

      display: none;
      /* Remove ambient blobs and noise */
    }

    body.light-mode nav {
      /* border-bottom: 3px solid #000; */
      background: #fff;
    }

    body.light-mode .nav-inner {
      background: #fff;
      border-bottom: none;
    }

    body.light-mode .nav-inner.scrolled {
      background: #fff;
      border-bottom: 3px solid #000;
      box-shadow: 0 4px 0 #000;
      transform: translateY(0);
    }

    body.light-mode .logo-mark {
      border: 2px solid #000;
      box-shadow: 4px 4px 0 #000;
      border-radius: 4px;
    }

    body.light-mode .btn {
      border: 2px solid #000;
      box-shadow: 4px 4px 0 #000;
      border-radius: 4px;
      font-weight: 800;
    }

    body.light-mode .btn:hover {
      transform: translate(2px, 2px);
      box-shadow: 2px 2px 0 #000;
      background: var(--accent);
      color: #000;
    }

    body.light-mode .btn-primary {
      background: var(--accent-3);
      /* Yellow for primary action */
      color: #000;
      box-shadow: 5px 5px 0 #000;
    }

    body.light-mode .btn-primary:hover {
      background: #ffe066;
      box-shadow: 2px 2px 0 #000;
    }

    body.light-mode .btn-ghost {
      background: #fff;
    }

    body.light-mode .hero-badge {
      background: #fff;
      border: 2px solid #000;
      box-shadow: 4px 4px 0 #000;
      color: #000;
      border-radius: 4px;
    }

    body.light-mode .showcase-glass {
      background: #fff;
      border: 3px solid #000;
      box-shadow: 8px 8px 0 #000;
      border-radius: 8px;
      backdrop-filter: none;
    }

    body.light-mode .sg-top {
      border-bottom: 2px solid #000;
    }

    body.light-mode .ptile {
      background: #fff;
      border: 2px solid #000;
      box-shadow: 5px 5px 0 #000;
      border-radius: 4px;
    }

    body.light-mode .ptile:hover {
      transform: translate(-2px, -2px);
      box-shadow: 8px 8px 0 #000;
      border-color: #000;
    }

    body.light-mode .ptile-badge {
      border: 2px solid #000;
      background: #fff;
      color: #000;
      box-shadow: 2px 2px 0 #000;
    }

    body.light-mode .sp-band {
      background: #fff;
      border-top: 3px solid #000;
      border-bottom: 3px solid #000;
    }

    body.light-mode .sp-div {
      background: #000;
      width: 2px;
    }

    body.light-mode .svc-card,
    body.light-mode .tcard,
    body.light-mode .connect-card,
    body.light-mode .ov-card,
    body.light-mode .step-box {
      background: #fff;
      border: 2px solid #000;
      box-shadow: 5px 5px 0 #000;
      border-radius: 6px;
    }

    body.light-mode .svc-card:hover,
    body.light-mode .tcard:hover,
    body.light-mode .connect-card:hover {
      transform: translate(-3px, -3px);
      box-shadow: 8px 8px 0 #000;
      border-color: #000;
    }

    body.light-mode .faq-q {
      border: 2px solid #000;
      background: #fff;
      box-shadow: 4px 4px 0 #000;
      margin-bottom: 12px;
    }

    body.light-mode .faq-q.open {
      background: var(--accent-3);
      box-shadow: 2px 2px 0 #000;
      transform: translate(2px, 2px);
    }

    body.light-mode .faq-a {
      border: 2px solid #000;
      border-top: none;
      background: #fff;
      box-shadow: 4px 4px 0 #000;
      margin-top: -14px;
      margin-bottom: 20px;
      position: relative;
      z-index: -1;
    }

    body.light-mode footer {
      border-top: 3px solid #000;
      background: #fff;
    }

    body.light-mode .nav-inner,
    body.light-mode .mobile-nav {
      background: #fff;
      border-right: 3px solid #000;
      border-bottom: 3px solid #000;
    }

    body.light-mode .hero h1 .g {
      background: none;
      -webkit-text-fill-color: #000;
      color: #000;
      text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    }

    body.light-mode .menu-icon span {
      background: #000;
    }

    /* -- MORE GLOBAL OVERRIDES -- */
    body.light-mode .value-card,
    body.light-mode .info-card,
    body.light-mode .feature-box,
    body.light-mode .pc-sidebar,
    body.light-mode .contact-form,
    body.light-mode .slider-container {
      background: #fff;
      border: 2px solid #000;
      box-shadow: 5px 5px 0 #000;
      border-radius: 6px;
    }

    /* Hover effects for interactive cards */
    body.light-mode .value-card:hover,
    body.light-mode .info-card:hover {
      transform: translate(-3px, -3px);
      box-shadow: 8px 8px 0 #000;
      border-color: #000;
    }

    /* Form Inputs */
    body.light-mode .form-input,
    body.light-mode .form-textarea,
    body.light-mode .form-select {
      background: #fff;
      border: 2px solid #000;
      color: #000;
      box-shadow: 3px 3px 0 #000;
    }

    body.light-mode .form-input:focus,
    body.light-mode .form-textarea:focus {
      outline: none;
      background: #fff;
      box-shadow: 5px 5px 0 var(--accent-3);
      /* Yellow shadow on focus */
      transform: translate(-1px, -1px);
    }

    body.light-mode .form-label {
      color: #000;
      font-weight: 700;
    }

    /* Sidebar items */
    body.light-mode .pcs-item {
      border-bottom: 1px solid #000;
    }

    body.light-mode .pcs-item:last-child {
      border-bottom: none;
    }

    body.light-mode .pcs-label {
      color: #555;
      font-weight: 600;
    }

    body.light-mode .pcs-val {
      color: #000;
      font-weight: 800;
    }

    /* Mission Band */
    body.light-mode .mission-band {
      background: transparent;
      color: #000;
    }

    body.light-mode .mission-label {
      border: 2px solid #000;
      color: #000;
      background: #fff;
      box-shadow: 3px 3px 0 #000;
    }

    /* Text Colors */
    body.light-mode h1,
    body.light-mode h2,
    body.light-mode h3,
    body.light-mode h4,
    body.light-mode h5,
    body.light-mode h6 {
      color: #000;
    }

    body.light-mode p,
    body.light-mode li {
      color: #333;
    }

    /* Share Modal Overrides */
    body.light-mode .share-modal {
      background: #fff;
      border: 2px solid #000;
      box-shadow: 8px 8px 0 #000;
      border-radius: 8px;
    }

    body.light-mode .share-header h3 {
      color: #000;
    }

    body.light-mode .close-btn {
      color: #000;
    }

    body.light-mode .close-btn:hover {
      background: rgba(0, 0, 0, 0.1);
    }

    body.light-mode .share-desc {
      color: #333;
    }

    body.light-mode .share-link-box {
      background: #fff;
      border: 2px solid #000;
    }

    body.light-mode #shareLinkInput {
      color: #000;
      background: transparent;
    }

    body.light-mode #copyShareLink {
      color: #000;
      border-left: 2px solid #000;
    }

    body.light-mode #copyShareLink:hover {
      background: #f0f0f0;
    }

    body.light-mode .social-btn {
      border: 2px solid #000;
      box-shadow: 3px 3px 0 #000;
      background: #fff;
      /* or keep colored */
      color: #000;
      /* reset depending on icon */
    }

    /* Keep brand colors for social icons but add borders */
    body.light-mode .sb-ln {
      color: #0077b5;
      background: #fff;
    }

    body.light-mode .sb-fb {
      color: #1877f2;
      background: #fff;
    }

    body.light-mode .sb-rd {
      color: #ff4500;
      background: #fff;
    }

    body.light-mode .sb-x {
      color: #000;
      background: #fff;
    }

    body.light-mode .sb-wa {
      color: #25d366;
      background: #fff;
    }

    body.light-mode .social-btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 5px 5px 0 #000;
    }

    /* Light Mode Overrides for New Elements */
    body.light-mode .hero-spinner-badge {
      border-color: #000;
      color: #000;
      background: rgba(255, 255, 255, 0.6);
      box-shadow: 4px 4px 0 #000;
    }

    body.light-mode .marquee-strip {
      background: var(--accent-3);
      border-top: 3px solid #000;
      border-bottom: 3px solid #000;
    }

    body.light-mode .marquee-content span {
      color: #000;
    }

    body.light-mode .marquee-content span.sep {
      color: #000;
    }

    /* -- PRELOADER -- */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    body.light-mode #preloader {
      background: #ffffff;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 3px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      border-top-color: var(--accent);
      animation: spin 1s ease-in-out infinite;
    }

    body.light-mode .spinner {
      border-color: rgba(0, 0, 0, 0.1);
      border-top-color: var(--accent);
    }


    /* Skeleton Loader */
    .skeleton-wrapper {
      width: 100%;
      max-width: 1160px;
      padding: 0 24px;
      margin: 0 auto;
      height: 100vh;
      display: flex;
      flex-direction: column;
      padding-top: 20px;
    }

    .skeleton-nav {
      height: 72px;
      width: 100%;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.03);
      margin-bottom: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .sk-logo {
      width: 150px;
      height: 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
    }

    .sk-links {
      width: 400px;
      height: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      display: none;
    }

    @media (min-width: 768px) {
      .sk-links {
        display: block;
      }
    }

    /* Hero Variant */
    .skeleton-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }

    .sk-badge {
      width: 180px;
      height: 32px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.05);
    }

    .sk-title {
      width: 60%;
      height: 80px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
    }

    .sk-title-2 {
      width: 40%;
      height: 80px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
    }

    .sk-text {
      width: 50%;
      height: 20px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
      margin-top: 10px;
    }

    .sk-btns {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .sk-btn {
      width: 160px;
      height: 48px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
    }

    /* Grid Variant (Solutions/Services) */
    .sk-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      width: 100%;
      margin-top: 40px;
    }

    .sk-card {
      height: 240px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    /* Split Variant (Products) */
    .sk-split {
      display: flex;
      flex-direction: column;
      gap: 40px;
      width: 100%;
    }

    @media (min-width: 992px) {
      .sk-split {
        flex-direction: row;
        align-items: flex-start;
      }
    }

    .sk-left {
      width: 100%;
      max-width: 500px;
      flex-shrink: 0;
    }

    .sk-right {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .sk-image {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      margin-bottom: 24px;
    }

    .sk-sidebar-item {
      height: 16px;
      margin-bottom: 12px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
    }

    .sk-paragraph {
      height: 16px;
      width: 100%;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
    }

    .sk-paragraph.short {
      width: 60%;
    }

    .sk-paragraph.medium {
      width: 85%;
    }


    /* Shimmer Effect */
    .skeleton-nav::after,
    .sk-logo::after,
    .sk-links::after,
    .sk-badge::after,
    .sk-title::after,
    .sk-title-2::after,
    .sk-text::after,
    .sk-btn::after,
    .sk-card::after,
    .sk-image::after,
    .sk-sidebar-item::after,
    .sk-paragraph::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transform: translateX(-100%);
      background-image: linear-gradient(90deg,
          rgba(255, 255, 255, 0) 0,
          rgba(255, 255, 255, 0.05) 20%,
          rgba(255, 255, 255, 0.1) 60%,
          rgba(255, 255, 255, 0));
      animation: shimmer 2s infinite;
    }

    /* Position Relative */
    .sk-logo,
    .sk-links,
    .sk-badge,
    .sk-title,
    .sk-title-2,
    .sk-text,
    .sk-btn,
    .sk-card,
    .sk-image,
    .sk-sidebar-item,
    .sk-paragraph {
      position: relative;
      overflow: hidden;
    }

    @keyframes shimmer {
      100% {
        transform: translateX(100%);
      }
    }

    /* Light Mode Overrides */
    body.light-mode .skeleton-nav,
    body.light-mode .sk-logo,
    body.light-mode .sk-links,
    body.light-mode .sk-badge,
    body.light-mode .sk-title,
    body.light-mode .sk-title-2,
    body.light-mode .sk-text,
    body.light-mode .sk-btn,
    body.light-mode .sk-card,
    body.light-mode .sk-image,
    body.light-mode .sk-sidebar-item,
    body.light-mode .sk-paragraph {
      background: rgba(0, 0, 0, 0.05);
    }

    body.light-mode .skeleton-nav::after,
    body.light-mode .sk-logo::after,
    body.light-mode .sk-links::after,
    body.light-mode .sk-badge::after,
    body.light-mode .sk-title::after,
    body.light-mode .sk-title-2::after,
    body.light-mode .sk-text::after,
    body.light-mode .sk-btn::after,
    body.light-mode .sk-card::after,
    body.light-mode .sk-image::after,
    body.light-mode .sk-sidebar-item::after,
    body.light-mode .sk-paragraph::after {
      background-image: linear-gradient(90deg,
          rgba(0, 0, 0, 0) 0,
          rgba(0, 0, 0, 0.05) 20%,
          rgba(0, 0, 0, 0.1) 60%,
          rgba(0, 0, 0, 0));
    }