/* ============================================
   MS GATES - COMPLETE STYLESHEET
   With Full Mobile Responsiveness
   ============================================ */

:root {
    --primary: #0d0d0d;
    --primary-light: #1a1a1a;
    /* Antique Bronze Gold - warmer, deeper */
    --accent: #a8862e;
    --accent-light: #c49a32;
    --accent-dark: #8b6f26;
    --white: #ffffff;
    /* Warmer off-white backgrounds - layered */
    --bg-body: #f7f4ef;
    --bg-cream: #f2ede5;
    --bg-warm: #ebe5da;
    --bg-dark: #2c2a26;
    --text-primary: #1a1816;
    /* Darker secondary text for WCAG AA compliance */
    --text-secondary: #4a4744;
    --text-muted: #6b6560;
    --border: #ddd8d0;
    --success: #2a7d4f;
    --success-light: #e8f5ee;
    --error: #c94a4a;
    --whatsapp: #25D366;
    --whatsapp-dark: #1da851;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --section-padding: 80px;
    --container-max: 1200px;
    --container-padding: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    /* CRITICAL HEADER HEIGHTS */
    --trust-bar-height: 36px;
    --nav-height: 72px;
    --header-height: calc(var(--trust-bar-height) + var(--nav-height));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
h4 { font-size: clamp(18px, 2.5vw, 20px); }
.text-accent { color: var(--accent); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.section { padding: var(--section-padding) 0; }
.text-center { text-align: center; }

/* HEADER - Fixed, compact */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); }

/* BREADCRUMB */
.breadcrumb {
    background: var(--bg-cream);
    padding: 16px 0;
    margin-top: var(--header-height);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--accent-dark);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
    font-size: 16px;
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

.trust-bar { background: var(--primary); height: var(--trust-bar-height); display: flex; align-items: center; overflow: hidden; }
.trust-bar-content { display: flex; justify-content: center; align-items: center; gap: 32px; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; }
.trust-item { font-size: 12px; font-weight: 500; color: var(--white); white-space: nowrap; }
.trust-item::before { content: '✓'; margin-right: 6px; color: var(--accent); }

.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); height: var(--nav-height); position: relative; }
.logo { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--primary); z-index: 1001; flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--accent); }
.logo-icon { height: 80px; width: auto; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 12px 16px; font-size: 15px; font-weight: 500; color: var(--text-primary); transition: color var(--transition-fast); white-space: nowrap; }
.nav-link:hover { color: var(--accent); }

.nav-dropdown { position: absolute; top: 100%; left: 0; background: var(--white); border-radius: 8px; box-shadow: var(--shadow-lg); padding: 12px; min-width: 260px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition-base); z-index: 100; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; padding: 12px 16px; border-radius: 6px; transition: background var(--transition-fast); }
.dropdown-link:hover { background: var(--bg-cream); }
.dropdown-link small { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.whatsapp-link { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--whatsapp); color: var(--white); border-radius: 6px; font-size: 14px; font-weight: 600; transition: background var(--transition-fast); }
.whatsapp-link:hover { background: var(--whatsapp-dark); }
.contact-link { display: flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-primary); }
.contact-link:hover { color: var(--accent); }

.menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; z-index: 1001; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 3px 0; transition: all var(--transition-base); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-size: 15px; font-weight: 600; border-radius: 8px; transition: all var(--transition-base); cursor: pointer; white-space: nowrap; border: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-full { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: var(--whatsapp); color: var(--white); border-radius: 8px; font-size: 15px; font-weight: 600; transition: all var(--transition-base); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

/* HERO */
.hero { padding-top: calc(var(--header-height) + 60px); padding-bottom: 80px; background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%); min-height: 100vh; display: flex; align-items: center; }
.hero-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-brand-name { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.hero-brand-name span { color: var(--accent); }
.hero-badge { display: inline-flex; margin-bottom: 20px; }
.hero-badge span { background: var(--accent); color: var(--primary); padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.hero h1 { margin-bottom: 24px; }
.hero-description { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.hero-feature-icon { width: 20px; height: 20px; background: var(--success-light); color: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.hero-visual { position: relative; }

/* Hero Video */
.hero-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
    background: var(--bg-warm);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle overlay for better contrast with floating card */
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
}

/* Play indicator (optional - shows video is playing) */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Fallback image (shows while video loads or if video fails) */
.hero-video-fallback {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile: Show image instead of video for performance */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero-video-fallback {
        display: block;
    }
    
    /* Hide live indicator on mobile */
    .hero-video-wrapper::before {
        display: none;
    }
}

/* Legacy fallback class - now used for static image */
.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
    background: var(--bg-warm);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* Subtle gradient overlay for better floating card visibility */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
}
.hero-floating-card { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 16px 24px; border-radius: 12px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.floating-card-icon { font-size: 32px; }
.floating-card-content h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.floating-card-content p { font-size: 13px; color: var(--text-muted); }

/* SOCIAL PROOF */
.social-proof { background: var(--primary); padding: 20px 0; }

/* ABOUT SNIPPET */
.about-snippet {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.about-snippet-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-snippet-content h2 {
    margin-bottom: 20px;
}

.about-snippet-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 640px) {
    .about-snippet {
        padding: 60px 0;
    }
    
    .about-snippet-content > p {
        font-size: 16px;
    }
    
    .about-stats {
        gap: 32px;
    }
    
    .about-stat-number {
        font-size: 36px;
    }
}
.proof-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 14px; font-weight: 500; }
.proof-stars { color: var(--accent); }
.proof-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* HOW IT WORKS */
.how-it-works { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; padding: 40px 24px; background: var(--bg-cream); border-radius: 16px; position: relative; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-number { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; background: var(--accent); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.step-icon { font-size: 48px; margin-bottom: 20px; }
.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--text-secondary); }

/* PRODUCTS */
.products { background: var(--bg-cream); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--transition-base), box-shadow var(--transition-base); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: var(--primary); padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; z-index: 1; }
.product-image {
    aspect-ratio: 16/10;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-content { padding: 24px; }
.product-content h3 { margin-bottom: 12px; }
.product-content > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 16px; }
.product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-feature-tag { background: var(--bg-warm); padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.product-price { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.product-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }

/* BENEFITS */
.benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.benefit-item { display: flex; gap: 16px; padding: 24px; background: var(--bg-cream); border-radius: 12px; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.benefit-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-icon { font-size: 32px; flex-shrink: 0; }
.benefit-content h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.benefit-content p { font-size: 14px; color: var(--text-secondary); }

/* COMPARISON */
.comparison { background: var(--bg-cream); }
.comparison-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); min-width: 500px; }
.comparison-table th, .comparison-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--primary); color: var(--white); font-weight: 600; font-size: 14px; }
.comparison-table td { font-size: 15px; }
.comparison-table tr:last-child td { border-bottom: none; }
.check-yes { color: var(--success); font-weight: 600; }
.check-no { color: var(--text-muted); }
.comparison-conclusion { text-align: center; margin-top: 32px; font-size: 16px; color: var(--text-secondary); max-width: 700px; margin-left: auto; margin-right: auto; }

