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

  body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0c12;
    color: #eef2ff;
    line-height: 1.5;
    scroll-behavior: smooth;
  }

  .section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 40px;
  }

  /* header / nav */
  header {
    background: rgba(10, 12, 18, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(100, 116, 139, 0.25);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
  }

  nav ul li a {
    font-size: 0.95rem;
  }
  
  .logo {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    z-index: 102;
  }
  .logo-accent {
    color: #a855f7;
  }
  
  /* Desktop navigation styles (original look) */
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.2s;
  }
  .nav-links a:hover {
    //color: #c084fc;
    color: #22b8f0;
  }
  
  .nav-cta {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
    z-index: 102;
  }
  .nav-cta:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #c084fc, #8b5cf6);
  }

  /* Hamburger menu button (hidden on desktop) */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
    color: #cbd5e1;
    font-size: 1.8rem;
    transition: 0.2s;
  }
  .hamburger:hover {
    color: #c084fc;
  }

  /* Mobile responsive adjustments - Menu slides in from RIGHT, hide nav-links by default on mobile */
  @media (max-width: 860px) {
    .hamburger {
      display: block;
    }
    
    /* Hide the standard navigation links on mobile - they only appear inside the hamburger menu */
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      max-width: 320px;
      height: 100vh;
      background: rgba(10, 12, 18, 0.98);
      backdrop-filter: blur(16px);
      flex-direction: column;
      justify-content: flex-start;
      padding: 6rem 2rem 2rem 2rem;
      gap: 1.8rem;
      transition: right 0.3s ease-in-out;
      z-index: 101;
      box-shadow: -2px 0 20px rgba(0, 0, 0, 0.6);
      border-left: 1px solid rgba(139, 92, 246, 0.3);
      margin: 0;
      list-style: none;
      overflow-y: auto;
      display: flex;
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .nav-links li {
      width: 100%;
    }
    
    .nav-links a {
      display: block;
      padding: 0.6rem 0;
      font-size: 1.2rem;
      font-weight: 500;
      border-bottom: 1px solid rgba(100, 116, 139, 0.3);
    }
    
    .nav-links a:hover {
      padding-left: 6px;
    }
    
    /* Adjust main nav layout on mobile: only logo, CTA (Get Instant Access) and hamburger visible.
       Logo left, CTA next to hamburger on right */
    nav {
      padding: 0.8rem 1.5rem;
      display: flex;
      flex-wrap: nowrap;
    }
    .logo {
      order: 1;
      margin-right: auto;
    }
    .nav-cta {
      order: 2;
      margin-left: 0;
      margin-right: 0.75rem;
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
    }
    .hamburger {
      order: 3;
      margin-left: 0;
    }
    
    body.menu-open {
      overflow: hidden;
    }
    
    /* Overlay background */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(3px);
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      transition: 0.2s;
    }
    
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
  }

  /* hero */
  .hero {
    padding: 4rem 0 5rem;
    background: radial-gradient(ellipse at 70% 30%, rgba(100, 70, 200, 0.15), transparent);
    text-align: center;
  }
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #c084fc, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
  }

  /* section titles */
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(to right, #f0f9ff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-title p {
    color: #6b7280;
    margin-top: 0.5rem;
  }

  /* about content layout */
  .about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }
  .about-content > div { flex: 1; min-width: 240px; }
  .about-list {
    list-style: none;
  }
  .about-list li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .about-list li::before {
    content: "⚡";
    color: #c084fc;
    font-size: 1.2rem;
  }
  .about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e2e8f0, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .about-content h3 {
    color: #94a3b8;
  }
  img.mock-img {
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(145deg, #1e1f2c, #0f111a);
    box-shadow: 0 20px 35px -12px black;
    border: 1px solid #2d2f3e;
    padding: 0.8rem;
    transition: 0.3s;
  }

  /* cards grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  
  /* Features specific grid - 2 rows of 3 cards on desktop */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }
  
  @media (max-width: 900px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .service-card {
    background: #11131f;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid #232636;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
  }
  .service-card:hover {
    transform: translateY(-6px);
    border-color: #7c3aed;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5);
  }
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f1f5f9;
  }
  .service-card h3 i { color: #a855f7; }
  .service-card p {
    color: #b9c3db;
    margin: 0.5rem 0;
    line-height: 1.5;
  }

  /* dark section */
  .dark-section {
    background: #05070c;
    border-top: 1px solid #1f2230;
    border-bottom: 1px solid #1f2230;
  }

  /* pricing card */
  .price-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
  .price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #f0f3ff;
  }
  .price-feature {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin: 0.7rem 0;
    color: #b9c3db;
    justify-content: flex-start;
    padding-left: 2rem;
  }
  .price-feature i {
    width: 1.4rem;
    color: #a855f7;
  }
  .btn-primary {
    display: inline-block;
    background: #7c3aed;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
  }
  .btn-primary:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
  }
  .btn-block {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
  }

  footer {
    background: #02030a;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid #1e293b;
  }
  .footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 0 24px;
  }
  .footer-section h3 {
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
  }
  .footer-links li { margin-bottom: 0.6rem; }
  .footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.2s;
  }
  .footer-links a:hover { color: #c084fc; }
  .copyright {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #4b5563;
  }

  @media (max-width: 760px) {
    .hero h1 { font-size: 2.3rem; }
    .about-content { flex-direction: column; }
    .price-feature {
      padding-left: 1rem;
      justify-content: center;
    }
    .section-title h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .nav-cta {
      padding: 0.45rem 1rem;
      font-size: 0.8rem;
    }
    .logo {
      font-size: 1.4rem;
    }
    .hamburger {
      font-size: 1.5rem;
    }
  }

  .badge-lab {
    display: inline-block;
    background: #1e293b;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #a78bfa;
    margin-bottom: 0.75rem;
  }
  
  /* Ensure on desktop the nav-links are displayed normally (overrides any mobile hiding) */
  @media (min-width: 861px) {
    .nav-links {
      display: flex !important;
      position: static;
      background: transparent;
      backdrop-filter: none;
      flex-direction: row;
      width: auto;
      height: auto;
      padding: 0;
      box-shadow: none;
      border-left: none;
      transition: none;
      gap: 2rem;
    }
    .menu-overlay {
      display: none;
    }
  }
  .padding-bottom {
    padding-bottom: 2.5rem;
  }
  #cookiescript_copyright {
    display: none !important;
  }
  #cookiescript_injected {
    background: #000 !important;
  }
  #cookiescript_accept {
    background-color: orange !important;
    color: #000 !important;
  }