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

        :root {
            --black: #05070a;
            --dark: #0a0e14;
            --card: #0e121a;
            --red: #d62828;
            --red-bright: #ff3131;
            --silver: #c8c8c8;
            --dim: #6a6f7a;
            --border: rgba(255,255,255,0.05);
            --ff-title: 'Bebas Neue', sans-serif;
            --ff-body: 'Space Grotesk', sans-serif;
        }

        body {
            font-family: var(--ff-body);
            background: var(--black);
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }

        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(214,40,40,0.22) 0%, rgba(214,40,40,0.08) 40%, transparent 80%);
            pointer-events: none;
            z-index: 0;
            animation: pulseGlow 10s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 1.2rem 0;
            background: rgba(5,7,10,0.75);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            transition: all 0.4s;
        }
        .navbar.scrolled { padding: 0.8rem 0; background: rgba(5,7,10,0.95); border-bottom-color: rgba(214,40,40,0.3); }
        .nav-inner {
            max-width: 1400px; margin: 0 auto;
            padding: 0 2rem;
            display: flex; align-items: center; justify-content: space-between;
        }
        .logo-link { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; min-width: 0; flex-shrink: 1; }
        .logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(214,40,40,0.5)); flex-shrink: 0; }
        .logo-text { font-family: var(--ff-title); font-size: 1.6rem; letter-spacing: 4px; color: #fff; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .logo-text span { color: var(--red); }

        .nav-links { list-style: none; display: flex; gap: 2.5rem; }
        .nav-links a {
            font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 2px; color: var(--dim); text-decoration: none;
            transition: color 0.25s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 1px; background: var(--red); transition: width 0.3s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }

        .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
        .hamburger span { width: 24px; height: 2px; background: var(--red); transition: all 0.3s; display: block; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            height: 100vh; height: 100dvh;
            background: rgba(5,7,10,0.98); backdrop-filter: blur(20px);
            z-index: 999; flex-direction: column; align-items: center;
            justify-content: flex-start; gap: 1.8rem;
            padding-top: calc(env(safe-area-inset-top, 0px) + 90px);
            padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 2rem);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { font-family: var(--ff-title); font-size: 2.5rem; letter-spacing: 4px; color: #fff; text-decoration: none; transition: color 0.2s; }
        .mobile-menu a:hover { color: var(--red); }

        .hero {
            min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-content { position: relative; z-index: 5; text-align: center; max-width: 960px; padding: 0 2rem; }
        .hero-tag {
            font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 4px; color: var(--red); margin-bottom: 1.5rem;
            display: inline-flex; align-items: center; gap: 1rem;
        }
        .hero-tag::before, .hero-tag::after { content: ''; width: 30px; height: 1px; background: var(--red); }
        .hero h1 { font-family: var(--ff-title); font-size: clamp(3rem, 10vw, 7rem); line-height: 0.95; letter-spacing: 2px; margin-bottom: 1.5rem; }
        .hero h1 em { color: var(--red); font-style: normal; }
        .hero-sub { font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--dim); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.8; font-weight: 300; }
        .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        .btn {
            font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
            padding: 1rem 2.5rem; text-decoration: none; display: inline-block; transition: all 0.3s;
            cursor: pointer; border: none; position: relative; overflow: hidden; z-index: 1;
        }
        .btn::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s; z-index: -1;
        }
        .btn:hover::before { left: 100%; }
        .btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 15px rgba(214,40,40,0.3); }
        .btn-red:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(214,40,40,0.5); }
        .btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
        .btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

        .stats-bar {
            background: rgba(10,14,20,0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 2.5rem 0;
            position: relative;
            z-index: 2;
        }
        .stats-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(3, 1fr); }
        .stat { text-align: center; padding: 0 2rem; border-right: 1px solid var(--border); }
        .stat:last-child { border-right: none; }
        .stat-number { font-family: var(--ff-title); font-size: 3rem; color: var(--red); line-height: 1; margin-bottom: 0.4rem; }
        .stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--dim); }

        .section { padding: 6rem 0; position: relative; z-index: 2; }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
        .section-eyebrow {
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 4px; color: var(--red); margin-bottom: 0.8rem;
            display: flex; align-items: center; gap: 0.8rem;
        }
        .section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--red); }
        .section-title { font-family: var(--ff-title); font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1; letter-spacing: 1px; margin-bottom: 1rem; color: #fff; }
        .section-desc { color: var(--dim); font-size: 1rem; max-width: 520px; line-height: 1.7; font-weight: 300; }
        .section-header { margin-bottom: 4rem; }

        .portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
        .port-item {
            position: relative; overflow: hidden; border: 1px solid var(--border);
            transition: all 0.4s; background: var(--card); cursor: pointer;
        }
        .port-item:hover { border-color: var(--red); transform: translateY(-4px); }
        .port-img-wrap { aspect-ratio: 1 / 1; overflow: hidden; }
        .port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; display: block; }
        .port-item:hover img { transform: scale(1.06); }
        .port-info { padding: 1.2rem 1.4rem 1.4rem; border-top: 1px solid var(--border); }
        .port-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 0.3rem; }
        .port-title { font-size: 1rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.4rem; }

        .configurator-section { position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

        .hotspot-container {
            position: relative;
            background: rgba(5,7,10,0.4);
            backdrop-filter: blur(4px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
        }
        .hotspot-img-wrapper { position: relative; display: inline-block; max-width: 100%; }
        .hotspot-img { width: 100%; height: auto; display: block; border-radius: 16px; }
        .hotspot {
            position: absolute;
            width: 28px;
            height: 28px;
            background: var(--red);
            border: 2px solid #fff;
            border-radius: 50%;
            cursor: pointer;
            transform: translate(-50%, -50%);
            transition: all 0.2s;
            box-shadow: 0 0 0 2px rgba(0,0,0,0.3);
            z-index: 10;
        }
        .hotspot:hover {
            background: var(--red-bright);
            transform: translate(-50%, -50%) scale(1.2);
            box-shadow: 0 0 15px rgba(214,40,40,0.8);
        }
        .hotspot-tooltip {
            position: absolute;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(8px);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 1px;
            white-space: nowrap;
            pointer-events: none;
            z-index: 20;
            border-left: 3px solid var(--red);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .hotspot-tooltip::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -6px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 6px 6px 0;
            border-color: transparent rgba(0,0,0,0.9) transparent transparent;
        }
        .config-note { text-align: center; color: var(--dim); font-size: 0.7rem; margin-top: 1rem; }

        .config-options { display: flex; flex-direction: column; gap: 1rem; }
        .step-card { background: rgba(5,7,10,0.5); backdrop-filter: blur(4px); border: 1px solid var(--border); border-radius: 20px; padding: 1rem 1.2rem; transition: all 0.3s; }
        .step-card.active { border-color: var(--red); background: rgba(214,40,40,0.05); }
        .step-header { display: flex; align-items: center; gap: 1rem; cursor: pointer; user-select: none; }
        .step-number { width: 28px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; transition: all 0.2s; }
        .step-card.active .step-number { background: var(--red); color: #fff; }
        .step-title { font-weight: 600; letter-spacing: 1px; font-size: 0.85rem; }
        .step-options { display: none; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; margin-left: 2.5rem; }
        .step-card.active .step-options { display: flex; }
        .step-btn { background: transparent; border: 1px solid rgba(255,255,255,0.15); padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 500; color: var(--dim); cursor: pointer; transition: all 0.2s; border-radius: 40px; }
        .step-btn.active { border-color: var(--red); background: rgba(214,40,40,0.2); color: var(--red); }
        .step-btn:hover { border-color: var(--red); color: var(--red); }

        .upload-area { margin-top: 0.8rem; padding: 0.8rem; background: rgba(0,0,0,0.3); border-radius: 16px; border: 1px dashed var(--border); text-align: center; cursor: pointer; transition: all 0.2s; }
        .upload-area:hover { border-color: var(--red); background: rgba(214,40,40,0.05); }
        .upload-label { display: flex; align-items: center; justify-content: center; gap: 0.8rem; cursor: pointer; font-size: 0.75rem; color: var(--silver); }
        .upload-label i { font-size: 1rem; }
        #currentWheelInput { display: none; }
        .file-name { font-size: 0.65rem; color: var(--dim); margin-top: 0.4rem; }
        .upload-loading { display: none; margin-top: 0.5rem; font-size: 0.7rem; color: var(--red); }
        .btn-config { width: 100%; margin-top: 1rem; background: var(--red); }
        .btn-config:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

        .terms-checkbox-wrap {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1rem;
            padding: 0.9rem 1.1rem;
            background: rgba(214,40,40,0.04);
            border: 1px solid rgba(214,40,40,0.15);
            border-radius: 12px;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            user-select: none;
        }
        .terms-checkbox-wrap:hover {
            border-color: rgba(214,40,40,0.4);
            background: rgba(214,40,40,0.08);
        }
        .terms-checkbox-wrap.checked {
            border-color: var(--red);
            background: rgba(214,40,40,0.08);
        }
        .terms-custom-box {
            width: 20px; height: 20px;
            flex-shrink: 0;
            border: 2px solid rgba(214,40,40,0.4);
            border-radius: 5px;
            background: transparent;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .terms-checkbox-wrap.checked .terms-custom-box {
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 0 10px rgba(214,40,40,0.5);
        }
        .terms-check-icon {
            width: 12px; height: 10px;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.15s ease;
        }
        .terms-checkbox-wrap.checked .terms-check-icon {
            opacity: 1;
            transform: scale(1);
        }
        .terms-checkbox-text {
            font-size: 0.78rem;
            color: var(--dim);
            line-height: 1.5;
        }
        .terms-link {
            font-size: 0.78rem;
            color: var(--red);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .terms-link:hover { border-bottom-color: var(--red); }
        .terms-required {
            color: var(--red);
            font-size: 0.78rem;
            margin-left: 1px;
        }

        .contact-fields {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .contact-fields input {
            width: 100%;
            padding: 0.7rem 1rem;
            background: rgba(0,0,0,0.5);
            border: 1px solid var(--border);
            border-radius: 40px;
            color: #fff;
            font-family: inherit;
            font-size: 0.8rem;
            transition: all 0.2s;
        }
        .contact-fields input:focus {
            outline: none;
            border-color: var(--red);
        }
        .contact-fields input::placeholder {
            color: var(--dim);
        }
        .step-options textarea::placeholder { color: var(--dim); }
        .step-options textarea:focus { outline: none; border-color: var(--red); }

        .about-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
        .big-quote { font-family: var(--ff-title); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 2rem; color: #fff; }
        .big-quote span { color: #fff; }
        .big-quote span.highlight-red { color: var(--red); }
        .about-body { color: var(--dim); font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
        .about-body strong { color: #fff; font-weight: 600; }
        .about-right { position: relative; }
        .about-img-wrap { width: 100%; max-width: 420px; margin: 0 auto; position: relative; }
        .about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 8px; }
        .about-accent-box { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--red); padding: 1.2rem 1.8rem; box-shadow: 10px 10px 0 rgba(0,0,0,0.2); }
        .about-accent-number { font-family: var(--ff-title); font-size: 2.5rem; line-height: 1; color: #fff; }
        .about-accent-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
        .red-line { width: 40px; height: 2px; background: var(--red); margin: 2rem 0; }

        .video-grid { display: grid; grid-template-columns: repeat(16, 1fr); gap: 2rem; max-width: 2800px; margin: 0 auto; width: 100%; }
        .video-grid .video-card:nth-child(-n+4) { grid-column: span 4; }
        .video-grid .video-card:nth-child(5) { grid-column: 3 / span 4; }
        .video-grid .video-card:nth-child(6) { grid-column: 7 / span 4; }
        .video-grid .video-card:nth-child(7) { grid-column: 11 / span 4; }
        .video-carousel-mobile { display: none; position: relative; overflow: hidden; }
        .video-carousel-track { display: flex; transition: transform 0.3s ease-out; gap: 0; width: 100%; margin-bottom: 1rem; }
        .video-carousel-track .video-card { flex: 0 0 100%; min-width: 100%; width: 100%; touch-action: pan-y; }
        .video-carousel-controls { display: none; gap: 2rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 100; }
        .carousel-controls { display: none; gap: 2rem; justify-content: center; align-items: center; width: 100%; margin-top: 1.5rem; padding: 0 1rem; }
        .carousel-btn { background: var(--red); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(214,40,40,0.4); }
        .carousel-btn:hover { background: var(--red-bright); transform: scale(1.15); box-shadow: 0 6px 20px rgba(214,40,40,0.6); }
        .carousel-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: scale(1); }
        .carousel-dots { display: none; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
        .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
        .dot.active { background: var(--red); width: 24px; border-radius: 4px; }

        .video-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: all 0.4s; position: relative; }
        .video-card:hover { border-color: rgba(214,40,40,0.5); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(214,40,40,0.15); }
        .video-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; image-rendering: crisp-edges; min-height: 181px; }
        .video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; image-rendering: crisp-edges; }
        .video-card-info { padding: 1rem 1.2rem 1.2rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 0.8rem; }
        .video-card-icon { width: 32px; height: 32px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; color: #fff; }
        .video-card-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--silver); }
        .video-card-sub { font-size: 0.65rem; color: var(--dim); margin-top: 0.1rem; }
        .video-yt-link { margin-left: auto; color: var(--dim); font-size: 1rem; text-decoration: none; transition: color 0.2s; }
        .video-yt-link:hover { color: var(--red); }

        .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
        .big-line { font-family: var(--ff-title); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; margin-bottom: 1rem; color: #fff; }
        .big-line span { color: #fff; }
        .contact-left p { color: var(--dim); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
        .contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
        .contact-info-list li { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: var(--silver); }
        .contact-info-list i { color: var(--red); width: 20px; text-align: center; }
        .socials { display: flex; gap: 1rem; }
        .social-btn { width: 44px; height: 44px; border: 1px solid rgba(214,40,40,0.4); display: flex; align-items: center; justify-content: center; color: var(--red); text-decoration: none; font-size: 1.1rem; transition: all 0.3s; border-radius: 50%; }
        .social-btn:hover { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(214,40,40,0.4); transform: translateY(-2px); }
        .social-btn-whatsapp { border-color: rgba(37,211,102,0.4); color: #25d366; }
        .social-btn-whatsapp:hover { background: #25d366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4); border-color: #25d366; }
        .highlight-box { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--red); padding: 1.5rem; margin-bottom: 1.5rem; transition: all 0.3s; }
        .highlight-box:hover { transform: translateX(4px); border-color: var(--red); }
        .highlight-box h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
        .highlight-box p { color: var(--dim); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }

        footer { border-top: 1px solid var(--border); padding: 2.5rem 0; position: relative; z-index: 2; }
        .footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
        .footer-logo { font-family: var(--ff-title); font-size: 1.1rem; letter-spacing: 3px; color: var(--dim); text-align: center; }
        .footer-copyright { font-size: 0.72rem; color: var(--dim); letter-spacing: 1.5px; text-align: center; }
        .footer-legal-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
        .footer-legal-links a { color: var(--dim); text-decoration: none; font-size: 0.7rem; letter-spacing: 1px; transition: color 0.2s; }
        .footer-legal-links a:hover { color: var(--red); }
        .footer-legal-links span { color: var(--dim); }
        .legal-info-spot { margin-top: 1rem; padding: 1rem 1.5rem; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 12px; }
        .legal-info-spot .firm-grid { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; font-size: 0.72rem; }
        .firm-item { display: flex; align-items: center; gap: 0.35rem; padding: 0.3rem 1rem; border-right: 1px solid rgba(255,255,255,0.08); }
        .firm-item:last-child { border-right: none; }
        .firm-item strong { color: var(--red); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
        .firm-item span { color: #9a9fa8; white-space: nowrap; }
        .pay-badge-combined { height: 28px; width: auto; display: block; }
        .footer-payment-badges { display: flex; align-items: center; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.9rem; }
        .footer-payment-badges .pay-badge-combined { height: 20px; width: auto; display: block; opacity: 0.9; }
        @media (max-width: 700px) {
            .legal-info-spot .firm-grid { flex-direction: column; gap: 0.4rem; }
            .firm-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0.4rem 0; width: 100%; justify-content: center; }
            .firm-item:last-child { border-bottom: none; }
        }

        .nav-shop-link {
            background: var(--red) !important;
            color: #fff !important;
            padding: 0.45rem 1.2rem !important;
            border-radius: 40px !important;
            letter-spacing: 1.5px !important;
            box-shadow: 0 2px 12px rgba(214,40,40,0.35);
            transition: all 0.3s !important;
        }
        .nav-shop-link:hover {
            background: var(--red-bright) !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(214,40,40,0.5) !important;
        }
        .nav-shop-link::after { display: none !important; }

        .shop-banner {
            position: relative;
            z-index: 2;
            border-top: 1px solid var(--border);
            overflow: hidden;
        }
        .shop-banner-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 2rem;
            display: grid;
            grid-template-columns: 1fr;
            max-width: 780px;
            text-align: center;
        }
        .shop-banner-eyebrow {
            justify-content: center;
        }
        .shop-banner-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--red);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .shop-banner-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--red); }
        .shop-banner-title {
            font-family: var(--ff-title);
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1;
            color: #fff;
            margin-bottom: 1.2rem;
        }
        .shop-banner-title span { color: var(--red); }
        .shop-banner-desc {
            color: var(--dim);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 2rem;
        }
        @media (max-width: 900px) {
            .shop-banner-inner { grid-template-columns: 1fr; gap: 2rem; }
        }

        .lang-switch-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--dim);
            padding: 0.25rem 0.8rem;
            border-radius: 40px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s;
            margin-left: 1.5rem;
        }
        .lang-switch-btn:hover {
            border-color: var(--red);
            color: var(--red);
        }
        .lang-hero {
            position: absolute;
            top: 90px;
            right: 2rem;
            z-index: 900;
            margin-left: 0;
        }
        @media (max-width: 900px) {
            .lang-hero { display: none; }
        }

        .toast-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateX(50px);
        }

        .toast-notification.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .toast-card {
            background: linear-gradient(135deg, #0a0e14 0%, #05070a 100%);
            border: 1px solid rgba(214, 40, 40, 0.3);
            border-radius: 20px;
            padding: 16px 24px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(214, 40, 40, 0.2);
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 320px;
            max-width: 420px;
            animation: slideInRight 0.4s ease;
        }

        .toast-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #d62828, #b01b1b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            animation: pulseGlowToast 0.6s ease;
        }

        .toast-icon i {
            color: white;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .toast-message {
            font-size: 12px;
            color: #7a7f8a;
            line-height: 1.4;
        }

        .toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #d62828, #ff6666);
            border-radius: 0 0 20px 20px;
            animation: progressShrink 3s linear forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulseGlowToast {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(214, 40, 40, 0);
            }
        }

        @keyframes progressShrink {
            from {
                width: 100%;
            }
            to {
                width: 0%;
            }
        }

        .toast-notification.error .toast-icon {
            background: linear-gradient(135deg, #666, #333);
        }

        .toast-notification.error .toast-progress {
            background: linear-gradient(90deg, #666, #999);
        }

        .toast-notification.warning .toast-icon {
            background: linear-gradient(135deg, #f39c12, #e67e22);
        }

        .toast-notification.warning .toast-progress {
            background: linear-gradient(90deg, #f39c12, #f1c40f);
        }

        @media (max-width: 600px) {
            .toast-card {
                min-width: 280px;
                padding: 12px 20px;
            }
            .toast-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
            .toast-title {
                font-size: 13px;
            }
            .toast-message {
                font-size: 11px;
            }
        }

        @media (max-width: 1024px) { .about-accent-box { display: none; } .config-grid { grid-template-columns: 1fr; } .hotspot { width: 22px; height: 22px; } }
        @media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: flex; } .stats-inner { grid-template-columns: repeat(2, 1fr); } .stat { padding: 1.2rem; border-right: none; border-bottom: 1px solid var(--border); } .stats-inner .stat:last-child:nth-child(odd) { grid-column: 1 / -1; } .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .about-wrap { grid-template-columns: 1fr; gap: 3rem; } .video-grid { display: none; } .video-carousel-mobile { display: flex; flex-direction: column; position: relative; width: 100%; } .video-carousel-track { width: 100%; } .carousel-controls { display: flex; } .carousel-dots { display: flex; } .contact-wrap { grid-template-columns: 1fr; gap: 3rem; } .section { padding: 4rem 0; } .lang-switch-btn { margin-left: 0; margin-top: 0.5rem; } .nav-inner { flex-wrap: nowrap; } }
        @media (max-width: 480px) {
            .nav-inner { padding: 0 1.1rem; }
            .nav-inner .nav-right { gap: 0.5rem; }
            .logo-link { gap: 0.5rem; }
            .logo-img { width: 32px; height: 32px; }
            .logo-text { font-size: 1.15rem; letter-spacing: 2px; }
        }
        @media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 2.5rem; } .section-title { font-size: 1.8rem; } .stats-inner { grid-template-columns: repeat(2, 1fr); } .stats-inner .stat:last-child:nth-child(odd) { grid-column: 1 / -1; } .stat-number { font-size: 2rem; } .hotspot { width: 18px; height: 18px; } .hotspot-tooltip { font-size: 0.6rem; padding: 0.25rem 0.6rem; white-space: nowrap; } }

        .flag-icon {
            display: inline-block;
            width: 20px;
            height: 14px;
            background-size: cover;
            background-position: center;
            border-radius: 2px;
            vertical-align: middle;
            flex-shrink: 0;
        }
        .flag-ro {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%23002B7F'/%3E%3Crect x='1' width='1' height='2' fill='%23FCD116'/%3E%3Crect x='2' width='1' height='2' fill='%23CE1126'/%3E%3C/svg%3E");
        }
        .flag-gb {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3CclipPath id='b'%3E%3Cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3E%3C/clipPath%3E%3Cg clipPath='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' clipPath='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
        }

        .footer-sal-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.3rem; }
        .footer-sal-links a { color: var(--dim); text-decoration: none; font-size: 0.65rem; letter-spacing: 1px; transition: color 0.2s; }
        .footer-sal-links a:hover { color: var(--red); }
        .footer-sal-links span { color: var(--dim); font-size: 0.65rem; }

        .nav-right { display: flex; align-items: center; gap: 1rem; }
        .nav-account-btn{display:flex;align-items:center;gap:0.5rem;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);color:#c8c8c8;padding:0.45rem 1rem;border-radius:40px;font-family:var(--ff-body);font-size:0.78rem;font-weight:600;letter-spacing:1px;cursor:pointer;text-decoration:none;transition:all .25s;white-space:nowrap}
        .nav-account-btn:hover{background:rgba(255,255,255,0.1);color:#fff;border-color:rgba(255,255,255,0.2)}
        .nav-account-btn i{font-size:0.75rem}
        @media(max-width:480px){.nav-account-btn span.acc-label{display:none}.nav-account-btn{padding:0.45rem 0.7rem}}
        .cart-panel {
            position: fixed;
            right: -400px;
            top: 0;
            height: 100%;
            width: 380px;
            background: #0a0e14;
            border-left: 1px solid var(--border);
            z-index: 2000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .cart-panel.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.6); }
        .cart-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 1999;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s;
            backdrop-filter: blur(4px);
        }
        .cart-overlay.open { opacity: 1; pointer-events: all; }
        .cart-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cart-header h3 {
            font-family: var(--ff-title);
            font-size: 1.4rem;
            letter-spacing: 2px;
        }
        .cart-header h3 em {
            font-family: var(--ff-body);
            font-size: 0.7rem;
            color: var(--dim);
            font-style: normal;
            font-weight: 400;
            letter-spacing: 1px;
            margin-left: 0.5rem;
        }
        .cart-close {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: var(--dim);
            transition: all 0.2s;
            font-size: 0.85rem;
        }
        .cart-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
        .cart-items {
            flex: 1; overflow-y: auto; padding: 1.5rem;
        }
        .cart-empty {
            text-align: center; padding: 3rem 1rem;
        }
        .cart-empty i { font-size: 3rem; color: rgba(214,40,40,0.2); margin-bottom: 1rem; display: block; }
        .cart-empty p { color: var(--dim); font-size: 0.85rem; }
        .cart-item {
            display: flex; gap: 1rem; padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .cart-item-img {
            width: 60px; height: 60px; border-radius: 10px;
            background: #0d1117; display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; overflow: hidden; border: 1px solid var(--border);
        }
        .cart-item-img i { font-size: 1.3rem; color: rgba(214,40,40,0.4); }
        .cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-name { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.2rem; }
        .cart-item-price { font-size: 0.85rem; color: var(--red); font-weight: 700; margin-bottom: 0.5rem; }
        .cart-item-remove {
            background: none; border: none; color: var(--dim);
            cursor: pointer; font-size: 0.75rem; padding: 0; transition: color 0.2s;
            align-self: flex-start; margin-top: 2px;
        }
        .cart-item-remove:hover { color: var(--red); }
        .qty-stepper {
            display: flex; align-items: center; gap: 0.7rem;
        }
        .qty-btn {
            width: 26px; height: 26px; border-radius: 50%;
            border: 1px solid var(--border); background: rgba(255,255,255,0.05);
            color: #fff; display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 0.65rem; padding: 0; flex-shrink: 0;
            transition: all 0.2s;
        }
        .qty-btn:hover { border-color: var(--red); color: var(--red); background: rgba(214,40,40,0.08); }
        .qty-btn.qty-trash { color: var(--red); border-color: rgba(214,40,40,0.25); }
        .qty-btn.qty-trash:hover { background: var(--red); color: #fff; border-color: var(--red); }
        .qty-value { min-width: 18px; text-align: center; font-size: 0.85rem; font-weight: 700; color: #fff; }
        .cart-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border);
        }
        .cart-total {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 1rem;
        }
        .cart-total span:first-child { color: var(--dim); font-size: 0.85rem; }
        .cart-total span:last-child { font-family: var(--ff-title); font-size: 1.5rem; color: #fff; }
        .btn-checkout {
            width: 100%;
            background: var(--red);
            color: #fff;
            border: none;
            padding: 1rem;
            border-radius: 40px;
            font-family: var(--ff-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(214,40,40,0.3);
        }
        .btn-checkout:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(214,40,40,0.5); }
        .checkout-note {
            text-align: center; margin-top: 0.8rem;
            font-size: 0.7rem; color: var(--dim);
        }
        .cart-trigger {
            position: relative;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            color: #fff;
            width: 42px; height: 42px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 1rem; transition: all 0.25s;
        }
        .cart-trigger:hover { border-color: var(--red); color: var(--red); background: rgba(214,40,40,0.08); }
        .cart-count {
            position: absolute; top: -4px; right: -4px;
            background: var(--red); color: #fff;
            width: 18px; height: 18px; border-radius: 50%;
            font-size: 0.6rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            display: none;
        }
        @media (max-width: 600px) {
            .cart-panel { width: 100%; right: -100%; }
            .cart-panel.open { right: 0; }
        }