/* TESTIMONIALS */
.testimonials { background: var(--primary); color: var(--white); }
.testimonials .section-label { color: var(--accent); }
.testimonials .section-header h2, .testimonials .section-header p { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base); }
.testimonial-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.testimonial-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 16px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.9); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--accent); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.testimonial-info h5 { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.testimonial-info p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* GALLERY */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; background: var(--bg-warm); border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-xl); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity var(--transition-base); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-location { color: var(--white); font-weight: 600; }
.gallery-location small { display: block; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* BLOG */
.blog-preview { background: var(--bg-cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-image { aspect-ratio: 16/9; background: var(--bg-warm); position: relative; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-category { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--primary); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.blog-content { padding: 24px; }
.blog-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-content h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.blog-content > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.blog-link { font-size: 14px; font-weight: 600; color: var(--accent); }
.blog-link:hover { color: var(--accent-dark); }

/* FAQ */
.faq { background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 17px; font-weight: 600; text-align: left; color: var(--text-primary); transition: color var(--transition-fast); }
.faq-question:hover { color: var(--accent); }
.faq-toggle { font-size: 24px; color: var(--accent); transition: transform var(--transition-base); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-base); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-content { padding-bottom: 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* FOOTER */
.site-footer { background: var(--primary); color: var(--white); }
.footer-cta { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); padding: 60px var(--container-padding); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-cta-content h2 { color: var(--white); margin-bottom: 12px; }
.footer-cta-content p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 32px; }
.footer-cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.footer-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; transition: all var(--transition-base); }
.footer-btn-primary { background: var(--accent); color: var(--primary); }
.footer-btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.footer-btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.footer-btn-secondary:hover { background: var(--white); color: var(--primary); }
.footer-btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.footer-btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; max-width: var(--container-max); margin: 0 auto; padding: 60px var(--container-padding); }
.footer-brand { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--white); display: block; margin-bottom: 16px; }
.footer-brand span { color: var(--accent); }
.footer-description { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.footer-trust-list li { font-size: 13px; color: rgba(255,255,255,0.6); padding: 6px 0 6px 20px; position: relative; }
.footer-trust-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }
.footer-column h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list li { margin-bottom: 16px; }
.footer-contact-list strong { display: block; font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.footer-contact-list a { font-size: 14px; color: rgba(255,255,255,0.9); }
.footer-hours { margin-top: 24px; }
.footer-hours h4 { margin-bottom: 12px; }
.footer-hours-list li { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.7); padding: 6px 0; }
.footer-workshop-card { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.footer-workshop-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 600; }
.footer-workshop-name { font-weight: 700; font-size: 15px; margin: 6px 0; }
.footer-workshop-address { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-legal-note { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }
.footer-company-info p { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px var(--container-padding); }
.footer-bottom-inner { max-width: var(--container-max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.footer-legal-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); }

/* MOBILE STICKY CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 900; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 90px; right: 20px; width: 56px; height: 56px; background: var(--whatsapp); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 899; transition: all var(--transition-base); }
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.1); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -4px 30px rgba(0,0,0,0.15); z-index: 2000; border-top: 3px solid var(--accent); transform: translateY(100%); opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.cookie-banner.show { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie-content { max-width: var(--container-max); margin: 0 auto; padding: 24px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 300px; }
.cookie-text h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cookie-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn { padding: 12px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition-fast); }
.cookie-btn-accept { background: var(--accent); color: var(--primary); border: none; }
.cookie-btn-accept:hover { background: var(--accent-light); }
.cookie-btn-reject { background: transparent; color: var(--text-primary); border: 2px solid var(--border); }
.cookie-btn-reject:hover { border-color: var(--primary); }
.cookie-btn-settings { background: transparent; color: var(--text-secondary); border: none; text-decoration: underline; }

/* COOKIE MODAL */
.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 2001; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.cookie-modal.show { opacity: 1; visibility: visible; }
.cookie-modal-content { background: var(--white); border-radius: 16px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; }
.cookie-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--border); }
.cookie-modal-header h3 { font-family: var(--font-body); font-size: 20px; font-weight: 700; }
.cookie-modal-close { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--text-muted); cursor: pointer; }
.cookie-modal-close:hover { background: var(--bg-cream); color: var(--text-primary); }
.cookie-modal-body { padding: 24px; }
.cookie-modal-body > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.cookie-category { border-bottom: 1px solid var(--border); padding: 20px 0; }
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.cookie-category-info h4 { font-family: var(--font-body); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cookie-category-info p { font-size: 13px; color: var(--text-secondary); }
.cookie-toggle { position: relative; display: inline-flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider { width: 48px; height: 26px; background: var(--border); border-radius: 13px; transition: background var(--transition-fast); position: relative; }
.cookie-toggle-slider::before { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--white); border-radius: 50%; transition: transform var(--transition-fast); box-shadow: var(--shadow-sm); }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--accent); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(22px); }
.cookie-toggle-disabled { cursor: not-allowed; opacity: 0.7; }
.cookie-toggle-label { font-size: 12px; color: var(--text-muted); margin-left: 8px; }
.cookie-modal-footer { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-privacy-link { font-size: 13px; color: var(--text-secondary); text-decoration: underline; }

/* PAGE HEADER */
.page-header { padding-top: calc(var(--header-height) + 60px); padding-bottom: 60px; background: var(--bg-cream); text-align: center; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* CONTACT PAGE */
.contact-section { background: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--bg-cream); border-radius: 12px; transition: all var(--transition-base); }
.contact-method:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.contact-method.whatsapp { background: rgba(37, 211, 102, 0.1); }
.contact-method-icon { width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.contact-method.whatsapp .contact-method-icon { background: var(--whatsapp); color: var(--white); }
.contact-method-content h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.contact-method-content p { font-size: 13px; color: var(--text-muted); }
.contact-method-value { font-size: 14px; font-weight: 600; color: var(--accent); }
.contact-hours { margin-bottom: 32px; }
.contact-hours h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.contact-hours ul li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.contact-benefits { display: flex; flex-direction: column; gap: 12px; }
.contact-benefit { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-secondary); }
.contact-benefit-icon { font-size: 20px; }
.contact-form-wrapper { background: var(--bg-cream); border-radius: 16px; padding: 40px; }
.form-header { margin-bottom: 32px; }
.form-header h3 { margin-bottom: 8px; }
.form-header p { font-size: 15px; color: var(--text-secondary); }
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.required { color: var(--error); }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border: 2px solid var(--border); border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color var(--transition-fast); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio-label input { width: 18px; height: 18px; accent-color: var(--accent); }
.upload-label { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 32px; border: 2px dashed var(--border); border-radius: 8px; cursor: pointer; transition: all var(--transition-fast); text-align: center; color: var(--text-secondary); }
.upload-label:hover { border-color: var(--accent); background: rgba(201, 162, 39, 0.05); }
.upload-label small { font-size: 12px; color: var(--text-muted); }
.upload-input { display: none; }
.upload-preview { display: none; align-items: center; gap: 12px; padding: 12px 16px; background: var(--white); border-radius: 8px; font-size: 14px; }
.upload-preview.has-file { display: flex; }
.form-disclaimer { font-size: 13px; color: var(--text-muted); text-align: center; }
.form-disclaimer a { color: var(--accent); text-decoration: underline; }

/* LEGAL PAGES */
.legal-page { padding-top: calc(var(--header-height) + 40px); padding-bottom: 80px; background: var(--bg-cream); }
.legal-container { max-width: 800px; margin: 0 auto; padding: 0 var(--container-padding); }
.legal-content { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: var(--shadow-md); }
.legal-content h1 { margin-bottom: 24px; }
.legal-content h2 { font-size: 22px; margin-top: 40px; margin-bottom: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
.legal-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }
.legal-content ul, .legal-content ol { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.7; }
.legal-content ul li { list-style-type: disc; }
.legal-content ol li { list-style-type: decimal; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-with-toc .legal-container { max-width: 1100px; }
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-height) + 20px); }
.legal-toc-inner { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--shadow-md); }
.legal-toc h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text-muted); }
.legal-toc ul { display: flex; flex-direction: column; gap: 4px; }
.legal-toc a { display: block; padding: 8px 12px; font-size: 13px; color: var(--text-secondary); border-radius: 6px; transition: all var(--transition-fast); text-decoration: none; }
.legal-toc a:hover { background: var(--bg-cream); color: var(--text-primary); }
.legal-toc a.active { background: var(--white); color: var(--accent); font-weight: 600; box-shadow: var(--shadow-sm); }
.legal-main { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: var(--shadow-md); }
.legal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.legal-meta-box { background: var(--bg-cream); padding: 16px; border-radius: 8px; }
.legal-meta-box strong { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.legal-info-box { background: var(--bg-cream); padding: 24px; border-radius: 8px; margin: 24px 0; }
.legal-info-box p { margin-bottom: 8px; }
.legal-info-box p:last-child { margin-bottom: 0; }
.legal-warning-box { background: #fff7ed; border-left: 4px solid #f97316; padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.legal-warning-box p { color: #9a3412; margin-bottom: 0; }

/* ============================================
   RESPONSIVE - TABLET (max 992px)
   ============================================ */
@media (max-width: 992px) {
    :root { --section-padding: 60px; --nav-height: 64px; }
    
    .nav-menu, .nav-actions { display: none; }
    .menu-toggle { display: flex; }
    
    /* Mobile menu - slides down */
    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        z-index: 999;
    }
    .nav-menu.mobile-open .nav-item { border-bottom: 1px solid var(--border); }
    .nav-menu.mobile-open .nav-link { padding: 16px 0; font-size: 16px; }
    .nav-menu.mobile-open .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 16px 16px; display: none; }
    .nav-menu.mobile-open .nav-item:hover .nav-dropdown { display: block; }
    
    .nav-actions.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100%);
        left: 0;
        right: 0;
        background: var(--bg-cream);
        padding: 16px 24px;
        gap: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 998;
        margin-top: 1px;
    }
    .nav-actions.mobile-open .btn { width: 100%; }
    
    .trust-bar-content { justify-content: flex-start; overflow-x: auto; gap: 24px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-floating-card { bottom: -10px; left: 10px; }
    .steps-grid, .products-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
    .legal-toc-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .legal-toc h3 { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE - MOBILE (max 640px)
   ============================================ */
@media (max-width: 640px) {
    :root { --section-padding: 48px; --container-padding: 16px; --trust-bar-height: 32px; --nav-height: 56px; }
    
    .trust-bar-content { gap: 16px; }
    .trust-item:nth-child(n+4) { display: none; }
    
    .hero { padding-top: calc(var(--header-height) + 32px); padding-bottom: 48px; min-height: auto; }
    .hero-brand-name { font-size: 22px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn, .hero-buttons .btn-whatsapp { width: 100%; }
    .hero-features { flex-direction: column; gap: 12px; }
    .hero-floating-card { display: none; }
    
    .steps-grid, .products-grid, .testimonials-grid, .blog-grid, .benefits-grid, .gallery-grid { grid-template-columns: 1fr; }
    .proof-container { flex-direction: column; gap: 12px; }
    .proof-divider { display: none; }
    
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-cta-buttons { flex-direction: column; }
    .footer-btn { width: 100%; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    
    .mobile-sticky-cta { display: block; }
    .whatsapp-float { bottom: 80px; }
    
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .radio-group { flex-direction: column; gap: 12px; }
    
    .legal-content, .legal-main { padding: 24px; }
    .legal-meta { grid-template-columns: 1fr; }
    .legal-toc-inner { grid-template-columns: 1fr; }
    
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; flex-direction: column; }
    .cookie-btn { width: 100%; }
    .cookie-modal-footer { flex-direction: column; text-align: center; }
}

/* ============================================
   CONFIGURE YOUR GATE DROPDOWN
   ============================================ */
.configure-dropdown {
    position: relative;
    display: inline-block;
}

.configure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.configure-btn svg {
    transition: transform var(--transition-fast);
}

.configure-dropdown.active .configure-btn svg {
    transform: rotate(180deg);
}

.configure-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1001;
}

.configure-dropdown.active .configure-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Upward dropdown for footer */
.configure-dropdown-menu-up {
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(10px);
}

.configure-dropdown.active .configure-dropdown-menu-up {
    transform: translateX(-50%) translateY(0);
}

.configure-dropdown-item {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    border-radius: 8px;
    transition: background var(--transition-fast);
    color: var(--text-primary);
    position: relative;
}

.configure-dropdown-item:hover {
    background: var(--bg-cream);
}

.configure-dropdown-item .configure-item-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.configure-dropdown-item:hover .configure-item-icon {
    opacity: 1;
}

.configure-dropdown-item small {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Hero version styling */
.configure-dropdown-hero .configure-dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(-10px);
}

.configure-dropdown-hero.active .configure-dropdown-menu {
    transform: translateX(0) translateY(0);
}

/* Inline (centered) version */
.configure-dropdown-inline {
    display: inline-block;
}

/* Footer version */
.configure-dropdown-footer .configure-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.configure-dropdown-footer .configure-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Products grid - 2 columns version */
.products-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .products-grid-two {
        grid-template-columns: 1fr;
    }
    
    .configure-dropdown-menu {
        min-width: 260px;
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    .configure-dropdown.active .configure-dropdown-menu {
        transform: translateX(0) translateY(0);
    }
    
    .configure-dropdown-hero .configure-dropdown-menu {
        left: 0;
        right: auto;
    }
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
    padding: 60px 0 40px;
    background: var(--bg-warm);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SYSTEM INFO BOX
   ============================================ */
.system-info {
    padding: 40px 0;
}

.system-info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
}

.system-info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.system-info-content h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.system-info-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.system-info-content strong {
    color: var(--text-primary);
}

/* ============================================
   CATEGORY PRODUCT GRID (6 cards)
   ============================================ */
.category-products {
    padding-top: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.category-card-image {
    aspect-ratio: 4/3;
    background: var(--bg-warm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

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

.category-card-content {
    padding: 24px;
}

.category-card-content h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.category-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-card-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-dark);
    transition: color var(--transition-fast);
}

.category-card:hover .category-card-link {
    color: var(--primary);
}

/* ============================================
   CTA SECTION - Dark band to break up the page
   ============================================ */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
    color: var(--white);
}

.cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-outline-dark:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

/* Active nav link */
.nav-link.active {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE - Category Grid
   ============================================ */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .system-info-box {
        flex-direction: column;
        padding: 20px;
    }
    
    .cta-box {
        padding: 32px 20px;
    }
    
    .page-hero {
        padding: 40px 0 30px;
    }
}