/* ==========================================================================
   LAZERMAKS - High-Tech Industrial Laser Theme Stylesheet
   Supports Dual Theme: Dark (Default) & Light Mode Switcher
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Dark Theme (Default) */
    --color-bg-dark: #090d16;
    --color-bg-card: #111726;
    --color-bg-card-hover: #182033;
    --color-surface: #1e293b;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(255, 42, 75, 0.3);
    
    --color-primary: #ff2a4b;
    --color-primary-hover: #e01b3c;
    --color-primary-glow: rgba(255, 42, 75, 0.4);
    
    --color-accent-cyan: #00f0ff;
    --color-accent-gold: #ffb703;
    
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(17, 23, 38, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-laser: 0 0 25px rgba(255, 42, 75, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --color-bg-dark: #f8fafc;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f1f5f9;
    --color-bg-topbar: #070a12;
    --color-bg-navbar: #0f172a;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --color-border-glow: rgba(230, 57, 70, 0.3);
    
    --color-primary: #d90429;
    --color-primary-hover: #ef233c;
    --color-primary-glow: rgba(217, 4, 41, 0.25);
    
    --color-accent-cyan: #0284c7;
    --color-accent-gold: #d97706;
    
    --color-text-main: #0f172a;
    --color-text-muted: #475569;
    --color-text-dim: #64748b;

    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
}

[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4 {
    color: #0f172a;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-text-main) 0%, var(--color-text-muted) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .text-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #d90429 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-laser { color: var(--color-primary); }
.text-cyan { color: var(--color-accent-cyan); }

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
    background: linear-gradient(135deg, #ef4444 0%, var(--color-primary) 100%);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--color-border);
    color: var(--color-text-main);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-laser {
    background: rgba(255, 42, 75, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(255, 42, 75, 0.3);
}

.badge-cyan {
    background: rgba(2, 132, 199, 0.15);
    color: var(--color-accent-cyan);
    border: 1px solid rgba(2, 132, 199, 0.3);
}

.badge-secondhand {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Header & Navigation */
.topbar {
    background: #0f172a;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-info a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-info a:hover { color: var(--color-primary); }

.topbar-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.topbar-social a:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* Main Navbar - Premium Dark Navy Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.logo img {
    max-height: 55px;
    height: 55px;
    width: auto;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: left center;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), #990011);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--color-primary-glow);
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item { position: relative; }

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #cbd5e1 !important;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-item.active .nav-link { color: #ff2a4b !important; }

/* Theme Switcher Button */
.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--color-primary) !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1 !important;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: rgba(255, 42, 75, 0.15);
    color: var(--color-primary) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fbbf24;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    transform: rotate(20deg) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-main);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section / Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border);
    min-height: 560px;
}

[data-theme="light"] .hero-slider {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.slide-item {
    display: none;
    position: relative;
    padding: 80px 0;
}

.slide-item.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.slide-content { z-index: 2; }

.slide-title {
    font-size: 3.2rem;
    margin: 16px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.slide-image-wrapper {
    position: relative;
    text-align: center;
}

.slide-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    max-height: 400px;
    object-fit: cover;
    margin: 0 auto;
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Category Grid Section */
.section { padding: 80px 0; }

.section-darker {
    background: rgba(0, 0, 0, 0.03);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

[data-theme="light"] .section-darker {
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.category-card:hover {
    transform: translateY(-6px);
    background: var(--color-bg-card-hover);
    border-color: var(--color-primary);
}

.category-img {
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.category-card:hover .category-img { transform: scale(1.06); }

.category-title { font-size: 1.25rem; margin-bottom: 10px; }
.category-desc { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 20px; }

/* Product Card Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-image-box {
    position: relative;
    background: rgba(0, 0, 0, 0.04);
    padding: 24px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

[data-theme="light"] .product-image-box { background: #f8fafc; }

.product-thumb {
    max-height: 190px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-thumb { transform: scale(1.08); }

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-title a:hover { color: var(--color-primary); }

.product-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* Feature Showcase Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.feature-box:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-card-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-title { font-size: 1.25rem; margin-bottom: 10px; }
.feature-desc { font-size: 0.92rem; color: var(--color-text-muted); }

/* Counter Section */
.counter-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 45px 30px;
    box-shadow: var(--shadow-subtle);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label { font-size: 1rem; color: var(--color-text-muted); font-weight: 500; }

/* References Logo Grid */
.ref-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ref-item {
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.ref-item:hover { transform: scale(1.08); box-shadow: var(--shadow-subtle); }
.ref-item img { max-height: 42px; max-width: 100%; object-fit: contain; }

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-container {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 550px;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-container { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-close:hover { color: var(--color-primary); }

/* Forms & Inputs */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 12px var(--color-primary-glow);
}

textarea.form-control { resize: vertical; min-height: 100px; }

/* Footer */
.footer {
    background: #090d16;
    border-top: 1px solid var(--color-border);
    padding: 70px 0 30px 0;
    color: #94a3b8;
    font-size: 0.92rem;
}

[data-theme="light"] .footer {
    background: #0f172a;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title { color: #ffffff; font-size: 1.15rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--color-primary); padding-left: 5px; }

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Floating Actions (Clean Non-Overlapping Stack) */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.btn-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-float-wa {
    background: #25d366 !important;
}

.btn-float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.btn-float-quote {
    background: #ff2a4b !important;
}

.btn-float-quote:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--color-primary-glow);
}

/* Mobile Navigation Toggle Button */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle i {
    color: #ffffff !important;
}

/* Responsive Breakpoints & Mobile Drawer */
@media (max-width: 992px) {
    .slide-grid { grid-template-columns: 1fr; text-align: center; }
    .slide-title { font-size: 1.8rem; }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: #0f172a;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 16px;
        transition: var(--transition);
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
        z-index: 99999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 0 15px;
        width: 100%;
    }

    .mobile-toggle { display: flex !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar {
        font-size: 0.78rem;
        padding: 6px 0;
        background: #070a12;
    }
    
    .topbar-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .topbar-tagline, .topbar-social {
        display: none !important;
    }

    .topbar-info {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
    }

    .topbar-info a {
        white-space: nowrap;
        color: #cbd5e1 !important;
    }

    .navbar {
        padding: 8px 0;
        background: #0f172a;
    }

    .logo img {
        max-height: 42px;
        height: 42px;
        transform: scale(1.15);
        transform-origin: left center;
    }

    .logo {
        font-size: 1.15rem;
        gap: 4px;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .nav-actions {
        gap: 6px;
        flex-shrink: 0;
    }

    .nav-btn-text {
        display: none !important;
    }

    .btn-open-quote {
        padding: 7px 10px;
        font-size: 0.82rem;
        border-radius: 6px;
    }

    .theme-toggle-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .slide-title { font-size: 1.45rem; line-height: 1.35; margin-bottom: 12px; }
    .slide-subtitle { font-size: 0.88rem; margin-bottom: 16px; }
    .slide-actions { display: flex; flex-direction: column; gap: 10px; }
    .slide-actions .btn { width: 100%; justify-content: center; }
    .slide-item { padding: 24px 0; }
    
    .section { padding: 40px 0; }
    .section-title { font-size: 1.45rem; }
    .floating-actions { bottom: 16px; right: 14px; gap: 10px; }
    .btn-float { width: 44px; height: 44px; font-size: 1.25rem; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
}

/* ========================================================================== 
   2026 Visual Refinement
   ========================================================================== */

:root {
    --color-bg-dark: #080f1d;
    --color-bg-card: #0f192b;
    --color-bg-card-hover: #14213a;
    --color-primary: #ef1236;
    --color-primary-hover: #d5092a;
    --color-primary-glow: rgba(239, 18, 54, 0.28);
    --color-border: rgba(148, 163, 184, 0.16);
    --color-text-main: #f6f8fc;
    --color-text-muted: #a9b5c8;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --shadow-subtle: 0 16px 40px rgba(2, 8, 23, 0.16);
}

[data-theme="light"] {
    --color-bg-dark: #f5f8fc;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #ffffff;
    --color-primary: #df0b2f;
    --color-primary-hover: #c40727;
    --color-border: #dce4ee;
    --color-text-main: #111b2f;
    --color-text-muted: #53627a;
    --shadow-subtle: 0 18px 46px rgba(15, 23, 42, 0.08);
}

body {
    background-image: radial-gradient(circle at 50% -10%, rgba(239, 18, 54, 0.04), transparent 28rem);
}

.container { max-width: 1280px; padding-left: 28px; padding-right: 28px; }

.btn {
    min-height: 46px;
    border-radius: 11px;
    letter-spacing: -0.01em;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f2123a 0%, #c90828 100%);
    box-shadow: 0 12px 26px rgba(214, 11, 43, 0.23);
}

.btn-primary:hover { box-shadow: 0 16px 34px rgba(214, 11, 43, 0.32); }
.btn-outline { background: transparent; border-color: rgba(100, 116, 139, 0.26); }

.topbar {
    min-height: 38px;
    padding: 5px 0;
    background: #091224;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.topbar-social a { width: 26px; height: 26px; background: rgba(255, 255, 255, 0.08); }

.navbar {
    padding: 10px 0;
    background: rgba(9, 18, 36, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 35px rgba(2, 8, 23, 0.2);
    backdrop-filter: blur(18px);
}

.nav-wrapper { min-height: 70px; gap: 26px; }
.logo { min-width: 205px; }
.logo img {
    width: 190px;
    height: 66px;
    max-height: 66px;
    object-fit: contain;
    transform: scale(1.62);
    transform-origin: left center;
}

.nav-menu { gap: 27px; }
.nav-link { font-size: 0.92rem; padding: 14px 0; position: relative; }
.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
}

.nav-link-highlight { color: #f5b83d !important; }
.nav-actions { gap: 12px; }
.nav-actions > .btn { padding-inline: 21px; }
.theme-toggle-btn { border-radius: 11px; width: 42px; height: 42px; }

.dropdown-menu { top: calc(100% + 8px); width: 260px; padding: 12px; }

.hero-slider {
    min-height: 600px;
    isolation: isolate;
    background:
        radial-gradient(circle at 76% 36%, rgba(239, 18, 54, 0.08), transparent 23rem),
        linear-gradient(135deg, #f8fafc 0%, #eef3f8 55%, #e9eff6 100%);
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(100, 116, 139, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 116, 139, 0.09) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, transparent, black 45%, transparent);
}

[data-theme="dark"] .hero-slider {
    background:
        radial-gradient(circle at 76% 36%, rgba(239, 18, 54, 0.14), transparent 24rem),
        linear-gradient(135deg, #091224 0%, #0b1528 58%, #0c192d 100%);
}

.slide-item { padding: 76px 0 92px; }
.slide-grid { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 68px; }
.slide-content { max-width: 610px; }
.badge-laser { padding: 7px 13px; background: rgba(239, 18, 54, 0.08); }

.slide-title {
    max-width: 660px;
    margin: 18px 0 20px;
    font-size: clamp(2.75rem, 4vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.slide-subtitle { max-width: 600px; margin-bottom: 28px; font-size: 1.08rem; line-height: 1.7; }
.slide-btns { gap: 12px; }
.slide-btns .btn-lg { padding: 15px 24px; font-size: 1rem; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 24px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; color: var(--color-text-muted); font-size: 0.82rem; font-weight: 600; }
.hero-proof i { color: var(--color-primary); }

.slide-image-wrapper { padding: 22px 0; }
.slide-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 3% -3% 8% 7%;
    z-index: -1;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(226, 232, 240, 0.72));
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    transform: rotate(2deg);
}

[data-theme="dark"] .slide-image-wrapper::before { background: linear-gradient(145deg, #15243c, #0d182a); }
.slide-img { width: 100%; max-height: none; aspect-ratio: 2.15 / 1; object-fit: cover; object-position: right center; border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.75); box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18); }

.image-assurance {
    position: absolute;
    left: 22px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #142039;
    box-shadow: 0 15px 36px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
    font-size: 0.84rem;
}

.image-assurance i { color: var(--color-primary); font-size: 1.3rem; }
.image-assurance strong { display: block; font-family: var(--font-heading); font-size: 1rem; }
.slider-controls { right: max(96px, calc((100vw - 1280px) / 2 + 28px)); bottom: 28px; }
.slider-btn { background: rgba(255,255,255,.88); color: #111b2f; box-shadow: 0 8px 24px rgba(15,23,42,.1); }

.trust-strip { position: relative; z-index: 2; background: #ffffff; border-bottom: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05); }
[data-theme="dark"] .trust-strip { background: #0b1528; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-grid > div { display: flex; align-items: center; gap: 13px; padding: 23px 22px; border-right: 1px solid var(--color-border); }
.trust-strip-grid > div:first-child { padding-left: 0; }
.trust-strip-grid > div:last-child { border-right: 0; }
.trust-strip-grid i { color: var(--color-primary); font-size: 1.28rem; }
.trust-strip-grid span { display: flex; flex-direction: column; line-height: 1.35; }
.trust-strip-grid strong { font-family: var(--font-heading); color: var(--color-text-main); font-size: .92rem; }
.trust-strip-grid small { color: var(--color-text-muted); font-size: .76rem; }

.section { padding: 92px 0; }
.section-header { margin-bottom: 44px; }
.section-subtitle { letter-spacing: 2.4px; }
.section-title { font-size: clamp(2rem, 3vw, 2.75rem); letter-spacing: -0.035em; }
.section-desc { line-height: 1.75; }

.category-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { padding: 18px 18px 22px; text-align: left; border-radius: 20px; }
.category-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--color-primary), transparent); opacity: 0; transition: var(--transition); }
.category-card:hover::before { opacity: 1; }
.category-card:hover { transform: translateY(-7px); box-shadow: 0 24px 52px rgba(15, 23, 42, 0.13); }
.category-img { width: 100%; height: 148px; margin: 0 0 20px; padding: 8px; object-fit: contain; border-radius: 14px; background: #f5f7fa; }
.category-title { font-size: 1.1rem; }
.category-desc { min-height: 45px; line-height: 1.55; }
.category-card .btn { padding-left: 0; border: 0; background: none; min-height: auto; color: var(--color-primary); }

.product-grid { gap: 22px; }
.product-card { border-radius: 20px; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14); }
.product-image-box { height: 250px; }
.product-body { padding: 25px; }
.product-footer { gap: 14px; }

.feature-box { padding: 30px; border-radius: 20px; }
.feature-box::after { content: ''; position: absolute; right: 22px; top: 22px; width: 34px; height: 1px; background: var(--color-primary); opacity: .4; }
.counter-box { overflow: hidden; position: relative; background: linear-gradient(135deg, #0b1528, #13223b); border: 0; color: #fff; }
.counter-box::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; right: -120px; top: -190px; background: rgba(239, 18, 54, .13); filter: blur(8px); }
.counter-label { color: #b8c3d5; }

.consultation-section { padding-top: 0; }
.consultation-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 28px; padding: 38px 42px; overflow: hidden; position: relative; border-radius: 24px; background: linear-gradient(125deg, #091327 0%, #12233e 70%, #231529 100%); box-shadow: 0 24px 60px rgba(2, 8, 23, .22); }
.consultation-card::after { content: ''; position: absolute; width: 280px; height: 280px; right: -90px; top: -170px; border-radius: 50%; background: rgba(239, 18, 54, .2); filter: blur(8px); }
.consultation-icon { width: 68px; height: 68px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 18px; background: rgba(239, 18, 54, .14); border: 1px solid rgba(255,255,255,.1); color: #ff3d5e; font-size: 1.8rem; }
.consultation-copy { position: relative; z-index: 1; }
.consultation-copy .section-subtitle { margin-bottom: 7px; }
.consultation-copy h2 { color: #fff !important; font-size: clamp(1.5rem, 2.4vw, 2.15rem); letter-spacing: -.025em; margin-bottom: 7px; }
.consultation-copy p { color: #b8c3d5; max-width: 700px; }
.consultation-actions { display: flex; flex-direction: column; gap: 9px; position: relative; z-index: 1; }
.consultation-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.18); }

.ref-item { filter: grayscale(1); opacity: .72; }
.ref-item:hover { filter: grayscale(0); opacity: 1; }
.references-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(239, 18, 54, .12), transparent 24rem),
        radial-gradient(circle at 88% 90%, rgba(2, 132, 199, .1), transparent 25rem),
        #091326 !important;
    border: 0;
}
.references-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .14;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 30%, transparent);
}
.references-section .section-header { max-width: 820px; margin-bottom: 42px; }
.references-section .section-title { color: #fff !important; }
.references-section .section-desc { color: #9eabc0; }
.references-section .ref-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.references-section .ref-item {
    width: 100%;
    height: 118px;
    padding: 18px 15px 13px;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    filter: grayscale(1);
    opacity: .88;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 34px rgba(2,8,23,.18);
}
.references-section .ref-item::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--color-primary), #ff607b); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.references-section .ref-item:hover { transform: translateY(-5px); filter: grayscale(0); opacity: 1; box-shadow: 0 20px 42px rgba(2,8,23,.3); }
.references-section .ref-item:hover::before { transform: scaleX(1); }
.references-section .ref-item img { width: 100%; max-width: 118px; height: 48px; max-height: 48px; object-fit: contain; }
.ref-name { color: #536178; font-family: var(--font-heading); font-size: .73rem; font-weight: 600; line-height: 1; white-space: nowrap; }
.footer { padding-top: 74px; }
.footer .logo img { width: 180px; height: 62px; }
.nav-scrim { display: none; }
.mobile-nav-brand, .mobile-nav-support, .mobile-nav-label, .mobile-nav-icon, .mobile-nav-copy small { display: none; }
.mobile-nav-copy { display: contents; }
.mobile-nav-copy strong { font: inherit; }

/* Contact page */
.contact-page { padding-top: 68px; background: radial-gradient(circle at 50% 0, rgba(239,18,54,.045), transparent 30rem); }
.contact-heading { margin-bottom: 48px; }
.contact-heading .section-desc { max-width: 720px; margin-inline: auto; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 26px; align-items: stretch; margin-bottom: 74px; }
.contact-info-panel, .contact-form-card { border-radius: 24px; }
.contact-info-panel { position: relative; overflow: hidden; padding: 38px; background: linear-gradient(145deg, #091326 0%, #10213c 72%, #1b1830 100%); color: #fff; box-shadow: 0 24px 60px rgba(2,8,23,.2); }
.contact-info-panel::before { content: ''; position: absolute; width: 260px; height: 260px; right: -120px; top: -140px; border-radius: 50%; background: rgba(239,18,54,.18); filter: blur(5px); }
.contact-kicker { display: block; color: #ff4c69; font-size: .75rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 9px; }
.contact-info-panel h2 { color: #fff !important; font-size: 2rem; letter-spacing: -.03em; margin-bottom: 10px; }
.contact-intro { max-width: 510px; color: #aebace; font-size: .93rem; line-height: 1.7; margin-bottom: 28px; }
.contact-methods { display: grid; gap: 9px; }
.contact-method { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.045); }
a.contact-method:hover { transform: translateX(4px); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.075); }
.contact-method-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; font-size: 1.15rem; }
.contact-method-icon.is-phone { color: #ff4966; background: rgba(239,18,54,.14); }
.contact-method-icon.is-whatsapp { color: #45df80; background: rgba(37,211,102,.12); }
.contact-method-icon.is-email { color: #4abaf1; background: rgba(2,132,199,.14); }
.contact-method-icon.is-location { color: #ffbf47; background: rgba(245,158,11,.13); }
.contact-method > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.contact-method small { color: #96a4b9; font-size: .74rem; }
.contact-method strong { color: #fff; font-size: .94rem; line-height: 1.4; overflow-wrap: anywhere; }
.contact-method-address strong { font-size: .8rem; font-weight: 500; color: #d5dce8; }
.contact-method-arrow { color: #67758b; font-size: .72rem; margin-right: 4px; }
.contact-availability { display: flex; align-items: center; gap: 11px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.availability-dot { width: 10px; height: 10px; border-radius: 50%; background: #35d679; box-shadow: 0 0 0 6px rgba(53,214,121,.12); }
.contact-availability > span:last-child { display: flex; flex-direction: column; }
.contact-availability strong { color: #fff; font-size: .82rem; }
.contact-availability small { color: #8291a8; font-size: .72rem; }

.contact-form-card { padding: 38px; border: 1px solid var(--color-border); background: var(--color-bg-card); box-shadow: var(--shadow-subtle); }
.contact-form-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.contact-form-icon { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: rgba(239,18,54,.1); color: var(--color-primary); font-size: 1.15rem; }
.contact-form-heading div > span { color: var(--color-primary); font-size: .7rem; font-weight: 800; letter-spacing: 1.7px; }
.contact-form-heading h2 { font-size: 1.65rem; letter-spacing: -.025em; }
.contact-form-intro { color: var(--color-text-muted); font-size: .88rem; margin: 14px 0 24px; }
.contact-form-card .form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-card .form-label { font-size: .8rem; margin-bottom: 7px; }
.contact-form-card .form-control { min-height: 48px; background: rgba(148,163,184,.07); border-color: var(--color-border); }
.contact-form-card textarea.form-control { min-height: 112px; }
.contact-submit { width: 100%; min-height: 52px; margin-top: 2px; }
.form-privacy { display: flex; justify-content: center; align-items: center; gap: 7px; color: var(--color-text-dim); font-size: .72rem; margin-top: 13px; text-align: center; }

.contact-map-card { overflow: hidden; border: 1px solid var(--color-border); border-radius: 24px; background: var(--color-bg-card); box-shadow: var(--shadow-subtle); }
.contact-map-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 30px; }
.contact-map-heading .section-subtitle { margin-bottom: 4px; font-size: .72rem; }
.contact-map-heading h2 { font-size: 1.65rem; letter-spacing: -.02em; }
.map-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 999px; color: var(--color-text-muted); background: rgba(148,163,184,.09); border: 1px solid var(--color-border); font-size: .8rem; font-weight: 600; }
.map-badge i { color: var(--color-primary); }
.contact-map-frame { height: 380px; border-top: 1px solid var(--color-border); }
.contact-map-frame iframe { display: block; }

@media (max-width: 1180px) {
    .nav-menu { gap: 18px; }
    .nav-link { font-size: .86rem; }
    .logo { min-width: 170px; }
    .logo img { width: 165px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .references-section .ref-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
    .nav-wrapper { min-height: 58px; }
    .nav-menu {
        top: 0;
        left: 0;
        width: min(82vw, 320px);
        height: calc(100dvh - 38px);
        padding: 22px 20px 24px;
        z-index: 100001;
        background: #081225;
        box-shadow: 24px 0 60px rgba(2, 8, 23, .42);
        transform: translateX(-105%);
        transition: transform .28s cubic-bezier(.22, 1, .36, 1);
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,.18) transparent;
    }
    .nav-menu.active { left: 0; transform: translateX(0); }
    .mobile-nav-brand { display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 54px 18px 2px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.09); }
    .mobile-nav-brand img { display: block; width: 168px; height: 54px; max-height: 54px; object-fit: contain; transform: scale(1.38); transform-origin: left center; }
    .mobile-nav-brand-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--color-primary), #a70722); box-shadow: 0 8px 20px rgba(239,18,54,.25); }
    .mobile-nav-brand > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
    .mobile-nav-brand strong { color: #fff; font-family: var(--font-heading); font-size: .94rem; letter-spacing: .04em; }
    .mobile-nav-brand small { color: #75849b; font-size: .65rem; }
    .mobile-nav-label { display: block; padding: 4px 10px 7px; color: #526078; font-size: .62rem; font-weight: 800; letter-spacing: 2px; }
    .nav-menu .nav-item { width: 100%; }
    .nav-menu .nav-link { display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; gap: 12px; width: 100%; min-height: 58px; padding: 8px 10px; border: 1px solid transparent; border-radius: 13px; color: #d1d9e6 !important; }
    .nav-menu .nav-link:hover { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.06); }
    .nav-menu .nav-item.active .nav-link { color: #fff !important; border-color: rgba(239,18,54,.18); background: linear-gradient(90deg, rgba(239,18,54,.13), rgba(239,18,54,.035)); }
    .nav-menu .nav-item.active .nav-link::after { display: none; }
    .mobile-nav-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: #8795aa; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.055); font-size: .9rem; }
    .nav-item.active .mobile-nav-icon { color: #ff3d5d; background: rgba(239,18,54,.13); border-color: rgba(239,18,54,.16); box-shadow: 0 7px 18px rgba(239,18,54,.09); }
    .mobile-nav-copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
    .mobile-nav-copy strong { color: inherit; font-family: var(--font-heading); font-size: .84rem; font-weight: 700; }
    .mobile-nav-copy small { display: block; margin-top: 2px; color: #67758b; font-size: .64rem; font-weight: 500; }
    .nav-link-highlight .mobile-nav-icon { color: #f8b936; background: rgba(245,158,11,.1); }
    .nav-link-highlight .mobile-nav-copy strong { color: #f4be52; }
    .nav-menu .nav-chevron { margin-left: auto; transform: rotate(-90deg); opacity: .45; }
    .nav-menu .dropdown-menu { display: none; }
    .mobile-nav-support { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; margin-top: auto; padding: 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
    .mobile-support-copy { display: flex; flex-direction: column; min-width: 0; }
    .mobile-support-copy span { color: #6f7e94; font-size: .59rem; }
    .mobile-support-copy span i { color: #32d779; margin-right: 4px; font-size: .45rem; filter: drop-shadow(0 0 5px rgba(50,215,121,.6)); }
    .mobile-support-copy strong { color: #fff; font-family: var(--font-heading); font-size: .78rem; margin-top: 3px; }
    .mobile-support-actions { display: flex; gap: 6px; }
    .mobile-support-actions a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: #c8d1df; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.07); font-size: .76rem; }
    .mobile-support-actions a:nth-child(2) { color: #47df80; }
    .mobile-support-actions a:last-child { color: #fff; background: var(--color-primary); border-color: var(--color-primary); box-shadow: 0 7px 16px rgba(239,18,54,.22); }
    .nav-scrim { position: fixed; inset: 0; z-index: 999; background: rgba(2, 8, 23, .72); opacity: 0; visibility: hidden; display: block; transition: opacity .22s ease, visibility .22s ease; }
    .nav-scrim.active { opacity: 1; visibility: visible; }
    .mobile-toggle { position: relative; z-index: 100002; }
    body.nav-open { overflow: hidden; }
    body.nav-open .floating-actions { opacity: 0; visibility: hidden; pointer-events: none; }
    body.nav-open .mobile-toggle { position: fixed; top: 14px; left: calc(min(82vw, 320px) - 54px); background: rgba(255,255,255,.08) !important; }
    .slide-grid { grid-template-columns: 1fr; gap: 36px; }
    .slide-content { max-width: 760px; margin-inline: auto; }
    .slide-title { max-width: 760px; }
    .slide-image-wrapper { max-width: 760px; margin-inline: auto; }
    .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip-grid > div:nth-child(2) { border-right: 0; }
    .trust-strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .consultation-card { grid-template-columns: auto 1fr; }
    .consultation-actions { grid-column: 2; flex-direction: row; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .topbar-info { justify-content: center; gap: 20px; }
    .topbar-info a:last-child { display: none; }
    .logo { min-width: 0; }
    .logo img { width: 126px; height: 48px; transform: scale(1.38); transform-origin: left center; }
    .navbar { padding-block: 6px; }
    .nav-actions > .btn { width: 38px; height: 38px; min-height: 38px; padding: 0; }
    .theme-toggle-btn, .mobile-toggle { width: 38px; height: 38px; }
    .hero-slider { min-height: 0; }
    .slide-item { padding: 48px 0 72px; }
    .slide-title { font-size: clamp(2.15rem, 10vw, 3rem); line-height: 1.04; }
    .slide-subtitle { font-size: .98rem; }
    .slide-btns { flex-direction: column; }
    .slide-btns .btn { width: 100%; }
    .hero-proof { justify-content: center; }
    .slide-image-wrapper { padding-top: 6px; }
    .slide-img { aspect-ratio: 1.6 / 1; }
    .image-assurance { left: 12px; }
    .slider-controls { right: 18px; bottom: 18px; }
    .trust-strip-grid { grid-template-columns: 1fr; padding-block: 8px; }
    .trust-strip-grid > div { border-right: 0; border-bottom: 1px solid var(--color-border); padding: 15px 0; }
    .trust-strip-grid > div:nth-child(2) { border-bottom: 1px solid var(--color-border); }
    .trust-strip-grid > div:last-child { border-bottom: 0; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 34px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card { display: grid; grid-template-columns: 110px 1fr; column-gap: 18px; align-items: center; }
    .category-img { grid-row: 1 / span 3; width: 110px; height: 110px; margin: 0; }
    .category-title, .category-desc { margin-bottom: 6px; }
    .category-desc { min-height: 0; }
    .consultation-card { grid-template-columns: 1fr; padding: 30px 24px; text-align: center; }
    .consultation-icon { margin-inline: auto; }
    .consultation-actions { grid-column: 1; flex-direction: column; }
    .consultation-actions .btn { width: 100%; }
    .references-section .ref-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .references-section .ref-item { height: 108px; padding-inline: 10px; }
    .contact-page { padding-top: 48px; }
    .contact-heading { margin-bottom: 34px; }
    .contact-layout { margin-bottom: 50px; }
    .contact-info-panel, .contact-form-card { padding: 26px 20px; border-radius: 19px; }
    .contact-info-panel h2 { font-size: 1.65rem; }
    .contact-method { grid-template-columns: 44px minmax(0,1fr) auto; gap: 11px; padding: 10px; }
    .contact-method-icon { width: 42px; height: 42px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-map-heading { align-items: flex-start; flex-direction: column; padding: 22px; }
    .contact-map-frame { height: 320px; }
    .contact-page ~ .floating-actions { display: none; }
    .copyright-bar { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Catalog and inner-page responsive layouts */
.catalog-page, .product-detail-page { padding-top: 54px; }
.catalog-heading { position: relative; margin-bottom: 38px; }
.catalog-heading .section-title { margin-bottom: 8px; }
.catalog-filter-toggle { display: none; }
.catalog-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 34px; align-items: start; }
.catalog-sidebar { min-width: 0; }
.catalog-filter-card { padding: 23px; margin-bottom: 20px; border: 1px solid var(--color-border); border-radius: 18px; background: var(--color-bg-card); box-shadow: var(--shadow-subtle); }
.catalog-categories .footer-links a { display: block; padding: 5px 0; }
.catalog-results { min-width: 0; }
.catalog-results .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }

.page-breadcrumb { margin-bottom: 28px; color: var(--color-text-muted); font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.page-breadcrumb a:hover { color: var(--color-primary); }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 46px; align-items: start; margin-bottom: 68px; }
.product-detail-media { position: sticky; top: 120px; min-height: 430px; display: grid; place-items: center; padding: 30px; border: 1px solid var(--color-border); border-radius: 22px; background: var(--color-bg-card); box-shadow: var(--shadow-subtle); }
.product-detail-media > img { width: 100%; max-height: 380px; object-fit: contain; margin: auto; }
.product-detail-info h1 { font-size: clamp(2rem,3.2vw,2.8rem) !important; letter-spacing: -.035em; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-technical-card { padding: 38px; margin-bottom: 70px; border: 1px solid var(--color-border); border-radius: 22px; background: var(--color-bg-card); box-shadow: var(--shadow-subtle); }
.product-technical-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; }
[data-theme="light"] .product-technical-card h4, [data-theme="light"] .product-technical-card td[style*="color: #fff"] { color: var(--color-text-main) !important; }

.about-page, .blog-page, .blog-detail-page { padding-top: 64px; }
.about-intro-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 50px; align-items: center; margin-bottom: 80px; }
.about-intro-grid img { width: 100%; border-radius: 22px !important; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.blog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.blog-detail-container { max-width: 900px; }
.blog-detail-title { margin-bottom: 24px; font-size: clamp(2.1rem,4vw,3rem); line-height: 1.12; letter-spacing: -.035em; }
.blog-detail-content { padding: 40px; margin-bottom: 46px; border: 1px solid var(--color-border); border-radius: 22px; color: var(--color-text-main); background: var(--color-bg-card); box-shadow: var(--shadow-subtle); font-size: 1.05rem; line-height: 1.85; }
.blog-detail-actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; }

@media (max-width: 1100px) {
    .catalog-layout { grid-template-columns: 240px minmax(0,1fr); gap: 24px; }
    .catalog-results .product-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 768px) {
    .catalog-page, .product-detail-page, .about-page, .blog-page, .blog-detail-page { padding-top: 42px; }
    .catalog-heading { margin-bottom: 22px; }
    .catalog-heading .section-title { font-size: 2rem; }
    .catalog-filter-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 46px; margin-top: 20px; border: 1px solid var(--color-border); border-radius: 12px; color: var(--color-text-main); background: var(--color-bg-card); font-family: var(--font-heading); font-weight: 700; }
    .catalog-layout { display: block; }
    .catalog-sidebar { display: none; margin-bottom: 20px; }
    .catalog-sidebar.active { display: block; animation: fadeIn .22s ease; }
    .catalog-filter-card { padding: 18px; margin-bottom: 12px; box-shadow: none; }
    .catalog-categories .footer-links { display: grid; grid-template-columns: 1fr; }
    .catalog-categories .footer-links a { padding: 8px 0; }
    .catalog-results .product-grid { grid-template-columns: minmax(0,1fr); gap: 18px; }
    .catalog-results .product-card { width: 100%; min-width: 0; }
    .catalog-results .product-image-box { height: 220px; }
    .catalog-results .product-footer { align-items: flex-start; flex-direction: column; }
    .catalog-results .product-footer > div:last-child { width: 100%; }
    .catalog-results .product-footer .btn-primary { flex: 1; }

    .product-detail-grid, .product-technical-grid, .about-intro-grid { grid-template-columns: 1fr; gap: 26px; }
    .product-detail-grid { margin-bottom: 42px; }
    .product-detail-media { position: relative; top: auto; min-height: 300px; padding: 20px; }
    .product-detail-media > img { max-height: 270px; }
    .product-detail-info h1 { font-size: 1.9rem !important; }
    .product-detail-actions { flex-direction: column; }
    .product-detail-actions .btn { width: 100%; }
    .product-technical-card { padding: 24px 18px; margin-bottom: 48px; }
    .product-technical-card h3 { font-size: 1.25rem !important; }
    .product-technical-grid table { table-layout: fixed; }
    .product-technical-grid td { overflow-wrap: anywhere; }

    .about-intro-grid { margin-bottom: 54px; }
    .about-intro-grid > div:first-child { order: 2; }
    .about-actions { flex-direction: column; }
    .about-actions .btn { width: 100%; }
    .blog-grid { grid-template-columns: minmax(0,1fr); }
    .blog-detail-title { font-size: 2rem; }
    .blog-detail-content { padding: 24px 19px; font-size: .96rem; }
    .blog-detail-actions { flex-direction: column; }
    .blog-detail-actions .btn { width: 100%; }
    .floating-actions { display: none; }
}
