/* ============================================
   AVIZOO TECH - ULTRA MODERN REDESIGN 2026
   Premium, Animated, Aesthetic Design
   ============================================ */

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DESIGN SYSTEM - ULTRA 2026 */
:root {
    /* ELEVATED Green Palette - Vibrant & Bold */
    --green-950: #051a00;
    --green-900: #0d3300;
    --green-800: #1a4d00;
    --green-700: #2a6b15;
    --green-600: #388a23;
    --green-500: #4caf35;
    --green-400: #66cc4d;
    --green-300: #85e066;
    --green-200: #a8f084;
    --green-100: #d0ffa8;

    /* Sophisticated Neutrals with Depth */
    --black: #000000;
    --gray-950: #0d0d0d;
    --gray-900: #1a1a1a;
    --gray-800: #262626;
    --gray-700: #333333;
    --gray-600: #4d4d4d;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;

    /* Semantic Colors - Light Mode (Default) */
    --primary: var(--green-600);
    --primary-dark: var(--green-800);
    --primary-light: var(--green-400);
    --primary-glow: rgba(76, 175, 53, 0.25);
    --text: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-muted: var(--gray-600);
    --text-light: var(--gray-500);
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --bg-elevated: var(--white);
    --border: var(--gray-200);
    --border-strong: var(--gray-300);

    /* Gradient Presets - BOLD */
    --gradient-primary: linear-gradient(135deg, #2a6b15 0%, #4caf35 50%, #66cc4d 100%);
    --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #262626 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(76, 175, 53, 0.15) 0%, transparent 70%);
    --gradient-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);

    /* Premium Spacing - DRAMATIC */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;
    --space-5xl: 192px;

    /* Modern Typography - BOLD */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --text-xs: 13px;
    --text-sm: 15px;
    --text-base: 17px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 30px;
    --text-3xl: 38px;
    --text-4xl: 48px;
    --text-5xl: 64px;
    --text-6xl: 80px;
    --text-7xl: 96px;

    /* Premium Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;
}

/* DARK MODE VARIABLES - DRAMATIC & INTENSE */
[data-theme="dark"] {
    /* Vibrant Green with Strong Glow */
    --primary: #4caf35;
    --primary-dark: #66cc4d;
    --primary-light: #85e066;
    --primary-glow: rgba(76, 175, 53, 0.6);

    /* Pure White Text on Black */
    --text: #ffffff;
    --text-secondary: #f5f5f5;
    --text-muted: #e5e5e5;
    --text-light: #d4d4d4;

    /* Pure Black Backgrounds */
    --bg: #000000;
    --bg-alt: #0a0a0a;
    --bg-elevated: #121212;

    /* Dark Borders */
    --border: #1a1a1a;
    --border-strong: #262626;

    /* Intense Glow Effects */
    --gradient-glow: radial-gradient(circle at center, rgba(76, 175, 53, 0.4) 0%, transparent 70%);
    --gradient-primary: linear-gradient(135deg, #4caf35 0%, #66cc4d 50%, #85e066 100%);

    /* Dark Mode Shadows with Green Glow */
    --shadow-sm: 0 2px 12px rgba(76, 175, 53, 0.15);
    --shadow-md: 0 8px 24px rgba(76, 175, 53, 0.2);
    --shadow-lg: 0 16px 40px rgba(76, 175, 53, 0.25);
    --shadow-xl: 0 24px 64px rgba(76, 175, 53, 0.3);
    --shadow-2xl: 0 40px 96px rgba(76, 175, 53, 0.4);
}

/* Dark Mode Specific Glow Effects */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] .section-title,
[data-theme="dark"] .hero-title,
[data-theme="dark"] .page-title,
[data-theme="dark"] .contact-info-title,
[data-theme="dark"] .diagram-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.5),
        0 0 40px rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .nav-link.active {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(76, 175, 53, 0.6),
        0 0 30px rgba(76, 175, 53, 0.4);
}

[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn {
    background: linear-gradient(135deg, #4caf35 0%, #66cc4d 100%) !important;
    box-shadow: 0 8px 32px rgba(76, 175, 53, 0.4) !important;
    color: #000000 !important;
    font-weight: 700;
}

[data-theme="dark"] .primary-text,
[data-theme="dark"] .benefit-badge,
[data-theme="dark"] .hato-product-name {
    background: #0a0a0a !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.3);
}

/* All Cards and Containers - Dark Mode */
[data-theme="dark"] .domain-card,
[data-theme="dark"] .product-preview-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .service-box,
[data-theme="dark"] .contact-item,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .feature-box,
[data-theme="dark"] .contact-form-container,
[data-theme="dark"] .hato-product-card,
[data-theme="dark"] .advantage-card,
[data-theme="dark"] .partner-box,
[data-theme="dark"] .integration-feature,
[data-theme="dark"] .control-item,
[data-theme="dark"] .pillar-item,
[data-theme="dark"] .product-image-container,
[data-theme="dark"] .hotraco-hero-image,
[data-theme="dark"] .hato-hero-image,
[data-theme="dark"] .contact-welcome-hero {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.1) !important;
}

[data-theme="dark"] .domain-card:hover,
[data-theme="dark"] .product-preview-card:hover,
[data-theme="dark"] .why-card:hover,
[data-theme="dark"] .contact-item:hover,
[data-theme="dark"] .feature-item:hover,
[data-theme="dark"] .hato-product-card:hover,
[data-theme="dark"] .advantage-card:hover,
[data-theme="dark"] .pillar-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.4) !important;
    transform: translateY(-8px);
}

/* Why Card & Service Box Titles - Dark Mode */
[data-theme="dark"] .why-card h3,
[data-theme="dark"] .service-box h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.6),
        0 0 40px rgba(76, 175, 53, 0.4);
}

[data-theme="dark"] .why-card p,
[data-theme="dark"] .service-box p {
    color: #e5e5e5 !important;
}

[data-theme="dark"] .about-lead,
[data-theme="dark"] .about-intro p {
    color: #e5e5e5 !important;
}

/* About-intro fără background în dark mode pentru a moșteni de la body */
[data-theme="dark"] .about-intro {
    background: transparent !important;
}

/* Partner Box Elements - Dark Mode */
[data-theme="dark"] .partner-name {
    color: var(--primary) !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.6),
        0 0 40px rgba(76, 175, 53, 0.4);
}

[data-theme="dark"] .partner-tagline {
    color: #e5e5e5 !important;
}

[data-theme="dark"] .partner-description {
    color: #e5e5e5 !important;
}

[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn:hover {
    box-shadow: 0 12px 48px rgba(76, 175, 53, 0.6) !important;
}

/* Hero and Header Dark Mode */
[data-theme="dark"] .hero,
[data-theme="dark"] .page-header,
[data-theme="dark"] .auto-intro,
[data-theme="dark"] .hotraco-section,
[data-theme="dark"] .hato-section,
[data-theme="dark"] .integration-section,
[data-theme="dark"] .why-us,
[data-theme="dark"] .services-overview,
[data-theme="dark"] .partners-full,
[data-theme="dark"] .contact-main {
    background: #000000 !important;
}

[data-theme="dark"] .bg-light {
    background: #0a0a0a !important;
}

[data-theme="dark"] .header {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(76, 175, 53, 0.1);
}

/* Remove visible separators/borders in header dark mode */
[data-theme="dark"] .logo,
[data-theme="dark"] .logo::before,
[data-theme="dark"] .logo::after,
[data-theme="dark"] .nav::before,
[data-theme="dark"] .header-content::before,
[data-theme="dark"] .header-content::after {
    border-color: transparent !important;
}

[data-theme="dark"] .logo::after {
    background: var(--gradient-primary);
}

/* Nav toggle button - dark mode */
[data-theme="dark"] .nav-toggle span {
    background: #ffffff;
}

/* Footer Dark Mode */
[data-theme="dark"] .footer {
    background: #000000 !important;
    border-top: 1px solid #1a1a1a;
}

[data-theme="dark"] .cta-contact,
[data-theme="dark"] .bg-dark {
    background: #000000 !important;
}

/* Forms Dark Mode */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    color: #ffffff !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #666666 !important;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(76, 175, 53, 0.2),
        0 0 20px rgba(76, 175, 53, 0.3) !important;
}

/* Green Text Elements with Strong Glow */
[data-theme="dark"] .contact-info-title,
[data-theme="dark"] .feature-item h4,
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .logo-text,
[data-theme="dark"] .integration-number {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(76, 175, 53, 0.6);
}

/* Mega Menu Dark Mode */
[data-theme="dark"] .mega-menu {
    background: rgba(10, 10, 10, 0.98);
    border-color: #1a1a1a;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.2);
}

[data-theme="dark"] .mega-menu::before {
    border-bottom-color: rgba(10, 10, 10, 0.98);
}

[data-theme="dark"] .mega-menu {
    background: rgba(10, 10, 10, 0.98);
    border-color: rgba(76, 175, 53, 0.2);
}

[data-theme="dark"] .mega-menu-level-2::before,
[data-theme="dark"] .mega-menu-level-3::before {
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--primary) 80%, 
        transparent 100%);
}

[data-theme="dark"] .mega-menu-item {
    color: var(--text-primary);
}

[data-theme="dark"] .mega-menu-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .mega-menu-item:hover::after {
    background: linear-gradient(135deg, 
        rgba(76, 175, 53, 0.08) 0%, 
        rgba(76, 175, 53, 0.02) 100%);
}

[data-theme="dark"] .mega-menu-item.active {
    background: linear-gradient(135deg, 
        rgba(76, 175, 53, 0.18) 0%, 
        rgba(76, 175, 53, 0.06) 100%);
    color: var(--primary);
    box-shadow: 0 2px 12px rgba(76, 175, 53, 0.25);
}

[data-theme="dark"] .mega-menu-check {
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .mega-menu-item:hover .mega-menu-check {
    border-color: var(--primary);
}

[data-theme="dark"] .mega-menu-item.active .mega-menu-check {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(76, 175, 53, 0.5), 
                0 0 20px rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .mega-menu-arrow {
    color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .mega-menu-item:hover .mega-menu-arrow {
    color: var(--primary);
}

[data-theme="dark"] .mega-menu-product::before {
    color: var(--primary);
}

[data-theme="dark"] .mega-menu-product:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(76, 175, 53, 0.3);
}

/* Dark Mode - Product Table */
[data-theme="dark"] .product-table-wrapper {
    background: #0a0a0a;
}

[data-theme="dark"] .product-table {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

[data-theme="dark"] .product-table th {
    background: #121212 !important;
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(76, 175, 53, 0.4);
    border-color: #1a1a1a !important;
}

[data-theme="dark"] .product-table td {
    border-color: #1a1a1a !important;
    color: #ffffff !important;
    background: #0a0a0a !important;
}

[data-theme="dark"] .product-table tbody tr:hover {
    background: #121212 !important;
}

/* Icons with Glow */
[data-theme="dark"] .domain-icon,
[data-theme="dark"] .contact-item-icon,
[data-theme="dark"] .feature-icon,
[data-theme="dark"] .pillar-icon,
[data-theme="dark"] .control-icon,
[data-theme="dark"] .why-icon,
[data-theme="dark"] .service-icon {
    background: linear-gradient(135deg, #4caf35 0%, #66cc4d 100%) !important;
    box-shadow: 0 8px 32px rgba(76, 175, 53, 0.5),
        0 0 40px rgba(76, 175, 53, 0.4) !important;
}

/* Badges and Tags */
[data-theme="dark"] .benefit-badge,
[data-theme="dark"] .product-benefit {
    background: #0a0a0a !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.3);
}

/* Product Images */
[data-theme="dark"] .product-image,
[data-theme="dark"] .hotraco-image,
[data-theme="dark"] .hato-image,
[data-theme="dark"] .hero-image-main img,
[data-theme="dark"] .hero-image-secondary img {
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.2);
}

/* Contact Welcome Image - Dark Mode */
[data-theme="dark"] .contact-welcome-image {
    content: url('images/contact-welcome-dark.png');
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.2);
}

/* Navigation Subnav */
[data-theme="dark"] .products-subnav {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

[data-theme="dark"] .subnav-link {
    background: #121212 !important;
    border-color: #1a1a1a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .subnav-link:hover,
[data-theme="dark"] .subnav-link.active {
    background: var(--primary) !important;
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

/* Hotraco and Hato Specific */
[data-theme="dark"] .hotraco-diagram,
[data-theme="dark"] .hotraco-advantages,
[data-theme="dark"] .hato-benefits {
    background: #0a0a0a;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid #1a1a1a;
}

[data-theme="dark"] .control-areas {
    background: transparent;
}

[data-theme="dark"] .advantages-grid-auto,
[data-theme="dark"] .hato-benefits-grid {
    gap: var(--space-lg);
}

/* HATO Benefits Grid - Dark Mode */
[data-theme="dark"] .hato-benefits-grid {
    background: transparent;
}

[data-theme="dark"] .hato-benefit-item {
    background: #0a0a0a !important;
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.1) !important;
}

[data-theme="dark"] .hato-benefit-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.4) !important;
    transform: translateY(-10px);
}

[data-theme="dark"] .hato-benefit-item svg {
    color: var(--primary) !important;
    filter: drop-shadow(0 0 15px rgba(76, 175, 53, 0.6));
}

[data-theme="dark"] .hato-benefit-item:hover svg {
    filter: drop-shadow(0 0 25px rgba(76, 175, 53, 0.8));
    transform: scale(1.3) rotate(-10deg);
}

[data-theme="dark"] .hato-benefit-item span {
    color: #ffffff !important;
}

/* Partner Logos */
[data-theme="dark"] .partner-logos-section {
    background: #0a0a0a;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.1);
}

[data-theme="dark"] .partner-logo-large {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    color: var(--primary) !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.6),
        0 0 40px rgba(76, 175, 53, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.15) !important;
}

[data-theme="dark"] .partner-logo-large:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.5) !important;
    text-shadow: 0 0 30px rgba(76, 175, 53, 0.8),
        0 0 50px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .partner-by {
    color: #e5e5e5 !important;
    opacity: 0.9;
}

