/* =====================================================
   RUNZE IC - International Chip Distributor Website
   Style: Minimalist High-End Tech (Arrow/Mouser/Digi-Key Inspired)
   ===================================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Color System - Fixed */
    --primary: #0A2463;
    --primary-light: #3B82F6;
    --primary-dark: #061a4a;
    
    /* Footer Colors - Fixed */
    --footer-bg: #0F172A;
    --footer-title: #F8FAFC;
    --footer-text: #CBD5E1;
    --footer-hover: #3B82F6;
    
    /* Background */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Status */
    --success: #059669;
    --warning: #d97706;
    
    /* Brand Colors */
    --xilinx: #e21836;
    --ti: #cc0000;
    --st: #03234b;
    --adi: #0066b3;
    --intel: #0071c5;
    
    /* Spacing - Generous whitespace */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Radius - Subtle */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    
    /* Shadows - Soft and minimal */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 25px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =====================================================
   FLOATING CONTACT BUTTONS
   ===================================================== */
.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 120px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: all 0.25s ease;
    text-decoration: none;
}

.float-btn svg {
    width: 22px;
    height: 22px;
}

.float-btn.whatsapp { color: #25D366; }
.float-btn.telegram { color: #0088cc; }
.float-btn.email { color: #EA4335; }

.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.8125rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-small:hover {
    background: var(--primary-light);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: var(--space-2xl);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(10, 36, 99, 0.06);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.hero-brands {
    display: none;
}

.brand-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.brand-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.25s ease;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.brand-item.xilinx { color: var(--xilinx); }
.brand-item.ti { color: var(--ti); }
.brand-item.st { color: var(--st); }
.brand-item.adi { color: var(--adi); }
.brand-item.intel { color: var(--intel); }

/* =====================================================
   TRUST BADGES
   ===================================================== */
.trust-badges {
    background: var(--bg-white);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-item svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

/* =====================================================
   HOT PRODUCTS
   ===================================================== */
.hot-products {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.product-brand-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.product-brand-section:hover {
    box-shadow: var(--shadow-lg);
}

.brand-header {
    padding: var(--space-md) var(--space-lg);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.brand-header span {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.brand-header.xilinx-bg { background: var(--xilinx); }
.brand-header.ti-bg { background: var(--ti); }
.brand-header.st-bg { background: var(--st); }
.brand-header.adi-bg { background: var(--adi); }
.brand-header.intel-bg { background: var(--intel); }

.products-table {
    padding: var(--space-sm);
}

.table-header {
    display: none;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xs);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background 0.15s ease;
}

.table-row:hover {
    background: var(--bg-light);
}

.table-row:last-child {
    border-bottom: none;
}

.part-number {
    font-family: 'SF Mono', 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    grid-column: 1 / -1;
}

.part-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.stock-status {
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-status.available { color: var(--success); }
.stock-status.limited { color: var(--warning); }

.hot-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.hot-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

/* =====================================================
   BRANDS SECTION
   ===================================================== */
.brands {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.brand-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.25s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.brand-card .brand-name {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.brand-card .brand-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.brand-card.xilinx-card { border-bottom: 2px solid var(--xilinx); }
.brand-card.xilinx-card .brand-name { color: var(--xilinx); }
.brand-card.ti-card { border-bottom: 2px solid var(--ti); }
.brand-card.ti-card .brand-name { color: var(--ti); }
.brand-card.st-card { border-bottom: 2px solid var(--st); }
.brand-card.st-card .brand-name { color: var(--st); }
.brand-card.adi-card { border-bottom: 2px solid var(--adi); }
.brand-card.adi-card .brand-name { color: var(--adi); }
.brand-card.intel-card { border-bottom: 2px solid var(--intel); }
.brand-card.intel-card .brand-name { color: var(--intel); }

/* =====================================================
   ADVANTAGES SECTION
   ===================================================== */
.advantages {
    padding: var(--space-3xl) 0;
    background: var(--footer-bg);
    color: white;
}

.advantages .section-header h2,
.advantages .section-header p {
    color: var(--footer-title);
}

.adv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.adv-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.25s ease;
}

.adv-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-3px);
}

.adv-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(59,130,246,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.adv-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
}

.adv-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--footer-title);
}

.adv-card p {
    color: var(--footer-text);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: var(--space-xl);
}

.contact-methods h4,
.company-info h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.method-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
}

.method-item:hover {
    border-color: var(--primary-light);
    transform: translateX(3px);
}

.method-icon {
    font-size: 1.25rem;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.method-value {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.company-info {
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.company-info p {
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
}

/* Form */
.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================================================
   FOOTER - FIXED DESIGN
   ===================================================== */
.footer {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.95) 100%),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0;
    position: relative;
}

/* Top accent line */
.footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
}

/* Column 1: Logo & About */
.footer-about {
    max-width: 320px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--footer-title);
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.footer-desc {
    color: var(--footer-text);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Column 2: Navigation */
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--footer-title);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: var(--space-xs);
}

.footer-nav a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--footer-hover);
}

/* Column 3: Contact Icons */
.contact-icons {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s ease;
    text-decoration: none;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--footer-text);
    transition: color 0.2s ease;
}

.contact-icon:hover {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-2px);
}

.contact-icon:hover svg {
    color: var(--footer-hover);
}

.footer-email {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: var(--footer-hover);
}

/* Column 4: Social */
.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
    transition: color 0.2s ease;
}

.social-link svg {
    width: 16px;
    height: 16px;
    color: var(--footer-text);
    transition: color 0.2s ease;
}

.social-link:hover,
.social-link:hover svg {
    color: var(--footer-hover);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.375rem 0.75rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.lang-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.lang-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.375rem;
    min-width: 120px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
    z-index: 101;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.lang-dropdown li:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (min-width: 640px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-row {
        grid-template-columns: 2fr 3fr 1fr auto;
        gap: var(--space-md);
    }
    
    .part-number,
    .part-desc {
        grid-column: auto;
    }
    
    .table-header {
        display: grid;
        grid-template-columns: 2fr 3fr 1fr auto;
        gap: var(--space-md);
    }
    
    /* Footer 2 columns on tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .tagline {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .brand-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-desc {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-brands {
        display: block;
    }
    
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .adv-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    /* Footer 4 columns on desktop */
    .footer-content {
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adv-card,
.brand-card,
.product-brand-section {
    animation: fadeInUp 0.5s ease forwards;
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
