      /* ========== RESET & BASE ========== */
      *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --bg-primary: #06060c;
        --bg-secondary: #0c0c16;
        --bg-surface: #111120;
        --bg-card: #16162a;
        --bg-card-hover: #1c1c38;
        --yellow-bright: #f5c518;
        --yellow-light: #ffe066;
        --yellow-dark: #c49a00;
        --yellow-glow: rgba(245, 197, 24, 0.25);
        --yellow-glow-strong: rgba(245, 197, 24, 0.5);
        --text-primary: #eaeaea;
        --text-secondary: #9a9ab0;
        --text-muted: #5a5a72;
        --border-color: rgba(245, 197, 24, 0.12);
        --border-glow: rgba(245, 197, 24, 0.3);
        --glass-bg: rgba(12, 12, 22, 0.7);
        --glass-border: rgba(245, 197, 24, 0.08);
        --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --font-display: 'Orbitron', sans-serif;
        --font-body: 'Roboto', sans-serif;
      }

      html { scroll-behavior: smooth; }

      body {
        font-family: var(--font-body);
        background: var(--bg-primary);
        color: var(--text-primary);
        overflow-x: hidden;
        line-height: 1.7;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-smooth);
      }

      img { max-width: 100%; display: block; }
      ul { list-style: none; }

      /* ========== ANIMATED BACKGROUND ========== */
      body::before {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background:
          radial-gradient(ellipse 600px 400px at 20% 20%, rgba(245, 197, 24, 0.04) 0%, transparent 70%),
          radial-gradient(ellipse 500px 500px at 80% 60%, rgba(245, 197, 24, 0.03) 0%, transparent 70%),
          radial-gradient(ellipse 800px 300px at 50% 90%, rgba(196, 154, 0, 0.03) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
        animation: bgPulse 8s ease-in-out infinite alternate;
      }

      @keyframes bgPulse {
        0% { opacity: 0.6; }
        100% { opacity: 1; }
      }

      body::after {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-image:
          linear-gradient(rgba(245, 197, 24, 0.015) 1px, transparent 1px),
          linear-gradient(90deg, rgba(245, 197, 24, 0.015) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
      }

      /* ========== PARTICLES ========== */
      .particles-container {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
      }

      .particle {
        position: absolute;
        width: 2px; height: 2px;
        background: var(--yellow-bright);
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat linear infinite;
      }

      @keyframes particleFloat {
        0% { opacity: 0; transform: translateY(100vh) translateX(0) scale(0); }
        10% { opacity: 0.8; transform: translateY(90vh) translateX(10px) scale(1); }
        90% { opacity: 0.3; }
        100% { opacity: 0; transform: translateY(-10vh) translateX(-20px) scale(0.5); }
      }

      /* ========== HEADER ========== */
      header { position: relative; z-index: 1000; }

      .header-top {
        background: linear-gradient(135deg, #1a1700 0%, #2a2300 40%, #1a1700 100%);
        border-bottom: 1px solid var(--border-glow);
        padding: 8px 0;
        position: relative;
        overflow: hidden;
      }

      .header-top::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 200%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.06), transparent);
        animation: headerSweep 4s ease-in-out infinite;
      }

      @keyframes headerSweep {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(50%); }
      }

      .header-top-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .header-contact {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
      }

      .header-contact a {
        font-size: 0.8rem;
        color: var(--yellow-light);
        display: flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.3px;
      }

      .header-contact a i {
        color: var(--yellow-bright);
        font-size: 0.75rem;
      }

      .header-contact a:hover {
        color: #fff;
        text-shadow: 0 0 10px var(--yellow-glow);
      }

      .header-social {
        display: flex;
        gap: 12px;
        align-items: center;
      }

      .header-social a {
        width: 28px; height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(245, 197, 24, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: var(--yellow-bright);
        transition: var(--transition-smooth);
      }

      .header-social a:hover {
        background: var(--yellow-bright);
        color: var(--bg-primary);
        box-shadow: 0 0 15px var(--yellow-glow-strong);
      }

      /* Language Toggle */
      .lang-toggle {
        display: flex;
        align-items: center;
        gap: 0;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid rgba(245, 197, 24, 0.2);
        flex-shrink: 0;
      }

      .lang-btn {
        background: transparent;
        border: none;
        color: var(--text-muted);
        padding: 5px 10px;
        font-size: 0.68rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: var(--font-body);
        letter-spacing: 0.5px;
      }

      .lang-btn.active {
        background: rgba(245, 197, 24, 0.15);
        color: var(--yellow-bright);
        text-shadow: 0 0 8px rgba(245, 197, 24, 0.3);
      }

      .lang-btn:hover:not(.active) {
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.03);
      }

      .lang-divider {
        width: 1px;
        height: 16px;
        background: rgba(245, 197, 24, 0.15);
      }

      .header-main {
        background: rgba(6, 6, 12, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 999;
        transition: var(--transition-smooth);
      }

      .header-main.scrolled {
        background: rgba(6, 6, 12, 0.95);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 197, 24, 0.03);
      }

      .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
      }

      .logo img {
        height: 52px;
        width: auto;
        filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.2));
        transition: var(--transition-smooth);
      }

      .logo:hover img {
        filter: drop-shadow(0 0 16px rgba(245, 197, 24, 0.4));
      }

      nav ul { display: flex; gap: 4px; }

      nav ul li a {
        padding: 8px 16px;
        font-size: 0.65rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-radius: 6px;
        position: relative;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: var(--font-display);
      }

      nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0; height: 2px;
        background: linear-gradient(90deg, transparent, var(--yellow-bright), transparent);
        border-radius: 2px;
        transition: width 0.3s ease;
      }

      nav ul li a:hover,
      nav ul li a.active {
        color: var(--yellow-bright);
        background: rgba(245, 197, 24, 0.05);
      }

      nav ul li a:hover::after,
      nav ul li a.active::after {
        width: 60%;
      }

      .mobile-menu-btn {
        display: none;
        background: transparent;
        border: 1px solid var(--border-glow);
        color: var(--yellow-bright);
        width: 44px; height: 44px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
        transition: var(--transition-smooth);
      }

      .mobile-menu-btn:hover {
        background: rgba(245, 197, 24, 0.1);
        box-shadow: 0 0 20px var(--yellow-glow);
      }

      /* ========== BUTTONS ========== */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        font-family: var(--font-display);
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: var(--transition-smooth);
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--yellow-dark), var(--yellow-bright));
        color: #0a0a0f;
        box-shadow: 0 4px 20px var(--yellow-glow), inset 0 1px 0 rgba(255,255,255,0.2);
        text-align: center;
        justify-content: center;
      }

      .btn::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
      }

      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 35px var(--yellow-glow-strong), 0 0 60px rgba(245, 197, 24, 0.15), inset 0 1px 0 rgba(255,255,255,0.3);
      }

      .btn:hover::before { left: 100%; }
      .btn:active { transform: translateY(0); }

      .btn-ghost {
        background: transparent;
        color: var(--yellow-bright);
        border: 1px solid var(--border-glow);
        box-shadow: none;
        padding: 12px 20px;
        font-size: 0.6rem;
      }

      .btn-ghost::before { display: none; }

      .btn-ghost:hover {
        background: var(--yellow-bright);
        color: var(--bg-primary);
        border-color: var(--yellow-bright);
        box-shadow: 0 0 25px var(--yellow-glow-strong);
      }

      /* ========== PAGE BANNER ========== */
      .page-banner {
        position: relative;
        z-index: 1;
        padding: 80px 0 50px;
        text-align: center;
        overflow: hidden;
      }

      .page-banner::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: radial-gradient(ellipse 800px 300px at 50% 0%, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
        pointer-events: none;
      }

      .page-banner h1 {
        font-family: var(--font-display);
        font-size: 2.2rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 6px;
        color: var(--text-primary);
        margin-bottom: 12px;
        position: relative;
      }

      .page-banner h1 span {
        color: var(--yellow-bright);
        text-shadow: 0 0 20px var(--yellow-glow);
      }

      .page-banner p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        font-weight: 300;
        letter-spacing: 1px;
      }

      .page-banner::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 100%; height: 1px;
        background: linear-gradient(90deg, transparent 5%, var(--yellow-dark) 30%, var(--yellow-bright) 50%, var(--yellow-dark) 70%, transparent 95%);
        box-shadow: 0 0 20px var(--yellow-glow);
      }

      /* ========== SECTION TITLE ========== */
      .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
      }

      .section-title h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--text-primary);
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: '';
        display: block;
        width: 60px; height: 3px;
        background: linear-gradient(90deg, var(--yellow-dark), var(--yellow-bright), var(--yellow-light));
        margin: 16px auto 0;
        border-radius: 3px;
        box-shadow: 0 0 15px var(--yellow-glow);
      }

      /* ========== PRODUCTS SECTION ========== */
      .products-section {
        position: relative;
        z-index: 1;
        padding: 60px 0 100px;
      }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }

      /* ========== PRODUCT CARD ========== */
      .product-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        overflow: hidden;
        transition: var(--transition-smooth);
        cursor: default;
        position: relative;
      }

      .product-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 3px;
        background: linear-gradient(90deg, transparent, var(--yellow-bright), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 3;
      }

      .product-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.04) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
        z-index: 1;
      }

      .product-card:hover {
        transform: translateY(-8px);
        background: var(--bg-card-hover);
        border-color: rgba(245, 197, 24, 0.2);
        box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.4),
          0 0 40px rgba(245, 197, 24, 0.05);
      }

      .product-card:hover::before {
        opacity: 1;
        box-shadow: 0 0 20px var(--yellow-glow);
      }

      .product-card:hover::after {
        opacity: 1;
      }

      /* Product image area */
      .product-image {
        height: 240px;
        overflow: hidden;
        background: var(--bg-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
      }

      .product-image::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 100%; height: 50%;
        background: linear-gradient(to top, var(--bg-card), transparent);
        pointer-events: none;
        transition: var(--transition-smooth);
      }

      .product-card:hover .product-image::after {
        background: linear-gradient(to top, var(--bg-card-hover), transparent);
      }

      .product-image img {
        max-height: 200px;
        width: auto;
        object-fit: contain;
        padding: 20px;
        transition: transform 0.6s ease, filter 0.6s ease;
        filter: brightness(0.8) saturate(0.9) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
        position: relative;
        z-index: 1;
      }

      .product-card:hover .product-image img {
        transform: scale(1.08) translateY(-4px);
        filter: brightness(1) saturate(1) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(245, 197, 24, 0.1));
      }

      /* Product info */
      .product-info {
        padding: 24px;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .product-info h3 {
        font-family: var(--font-display);
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: color 0.3s ease;
      }

      .product-card:hover .product-info h3 {
        color: var(--yellow-bright);
      }

      .product-info p {
        color: var(--text-secondary);
        font-size: 0.85rem;
        font-weight: 300;
        line-height: 1.6;
        margin-bottom: 22px;
        min-height: 44px;
      }

      /* Product buttons */
      .product-buttons {
        display: flex;
        gap: 10px;
      }

      .product-buttons .btn {
        flex: 1;
        font-size: 0.58rem;
        padding: 10px 12px;
        letter-spacing: 1px;
      }

      .product-buttons .btn-ghost {
        flex: 1;
        font-size: 0.55rem;
        padding: 10px 10px;
        letter-spacing: 0.8px;
        gap: 6px;
      }

      .product-buttons .btn-ghost i {
        font-size: 0.7rem;
      }

      /* ========== FOOTER ========== */
      footer {
        position: relative;
        z-index: 1;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
        padding: 70px 0 0;
      }

      footer::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 2px;
        background: linear-gradient(90deg, transparent 5%, var(--yellow-dark) 30%, var(--yellow-bright) 50%, var(--yellow-dark) 70%, transparent 95%);
        box-shadow: 0 0 20px var(--yellow-glow);
      }

      .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-widget h3 {
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--yellow-bright);
        margin-bottom: 24px;
        position: relative;
        padding-bottom: 12px;
      }

      .footer-widget h3::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 30px; height: 2px;
        background: var(--yellow-bright);
        box-shadow: 0 0 8px var(--yellow-glow);
      }

      .footer-widget > p {
        color: var(--text-secondary);
        font-size: 0.88rem;
        line-height: 1.8;
        font-weight: 300;
      }

      .social-links {
        display: flex;
        gap: 10px;
        margin-top: 20px;
      }

      .social-links a {
        width: 38px; height: 38px;
        border-radius: 6px;
        border: 1px solid var(--border-glow);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-size: 0.85rem;
        transition: var(--transition-smooth);
        background: rgba(245, 197, 24, 0.02);
      }

      .social-links a:hover {
        background: var(--yellow-bright);
        color: var(--bg-primary);
        border-color: var(--yellow-bright);
        box-shadow: 0 0 20px var(--yellow-glow-strong);
        transform: translateY(-3px);
      }

      .footer-links li { margin-bottom: 10px; }

      .footer-links a {
        color: var(--text-secondary);
        font-size: 0.88rem;
        font-weight: 300;
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        padding-left: 0;
        transition: var(--transition-smooth);
      }

      .footer-links a::before {
        content: '';
        width: 0; height: 1px;
        background: var(--yellow-bright);
        transition: width 0.3s ease;
        position: absolute;
        bottom: -2px; left: 0;
      }

      .footer-links a:hover {
        color: var(--yellow-bright);
        padding-left: 8px;
      }

      .footer-links a:hover::before { width: 100%; }

      .footer-widget .form-group { margin-bottom: 12px; }

      .footer-widget .form-group input {
        width: 100%;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        color: var(--text-primary);
        font-family: var(--font-body);
        font-size: 0.88rem;
        transition: var(--transition-smooth);
        outline: none;
      }

      .footer-widget .form-group input::placeholder { color: var(--text-muted); }

      .footer-widget .form-group input:focus {
        border-color: var(--yellow-bright);
        box-shadow: 0 0 15px var(--yellow-glow);
        background: rgba(245, 197, 24, 0.03);
      }

      .footer-widget .btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.68rem;
      }

      .footer-bottom {
        border-top: 1px solid var(--border-color);
        padding: 20px 0;
        text-align: center;
      }

      .footer-bottom p {
        color: var(--text-muted);
        font-size: 0.8rem;
        font-weight: 300;
        letter-spacing: 0.5px;
      }

      /* ========== SCROLL REVEAL ========== */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reveal-delay-1 { transition-delay: 0.1s; }
      .reveal-delay-2 { transition-delay: 0.2s; }
      .reveal-delay-3 { transition-delay: 0.3s; }
      .reveal-delay-4 { transition-delay: 0.4s; }
      .reveal-delay-5 { transition-delay: 0.5s; }
      .reveal-delay-6 { transition-delay: 0.6s; }

      /* ========== SCROLLBAR ========== */
      ::-webkit-scrollbar { width: 8px; }
      ::-webkit-scrollbar-track { background: var(--bg-primary); }
      ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--yellow-dark), var(--yellow-bright));
        border-radius: 4px;
      }
      ::-webkit-scrollbar-thumb:hover {
        box-shadow: 0 0 10px var(--yellow-glow-strong);
      }

      /* ========== TOAST ========== */
      #toastContainer {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .toast {
        background: var(--bg-card);
        border: 1px solid var(--yellow-glow);
        border-left: 3px solid var(--yellow-bright);
        padding: 16px 24px;
        border-radius: 8px;
        color: var(--text-primary);
        font-size: 0.9rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--yellow-glow);
        transform: translateX(120%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        max-width: 380px;
      }

      .toast.show { transform: translateX(0); }

      .toast .toast-close {
        position: absolute;
        top: 8px; right: 12px;
        background: none;
        border: none;
        color: var(--text-muted);
        cursor: pointer;
        font-size: 0.85rem;
        transition: color 0.3s;
      }

      .toast .toast-close:hover { color: var(--yellow-bright); }

      /* ========== RESPONSIVE ========== */
      @media (max-width: 992px) {
        .footer-content { grid-template-columns: 1fr 1fr; }
        .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: flex;
          align-items: center;
          justify-content: center;
        }

        nav {
          position: absolute;
          top: 72px; left: 0;
          width: 100%;
          background: rgba(6, 6, 12, 0.98);
          backdrop-filter: blur(20px);
          border-bottom: 1px solid var(--border-glow);
          padding: 20px;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.5s ease, padding 0.5s ease;
        }

        nav.active { max-height: 400px; padding: 20px; }

        nav ul { flex-direction: column; gap: 4px; }
        nav ul li a { display: block; padding: 12px 16px; font-size: 0.7rem; }
        .header-contact { flex-direction: column; gap: 4px; }

        .page-banner { padding: 50px 0 30px; }
        .page-banner h1 { font-size: 1.4rem; letter-spacing: 3px; }
        .products-section { padding: 40px 0 80px; }
        .section-title h2 { font-size: 1.4rem; letter-spacing: 2px; }
        .section-title { margin-bottom: 36px; }

        .products-grid { grid-template-columns: 1fr; gap: 20px; }
        .product-image { height: 200px; }
        .product-image img { max-height: 170px; }

        .footer-content { grid-template-columns: 1fr; gap: 30px; }
      }

      @media (max-width: 480px) {
        .product-buttons {
          flex-direction: column;
        }
        .product-buttons .btn,
        .product-buttons .btn-ghost {
          width: 100%;
          justify-content: center;
        }
        .page-banner h1 { font-size: 1.1rem; letter-spacing: 2px; }
      }