/* Text Colors */
[data-theme="dark"] p,
[data-theme="dark"] .section-desc,
[data-theme="dark"] .page-subtitle,
[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] .intro-text,
[data-theme="dark"] .form-subtitle {
    color: #e5e5e5 !important;
}

/* Links */
[data-theme="dark"] a {
    color: var(--primary);
}

[data-theme="dark"] a:hover {
    color: #66cc4d;
    text-shadow: 0 0 10px rgba(76, 175, 53, 0.5);
}

/* Logo in Dark Mode */
[data-theme="dark"] .logo-image {
    content: url('images/logo-avizoo-dark.png');
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(76, 175, 53, 0.3));
}

[data-theme="dark"] .footer-logo-image {
    content: url('images/logo-avizoo-dark.png');
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(76, 175, 53, 0.3));
}

/* Hero Visual Section - Dark Mode */
[data-theme="dark"] .hero-visual {
    background: #000000 !important;
    border-top: 1px solid #1a1a1a;
}

[data-theme="dark"] .hero-image-wrapper {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.2);
}

[data-theme="dark"] .hero-main-image {
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.2);
}

[data-theme="dark"] .hero-image-caption p {
    color: #e5e5e5 !important;
}

/* Partners Content - Dark Mode */
[data-theme="dark"] .partners-content {
    background: transparent;
}

[data-theme="dark"] .partner-brand {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.1) !important;
}

[data-theme="dark"] .partner-brand:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.4) !important;
}

[data-theme="dark"] .partner-logo {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(76, 175, 53, 0.6);
}

[data-theme="dark"] .partner-desc {
    color: #e5e5e5 !important;
}

/* Product Ideal For - Dark Mode */
[data-theme="dark"] .product-ideal-for {
    background: #0a0a0a !important;
    border: 1px solid #1a1a1a;
}

[data-theme="dark"] .product-ideal-for h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .product-ideal-for p {
    color: #e5e5e5 !important;
}

/* Advantages Grid - Dark Mode */
[data-theme="dark"] .advantages-grid {
    background: transparent;
}

[data-theme="dark"] .advantage-item {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .advantage-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.4) !important;
}

[data-theme="dark"] .advantage-item svg {
    color: var(--primary) !important;
    filter: drop-shadow(0 0 10px rgba(76, 175, 53, 0.5));
}

[data-theme="dark"] .advantage-item span {
    color: #ffffff !important;
}

/* Systems Grid - Dark Mode */
[data-theme="dark"] .systems-grid {
    background: transparent;
}

[data-theme="dark"] .system-box {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.1) !important;
}

[data-theme="dark"] .system-box:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.4) !important;
}

[data-theme="dark"] .system-box h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .system-features {
    background: transparent;
}

[data-theme="dark"] .system-feature svg {
    color: var(--primary) !important;
    filter: drop-shadow(0 0 10px rgba(76, 175, 53, 0.5));
}

[data-theme="dark"] .system-feature span {
    color: #e5e5e5 !important;
}

/* Applications Section - Dark Mode */
[data-theme="dark"] .applications-section {
    background: transparent;
}

[data-theme="dark"] .applications-section h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .applications-list {
    background: transparent;
}

[data-theme="dark"] .application-item {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .application-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.4) !important;
}

/* Silo Features Grid - Dark Mode */
[data-theme="dark"] .silo-features-grid {
    background: transparent;
}

[data-theme="dark"] .silo-feature-box {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(76, 175, 53, 0.1) !important;
}

[data-theme="dark"] .silo-feature-box:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.4) !important;
}

[data-theme="dark"] .silo-feature-box h4 {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .silo-feature-box p {
    color: #e5e5e5 !important;
}

/* Silo Specs & Table - Dark Mode */
[data-theme="dark"] .silo-specs {
    background: transparent;
}

[data-theme="dark"] .silo-specs h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .specs-table-wrapper {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .specs-table {
    background: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

[data-theme="dark"] .specs-table tbody tr {
    background: #0a0a0a !important;
}

[data-theme="dark"] .specs-table tbody tr:hover {
    background: #121212 !important;
}

[data-theme="dark"] .specs-table th {
    background: #121212 !important;
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(76, 175, 53, 0.4);
    border-color: #1a1a1a !important;
}

[data-theme="dark"] .specs-table td {
    background: #0a0a0a !important;
    color: #ffffff !important;
    border-color: #1a1a1a !important;
}

[data-theme="dark"] .spec-label {
    color: #e5e5e5 !important;
    font-weight: 600;
}

[data-theme="dark"] .spec-value {
    color: #ffffff !important;
}

/* Silo Options - Dark Mode */
[data-theme="dark"] .silo-options {
    background: transparent;
}

[data-theme="dark"] .silo-options h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

[data-theme="dark"] .options-list {
    background: transparent;
}

[data-theme="dark"] .options-list li {
    color: #e5e5e5 !important;
    background: #0a0a0a;
    border-left: 3px solid var(--primary);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .options-list li:hover {
    background: #121212;
    box-shadow: 0 4px 16px rgba(76, 175, 53, 0.3);
}

:root {
    /* PREMIUM Shadow System */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
    --shadow-2xl: 0 40px 96px rgba(0, 0, 0, 0.20);
    --shadow-colored: 0 20px 50px rgba(42, 107, 21, 0.25);
    --shadow-colored-strong: 0 30px 70px rgba(42, 107, 21, 0.35);
    --shadow-inner: inset 0 2px 8px rgba(0, 0, 0, 0.06);

    /* ULTRA SMOOTH Animations */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);

    /* Animation Durations */
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;
    --duration-slowest: 800ms;
}

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* BASE STYLES - SMOOTH */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
    position: relative;
    transition: background-color 500ms var(--ease-smooth), color 500ms var(--ease-smooth);
}

/* AMBIENT BACKGROUND GLOW */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(76, 175, 53, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(56, 138, 35, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(42, 107, 21, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: ambientMove 30s ease-in-out infinite alternate;
}

@keyframes ambientMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-5%, 5%) scale(1.05);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(32px, 8vw, 96px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(28px, 6vw, 64px);
    line-height: 1.2;
}

h3 {
    font-size: clamp(24px, 4vw, 48px);
    line-height: 1.25;
}

h4 {
    font-size: clamp(20px, 3.5vw, 36px);
    line-height: 1.3;
}

h5 {
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.4;
}

h6 {
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent any fixed-width elements from causing horizontal scroll */
* {
    max-width: 100%;
}

/* Prevent text from breaking layout on small screens */
.container,
section,
article {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* CONTAINER - WIDER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

/* ============================================
   SCROLL PROGRESS - LUMINOUS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
    overflow: hidden;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 120ms linear;
    will-change: transform;
    backface-visibility: hidden;
    contain: layout paint;
}

.scroll-progress::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    box-shadow:
        0 0 24px rgba(76, 175, 53, 0.55),
        0 4px 18px rgba(76, 175, 53, 0.28);
}

/* ============================================
   HEADER - NEXT-GEN GLASSMORPHISM
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transition: all 500ms var(--ease-expo);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow-lg);
    padding: 4px 0;
}

.header.scrolled::before {
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    transition: padding 400ms var(--ease-smooth);
}

.header.scrolled .header-content {
    padding: var(--space-sm) 0;
}

/* LOGO - ANIMATED */
.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    transition: transform 500ms var(--ease-expo);
}

.logo-image {
    height: 130px;
    width: auto;
    transition: all 500ms var(--ease-expo);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(90, 144, 48, 0.3));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 700ms var(--ease-expo);
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo:hover::after {
    width: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text);
    line-height: 1;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.25em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* NAVIGATION - ULTRA MODERN */
.nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 12px 0;
    position: relative;
    transition: all 400ms var(--ease-smooth);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    width: 4px;
    height: 0;
    background: var(--primary);
    transform: translateY(-50%);
    transition: height 400ms var(--ease-expo);
    border-radius: var(--radius-full);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 600ms var(--ease-expo);
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-link:hover {
    color: var(--text);
    transform: translateX(6px);
}

.nav-link:hover::before {
    height: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 800;
}

.nav-link.active::after {
    width: 100%;
}

/* ============================================
   MEGA MENU - PRODUCTS NAVIGATION
   ============================================ */

/* Mega Menu Wrapper */
.mega-menu-wrapper {
    position: relative;
    display: inline-block;
}

/* Mega Menu Panel - Hierarchical Design */
.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: auto;
    min-width: 700px;
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 250ms var(--ease-expo),
        visibility 250ms var(--ease-expo),
        transform 250ms var(--ease-expo);
    z-index: 1000;
}

/* Mega Menu Open State */
.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Content - Hierarchical Layout */
.mega-menu-content {
    display: flex;
    gap: var(--space-xs);
    align-items: flex-start;
}

.mega-menu-level {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    min-width: 180px;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    transition: all 300ms var(--ease-expo);
    position: relative;
}

/* Visual separator between levels */
.mega-menu-level-2::before,
.mega-menu-level-3::before {
    content: '';
    position: absolute;
    left: -4px;
    top: var(--space-md);
    bottom: var(--space-md);
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--primary) 80%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 300ms var(--ease-expo);
}

.mega-menu-level-2.active::before,
.mega-menu-level-3.active::before {
    opacity: 0.3;
}

/* Level visibility - hidden by default */
.mega-menu-level-2,
.mega-menu-level-3 {
    display: none;
    opacity: 0;
    transform: translateX(-10px);
}

/* Show levels when active */
.mega-menu-level-2.active,
.mega-menu-level-3.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 350ms var(--ease-expo);
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    60% {
        transform: translateX(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mega Menu Item Styling */
.mega-menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 300ms var(--ease-expo);
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

/* Hover effect with gradient background */
.mega-menu-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(90, 144, 48, 0.06) 0%, 
        rgba(90, 144, 48, 0.02) 100%);
    opacity: 0;
    transition: opacity 300ms var(--ease-expo);
    z-index: -1;
    border-radius: inherit;
}

.mega-menu-item:hover {
    border-color: rgba(90, 144, 48, 0.25);
    transform: translateX(4px);
}

.mega-menu-item:hover::after {
    opacity: 1;
}

.mega-menu-item.active {
    background: linear-gradient(135deg, 
        rgba(90, 144, 48, 0.12) 0%, 
        rgba(90, 144, 48, 0.04) 100%);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(90, 144, 48, 0.15);
}

.mega-menu-item.active::after {
    opacity: 0;
}

/* Checkmark icon */
.mega-menu-check {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: transparent;
    background: transparent;
    transition: all 350ms var(--ease-expo);
    flex-shrink: 0;
}

.mega-menu-item:hover .mega-menu-check {
    border-color: var(--primary);
    transform: scale(1.1);
}

.mega-menu-item.active .mega-menu-check {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1) rotate(360deg);
    box-shadow: 0 2px 6px rgba(90, 144, 48, 0.3);
}

/* Arrow indicator */
.mega-menu-arrow {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-tertiary);
    transition: all 250ms var(--ease-expo);
}

.mega-menu-item:hover .mega-menu-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.mega-menu-item.active .mega-menu-arrow {
    color: var(--primary);
}

/* Product items (level 3) - no arrow or checkmark */
.mega-menu-product {
    padding-left: var(--space-lg);
    position: relative;
}

.mega-menu-product::before {
    content: '→';
    position: absolute;
    left: var(--space-md);
    color: var(--primary);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 300ms var(--ease-expo);
}

.mega-menu-product:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-product:hover {
    color: var(--primary);
    padding-left: calc(var(--space-lg) + 4px);
}

/* Mega Menu Arrow Indicator */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================
   
   Mobile Small:  375px - 389px (iPhone SE, older phones)
   Mobile Medium: 390px - 599px (iPhone 12/13/14, most Android)
   Tablet:        600px - 767px (small tablets, large phones landscape)
   Mobile:        768px - 899px (tablets)
   Desktop:       900px+
   
   ============================================ */

/* ============================================
   TABLET & LARGE MOBILE (600px - 767px)
   ============================================ */
