:root {
      --orange: #ff5c1a;
      --orange-light: #ff7a45;
      --blue: #00b4ff;
      --soft-red: #d24848;
      --dark: #0d0d0d;
      --dark-2: #141414;
      --dark-3: #1a1a1a;
      --gray: #888;
      --light: #f5f5f5;
      --red-orange: #e63946;
      --violet: #7c3aed;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.02em;
      font-weight: 400;
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      background: rgba(13, 13, 13, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.75rem 2rem;
      background: rgba(13, 13, 13, 0.98);
    }

    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      color: var(--light);
    }

    .logo-text span { color: var(--orange); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width 0.3s ease;
    }

    .nav-links a:hover { color: var(--light); }
    .nav-links a:hover::after { width: 100%; }

    .nav-links .active { color: var(--light); }

    /* Dropdown menu */
    .nav-dropdown {
      position: relative;
      padding:5px 0;
    }

    .nav-dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--dark-2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 0.5rem 0;
      min-width: 280px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      z-index: 1001;
      /* margin-top: 0.5rem; */
    }

    .nav-dropdown:hover .nav-dropdown-content {
      display: block;
    }

    .nav-dropdown-content a {
      display: block;
      padding: 0.75rem 1.25rem;
      font-size: 0.8rem;
      text-transform: none;
      letter-spacing: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown-content a:last-child {
      border-bottom: none;
    }

    .nav-dropdown-content a::after {
      display: none;
    }
    .nav-dropdown-content a.active {
      color: white !important;
    }

    .nav-cta {
      background: var(--orange);
      color: white !important;
      padding: 0.6rem 1.25rem;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: #e54d0f; transform: translateY(-2px); }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--light);
      font-size: 1.5rem;
      cursor: pointer;
    }

    @media (max-width: 1024px) {
      .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: var(--dark);
      flex-direction: column;
      padding: 1.5rem;
      gap: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .nav-links.active { display: flex; }
      .mobile-menu-btn { display: block; }
      .nav-dropdown-content {
      position: static;
      display: none;
      background: var(--dark-3);
      margin-top: 0.5rem;
      box-shadow: none;
      }
      .nav-dropdown.active .nav-dropdown-content {
      display: block;
      }
    }
	/* Footer - alternating orange/blue hover */
    .footer {
      background: #0a0a0a;
      padding: 4rem 2rem 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto 3rem;
    }

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

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

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .footer-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      color: var(--light);
    }

    .footer-logo-text span { color: var(--orange); }

    .footer-desc {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .footer-back-top {
      color: var(--orange);
      font-size: 0.85rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-back-top:hover { color: var(--light); }

    .footer-title {
      font-size: 1.1rem;
      margin-bottom: 1.25rem;
    }

    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.6rem; }

    .footer-links a {
      color: var(--gray);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    /* Alternating orange/blue hover for footer links */
    .footer-links li:nth-child(odd) a:hover {
      color: var(--orange);
      transform: translateX(3px);
    }

    .footer-links li:nth-child(even) a:hover {
      color: var(--blue);
      transform: translateX(3px);
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copyright {
      font-size: 0.85rem;
      color: var(--gray);
    }

    .footer-tagline {
      font-size: 0.75rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }