/* 
  Plastimil SRL — Premium B2B Design System
  Version 2.0 — Full Responsive + Pro Aesthetics
*/

/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
    /* Colors — Refined Corporate Palette */
    --primary: #0a2540;
    --primary-mid: #1a3a5c;
    --primary-light: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #16a34a;
    --secondary-light: #22c55e;
    --secondary-dark: #15803d;
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.15);

    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-dark: #0a1628;
    --bg-dark-card: #111d33;

    --text-main: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #e2e8f0;
    --text-white: #ffffff;

    --border: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.08);

    /* Spacing — 4px scale */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */

    --leading-tight: 1.15;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;

    /* Borders & Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 8px 16px -8px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;

    --max-w: 1200px;
    --max-w-narrow: 960px;
}


/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-body);
    line-height: var(--leading-normal);
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    font-weight: 800;
}

h2 {
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
}

h3 {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

ul,
ol {
    list-style: none;
}

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

button {
    font-family: inherit;
}


/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
}

.section-padding {
    padding-top: var(--sp-24);
    padding-bottom: var(--sp-24);
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto var(--sp-16);
}

.section-header h2 {
    margin-bottom: var(--sp-4);
}

.section-header p {
    color: var(--text-muted);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
}


/* ═══════════════════════════════════════
   GLASSMORPHISM
   ═══════════════════════════════════════ */
.glass {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
    gap: var(--sp-2);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    border: 2px solid transparent;
    letter-spacing: var(--tracking-wide);
    text-transform: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-light);
    color: var(--text-white);
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-white {
    background: var(--bg-main);
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--bg-soft);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-white);
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.btn-outline {
    border-color: var(--border);
    color: var(--text-main);
    background: var(--bg-main);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.04);
}

.btn-sm {
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--text-xs);
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: var(--sp-4) var(--sp-8);
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
}

.btn-text {
    color: var(--primary-light);
    font-weight: 600;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.btn-text:hover {
    gap: var(--sp-3);
}

.w-full {
    width: 100%;
}


/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--sp-4) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

header.scrolled {
    padding: var(--sp-2) 0;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

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

.logo-text {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: var(--tracking-tight);
}

.logo-text span {
    color: var(--secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.nav-links li a {
    display: block;
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--duration-fast) var(--ease-out);
}

.nav-links li a:hover {
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.06);
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: var(--sp-2);
    color: var(--text-main);
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: var(--sp-32) 0;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: var(--sp-6);
    line-height: 1.08;
}

.hero p {
    font-size: var(--text-xl);
    margin-bottom: var(--sp-10);
    opacity: 0.8;
    line-height: var(--leading-relaxed);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.hero .btn-primary {
    padding: var(--sp-4) var(--sp-8);
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
}

.hero .btn-outline {
    padding: var(--sp-4) var(--sp-8);
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}


/* ═══════════════════════════════════════
   FEATURE CARDS (Industries / Pillars)
   ═══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
}

.feature-card {
    padding: var(--sp-10);
    border-radius: var(--radius-xl);
    background: var(--bg-main);
    border: 1px solid var(--border);
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-6);
    color: var(--primary-light);
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    margin-bottom: var(--sp-3);
    font-size: var(--text-xl);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: var(--sp-6);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}


/* ═══════════════════════════════════════
   STATS / TRAJECTORY
   ═══════════════════════════════════════ */
.bg-dark {
    background: var(--bg-dark);
}

.text-light {
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8);
    text-align: center;
    padding: var(--sp-10) 0;
}

.stat-item {
    padding: var(--sp-6);
}

.stat-number {
    display: block;
    font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
    font-weight: 800;
    color: var(--accent);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
    margin-bottom: var(--sp-3);
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-muted);
}


/* ═══════════════════════════════════════
   PRODUCT CATALOG
   ═══════════════════════════════════════ */