@media (max-width: 767px) and (min-width: 600px) {
    /* 2-column grid for cards on tablets */
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .products-preview,
    .why-cards,
    .advantages-grid-auto {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer - 2 columns on tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* ============================================
   MOBILE MEDIUM (390px - 599px)
   ============================================ */
@media (max-width: 599px) and (min-width: 390px) {
    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
    }
    
    /* Slightly larger touch targets */
    .nav-link,
    .mega-menu-item,
    .subnav-link {
        min-height: 48px;
        font-size: 16px;
    }
    
    .btn,
    .cta-button {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ============================================
   MOBILE SMALL (375px - 389px)
   ============================================ */
@media (max-width: 389px) {
    /* Extra compact spacing for very small screens */
    :root {
        --space-5xl: 72px;
        --space-4xl: 64px;
        --space-3xl: 48px;
        --space-2xl: 32px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Smaller hero title on very small screens */
    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    /* Compact logo */
    .logo-image {
        height: 60px;
    }
    
    .footer-logo-image {
        height: 100px;
    }
    
    /* Compact buttons but still touch-friendly */
    .btn,
    .cta-button {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* Smaller nav toggle */
    .nav-toggle {
        width: 44px;
        height: 44px;
    }
    
    .nav-toggle span {
        width: 18px;
    }
    
    /* Compact section titles */
    .section-title {
        font-size: clamp(24px, 7vw, 32px);
    }
    
    .section-subtitle {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    /* Domain cards more compact */
    .domain-card {
        padding: var(--space-lg);
    }
    
    .domain-icon {
        width: 64px;
        height: 64px;
    }
    
    /* Footer compact */
    .footer {
        padding: var(--space-3xl) 0 var(--space-lg);
    }
    
    .footer-content {
        gap: var(--space-lg);
    }
}

/* ============================================
   MEGA MENU - MOBILE RESPONSIVE (ACCORDION STYLE)
   ============================================ */
@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        min-width: unset;
        max-width: 100%;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }
    
    .mega-menu::before {
        display: none;
    }
    
    .mega-menu-wrapper.is-open .mega-menu {
        transform: none;
    }
    
    /* Accordion-style vertical layout */
    .mega-menu-content {
        flex-direction: column;
        gap: 0;
    }
    
    /* Level 1 - Main categories (always visible) */
    .mega-menu-level-1 {
        width: 100%;
        padding: 0;
        gap: var(--space-2xs);
        border-radius: 0;
        background: transparent;
    }
    
    /* Level 2 & 3 - Hidden by default, accordion style */
    .mega-menu-level-2,
    .mega-menu-level-3 {
        display: none;
        width: 100%;
        padding: var(--space-xs) 0 var(--space-xs) var(--space-lg);
        border-left: 2px solid rgba(90, 144, 48, 0.2);
        margin-left: var(--space-sm);
        margin-top: var(--space-2xs);
        gap: var(--space-2xs);
        animation: none;
    }
    
    /* Show active levels (accordion expanded) */
    .mega-menu-level-2.active,
    .mega-menu-level-3.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }
    
    .mega-menu-level-2::before,
    .mega-menu-level-3::before {
        display: none;
    }
    
    /* Touch-friendly items with proper sizing */
    .mega-menu-item {
        padding: var(--space-md) var(--space-md);
        font-size: 16px;
        min-height: 48px; /* iOS touch target minimum */
        border-radius: var(--radius-md);
        gap: var(--space-sm);
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Arrow rotation for accordion state */
    .mega-menu-item .mega-menu-arrow {
        margin-left: auto;
        transition: transform 300ms var(--ease-expo);
    }
    
    .mega-menu-item.active .mega-menu-arrow {
        transform: rotate(90deg);
    }
    
    /* Remove hover transform on mobile (use tap instead) */
    .mega-menu-item:hover {
        transform: none;
    }
    
    .mega-menu-item:active {
        transform: scale(0.98);
        background: rgba(90, 144, 48, 0.1);
    }
    
    /* Product links with better spacing */
    .mega-menu-product {
        padding-left: var(--space-lg);
        min-height: 44px;
    }
    
    .mega-menu-product::before {
        left: var(--space-sm);
    }
}

/* THEME TOGGLE BUTTON - TOUCH OPTIMIZED */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; /* Touch-friendly */
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 400ms var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--primary);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: all 400ms var(--ease-smooth);
}

.theme-toggle .sun-icon {
    position: absolute;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ============================================
   HERO - CINEMATIC & IMMERSIVE
   ============================================ */
.hero {
    margin-top: 88px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(76, 175, 53, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(56, 138, 35, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Primary Glow Orb */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse at center,
            rgba(76, 175, 53, 0.12) 0%,
            rgba(56, 138, 35, 0.08) 40%,
            transparent 70%);
    animation: heroGlowPrimary 25s ease-in-out infinite alternate;
    filter: blur(80px);
}

@keyframes heroGlowPrimary {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(-10%, 8%) scale(1.15) rotate(5deg);
        opacity: 0.7;
    }
}

/* Secondary Floating Orb */
.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(42, 107, 21, 0.12) 0%,
            rgba(56, 138, 35, 0.06) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: floatSecondary 20s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes floatSecondary {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, -40px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-5xl) 0;
}

/* HERO TITLE - ULTRA DRAMATIC */
.hero-title {
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.045em;
    line-height: 1.05;
    background: linear-gradient(135deg,
            #0d0d0d 0%,
            #262626 30%,
            #2a6b15 70%,
            #4caf35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation:
        fadeInUp 1s var(--ease-expo) 0.2s both,
        gradientShift 8s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(76, 175, 53, 0.15);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-muted);
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s var(--ease-expo) 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO PILLARS - SPECTACULAR CARDS */
.hero-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s var(--ease-expo) both;
}

.pillar-item:nth-child(1) {
    animation-delay: 0.6s;
}

.pillar-item:nth-child(2) {
    animation-delay: 0.75s;
}

.pillar-item:nth-child(3) {
    animation-delay: 0.9s;
}

.pillar-item:nth-child(4) {
    animation-delay: 1.05s;
}

/* Gradient Overlay */
.pillar-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

/* Glow Effect */
.pillar-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 800ms var(--ease-expo);
}

.pillar-item:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
    border-color: transparent;
}

.pillar-item:hover::before {
    opacity: 0.08;
}

.pillar-item:hover::after {
    width: 300px;
    height: 300px;
}

.pillar-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 700ms var(--ease-expo);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.pillar-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.pillar-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.8;
    transition: transform 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.pillar-item:hover .pillar-icon {
    color: var(--white);
    transform: rotate(12deg) scale(1.25);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.pillar-item:hover .pillar-icon::before {
    opacity: 1;
}

.pillar-item:hover .pillar-icon svg {
    transform: scale(1.15) rotate(-12deg);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.pillar-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTIONS - DRAMATIC SPACING
   ============================================ */
.section-padding {
    padding: var(--space-5xl) 0;
}

.section-padding-small {
    padding: var(--space-4xl) 0;
}

.bg-light {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(76, 175, 53, 0.03) 0%, transparent 60%),
        var(--gray-50);
    position: relative;
}

.bg-dark {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(76, 175, 53, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--gray-950), var(--gray-900));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(76, 175, 53, 0.5) 50%,
            transparent);
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

/* SECTION HEADERS - ULTRA BOLD */
.section-title {
    font-size: clamp(42px, 5.5vw, 78px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    text-align: center;
    letter-spacing: -0.045em;
    line-height: 1.08;
    background: linear-gradient(135deg, #2a6b15 0%, #4caf35 50%, #66cc4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Minimal fix: spans created by JS should inherit the gradient and clip to text
   so splitting the title into .letter-reveal spans doesn't break the gradient. */
.section-title .letter-reveal {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient text only on white/light backgrounds */
.hero .section-title,
.domains .section-title,
.products-teaser .section-title {
    background: linear-gradient(135deg, #2a6b15 0%, #4caf35 50%, #66cc4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Strong color for bg-light sections */
.bg-light .section-title {
    background: linear-gradient(135deg, #2a6b15 0%, #4caf35 50%, #66cc4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--text-muted);
    text-align: center;
    max-width: 860px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
    font-weight: 400;
}

/* Better visibility on light backgrounds */
.bg-light .section-subtitle,
.bg-light .section-desc,
.bg-light p {
    color: var(--gray-700);
}

/* ANIMATED ELEMENTS */
.fade-in-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
    transition-delay: var(--stagger-delay, 0ms);
}

.fade-in-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS - SPECTACULAR
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-display);
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all 500ms var(--ease-expo);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 700ms var(--ease-expo), height 700ms var(--ease-expo);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
    transform-origin: center center; /* FIX #1: Force center origin */
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-colored-strong);
    transform-origin: center center; /* FIX #1: Maintain center origin on hover */
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-colored);
}

.btn-secondary:hover::after {
    opacity: 1;
}

/* ============================================
   DOMAIN CARDS - ASYMMETRIC & MODERN
   ============================================ */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    align-items: start;
    grid-auto-rows: minmax(0, auto);
}

.domain-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: transform 700ms var(--ease-expo), box-shadow 700ms var(--ease-expo), border-color 700ms var(--ease-expo);
    transform: translateY(0) translateZ(0) scale(1) !important;
    will-change: transform;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Accent Bar */
.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 700ms var(--ease-expo);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Radial Glow */
.domain-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 800ms var(--ease-expo);
    pointer-events: none;
}

.domain-card:hover {
    transform: translateY(-20px) translateZ(20px) scale(1.03) !important;
    box-shadow: var(--shadow-colored);
    border-color: rgba(76, 175, 53, 0.3);
}

.domain-card:hover::before {
    height: 100%;
}

.domain-card:hover::after {
    width: 500px;
    height: 500px;
}

.domain-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    transition: all 700ms var(--ease-expo);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.domain-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.domain-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.8;
    transition: transform 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.domain-card:hover .domain-icon {
    color: var(--white);
    transform: rotate(-15deg) scale(1.3);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.domain-card:hover .domain-icon::before {
    opacity: 1;
}

.domain-card:hover .domain-icon svg {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.4));
}

.domain-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.domain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

.domain-list li {
    font-size: 16px;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
    transition: all 400ms var(--ease-smooth);
}

.domain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 500ms var(--ease-spring);
    box-shadow: 0 0 8px rgba(76, 175, 53, 0.3);
}

.domain-card:hover .domain-list li {
    color: var(--text);
    transform: translateX(4px);
}

.domain-card:hover .domain-list li::before {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.6);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

/* ============================================
   PRODUCT PREVIEW CARDS - SPECTACULAR
   ============================================ */
.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.product-preview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient Background */
.product-preview-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(76, 175, 53, 0.10) 0%, rgba(76, 175, 53, 0.02) 100%);
    transition: height 700ms var(--ease-expo);
}

/* Bottom Accent Line */
.product-preview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--gradient-primary);
    transition: width 700ms var(--ease-expo);
    box-shadow: 0 0 25px var(--primary-glow);
}

.product-preview-card:hover {
    transform: translateY(-24px) rotate(2deg) scale(1.03);
    box-shadow: var(--shadow-colored-strong);
    border-color: rgba(76, 175, 53, 0.4);
}

.product-preview-card:hover::before {
    height: 100%;
}

.product-preview-card:hover::after {
    width: 100%;
}

.product-preview-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.product-preview-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   PARTNERS SECTION - PREMIUM
   ============================================ */
.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-brand {
    text-align: center;
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.partner-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(76, 175, 53, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.partner-brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 700ms var(--ease-expo);
}

.partner-brand:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: var(--shadow-colored-strong);
    border-color: rgba(76, 175, 53, 0.3);
}

.partner-brand:hover::before {
    opacity: 1;
}

.partner-brand:hover::after {
    transform: scaleX(1);
}

.partner-logo {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    transition: all 600ms var(--ease-expo);
}

.partner-brand:hover .partner-logo {
    transform: scale(1.1);
    text-shadow: 0 0 40px rgba(76, 175, 53, 0.3);
}

.partner-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA SECTION - DRAMATIC
   ============================================ */
/* ============================================
   CTA SECTION - ULTRA DRAMATIC
   ============================================ */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(76, 175, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(56, 138, 35, 0.1) 0%, transparent 50%);
    animation: ctaGlow 20s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.cta-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER - PREMIUM GRADIENT
   ============================================ */
.footer {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(42, 107, 21, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--gray-950), var(--gray-900));
    color: var(--white);
    padding: var(--space-5xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 30px rgba(76, 175, 53, 0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo-image {
    height: 260px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 2px 12px rgba(90, 144, 48, 0.4));
    transition: all 500ms var(--ease-smooth);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 4px 16px rgba(90, 144, 48, 0.6));
}

.footer-logo .logo-text {
    font-size: 30px;
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtext {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    letter-spacing: 0.03em;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 400ms var(--ease-smooth);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 600ms var(--ease-expo);
    box-shadow: 0 0 10px rgba(76, 175, 53, 0.4);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(10px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.footer-schedule {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

/* ============================================
   PAGE HEADER - CINEMATIC
   ============================================ */
.page-header {
    margin-top: 88px;
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(76, 175, 53, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSecondary 18s ease-in-out infinite;
    filter: blur(60px);
}

.page-title {
    font-size: clamp(46px, 6.5vw, 80px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.045em;
    line-height: 1.08;
    color: var(--gray-950);
}

.page-subtitle {
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 840px;
    margin: 0 auto;
    font-weight: 500;
}

/* ============================================
   PRODUCTS PAGE - SUBNAV ULTRA MODERN
   ============================================ */
.product-image-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 700ms var(--ease-expo);
    margin-bottom: 24px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.product-image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.image-caption {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin-top: var(--space-md);
    font-style: italic;
    font-weight: 500;
}

.products-subnav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.subnav-link {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    transition: all 600ms var(--ease-expo);
    position: relative;
    font-family: var(--font-display);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    overflow: hidden;
}

.subnav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: var(--radius-full);
    transition: opacity 600ms var(--ease-smooth);
    z-index: -1;
}

.subnav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 700ms var(--ease-expo), height 700ms var(--ease-expo);
}

.subnav-link:hover {
    color: var(--white);
    transform: translateY(-6px) scale(1.05);
    border-color: transparent;
    box-shadow: var(--shadow-colored);
}

.subnav-link:hover::before {
    opacity: 1;
}

.subnav-link:hover::after {
    width: 300px;
    height: 300px;
}

.product-section {
    scroll-margin-top: 140px;
}

.product-intro {
    font-size: clamp(17px, 1.9vw, 22px);
    color: var(--text-muted);
    max-width: 960px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.75;
    text-align: center;
    font-weight: 400;
}

/* ============================================
   TABLES - ULTRA PREMIUM
   ============================================ */
.product-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--space-3xl);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-table thead {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
}

.product-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5) 50%,
            transparent);
}

.product-table th {
    padding: 26px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    vertical-align: middle;
    white-space: nowrap;
}

.product-table th:last-child {
    border-right: none;
}

.product-table td {
    padding: 22px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.product-table td:last-child {
    border-right: none;
}

.product-table td:first-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    background: linear-gradient(to right, rgba(76, 175, 53, 0.04) 0%, transparent 100%);
}

.product-table tbody tr:last-child td {
    border-bottom: none;
}

.product-table tbody tr {
    transition: all 500ms var(--ease-expo);
    position: relative;
}

.product-table tbody tr::before {
    display: none;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(76, 175, 53, 0.08), transparent);
    transition: width 600ms var(--ease-expo);
}

.product-table tbody tr:hover {
    background: rgba(76, 175, 53, 0.03);
    transform: scale(1.005);
    box-shadow: 0 4px 20px rgba(76, 175, 53, 0.08);
}

.product-table tbody tr:hover::before {
    width: 100%;
}

.table-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.table-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(90, 144, 48, 0.4);
}

/* ============================================
   PRODUCT FEATURES - MODERN GRID
   ============================================ */
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.product-features .feature-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all 500ms var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.product-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, #6ea84e 100%);
    transition: height 500ms var(--ease-smooth);
}

.product-features .feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-features .feature-item:hover::before {
    height: 100%;
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    position: relative;
    padding-left: var(--space-lg);
}

.feature-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.feature-item p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: var(--space-lg);
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.product-features-grid .feature-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 500ms var(--ease-smooth);
}

.product-features-grid .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #6ea84e 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

/* Grid hero pentru poze mari produse */
.product-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    max-width: 1400px;
}

.hero-image-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 700ms var(--ease-smooth);
}

.hero-image-main:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.hero-image-secondary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 700ms var(--ease-smooth);
}

.hero-image-secondary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.hero-image-main img,
.hero-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-main img {
    min-height: 600px;
}

.hero-image-secondary img {
    min-height: 290px;
}

.feature-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left,
            rgba(90, 144, 48, 0.05) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.product-ideal-for {
    background: linear-gradient(135deg,
            var(--gray-50) 0%,
            var(--white) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
}

.product-ideal-for h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.product-ideal-for p {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   IMAGES - SPECTACULAR GALLERIES
   ============================================ */
.hero-visual {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image-caption {
    margin-top: var(--space-xl);
    text-align: center;
}

.hero-image-caption p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-bottom: var(--space-3xl);
    align-items: start;
}

.product-image-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: 0;
    margin-bottom: var(--space-3xl);
}

/* Single image gallery - center on page */
.product-gallery:has(.product-gallery-item:only-child) {
    display: flex;
    justify-content: center;
}

.product-gallery:has(.product-gallery-item:only-child) .product-gallery-item {
    max-width: 1400px;
    width: 100%;
}

.product-gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    background: var(--white);
    aspect-ratio: 4/3;
}

/* Special layout pentru galeria cu 3 items (Hrănire și Adăpare) */
.gallery-3-items .product-gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 50%;
}

.product-gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(61, 107, 31, 0.3);
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.product-gallery-item:hover img {
    transform: scale(1.1);
}

/* DETAIL IMAGES GRID - CLEAN LAYOUT: 1 HERO + 2x2 GRID */
.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: 24px;
    margin-bottom: var(--space-3xl);
    max-width: 1300px;
}

/* ============================================
   FEATURED IMAGE SECTION - 1447x1087px SPOTLIGHT
   ============================================ */
.product-featured-image {
    margin: var(--space-4xl) 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    transition: all 700ms var(--ease-expo);
    position: relative;
    max-width: 1447px; /* Default width from standard image */
    margin-left: auto;
    margin-right: auto;
}

/* Custom size for hranire-linie-principala-featured.jpg (1496x1032px) */
.product-featured-image.size-1496x1032 {
    max-width: 1496px;
}

.product-featured-image.size-1496x1032 img {
    aspect-ratio: 1496 / 1032; /* ~1.45:1 aspect ratio */
}

/* Custom size for adapare-linie-featured.jpg (1335x1177px) */
.product-featured-image.size-1335x1177 {
    max-width: 1335px;
}

.product-featured-image.size-1335x1177 img {
    aspect-ratio: 1335 / 1177; /* ~1.13:1 aspect ratio */
}

/* Custom size for ventilatoare (1470x1100px) - LARGE SLOT */
.product-featured-image.size-1470x1100 {
    max-width: 1600px; /* Increased to accommodate large image */
}

.product-featured-image.size-1470x1100 img {
    aspect-ratio: 1470 / 1100; /* ~1.34:1 aspect ratio */
    max-height: none !important; /* Remove height restriction */
    object-fit: contain !important; /* Show full image without cropping */
}

.product-featured-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), 
                0 8px 24px rgba(90, 144, 48, 0.1);
    border-color: rgba(90, 144, 48, 0.3);
}

.product-featured-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1447 / 1087; /* Default exact aspect ratio 4:3 (1447x1087) */
    object-fit: cover;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.product-featured-image:hover img {
    transform: scale(1.03);
}

.featured-image-caption {
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, 
                rgba(90, 144, 48, 0.05) 0%, 
                rgba(90, 144, 48, 0.02) 100%);
    border-top: 2px solid rgba(90, 144, 48, 0.15);
    text-align: center;
    position: relative;
}

.featured-image-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 12px rgba(90, 144, 48, 0.5);
}

.featured-image-caption span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    display: inline-block;
    margin-top: 4px;
}

/* Dark mode support */
[data-theme="dark"] .product-featured-image {
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .product-featured-image:hover {
    border-color: rgba(90, 144, 48, 0.5);
}

[data-theme="dark"] .featured-image-caption {
    background: linear-gradient(135deg, 
                rgba(90, 144, 48, 0.15) 0%, 
                rgba(90, 144, 48, 0.05) 100%);
    border-top-color: rgba(90, 144, 48, 0.3);
}

[data-theme="dark"] .featured-image-caption span {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile responsive - maintain aspect ratio */
@media (max-width: 768px) {
    .product-featured-image,
    .product-featured-image.size-1496x1032,
    .product-featured-image.size-1335x1177 {
        margin: var(--space-2xl) 0;
        border-radius: var(--radius-xl);
        max-width: 100%; /* Full width on mobile */
    }
    
    /* Ventilator slots - keep large even on tablet */
    .product-featured-image.size-1470x1100 {
        margin: var(--space-2xl) 0;
        border-radius: var(--radius-xl);
        max-width: 100%; /* Full width on mobile */
    }
    
    .product-featured-image img,
    .product-featured-image.size-1496x1032 img,
    .product-featured-image.size-1335x1177 img {
        /* Aspect ratio maintained automatically */
        max-height: 600px;
    }
    
    /* Ventilator images - NO height restriction */
    .product-featured-image.size-1470x1100 img {
        max-height: none !important; /* Allow full size */
    }
    
    .featured-image-caption {
        padding: var(--space-md);
    }
    
    .featured-image-caption span {
        font-size: 14px;
    }
}

@media (max-width: 389px) {
    .product-featured-image,
    .product-featured-image.size-1496x1032,
    .product-featured-image.size-1335x1177 {
        margin: var(--space-xl) 0;
    }
    
    .product-featured-image.size-1470x1100 {
        margin: var(--space-xl) 0;
    }
    
    .product-featured-image img,
    .product-featured-image.size-1496x1032 img,
    .product-featured-image.size-1335x1177 img {
        max-height: 400px;
    }
    
    /* Ventilator images - NO height restriction even on mobile */
    .product-featured-image.size-1470x1100 img {
        max-height: none !important;
    }
}


/* Prima imagine hero - full width, aspect ratio natural */
.detail-images-grid .detail-image-item:first-child {
    grid-column: span 2;
}

/* Restul de 4 imagini - grid 2x2 simetric cu aspect ratio pătrat */
.detail-images-grid .detail-image-item:nth-child(2),
.detail-images-grid .detail-image-item:nth-child(3),
.detail-images-grid .detail-image-item:nth-child(4),
.detail-images-grid .detail-image-item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 1/1;
}

/* DETAIL IMAGES GRID UNIFORM - ALL EQUAL 2x2 */
.detail-images-grid-uniform {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: 24px;
    margin-bottom: var(--space-3xl);
    max-width: 1536px;
}

.detail-images-grid-uniform .detail-image-item {
    aspect-ratio: 4/3;
}

.detail-image-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    background: var(--white);
}

.detail-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.detail-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(61, 107, 31, 0.3);
}

.detail-image-item:hover img {
    transform: scale(1.1);
}

.detail-image-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(90, 144, 48, 0.08) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.detail-image-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-16px) scale(1.03);
}

.detail-image-item:hover::before {
    opacity: 1;
}

.detail-image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 700ms var(--ease-expo);
    position: relative;
    z-index: 1;
}

.detail-image-item:hover img {
    transform: scale(1.05);
}

.context-image-section {
    margin: var(--space-3xl) 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.context-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTACT PAGE - PREMIUM FORMS
   ============================================ */

/* Welcome Hero cu Logo */
.contact-welcome-hero {
    text-align: center;
    margin-bottom: var(--space-4xl);
    padding: 0;
    background: var(--white);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.contact-main {
    padding-top: var(--space-2xl);
}

.contact-welcome-image {
    max-width: 950px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 700ms var(--ease-smooth);
}

.contact-welcome-image:hover {
    transform: scale(1.02);
}

/* Grid nou 2 coloane: Info + Form */
.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: sticky;
    top: 100px;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
}

.contact-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 500ms var(--ease-smooth);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, rgba(90, 144, 48, 0.02) 100%);
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, #6ea84e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(90, 144, 48, 0.3);
    transition: all 500ms var(--ease-bounce);
}

.contact-item:hover .contact-item-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(90, 144, 48, 0.5);
}

.contact-item-icon svg {
    width: 28px;
    height: 28px;
}

.contact-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text);
    font-family: var(--font-display);
}

.contact-item-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-item-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 300ms var(--ease-smooth);
}

.contact-item-content a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-xl);
    min-height: 600px; /* FIX #2: Prevent layout shift */
    display: flex;
    flex-direction: column;
}

.contact-form-container h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
}

.form-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    flex: 1; /* FIX #2: Allow form to grow */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    transform-origin: center center; /* FIX #1: Center animations */
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-display);
    transition: color 400ms var(--ease-smooth);
}

.form-group.focused label {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    font-size: 17px;
    font-family: var(--font-body);
    color: var(--text);
    transition: all 500ms var(--ease-smooth);
    background: var(--white);
    min-height: 48px; /* Touch-friendly minimum */
    width: 100%; /* Prevent overflow on mobile */
    transform-origin: center center; /* FIX #1: Center scale animations */
    will-change: transform, border-color; /* FIX: GPU acceleration */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(90, 144, 48, 0.1);
    transform: translateY(-2px);
    transform-origin: center center; /* FIX #1: Maintain center during focus */
}

/* FIX #3: Disable browser native validation animations */
.form-group input:invalid,
.form-group textarea:invalid {
    box-shadow: none; /* Remove browser validation glow */
}

.form-group input:user-invalid,
.form-group textarea:user-invalid {
    box-shadow: none; /* Remove browser validation for touched fields */
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}

.contact-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    min-height: 52px; /* Larger for submit button */
    width: 100%;
    transform-origin: center center; /* FIX #1: Center scale on submit button */
    will-change: transform; /* FIX: Smooth animations */
}

.contact-form .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 500ms var(--ease-smooth);
}

.contact-form .btn:hover svg {
    transform: translateX(4px) rotate(15deg);
}

/* FIX #2: Prevent layout shift from notifications */
.contact-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important; /* Prevent transform when disabled */
}

.contact-form .btn:disabled:hover {
    transform: none !important; /* No hover effect when disabled */
}

/* ============================================
   DESPRE PAGE - ULTRA AESTHETIC REDESIGN
   ============================================ */
.why-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3 */
.why-card:nth-child(1) {
    grid-column: 1 / 3;
}

.why-card:nth-child(2) {
    grid-column: 3 / 5;
}

.why-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Al doilea rând: Box 4 între 1-2, Box 5 între 2-3 */
.why-card:nth-child(4) {
    grid-column: 2 / 4;
}

.why-card:nth-child(5) {
    grid-column: 4 / 6;
}

.why-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl) var(--space-2xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Animated gradient overlay */
.why-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(90, 144, 48, 0.12) 0%,
            rgba(107, 168, 61, 0.08) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
    z-index: 0;
    border-radius: var(--radius-2xl);
}

/* Glow effect on hover */
.why-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(90, 144, 48, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 800ms var(--ease-expo), height 800ms var(--ease-expo);
    border-radius: 50%;
    z-index: 0;
}

.why-card:hover {
    transform: translateY(-24px) scale(1.03);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.2);
    border-color: rgba(90, 144, 48, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    width: 400px;
    height: 400px;
}

/* Modern icon design */
.why-icon {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 50%, var(--green-500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto var(--space-2xl);
    box-shadow: 0 16px 48px rgba(61, 107, 31, 0.35);
    transition: all 800ms var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.why-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all 800ms var(--ease-bounce);
}

.why-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 800ms var(--ease-bounce);
}

.why-card:hover .why-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.5);
}

.why-card:hover .why-icon::before {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.why-card:hover .why-icon svg {
    transform: scale(1.1) rotate(-10deg);
}

.why-card h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--gray-950);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-family: var(--font-display);
}

.why-card p {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin: 0 auto;
    font-weight: 500;
}