.bg-secondary {
    background: var(--bg-soft);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-12);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--sp-2) var(--sp-5);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    color: var(--text-body);
    font-weight: 500;
    font-size: var(--text-sm);
    cursor: pointer;
    background: var(--bg-main);
    transition: all var(--duration-fast) var(--ease-out);
}

.filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--sp-6);
}

.product-card {
    background: var(--bg-main);
    padding: var(--sp-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    transition: all var(--duration-normal) var(--ease-out);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card h3 {
    font-size: var(--text-lg);
    margin-top: var(--sp-2);
}

.product-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    flex: 1;
}

.product-badge {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    background: var(--primary);
    color: var(--text-white);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
}


/* ═══════════════════════════════════════
   ECOPLAST / SUSTAINABILITY
   ═══════════════════════════════════════ */
.ecoplast-featured {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-soft) 100%);
}

.ecoplast-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.badge-eco {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    padding: var(--sp-1) var(--sp-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
}

.ecoplast-content h2 {
    margin-bottom: var(--sp-4);
}

.ecoplast-content p {
    color: var(--text-body);
    margin-bottom: var(--sp-6);
    line-height: var(--leading-relaxed);
}

.eco-list {
    margin-bottom: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.eco-list li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-weight: 500;
    font-size: var(--text-sm);
}

.icon-eco {
    color: var(--secondary);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
.contact-info h2 {
    margin-bottom: var(--sp-4);
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: var(--sp-8);
    font-size: var(--text-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--text-sm);
    color: var(--text-body);
}

.contact-details p svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-form-wrapper {
    padding: var(--sp-10);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--text-main);
    background: var(--bg-main);
    transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-16);
}

.footer-brand p {
    max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-white);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--sp-6);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-social p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.social-icons {
    margin-top: var(--sp-4) !important;
    display: flex !important;
    gap: var(--sp-4) !important;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--duration-fast);
}

.social-icons svg:hover {
    color: var(--text-white);
}

.copyright {
    margin-top: var(--sp-16);
    padding-top: var(--sp-8);
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-xs);
}


/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: var(--sp-8);
    right: var(--sp-8);
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-normal) var(--ease-spring);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}


/* ═══════════════════════════════════════
   LOADER
   ═══════════════════════════════════════ */
.loader-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary-light);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.7s var(--ease-out) forwards;
    opacity: 0;
}


/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .container {
        padding-left: var(--sp-8);
        padding-right: var(--sp-8);
    }

    .section-padding {
        padding-top: var(--sp-20);
        padding-bottom: var(--sp-20);
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--sp-12);
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-footer {
        grid-template-columns: 1fr 1fr;
    }
}


/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --sp-6: 1.25rem;
        --sp-8: 1.5rem;
    }

    .container {
        padding-left: var(--sp-4);
        padding-right: var(--sp-4);
    }

    .section-padding {
        padding-top: var(--sp-16);
        padding-bottom: var(--sp-16);
    }

    .section-header {
        margin-bottom: var(--sp-10);
    }

    /* Mobile Nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: white;
        padding: var(--sp-6);
        box-shadow: var(--shadow-xl);
        gap: 0;
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: var(--sp-3) var(--sp-4);
        font-size: var(--text-base);
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: var(--sp-24) 0 var(--sp-16);
    }

    .hero p {
        font-size: var(--text-lg);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Features / Industries */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: var(--sp-8);
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    /* Products */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sp-10);
    }

    .footer-brand p {
        max-width: none;
        margin: 0 auto;
    }
}


/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .container {
        padding-left: var(--sp-4);
        padding-right: var(--sp-4);
    }

    .section-padding {
        padding-top: var(--sp-12);
        padding-bottom: var(--sp-12);
    }

    .feature-card {
        padding: var(--sp-6);
    }

    .contact-form-wrapper {
        padding: var(--sp-6);
    }

    .product-card {
        padding: var(--sp-6);
    }

    .filter-bar {
        gap: var(--sp-2);
    }

    .filter-btn {
        padding: var(--sp-2) var(--sp-3);
        font-size: var(--text-xs);
    }
}