/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ============================================ */
@media (max-width: 1024px) {
    .hero-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image-grid {
        grid-template-columns: 1fr;
    }

    .detail-images-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .detail-images-grid .detail-image-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .detail-images-grid .detail-image-item:nth-child(2),
    .detail-images-grid .detail-image-item:nth-child(3),
    .detail-images-grid .detail-image-item:nth-child(4),
    .detail-images-grid .detail-image-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid,
    .contact-grid-new {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

    .contact-welcome-image {
        max-width: 100%;
    }

    .contact-item {
        padding: var(--space-lg);
    }

    .contact-form-container {
        padding: var(--space-2xl);
    }

    .contact-form-container h2 {
        font-size: 28px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header-content {
        flex-wrap: wrap;
        gap: var(--space-sm);
        position: relative;
    }

    /* Hamburger toggle - touch-friendly */
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 48px; /* Touch target minimum */
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: var(--white);
        box-shadow: var(--shadow-sm);
        cursor: pointer;
        margin-left: auto;
        transition: transform 300ms var(--ease-expo), box-shadow 300ms var(--ease-expo);
        z-index: 1001;
    }
    
    .nav-toggle:active {
        transform: scale(0.95);
        box-shadow: var(--shadow-md);
    }

    .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform 250ms ease, opacity 250ms ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile navigation drawer */
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-top: var(--space-sm);
        background: var(--bg);
        border-radius: var(--radius-md);
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: var(--space-xs);
        z-index: 1000;
    }

    .nav.is-open {
        display: flex !important;
    }

    /* Touch-friendly nav links */
    .nav-link {
        width: 100%;
        padding: var(--space-md) 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 16px;
        min-height: 44px; /* iOS minimum touch target */
        display: flex;
        align-items: center;
    }

    .nav-link::before,
    .nav-link::after {
        display: none;
    }
    
    /* Mega menu trigger in mobile nav */
    .mega-menu-wrapper {
        width: 100%;
    }
    
    #megaMenuTrigger {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --space-5xl: 96px;
        --space-4xl: 80px;
        --space-3xl: 64px;
    }

    .container {
        padding: 0 var(--space-md);
        max-width: 100%;
    }

    .header {
        backdrop-filter: blur(18px);
    }

    .header-content {
        gap: var(--space-lg);
    }

    /* Fixed mobile navigation */
    .nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-xl);
        box-shadow: var(--shadow-2xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 500ms var(--ease-expo);
        z-index: 999;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: var(--space-md) 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero section responsive */
    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: calc(var(--space-4xl) + 24px) 0 var(--space-3xl);
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 54px);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.6;
    }

    .hero-pillars {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Domain cards - single column on mobile */
    .domains-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Product cards - single column */
    .products-preview {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .product-gallery {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .product-gallery:has(.product-gallery-item:only-child) .product-gallery-item {
        max-width: 100%;
    }

    /* Product detail images */
    .detail-images-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .detail-images-grid .detail-image-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .detail-images-grid .detail-image-item:nth-child(2),
    .detail-images-grid .detail-image-item:nth-child(3),
    .detail-images-grid .detail-image-item:nth-child(4),
    .detail-images-grid .detail-image-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }

    /* Partners section */
    .partners-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    /* Footer - stack columns vertically */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: left;
    }
    
    /* Footer logo section */
    .footer-logo-image {
        height: 120px;
        margin: 0 auto;
        display: block;
    }
    
    .footer-tagline {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Footer sections with clear separation */
    .footer-section {
        padding: var(--space-lg) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-of-type {
        border-bottom: none;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: var(--space-md);
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    
    .footer-schedule {
        text-align: center;
    }

    /* Products subnav - horizontal scroll */
    .products-subnav {
        gap: var(--space-sm);
        padding: var(--space-md);
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .products-subnav::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    .subnav-link {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 44px;
    }

    /* All grid layouts - single column */
    .why-cards,
    .services-grid,
    .partners-logos,
    .integration-features,
    .hato-benefits-grid,
    .advantages-grid-auto {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .product-features,
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Product hero layout */
    .product-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--space-lg);
    }

    .hero-image-main {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-image-main img {
        min-height: 300px;
        object-fit: cover;
        width: 100%;
        max-width: 100%;
    }

    .hero-image-secondary img {
        min-height: 250px;
        object-fit: cover;
        width: 100%;
        max-width: 100%;
    }

    /* Logo sizing for mobile */
    .logo-image {
        height: 70px;
        width: auto;
    }

    /* Responsive images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Section spacing */
    .section-padding {
        padding: var(--space-4xl) 0;
    }

    .section-padding-small {
        padding: var(--space-3xl) 0;
    }

    .auto-intro.section-padding,
    .hotraco-section.section-padding,
    .hato-section.section-padding,
    .integration-section.section-padding,
    .about-intro.section-padding,
    .why-us.section-padding,
    .services-overview.section-padding,
    .partners-full.section-padding {
        padding: var(--space-2xl) 0;
    }

    /* Typography scaling */
    .section-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: var(--space-lg);
        line-height: 1.2;
    }

    .section-subtitle,
    .page-subtitle,
    .section-desc,
    .integration-desc {
        font-size: 17px;
        line-height: 1.6;
    }

    .page-header {
        padding: 100px 0 var(--space-2xl);
    }

    .page-title {
        font-size: clamp(30px, 8vw, 42px);
    }

    /* Tables */
    .product-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: var(--space-lg) calc(var(--space-md) * -1);
        padding: 0 var(--space-md);
    }

    .product-table {
        min-width: 620px;
    }

    .product-table th,
    .product-table td {
        padding: var(--space-sm) var(--space-md);
        font-size: 14px;
    }

    /* Buttons */
    .btn,
    .cta .btn,
    .contact-form button {
        width: 100%;
        justify-content: center;
        display: inline-flex;
        padding: 18px var(--space-xl);
    }

    /* Contact page */
    .contact-grid,
    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .contact-info {
        position: static;
        gap: var(--space-lg);
    }

    .contact-welcome-image {
        max-width: 100%;
        padding: var(--space-md);
    }

    .contact-item {
        padding: var(--space-lg);
        flex-direction: row;
        gap: var(--space-md);
    }

    .contact-item:hover {
        transform: translateX(4px);
    }

    .contact-form-container {
        padding: var(--space-2xl) var(--space-lg);
    }

    .contact-form-container h2 {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 15px;
    }

    /* Cards & Boxes */
    .domain-card,
    .product-preview-card,
    .why-card,
    .service-box,
    .hato-product-card,
    .advantage-card,
    .partner-box,
    .integration-feature,
    .feature-item {
        padding: var(--space-lg);
    }

    /* Hotraco & Hato sections */
    .hotraco-diagram,
    .hato-products {
        margin-top: var(--space-2xl);
    }

    .control-areas {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .control-item {
        padding: var(--space-lg);
    }

    .hato-products {
        grid-template-columns: 1fr;
    }

    .hotraco-hero-image,
    .hato-hero-image {
        margin: var(--space-2xl) 0;
    }

    /* Partner logos */
    .partner-logo-large {
        font-size: 32px;
        padding: var(--space-2xl);
    }

    .partner-by {
        font-size: 14px;
    }

    /* Integration features */
    .integration-number {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }

    .integration-feature h4 {
        font-size: 18px;
    }

    /* Product images */
    .product-image-container {
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 480px) {
    :root {
        --space-5xl: 80px;
        --space-4xl: 64px;
        --space-3xl: 48px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .logo-image {
        height: 60px;
    }

    .footer-logo-image {
        height: 70px;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 36px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 32px);
    }

    .page-header {
        padding: 90px 0 var(--space-lg);
    }

    .page-title {
        font-size: clamp(26px, 8vw, 36px);
    }

    .hero-image-caption p,
    .contact-item-content p,
    .partner-desc,
    .footer-tagline,
    .footer-contact li,
    .footer-schedule {
        font-size: 15px;
    }

    .btn {
        padding: 16px var(--space-lg);
        font-size: 16px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-item-icon svg {
        width: 24px;
        height: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 16px;
    }

    .contact-welcome-image {
        padding: var(--space-sm);
    }

    .partner-logo-large {
        font-size: 28px;
        padding: var(--space-xl);
    }

    .integration-number {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

    .products-subnav {
        padding: var(--space-sm);
    }

    .subnav-link {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-intro {
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
    text-align: center;
}

/* Technical Diagrams */
.technical-diagram {
    max-width: 1000px;
    margin: 0 auto;
}

.technical-diagram img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    padding: var(--space-xl);
}

.diagram-image {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin: var(--space-3xl) 0;
}

/* Panel Gallery */
.panel-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.panel-gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 700ms var(--ease-expo);
}

.panel-gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.panel-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.panel-gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   END OF ULTRA MODERN REDESIGN
   ============================================ */

/* ============================================
   AUTOMATIZARE PAGE - SPECTACULAR
   ============================================ */
.auto-intro {
    text-align: center;
}

.intro-text {
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--text-muted);
    max-width: 960px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
}

/* Reduce padding pentru toate secțiunile automatizare */
.auto-intro.section-padding,
.hotraco-section.section-padding,
.hato-section.section-padding,
.integration-section.section-padding {
    padding: var(--space-3xl) 0;
}

.partner-logos-section {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.partner-logo-large {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-2xl) var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.partner-logo-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(90, 144, 48, 0.08) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.partner-logo-large:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.partner-logo-large:hover::before {
    opacity: 1;
}

.partner-by {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* HOTRACO HERO IMAGE */
.hotraco-hero-image,
.hato-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: var(--space-4xl) auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hotraco-image,
.hato-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 800ms var(--ease-expo);
}

.hotraco-hero-image:hover .hotraco-image,
.hato-hero-image:hover .hato-image {
    transform: scale(1.02);
}

/* HOTRACO DIAGRAM - SPECTACULAR GRID */
.hotraco-diagram {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
}

.diagram-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
}

.control-areas {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-xl);
}

.control-item {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3, 4 */
.control-item:nth-child(1) {
    grid-column: 1 / 3;
}

.control-item:nth-child(2) {
    grid-column: 3 / 5;
}

.control-item:nth-child(3) {
    grid-column: 5 / 7;
}

.control-item:nth-child(4) {
    grid-column: 7 / 9;
}

/* Al doilea rând: Box 5 centrat între 1-2, Box 6 centrat între 3-4 */
.control-item:nth-child(5) {
    grid-column: 2 / 4;
}

.control-item:nth-child(6) {
    grid-column: 6 / 8;
}

.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.control-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
            rgba(90, 144, 48, 0.1) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.control-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.control-item:hover::before {
    opacity: 1;
}

.control-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(61, 107, 31, 0.3);
    transition: all 700ms var(--ease-bounce);
}

.control-icon svg {
    width: 36px;
    height: 36px;
}

.control-item:hover .control-icon {
    transform: rotate(-15deg) scale(1.2);
    box-shadow: 0 16px 40px rgba(61, 107, 31, 0.5);
}

.control-item span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-display);
}

/* HOTRACO ADVANTAGES - DRAMATIC CARDS */
.hotraco-advantages {
    text-align: center;
}

.hotraco-advantages h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
}

.advantages-grid-auto {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-xl);
}

.advantage-card {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3, 4 */
.advantage-card:nth-child(1) {
    grid-column: 1 / 3;
}

.advantage-card:nth-child(2) {
    grid-column: 3 / 5;
}

.advantage-card:nth-child(3) {
    grid-column: 5 / 7;
}

.advantage-card:nth-child(4) {
    grid-column: 7 / 9;
}

/* Al doilea rând: Box 5 centrat între Box 2 și Box 3 */
.advantage-card:nth-child(5) {
    grid-column: 4 / 6;
}

.advantage-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(90, 144, 48, 0.08) 0%, transparent 100%);
    transition: height 700ms var(--ease-expo);
}

.advantage-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.advantage-card:hover::before {
    height: 100%;
}

.advantage-card svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin: 0 auto var(--space-lg);
    transition: all 600ms var(--ease-bounce);
}

.advantage-card:hover svg {
    transform: scale(1.2) rotate(10deg);
    color: var(--green-600);
}

.advantage-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.advantage-card p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* HATO SECTION - ULTRA MODERN */
.hato-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.hato-product-card {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.hato-product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(107, 168, 61, 0.1) 0%, transparent 100%);
    transition: height 700ms var(--ease-expo);
}

.hato-product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400), var(--green-300));
    transition: width 700ms var(--ease-expo);
    box-shadow: 0 0 20px rgba(90, 144, 48, 0.6);
}

.hato-product-card:hover {
    transform: translateY(-20px) rotate(-1deg);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.hato-product-card:hover::before {
    height: 100%;
}

.hato-product-card:hover::after {
    width: 100%;
}

.hato-product-name {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.hato-product-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* HATO BENEFITS - GRID SPECTACULAR */
.hato-benefits {
    text-align: center;
}

.hato-benefits h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
}

.hato-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.hato-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 600ms var(--ease-expo);
}

.hato-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.hato-benefit-item svg {
    width: 56px;
    height: 56px;
    color: var(--primary);
    transition: all 600ms var(--ease-bounce);
}

.hato-benefit-item:hover svg {
    transform: scale(1.3) rotate(-10deg);
}

.hato-benefit-item span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-display);
}

/* ============================================
   DESPRE PAGE - SPECTACULAR WHY CARDS
   ============================================ */
.about-intro {
    text-align: center;
    max-width: 960px;
    margin: 0 auto var(--space-4xl);
    padding: var(--space-3xl) 0;
}

.about-intro p {
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* Reduce padding pentru toate secțiunile despre */
.about-intro.section-padding,
.why-us.section-padding,
.services-overview.section-padding,
.partners-full.section-padding {
    padding: var(--space-3xl) 0;
}

.mission-statement {
    text-align: center;
    max-width: 880px;
    margin: 0 auto var(--space-4xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
}

.mission-statement h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.mission-statement p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE - PREMIUM EXPERIENCE
   ============================================ */
.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-4xl);
}

.contact-intro p {
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--text-muted);
    line-height: 1.7;
}

.map-container {
    margin-bottom: var(--space-3xl);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.contact-item-content a {
    color: var(--primary);
    font-weight: 600;
    transition: all 400ms var(--ease-smooth);
    position: relative;
    display: inline-block;
}

.contact-item-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 500ms var(--ease-expo);
}

.contact-item-content a:hover {
    transform: translateX(4px);
}

.contact-item-content a:hover::after {
    width: 100%;
}

/* ============================================
   MOBILE OPTIMIZATIONS FOR NEW PAGES
   ============================================ */
@media (max-width: 768px) {
    .partner-logos-section {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .partner-logo-large {
        font-size: clamp(28px, 8vw, 48px);
        padding: var(--space-xl);
    }

    .control-areas {
        grid-template-columns: 1fr;
    }

    .advantages-grid-auto {
        grid-template-columns: 1fr;
    }

    .hato-products {
        grid-template-columns: 1fr;
    }

    .hato-benefits-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* ============================================
   MISSING CLASSES - COMPLETE STYLING
   ============================================ */

/* About Lead - Large intro text */
.about-lead {
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--gray-900);
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Why Us Section */
.why-us {
    position: relative;
}

/* Hotraco Section */
.hotraco-section {
    position: relative;
}

/* Hato Section */
.hato-section {
    position: relative;
}

/* Auto Intro Section */
.auto-intro {
    position: relative;
}

/* Section Desc - Better visibility */
.section-desc {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--gray-700);
    text-align: center;
    max-width: 820px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
    font-weight: 500;
}

/* Strong text on light backgrounds */
.bg-light .section-desc {
    color: var(--gray-800);
}

/* ============================================
   ADDITIONAL SPECTACULAR EFFECTS
   ============================================ */

/* Animated background for sections */
.bg-light {
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center,
            rgba(90, 144, 48, 0.03) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Enhance Why Cards with more dramatic effects */
.why-cards .why-card:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.2s both;
}

.why-cards .why-card:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.4s both;
}

.why-cards .why-card:nth-child(3) {
    animation: fadeInUp 1s var(--ease-expo) 0.6s both;
}

.why-cards .why-card:nth-child(4) {
    animation: fadeInUp 1s var(--ease-expo) 0.8s both;
}

.why-cards .why-card:nth-child(5) {
    animation: fadeInUp 1s var(--ease-expo) 1s both;
}

/* Enhanced control items animation */
.control-areas .control-item:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s both;
}

.control-areas .control-item:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.3s both;
}

.control-areas .control-item:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.4s both;
}

.control-areas .control-item:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s both;
}

.control-areas .control-item:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.6s both;
}

.control-areas .control-item:nth-child(6) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.7s both;
}

/* Enhanced advantage cards animation */
.advantages-grid-auto .advantage-card:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s both;
}

.advantages-grid-auto .advantage-card:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.35s both;
}

.advantages-grid-auto .advantage-card:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s both;
}

.advantages-grid-auto .advantages-grid-auto .advantage-card:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.65s both;
}

.advantages-grid-auto .advantage-card:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.8s both;
}

/* Enhanced Hato products animation */
.hato-products .hato-product-card:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s both;
}

.hato-products .hato-product-card:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.3s both;
}

.hato-products .hato-product-card:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.4s both;
}

.hato-products .hato-product-card:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s both;
}

.hato-products .hato-product-card:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.6s both;
}

.hato-products .hato-product-card:nth-child(6) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.7s both;
}

/* Partner logos animation */
.partner-logos-section .partner-logo-large:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.3s both;
}

.partner-logos-section .partner-logo-large:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.5s both;
}

/* ============================================
   SERVICES OVERVIEW - SPECTACULAR DESIGN
   ============================================ */
.services-overview {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-2xl);
    max-width: 1300px;
    margin: 0 auto;
}

.service-box {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3 */
.service-box:nth-child(1) {
    grid-column: 1 / 3;
}

.service-box:nth-child(2) {
    grid-column: 3 / 5;
}

.service-box:nth-child(3) {
    grid-column: 5 / 7;
}

/* Al doilea rând: Box 4 între 1-2, Box 5 între 2-3 */
.service-box:nth-child(4) {
    grid-column: 2 / 4;
}

.service-box:nth-child(5) {
    grid-column: 4 / 6;
}

.service-box {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Animated border on hover */
.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--green-700), var(--green-400), var(--green-700));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

/* Glow effect */
.service-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(90, 144, 48, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 800ms var(--ease-expo), height 800ms var(--ease-expo);
    border-radius: 50%;
}

.service-box:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.18);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover::after {
    width: 400px;
    height: 400px;
}

/* Beautiful icon design */
.service-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg,
            rgba(90, 144, 48, 0.1) 0%,
            rgba(107, 168, 61, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin: 0 auto var(--space-lg);
    transition: all 800ms var(--ease-bounce);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(90, 144, 48, 0.15);
}

.service-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 2;
    transition: all 800ms var(--ease-bounce);
}

.service-box:hover .service-icon {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: var(--white);
    transform: rotate(-10deg) scale(1.2);
    box-shadow: 0 16px 40px rgba(61, 107, 31, 0.4);
    border-color: transparent;
}

.service-box:hover .service-icon svg {
    transform: scale(1.15) rotate(10deg);
}

.service-box h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--gray-950);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.service-box p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.services-grid .service-box:nth-child(1) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.2s both;
}

.services-grid .service-box:nth-child(2) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.35s both;
}

.services-grid .service-box:nth-child(3) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.5s both;
}

.services-grid .service-box:nth-child(4) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.65s both;
}

.services-grid .service-box:nth-child(5) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.8s both;
}

/* ============================================
   INTEGRATION SECTION - ULTRA MODERN DESIGN
   ============================================ */
.integration-section {
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.integration-desc {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    max-width: 1300px;
    margin: 0 auto;
}

.integration-feature {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Gradient border effect */
.integration-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--green-700), var(--green-400));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

/* Radial glow */
.integration-feature::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%,
            rgba(90, 144, 48, 0.08) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

.integration-feature:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.15);
}

.integration-feature:hover::before {
    opacity: 1;
}

.integration-feature:hover::after {
    opacity: 1;
}

/* Number badge - spectacular design */
.integration-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--green-700), var(--green-600), var(--green-500));
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: var(--space-lg);
    box-shadow: 0 12px 32px rgba(61, 107, 31, 0.3);
    transition: all 800ms var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.integration-number::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: all 800ms var(--ease-bounce);
}

.integration-feature:hover .integration-number {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 20px 48px rgba(61, 107, 31, 0.5);
}

.integration-feature:hover .integration-number::before {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

.integration-feature h4 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.integration-feature p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Staggered animation */
.integration-features .integration-feature:nth-child(1) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.2s both;
}

.integration-features .integration-feature:nth-child(2) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.35s both;
}

.integration-features .integration-feature:nth-child(3) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.5s both;
}

.integration-features .integration-feature:nth-child(4) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.65s both;
}

/* ============================================
   PARTNERS FULL SECTION - PREMIUM DESIGN
   ============================================ */
.partners-full {
    position: relative;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-box {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Animated background */
.partner-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(90, 144, 48, 0.06) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

/* Border glow effect */
.partner-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg,
            var(--green-700) 0%,
            var(--green-400) 50%,
            var(--green-700) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

.partner-box:hover {
    transform: translateY(-24px) scale(1.04);
    box-shadow: 0 32px 80px rgba(61, 107, 31, 0.2);
}

.partner-box:hover::before {
    opacity: 1;
}

.partner-box:hover::after {
    opacity: 1;
}

.partner-name {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    letter-spacing: -0.04em;
    margin-bottom: var(--space-sm);
    transition: all 600ms var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.partner-box:hover .partner-name {
    transform: scale(1.05);
    text-shadow: 0 4px 16px rgba(61, 107, 31, 0.2);
}

.partner-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.partner-description {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Staggered animation for partner boxes */
.partners-logos .partner-box:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.3s both;
}

.partners-logos .partner-box:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.5s both;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .integration-features {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .partners-logos {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .partner-name {
        font-size: clamp(32px, 10vw, 48px);
    }
}

/* ============================================
   PRODUSE PAGE - SPECTACULAR REDESIGN
   ============================================ */

/* ADVANTAGES SECTION - Modern Grid */
.advantages-section {
    margin: var(--space-4xl) 0;
}

.advantages-section h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-3xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-item:nth-child(n+5) {
    grid-row: 2;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: all 500ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay on hover */
.advantage-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08), rgba(56, 138, 35, 0.05));
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
}

/* Left accent bar */
.advantage-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 500ms var(--ease-expo);
}

.advantage-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(76, 175, 53, 0.3);
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-item:hover::after {
    height: 100%;
}

.advantage-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2;
    flex-shrink: 0;
    transition: all 500ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.advantage-item:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 12px rgba(76, 175, 53, 0.4));
}

.advantage-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 400ms var(--ease-smooth);
}

.advantage-item:hover span {
    color: var(--text);
}

/* Product Benefits Badges */
.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: var(--space-2xl) auto 0 auto;
}

.benefit-badge {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-colored);
    transition: all 400ms var(--ease-expo);
    cursor: default;
}

.benefit-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
}

/* SYSTEMS GRID - Ultra Premium Design */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
}

.system-box {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.system-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 800ms var(--ease-expo);
}

.system-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(90, 144, 48, 0.06) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

.system-box:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(90, 144, 48, 0.3);
}

.system-box:hover::before {
    transform: scaleX(1);
}

.system-box:hover::after {
    opacity: 1;
}

.system-box h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.system-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
    padding-left: var(--space-md);
    transition: all 600ms var(--ease-smooth);
}

.system-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 600ms var(--ease-expo);
}

.system-box:hover .system-feature::before {
    height: 100%;
}

.system-feature svg {
    width: 24px;
    height: 24px;
    color: var(--green-600);
    flex-shrink: 0;
    transition: all 600ms var(--ease-bounce);
}

.system-box:hover .system-feature svg {
    transform: scale(1.2);
    color: var(--primary);
}

.system-feature span {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* APPLICATIONS SECTION - Modern Badges */
.applications-section {
    margin: var(--space-4xl) 0;
    text-align: center;
}

.applications-section h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.applications-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.application-item {
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    border: 2px solid rgba(76, 175, 53, 0.2);
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text);
    text-align: center;
    transition: all 400ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

/* Al 4-lea box centrat sub box 2 */
.application-item:nth-child(4) {
    grid-column: 2 / 3;
}

.application-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms var(--ease-expo);
}

.application-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.05), rgba(102, 187, 106, 0.08));
    opacity: 0;
    transition: opacity 400ms var(--ease-smooth);
    z-index: 0;
}

.application-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(76, 175, 53, 0.2);
    color: var(--primary);
}

.application-item:hover::before {
    transform: scaleX(1);
}

.application-item:hover::after {
    opacity: 1;
}

/* SILO FEATURES GRID - 2x2 Grid Design */
.silo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    max-width: 100%;
}

.silo-feature-box {
    grid-column: span 1;
}

.silo-feature-box {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.silo-feature-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(90, 144, 48, 0.08) 0%, transparent 100%);
    transition: height 800ms var(--ease-expo);
}

.silo-feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transition: width 800ms var(--ease-expo);
    box-shadow: 0 0 16px rgba(90, 144, 48, 0.6);
}

.silo-feature-box:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(90, 144, 48, 0.3);
}

/* ============================================
   CATEGORY GRID - PRODUCTS HUB PAGE
   ============================================ */

.category-section {
    background: var(--bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }
}

/* CATEGORY CARD */
.category-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all 600ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 600ms var(--ease-expo);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.08) 0%, transparent 70%);
    transform: translate(50%, 50%);
    transition: all 600ms var(--ease-expo);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(90, 144, 48, 0.2);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover::after {
    transform: translate(30%, 30%);
}

/* CATEGORY HEADER */
.category-header {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* CATEGORY PRODUCTS */
.category-products {
    flex: 1;
    position: relative;
    z-index: 1;
}

.products-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.products-list li {
    display: flex;
    align-items: center;
}

.products-list a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 300ms var(--ease-smooth);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    position: relative;
    display: inline-block;
}

.products-list a::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--primary);
    opacity: 0;
    transition: all 300ms var(--ease-smooth);
    font-weight: 700;
}

.products-list a:hover {
    color: var(--primary);
    background: rgba(76, 175, 53, 0.08);
    padding-left: 20px;
    transform: translateX(8px);
}

.products-list a:hover::before {
    left: 0;
    opacity: 1;
}

/* DARK MODE - CATEGORY SECTION */
[data-theme="dark"] .category-grid {
    gap: var(--space-2xl);
}

[data-theme="dark"] .category-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(76, 175, 53, 0.4);
}

[data-theme="dark"] .category-card::after {
    background: radial-gradient(circle, rgba(76, 175, 53, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .category-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

[data-theme="dark"] .category-desc {
    color: #e5e5e5;
}

[data-theme="dark"] .products-list a {
    color: #e5e5e5;
}

[data-theme="dark"] .products-list a:hover {
    color: var(--primary);
    background: rgba(76, 175, 53, 0.15);
}

/* SECTION TITLE */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin-bottom: var(--space-2xl);
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .section-title {
    color: transparent;
}

.silo-feature-box:hover::before {
    height: 100%;
}

.silo-feature-box:hover::after {
    width: 100%;
}

.silo-feature-box h4 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.silo-feature-box p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* SILO SPECS - Modern Table */
.silo-specs {
    margin: var(--space-4xl) 0;
}

.silo-specs h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.specs-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-3xl);
}

.specs-table {
    width: 100%;
    background: var(--white);
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.specs-table tr {
    transition: background 400ms var(--ease-smooth);
}

.specs-table tr:hover {
    background: linear-gradient(90deg,
            rgba(90, 144, 48, 0.04) 0%,
            rgba(90, 144, 48, 0.02) 100%);
}

.spec-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    padding: 20px 28px;
    font-family: var(--font-display);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 40%;
}

.spec-value {
    font-size: 16px;
    color: var(--text-muted);
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-table tr:last-child .spec-label,
.specs-table tr:last-child .spec-value {
    border-bottom: none;
}

/* SILO OPTIONS */
.silo-options {
    margin: var(--space-4xl) 0;
}

.silo-options h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-3xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.options-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.options-list li {
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    border: 2px solid rgba(76, 175, 53, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 400ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.options-list li::before {
    content: "";
    display: block !important;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #4CAF35 0%, #66BB6A 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(76, 175, 53, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 400ms var(--ease-expo);
}

.options-list li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.03), rgba(102, 187, 106, 0.05));
    opacity: 0;
    transition: opacity 400ms var(--ease-smooth);
}

.options-list li:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(76, 175, 53, 0.15);
}

.options-list li:hover::before {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 53, 0.4);
}

.options-list li:hover::after {
    opacity: 1;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .options-list {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   ENHANCED MOBILE OPTIMIZATION - COMPREHENSIVE
   ============================================ */

/* Extra optimizations for all mobile devices */
@media (max-width: 768px) {

    /* Improved touch targets - minimum 44px */
    .btn,
    .nav-link,
    .theme-toggle,
    .nav-toggle,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        padding: var(--space-sm);
    }

    /* Better spacing for mobile */
    .container {
        padding: 0 var(--space-md);
    }

    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better card layouts */
    .why-cards,
    .services-grid,
    .partners-logos,
    .systems-grid,
    .applications-list,
    .silo-features-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }

    /* Stack advantages grid */
    .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-sm);
    }

    .advantage-item {
        padding: var(--space-md);
    }

    /* Better section titles */
    .section-title {
        font-size: clamp(28px, 8vw, 40px) !important;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 54px) !important;
        line-height: 1.1;
    }

    /* Optimize partner logos */
    .partner-logo-large {
        font-size: clamp(28px, 8vw, 48px) !important;
        padding: var(--space-lg) !important;
    }

    /* Better product cards */
    .product-preview-card,
    .domain-card,
    .hato-product-card,
    .advantage-card {
        padding: var(--space-lg);
    }

    /* Optimize tables for mobile */
    .product-table-wrapper,
    .specs-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-table,
    .specs-table {
        min-width: 600px;
    }

    /* Better hero spacing */
    .hero {
        min-height: 70vh;
        padding: var(--space-3xl) 0;
    }

    .hero-pillars {
        gap: var(--space-md);
    }

    .pillar-item {
        padding: var(--space-lg);
    }

    /* Footer optimization */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl);
        text-align: center;
    }

    /* Form optimization */
    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
        padding: var(--space-sm) var(--space-md);
    }

    /* Better contact page */
    .contact-item {
        padding: var(--space-lg);
    }

    .contact-welcome-image {
        max-width: 100%;
        padding: var(--space-sm);
    }

    /* Hato benefits grid */
    .hato-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }

    .hato-benefit-item {
        padding: var(--space-lg);
    }

    /* Navigation optimization - mobile menu handled at @media (max-width: 900px) */

    /* Header optimization */
    .header {
        padding: var(--space-xs) 0;
    }

    .logo-image {
        height: 60px;
    }
}

/* Extra small devices optimization */
@media (max-width: 480px) {

    /* Further reduce spacing */
    .section-padding {
        padding: var(--space-3xl) 0;
    }

    .section-padding-small {
        padding: var(--space-2xl) 0;
    }

    /* Smaller titles */
    .section-title {
        font-size: clamp(24px, 8vw, 32px) !important;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 36px) !important;
    }

    /* Compact cards */
    .why-card,
    .service-box,
    .system-box,
    .application-item,
    .silo-feature-box {
        padding: var(--space-md);
    }

    /* Smaller icons */
    .pillar-icon,
    .domain-icon,
    .why-icon,
    .service-icon {
        width: 56px !important;
        height: 56px !important;
    }

    .pillar-icon svg,
    .domain-icon svg,
    .why-icon svg,
    .service-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    /* Compact partner logos */
    .partner-logo-large {
        font-size: clamp(24px, 8vw, 32px) !important;
        padding: var(--space-md) !important;
    }

    /* Better button sizing */
    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 15px;
    }

    /* Optimize hero */
    .hero {
        min-height: 60vh;
    }

    .hero-pillars {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    /* Footer compact */
    .footer {
        padding: var(--space-2xl) 0;
    }

    /* Contact optimization */
    .contact-form-container {
        padding: var(--space-lg);
    }

    .contact-item {
        padding: var(--space-md);
    }
}

/* Landscape mobile optimization */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: var(--space-3xl) 0;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    .pillar-item:hover,
    .domain-card:hover,
    .product-preview-card:hover,
    .why-card:hover,
    .service-box:hover,
    .system-box:hover {
        transform: none;
    }

    /* But keep tap effects with active state */
    .pillar-item:active,
    .domain-card:active,
    .product-preview-card:active,
    .why-card:active,
    .service-box:active,
    .system-box:active {
        transform: scale(0.98);
        transition: transform 150ms ease;
    }

    /* Disable complex animations on touch devices */
    * {
        animation-duration: 0.5s !important;
    }
}

/* High DPI screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    /* Smoother text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Sharper borders */
    .btn,
    .card,
    .domain-card,
    .product-preview-card,
    .why-card,
    .service-box {
        border-width: 0.5px;
    }
}

/* Dark mode mobile optimizations */
@media (max-width: 768px) {

    [data-theme="dark"] .hero,
    [data-theme="dark"] .section-padding,
    [data-theme="dark"] .bg-light {
        background: #000000 !important;
    }

    /* Better contrast on mobile dark mode */
    [data-theme="dark"] .section-title,
    [data-theme="dark"] h1,
    [data-theme="dark"] h2,
    [data-theme="dark"] h3 {
        text-shadow: 0 0 25px rgba(76, 175, 53, 0.6),
            0 0 50px rgba(76, 175, 53, 0.3);
    }

    /* Brighter text for mobile readability */
    [data-theme="dark"] p,
    [data-theme="dark"] .section-desc,
    [data-theme="dark"] .about-lead {
        color: #f5f5f5 !important;
    }

    /* Mobile navigation dark mode */
    [data-theme="dark"] .nav {
        background: #0a0a0a !important;
        border: 1px solid #1a1a1a;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(76, 175, 53, 0.2);
    }

    [data-theme="dark"] .nav-link {
        border-bottom-color: #1a1a1a !important;
        color: #ffffff !important;
    }

    [data-theme="dark"] .nav-toggle {
        background: linear-gradient(135deg, #4caf35 0%, #66cc4d 100%) !important;
        box-shadow: 0 8px 32px rgba(76, 175, 53, 0.4) !important;
    }
}

/* Accessibility - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles optimization */
@media print {

    .header,
    .footer,
    .nav,
    .theme-toggle,
    .nav-toggle,
    .scroll-progress {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-padding {
        padding: 20px 0;
    }

    a {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }
}


/* ============================================
   FOOTER LEGAL & ANPC SECTION - MOBILE OPTIMIZED
   ============================================ */

.footer-legal {
    margin-top: var(--space-3xl);
    padding: var(--space-3xl) var(--space-xl);
    border-top: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 51, 102, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.footer-legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.legal-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.legal-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: all 400ms var(--ease-smooth);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    min-height: 44px; /* Touch target */
    min-width: 44px;
}

.legal-logo-link:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.legal-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    transition: all 400ms var(--ease-smooth);
}

.legal-logo-link:hover .legal-logo {
    transform: scale(1.05);
}

.legal-logo-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    max-width: 200px;
}

.legal-text {
    max-width: 1200px;
    margin: 0 auto;
}

.legal-disclaimer {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 400ms var(--ease-smooth);
}

.legal-disclaimer:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.footer-bottom {
    margin-top: var(--space-lg);
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.04) 0%, rgba(0, 102, 204, 0.06) 100%);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 400ms var(--ease-smooth);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-bottom:hover {
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.12);
    transform: translateY(-2px);
}

.footer-bottom p {
    margin: var(--space-xs) 0;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-company-details {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.8;
    transition: opacity 300ms ease;
}

.footer-bottom:hover .footer-company-details {
    opacity: 1;
}

/* Dark Mode - Footer Legal */
[data-theme="dark"] .footer-legal {
    border-top-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 51, 102, 0.12) 100%);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .footer-legal::before {
    opacity: 0.5;
}

[data-theme="dark"] .legal-logo-link {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .legal-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.25);
}

[data-theme="dark"] .legal-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .legal-disclaimer:hover {
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .footer-bottom:hover {
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.25);
}

[data-theme="dark"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-company-details {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE - FOOTER LEGAL & BOTTOM
   ============================================ */

@media (max-width: 768px) {
    .footer-legal {
        margin-top: var(--space-2xl);
        padding-top: var(--space-2xl);
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .legal-logos {
        gap: var(--space-xl);
    }

    .legal-logo {
        height: 60px;
    }

    .legal-logo-text {
        font-size: 12px;
    }

    .legal-disclaimer {
        font-size: 12px;
        padding: var(--space-lg);
        text-align: left;
    }

    .footer-bottom {
        padding: var(--space-lg) var(--space-md);
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-company-details {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .legal-logos {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .legal-logo-link {
        padding: var(--space-md);
        width: 100%;
        max-width: 280px;
    }

    .legal-disclaimer {
        font-size: 11px;
        line-height: 1.6;
    }
}

[data-theme="dark"] .legal-logo {
    filter: brightness(1.1);
}

[data-theme="dark"] .legal-logo-text {
    color: #e5e5e5;
}

[data-theme="dark"] .legal-disclaimer {
    background: #0a0a0a;
    color: #d4d4d4;
    border-left-color: var(--primary);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: #1a1a1a;
}

[data-theme="dark"] .footer-bottom p {
    color: #e5e5e5;
}

[data-theme="dark"] .footer-company-details {
    color: #d4d4d4;
}

/* Mobile optimization for legal section */
@media (max-width: 768px) {
    .legal-logos {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .legal-logo {
        height: 60px;
    }

    .legal-disclaimer {
        font-size: 12px;
        text-align: left;
        padding: var(--space-md);
    }

    .footer-legal {
        margin-top: var(--space-2xl);
        padding-top: var(--space-2xl);
    }
}


/* ========================================
   Language Toggle Button - TOUCH OPTIMIZED
   ======================================== */

.lang-toggle {
    width: 48px; /* Touch-friendly */
    height: 48px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 8px;
    box-shadow: var(--shadow-sm);
}

.lang-icon {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.lang-toggle:hover .lang-icon {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(76, 175, 53, 0.4);
}

.lang-toggle:active {
    transform: scale(0.95);
}

/* Dark mode styling for language toggle */
[data-theme="dark"] .lang-icon {
    color: #ffffff;
}

[data-theme="dark"] .lang-toggle:hover .lang-icon {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(76, 175, 53, 0.6);
}

body.dark-mode .lang-icon {
    color: #ffffff;
}

body.dark-mode .lang-toggle:hover .lang-icon {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(76, 175, 53, 0.6);
}

/* Mobile responsive - keep touch-friendly */
@media (max-width: 768px) {
    .lang-toggle {
        width: 44px; /* Still touch-friendly */
        height: 44px;
        margin-left: 4px;
    }

    .lang-icon {
        font-size: 13px;
    }
}


/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.breadcrumb {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--text-sm);
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: var(--space-xs);
    color: var(--text-muted);
    font-size: 18px;
}

.breadcrumb-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 200ms var(--ease-smooth);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text);
    font-weight: 600;
}

[data-theme="dark"] .breadcrumb {
    background: #0a0a0a;
    border-bottom-color: #1a1a1a;
}

[data-theme="dark"] .breadcrumb-list a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(76, 175, 53, 0.4);
}

/* ============================================
   RELATED PRODUCTS SECTION
   ============================================ */

.related-products {
    background: var(--bg-alt);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.related-product-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-decoration: none;
    transition: all 300ms var(--ease-smooth);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.related-product-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.related-product-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

[data-theme="dark"] .related-products {
    background: #0a0a0a;
}

[data-theme="dark"] .related-product-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .related-product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .related-product-title {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(76, 175, 53, 0.4);
}

[data-theme="dark"] .related-product-desc {
    color: #e5e5e5;
}

/* ============================================
   SKIP LINK FOR ACCESSIBILITY
   ============================================ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
    z-index: 10000;
    transition: top 200ms ease-out;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

/* ============================================
   CTA BOX FOR PRODUCT PAGES
   ============================================ */

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: 0 16px 40px rgba(76, 175, 53, 0.2);
}

.cta-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: var(--text-lg);
    padding: var(--space-md) var(--space-2xl);
}

.cta-box .btn-primary:hover {
    background: var(--bg-alt);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cta-box {
    box-shadow: 0 16px 40px rgba(76, 175, 53, 0.4);
}


/* ============================================
   VENTILATOR CENTRIFUGAL - SPECIFIC STYLES
   ============================================ */

/* Product Description Section */
.product-description {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.04) 0%, rgba(76, 175, 53, 0.01) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.product-description h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-family: var(--font-display);
}

.product-description p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Product Table Enhancements */
.product-table-wrapper h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text);
    font-family: var(--font-display);
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08) 0%, rgba(76, 175, 53, 0.02) 100%);
    padding: var(--space-lg) var(--space-xl);
    border-radius: 0;
    border-left: 4px solid var(--primary);
}

.product-table-wrapper {
    border-radius: 0;
    overflow: visible;
}

.product-table {
    border-radius: 0;
    overflow: visible;
}

.specs-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(76, 175, 53, 0.08);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-style: italic;
    border-left: 3px solid var(--primary);
}

/* Product Advantages Grid */
.product-advantages {
    margin-bottom: var(--space-3xl);
}

.product-advantages h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.advantage-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 400ms var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms var(--ease-smooth);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.advantage-item p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Installation Requirements Grid */
.installation-requirements {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.installation-requirements h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.requirement-item {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all 400ms var(--ease-smooth);
    position: relative;
}

.requirement-item::after {
    content: '✓';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 400ms var(--ease-smooth);
}

.requirement-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.requirement-item:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.requirement-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    padding-right: var(--space-xl);
}

.requirement-item p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Model Details Section */
.model-details {
    margin-bottom: var(--space-3xl);
}

.model-details h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    text-align: center;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
}

.model-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

/* Removed hover effects for model-card */

.model-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--primary);
    font-family: var(--font-display);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border);
}

.model-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.model-specs li {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
    display: flex;
    align-items: baseline;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all 300ms var(--ease-smooth);
}

.model-specs li:hover {
    background: rgba(76, 175, 53, 0.05);
    padding-left: var(--space-md);
}

.model-specs li strong {
    color: var(--text);
    min-width: 180px;
    font-weight: 600;
}

.model-specs li span {
    color: var(--text-secondary);
}

/* Dark Mode - Product Specific Sections */
[data-theme="dark"] .product-description {
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08) 0%, rgba(76, 175, 53, 0.02) 100%);
    border-left-color: var(--primary);
}

[data-theme="dark"] .product-table-wrapper h3 {
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.12) 0%, rgba(76, 175, 53, 0.04) 100%);
    color: var(--primary);
    border-left-color: var(--primary);
}

[data-theme="dark"] .product-description h3,
[data-theme="dark"] .product-advantages h3,
[data-theme="dark"] .installation-requirements h3,
[data-theme="dark"] .model-details h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .product-description p,
[data-theme="dark"] .advantage-item p,
[data-theme="dark"] .requirement-item p,
[data-theme="dark"] .model-specs li {
    color: #b3b3b3;
}

[data-theme="dark"] .advantage-item,
[data-theme="dark"] .requirement-item,
[data-theme="dark"] .model-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

[data-theme="dark"] .advantage-item:hover,
[data-theme="dark"] .requirement-item:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.3);
}

/* Removed hover effect for model-card in dark mode */

[data-theme="dark"] .installation-requirements {
    background: #0d0d0d;
}

[data-theme="dark"] .specs-note {
    background: rgba(76, 175, 53, 0.12);
    color: #b3b3b3;
}

[data-theme="dark"] .model-card h4 {
    border-bottom-color: #1a1a1a;
}

[data-theme="dark"] .model-specs li strong {
    color: #ffffff;
}

/* Responsive Design - Product Sections */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-lg);
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-description {
        padding: var(--space-lg);
    }

    .product-description h3,
    .product-advantages h3,
    .installation-requirements h3,
    .model-details h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-lg);
    }

    .advantages-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .advantage-item,
    .requirement-item,
    .model-card {
        padding: var(--space-lg);
    }

    .installation-requirements {
        padding: var(--space-lg);
    }

    .model-specs li strong {
        min-width: 140px;
        font-size: var(--text-sm);
    }

    .model-specs li {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .product-description h3 {
        font-size: var(--text-lg);
    }

    .product-description p {
        font-size: var(--text-sm);
    }

    .advantage-item h4,
    .requirement-item h4 {
        font-size: var(--text-base);
    }

    .model-card h4 {
        font-size: var(--text-lg);
    }

    .model-specs li {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .model-specs li strong {
        min-width: unset;
    }
}


/* ============================================
   VENTILATOR HEAVY HAMMER - SPECIFIC STYLES
   ============================================ */

/* Model Highlights Section */
.model-highlights {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.model-highlights h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text);
    font-family: var(--font-display);
    text-align: center;
}

.models-intro {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Compact Models Grid */
.models-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.model-compact-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all 400ms var(--ease-smooth);
    position: relative;
}

.model-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transition: height 400ms var(--ease-smooth);
}

.model-compact-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.model-compact-card:hover::before {
    height: 100%;
}

.model-compact-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.model-compact-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.model-compact-specs li {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-compact-specs li strong {
    color: var(--text);
    font-weight: 600;
}

.model-compact-specs li span {
    font-weight: 700;
    color: var(--primary);
}

.model-featured h4 {
    font-size: var(--text-lg);
}

/* Dark Mode - Heavy Hammer Specific */
[data-theme="dark"] .model-highlights {
    background: #0d0d0d;
}

[data-theme="dark"] .model-highlights h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .models-intro {
    color: #b3b3b3;
}

[data-theme="dark"] .model-compact-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

[data-theme="dark"] .model-compact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(76, 175, 53, 0.2);
}

[data-theme="dark"] .model-compact-specs li {
    color: #b3b3b3;
}

[data-theme="dark"] .model-compact-specs li strong {
    color: #ffffff;
}

/* Responsive Design - Heavy Hammer */
@media (max-width: 1024px) {
    .models-compact-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .model-highlights {
        padding: var(--space-lg);
    }

    .model-highlights h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-md);
    }

    .models-intro {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }

    .models-compact-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--space-sm);
    }

    .model-compact-card {
        padding: var(--space-md);
    }

    .model-compact-card h4 {
        font-size: var(--text-sm);
    }

    .model-featured h4 {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .models-compact-grid {
        grid-template-columns: 1fr;
    }

    .model-compact-specs li {
        font-size: 13px;
    }
}


/* ============================================
   VENTILATOR CONIC - SPECIFIC STYLES
   ============================================ */

/* Model Single Card - For single product model */
.model-single-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.model-single-highlight {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid var(--border);
}

.model-single-highlight h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.model-single-highlight p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
}

.model-single-specs h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text);
    font-family: var(--font-display);
}

/* Design Variants Section */
.design-variants {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.04) 0%, rgba(76, 175, 53, 0.01) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.design-variants h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    text-align: center;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.variant-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all 400ms var(--ease-smooth);
    position: relative;
    text-align: center;
}

.variant-card::before {
    content: '✓';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    opacity: 0;
    transform: scale(0);
    transition: all 400ms var(--ease-smooth);
}

.variant-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.variant-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.variant-card h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.variant-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Dark Mode - Ventilator Conic */
[data-theme="dark"] .model-single-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

[data-theme="dark"] .model-single-highlight {
    border-bottom-color: #1a1a1a;
}

[data-theme="dark"] .model-single-highlight h4 {
    color: var(--primary);
}

[data-theme="dark"] .model-single-highlight p,
[data-theme="dark"] .variant-card p {
    color: #b3b3b3;
}

[data-theme="dark"] .model-single-specs h4 {
    color: #ffffff;
}

[data-theme="dark"] .design-variants {
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08) 0%, rgba(76, 175, 53, 0.02) 100%);
    border-left-color: var(--primary);
}

[data-theme="dark"] .design-variants h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .variant-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

[data-theme="dark"] .variant-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.3);
}

/* Responsive Design - Ventilator Conic */
@media (max-width: 768px) {
    .model-single-card {
        padding: var(--space-lg);
    }

    .model-single-highlight h4 {
        font-size: var(--text-lg);
    }

    .design-variants {
        padding: var(--space-lg);
    }

    .design-variants h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-lg);
    }

    .variants-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .variant-card {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .model-single-highlight h4 {
        font-size: var(--text-base);
    }

    .variant-card h4 {
        font-size: var(--text-base);
    }

    .variant-card p {
        font-size: var(--text-sm);
    }
}


/* ============================================
   PANOURI EVAPORATIVE - SPECIFIC STYLES
   ============================================ */

/* Working Principle Section */
.working-principle {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.06) 0%, rgba(76, 175, 53, 0.02) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.working-principle h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-family: var(--font-display);
}

.working-principle > p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Principle Steps */
.principle-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.principle-step {
    position: relative;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    transition: all 400ms var(--ease-smooth);
}

.principle-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: calc(-1 * var(--space-md));
    left: var(--space-lg);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    font-family: var(--font-display);
    box-shadow: 0 4px 12px rgba(76, 175, 53, 0.3);
}

.principle-step p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: var(--space-md);
}

/* Available Models Section */
.available-models {
    margin-bottom: var(--space-3xl);
}

.available-models h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    text-align: center;
}

.models-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.model-detailed-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 400ms var(--ease-smooth);
    position: relative;
}

.model-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms var(--ease-smooth);
}

.model-detailed-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.model-detailed-card:hover::before {
    transform: scaleX(1);
}

.model-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.model-detailed-card h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.model-description {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.model-specifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-sm);
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    transition: all 300ms var(--ease-smooth);
}

.spec-item:hover {
    background: rgba(76, 175, 53, 0.05);
}

.spec-label {
    font-weight: 600;
    color: var(--text);
    font-size: var(--text-sm);
}

.spec-value {
    font-weight: 700;
    color: var(--primary);
    font-size: var(--text-sm);
    text-align: right;
}

/* Dark Mode - Panouri Evaporative */
[data-theme="dark"] .working-principle {
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.1) 0%, rgba(76, 175, 53, 0.03) 100%);
    border-left-color: var(--primary);
}

[data-theme="dark"] .working-principle h3 {
    color: var(--primary);
}

[data-theme="dark"] .working-principle > p,
[data-theme="dark"] .principle-step p,
[data-theme="dark"] .model-description {
    color: #b3b3b3;
}

[data-theme="dark"] .principle-step {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

[data-theme="dark"] .principle-step:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(76, 175, 53, 0.2);
}

[data-theme="dark"] .available-models h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .model-detailed-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

[data-theme="dark"] .model-detailed-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .model-description {
    border-bottom-color: #1a1a1a;
}

[data-theme="dark"] .spec-item {
    background: #0d0d0d;
}

[data-theme="dark"] .spec-item:hover {
    background: rgba(76, 175, 53, 0.08);
}

[data-theme="dark"] .spec-label {
    color: #ffffff;
}

/* Responsive Design - Panouri Evaporative */
@media (max-width: 1024px) {
    .principle-steps {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .models-detailed-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .working-principle {
        padding: var(--space-lg);
    }

    .working-principle h3,
    .available-models h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-lg);
    }

    .principle-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .principle-step {
        padding: var(--space-md);
        padding-top: calc(var(--space-md) + var(--space-lg));
    }

    .models-detailed-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .model-detailed-card {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .working-principle h3 {
        font-size: var(--text-lg);
    }

    .working-principle > p {
        font-size: var(--text-sm);
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: var(--text-base);
    }

    .principle-step p {
        font-size: 13px;
    }

    .model-detailed-card h4 {
        font-size: var(--text-base);
    }

    .spec-item {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .spec-value {
        text-align: left;
    }
}


/* ============================================
   LINIA PRINCIPALĂ DE FURAJE - PREMIUM STYLING
   Enhanced CSS for product description sections
   ============================================ */

/* Feature List - Premium Styling with Icons */
.feature-list {
    list-style: none;
    margin: var(--space-xl) 0;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-3xl);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.03) 0%, rgba(76, 175, 53, 0.01) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
    transition: all 400ms var(--ease-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: var(--space-md);
    top: var(--space-md);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(76, 175, 53, 0.3);
}

.feature-list li:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08) 0%, rgba(76, 175, 53, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(76, 175, 53, 0.15);
    border-left-width: 6px;
}

.feature-list li strong {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-lg);
}

/* Product Description - Enhanced with Background */
.product-description {
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl) var(--space-2xl);
    background: linear-gradient(135deg, 
        rgba(250, 250, 250, 0.8) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(76, 175, 53, 0.15);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 500ms var(--ease-smooth);
}

.product-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 12px rgba(76, 175, 53, 0.4);
}

.product-description:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(76, 175, 53, 0.12);
    border-color: rgba(76, 175, 53, 0.3);
}

.product-description > * {
    position: relative;
    z-index: 1;
}

.product-description h2.section-subtitle {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--primary);
    font-family: var(--font-display);
    position: relative;
    padding-bottom: var(--space-md);
}

.product-description p {
    font-size: var(--text-base);
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.product-description p:last-of-type {
    margin-bottom: 0;
}

/* Product Features - Grid 2x2 for Advantages */
.product-features {
    margin-bottom: var(--space-3xl);
    position: relative;
}

.product-features h2.section-subtitle {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--primary);
    font-family: var(--font-display);
    text-align: center;
    position: relative;
    padding-bottom: var(--space-lg);
}

/* Grid 2x2 pentru feature-item */
.product-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.product-features h2.section-subtitle {
    grid-column: 1 / -1;
}

.product-features .feature-item {
    display: none;
}

/* Container pentru grid 2x2 */
.product-features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

/* Styling pentru fiecare feature card în grid */
.product-features .feature-item {
    display: block;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(250, 250, 250, 0.9) 100%);
    border: 2px solid rgba(76, 175, 53, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 500ms var(--ease-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms var(--ease-smooth);
}

.product-features .feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(76, 175, 53, 0.2);
    border-color: var(--primary);
}

.product-features .feature-item:hover::before {
    transform: scaleX(1);
}

.product-features .feature-item:hover::after {
    top: -50%;
}

.product-features .feature-item h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    position: relative;
    padding-left: var(--space-xl);
}

.product-features .feature-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(76, 175, 53, 0.6);
}

.product-features .feature-item p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* Product Table Wrapper - Enhanced */
.product-table-wrapper {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, 
        rgba(250, 250, 250, 0.8) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(76, 175, 53, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.product-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 12px rgba(76, 175, 53, 0.4);
}

.product-table-wrapper h2.section-subtitle {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--primary);
    font-family: var(--font-display);
    position: relative;
    padding-bottom: var(--space-md);
}

/* Dark Mode pentru noile stiluri */
[data-theme="dark"] .feature-list li {
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08) 0%, rgba(76, 175, 53, 0.02) 100%);
    border-left-color: var(--primary);
    color: #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .feature-list li:hover {
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.15) 0%, rgba(76, 175, 53, 0.05) 100%);
    box-shadow: 0 8px 24px rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .feature-list li::before {
    box-shadow: 0 4px 12px rgba(76, 175, 53, 0.6);
}

[data-theme="dark"] .product-description {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(18, 18, 18, 0.9) 100%);
    border-color: rgba(76, 175, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .product-description::after {
    background: radial-gradient(circle, rgba(76, 175, 53, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .product-description:hover {
    box-shadow: 0 16px 48px rgba(76, 175, 53, 0.25);
}

[data-theme="dark"] .product-description h2.section-subtitle {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.6);
}

[data-theme="dark"] .product-description p {
    color: #e5e5e5;
}

[data-theme="dark"] .product-features .feature-item {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(18, 18, 18, 0.9) 100%);
    border-color: rgba(76, 175, 53, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .product-features .feature-item:hover {
    box-shadow: 0 20px 60px rgba(76, 175, 53, 0.4);
    border-color: var(--primary);
}

[data-theme="dark"] .product-features .feature-item::after {
    background: radial-gradient(circle, rgba(76, 175, 53, 0.2) 0%, transparent 70%);
}

[data-theme="dark"] .product-features .feature-item h4 {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(76, 175, 53, 0.6);
}

[data-theme="dark"] .product-features .feature-item p {
    color: #e5e5e5;
}

[data-theme="dark"] .product-table-wrapper {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(18, 18, 18, 0.9) 100%);
    border-color: rgba(76, 175, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .product-table-wrapper h2.section-subtitle {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(76, 175, 53, 0.6);
}

/* Responsive - Grid adaptiv */
@media (max-width: 1024px) {
    .product-features-grid-2x2 {
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .product-features-grid-2x2 {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .product-description {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .product-table-wrapper {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .feature-list li {
        padding: var(--space-md) var(--space-md) var(--space-md) 60px;
    }
}

@media (max-width: 480px) {
    .product-description h2.section-subtitle,
    .product-features h2.section-subtitle,
    .product-table-wrapper h2.section-subtitle {
        font-size: var(--text-2xl);
    }
    
    .feature-list li {
        font-size: var(--text-sm);
        padding: var(--space-sm) var(--space-sm) var(--space-sm) 52px;
    }
    
    .feature-list li::before {
        width: 28px;
        height: 28px;
        font-size: 16px;
        left: var(--space-sm);
    }
}

/* ============================================
   CONTACT FORM MESSAGES - WEB3FORMS
   ============================================ */
.form-message {
    margin: var(--space-md) 0;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 300ms var(--ease-smooth);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message-success {
    background: rgba(76, 175, 53, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #dc2626;
}

[data-theme="dark"] .form-message-success {
    background: rgba(76, 175, 53, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.3);
}

[data-theme="dark"] .form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #f87171;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}
