/* 
    AEROSOL & COSMETICS WORKS - MAIN STYLESHEET
    ============================================
*/

/* ============================================
   1. VARIABLES (DESIGN TOKENS)
   ============================================ */
:root {
    /* 
        COLOR SYSTEM
        Primary: Deep navy blue - industrial, trustworthy, premium
        Secondary: Lighter blue for hover states and accents
        Accent: Muted gold - luxury without flashiness
        Background: Warm off-white - easier on eyes than pure white
    */
    --color-primary: #1a2744;        /* Deep navy - main brand color */
    --color-primary-dark: #0f172a;   /* Darker variant for depth */
    --color-primary-light: #2d3e5f;  /* Lighter for hover states */
    
    --color-secondary: #3d5a80;      /* Medium blue for secondary elements */
    --color-secondary-light: #98c1d9; /* Light blue for subtle accents */
    --color-brand-blue: #8ed8f8;      /* Logo-inspired light blue highlight */
    --color-brand-blue-soft: rgba(142, 216, 248, 0.18);
    
    --color-accent: #b8a47c;         /* Muted gold - premium feel */
    --color-accent-dark: #9a8b6b;    /* Darker gold for hover */
    --color-accent-light: #d4c5a3;   /* Light gold for backgrounds */
    
    --color-background: #faf9f7;     /* Warm off-white */
    --color-background-alt: #f5f4f2; /* Slightly darker for contrast sections */
    --color-surface: #ffffff;        /* Pure white for cards */
    
    --color-text: #1a2744;           /* Primary text - high contrast */
    --color-text-light: #4a5568;     /* Secondary text */
    --color-text-muted: #718096;     /* Tertiary/muted text */
    
    /* Neutral scale for UI elements */
    --color-border: #e2e8f0;
    --color-border-light: #edf2f7;
    
    /* 
        TYPOGRAPHY
        Headings: Playfair Display - elegant, editorial feel
        Body: Inter - highly legible, professional
    */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --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.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    
    /* 
        SPACING SYSTEM
        Based on 0.25rem (4px) increments for consistency
    */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* 
        LAYOUT
        Max-width for content containment
        Grid gaps for consistent spacing
    */
    --container-max: 1280px;
    --container-narrow: 768px;
    --grid-gap: 2rem;
    
    /* 
        TRANSITIONS & ANIMATION
        Consistent timing for professional feel
    */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* 
        SHADOWS
        Subtle depth without harshness
    */
    --shadow-sm: 0 1px 2px 0 rgba(26, 39, 68, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(26, 39, 68, 0.1), 0 2px 4px -1px rgba(26, 39, 68, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(26, 39, 68, 0.1), 0 4px 6px -2px rgba(26, 39, 68, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(26, 39, 68, 0.1), 0 10px 10px -5px rgba(26, 39, 68, 0.04);
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* Remove default list styling but keep semantics */
ul, ol {
    list-style: none;
}

/* Accessible focus states */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Image defaults */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   3. LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Narrow container for text-heavy sections */
.container-narrow {
    max-width: var(--container-narrow);
}

/* Section spacing - consistent vertical rhythm */
.section {
    padding: var(--space-24) 0;
    position: relative;
}

/* Alternate background for visual rhythm */
.section-alt {
    background-color: var(--color-background-alt);
}

/* Section header for consistent titles */
.section-header {
    margin-bottom: var(--space-16);
}

.section-header.center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
.section-eyebrow {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.section-eyebrow.light {
    color: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 500;
    line-height: var(--leading-tight);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.section-title.light {
    color: var(--color-surface);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.section-text {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    max-width: 65ch;
}

.section-text.light {
    color: rgba(255, 255, 255, 0.85);
}

/* Text accent color utility */
.text-accent {
    color: var(--color-accent);
}

/* ============================================
   5. COMPONENTS - BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Primary button - solid navy */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-surface);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Outline button - transparent with border */
.btn-outline {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
}

/* Accent button - gold for CTAs */
.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Large button variant */
.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

/* Button icon animation */
.btn-icon {
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   6. NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-base);
    padding: var(--space-6) 0;
}

/* Scrolled state - sticky with background */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-4) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styling */
.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-primary-light);
    letter-spacing: -0.02em;
    transition: color var(--transition-base);
}

.site-header.scrolled .logo-text {
    color: var(--color-primary-dark);
}

.logo-subtitle {
    font-size: var(--text-xs);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: var(--space-1);
}

/* Main navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-surface);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-base);
}

.site-header.scrolled .nav-link {
    color: var(--color-text);
}

/* Underline animation on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA button in nav */
.nav-cta {
    background-color: var(--color-accent);
    color: var(--color-primary) !important;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-cta:hover {
    background-color: var(--color-accent-dark);
}

.nav-cta::after {
    display: none;
}

/* Mobile toggle - hidden on desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--color-surface);
    transition: all var(--transition-base);
}

.site-header.scrolled .hamburger-line {
    background-color: var(--color-primary);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--color-primary);
}

/* Layered background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #223f67 48%, var(--color-primary-dark) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

/* Soft light-blue brand glow pulled from the company logo. */
.hero-blue-wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(142, 216, 248, 0.28) 0, rgba(142, 216, 248, 0.12) 24%, transparent 52%),
        linear-gradient(115deg, transparent 0%, rgba(142, 216, 248, 0.08) 56%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-16);
    align-items: center;
    padding-top: var(--space-24);
}

.hero-text-wrapper {
    max-width: 680px;
}

.hero-eyebrow {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-6);
    display: block;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 500;
    line-height: var(--leading-tight);
    color: var(--color-surface);
    margin-bottom: var(--space-6);
}

.hero .text-accent {
    color: var(--color-brand-blue);
    text-shadow: 0 0 28px rgba(142, 216, 248, 0.22);
}

.hero-subtext {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-10);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Floating certification card */
.hero-visual {
    position: relative;
}

.floating-card {
    background-color: rgba(142, 216, 248, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 216, 248, 0.36);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    animation: float 6s ease-in-out infinite;
}

.card-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.card-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-surface);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-12);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    opacity: 0.6;
}

.scroll-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-surface);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-brand-blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   8. STORY SECTION (Why We Exist)
   ============================================ */
.section-story {
    background-color: var(--color-background);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.story-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    margin-top: var(--space-10);
}

.story-block {
    position: relative;
    padding-left: var(--space-16);
}

.block-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-accent);
    opacity: 0.3;
    font-weight: 500;
    line-height: 1;
}

.block-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    font-weight: 500;
}

.block-text {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* Visual frame with accent lines */
.story-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: var(--space-8);
}

.visual-placeholder {
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    border: 2px dashed var(--color-border);
}

.accent-line {
    position: absolute;
    background-color: var(--color-accent);
}

.accent-line--horizontal {
    width: 100px;
    height: 2px;
    top: 0;
    left: 0;
}

.accent-line--vertical {
    width: 2px;
    height: 100px;
    bottom: 0;
    right: 0;
}

/* ============================================
   9. CAPABILITIES SECTION
   ============================================ */
.section-capabilities {
    background-color: var(--color-background-alt);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

/* 
    HOW TO ADD A NEW SERVICE CARD:
    The grid above uses 4 columns. If adding more cards:
    - 5 cards: change to repeat(5, 1fr) or keep 4 and let it wrap
    - 6 cards: use repeat(3, 1fr) for 2 rows of 3
    - Or switch to auto-fit: repeat(auto-fit, minmax(280px, 1fr))
*/

.capability-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* Gold accent border that appears on hover */
.card-accent-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-base);
    pointer-events: none;
}

.capability-card:hover .card-accent-border {
    border-color: var(--color-accent);
}

.card-icon {
    color: var(--color-primary);
    margin-bottom: var(--space-6);
    transition: color var(--transition-base);
}

.capability-card:hover .card-icon {
    color: var(--color-accent);
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.card-description {
    color: var(--color-text-light);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.card-link:hover {
    color: var(--color-accent);
}

.card-link svg {
    transition: transform var(--transition-base);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   10. PROCESS SECTION (Timeline)
   ============================================ */
.section-process {
    background-color: var(--color-background);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--space-12);
}

/* Timeline line - draws on scroll */
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 0;
    background-color: var(--color-accent);
    transition: height 1s ease-out;
}

.timeline-line.drawn {
    height: 100%;
}

.process-step {
    position: relative;
    padding-bottom: var(--space-16);
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity var(--transition-slow),
        transform var(--transition-slow);
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -var(--space-12);
    top: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 2;
}

.process-step.visible .step-marker {
    border-color: var(--color-accent);
    background-color: var(--color-primary);
}

.step-number {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

.process-step.visible .step-number {
    color: var(--color-accent);
}

.step-content {
    background-color: var(--color-surface);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    margin-left: var(--space-8);
    transition: all var(--transition-base);
}

.process-step.visible .step-content {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.step-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.step-description {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ============================================
   11. TRUST / FACILITY SECTION
   ============================================ */
.section-trust {
    padding: 0;
    background-color: var(--color-primary);
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.trust-visual {
    position: relative;
    overflow: hidden;
}

.facility-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-lg);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-primary), transparent);
    z-index: 1;
}

.trust-content {
    display: flex;
    align-items: center;
    padding: var(--space-24);
    position: relative;
    z-index: 2;
}

.content-wrapper {
    max-width: 540px;
}

.trust-stats {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-accent);
    font-weight: 500;
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   12. CTA SECTION
   ============================================ */
.section-cta {
    background-color: var(--color-background);
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.cta-text {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    margin-bottom: var(--space-10);
    line-height: var(--leading-relaxed);
}

.cta-secondary {
    margin-top: var(--space-8);
    font-size: var(--text-base);
    color: var(--color-text-muted);
}

.cta-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-accent);
    transition: color var(--transition-base);
}

.cta-link:hover {
    color: var(--color-accent);
}

/* ============================================
   13. FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: var(--space-20) 0 var(--space-10);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-4);
    color: var(--color-surface);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-width: 300px;
}

.footer-contact {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-title {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-base);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   14. SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px);
    transition:
        opacity var(--transition-slow),
        filter var(--transition-slow),
        transform var(--transition-slow);
    will-change: opacity, filter, transform;
}

.reveal-on-scroll.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Direction variants */
.reveal-on-scroll[data-reveal="left"] {
    transform: translateX(-36px);
}

.reveal-on-scroll[data-reveal="right"] {
    transform: translateX(36px);
}

.reveal-on-scroll[data-reveal="up"] {
    transform: translateY(34px);
}

.reveal-on-scroll[data-reveal="left"].visible,
.reveal-on-scroll[data-reveal="right"].visible,
.reveal-on-scroll[data-reveal="up"].visible {
    transform: translate(0);
}

/* Stagger delays */
.reveal-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.reveal-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.reveal-on-scroll[data-delay="300"] { transition-delay: 0.3s; }

/* Initial hero text reveal */
.reveal-text {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(24px);
    animation: textReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-text[data-delay="100"] { animation-delay: 0.1s; }
.reveal-text[data-delay="200"] { animation-delay: 0.2s; }
.reveal-text[data-delay="300"] { animation-delay: 0.3s; }

@keyframes textReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* ============================================
   15. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
    
    .trust-visual {
        min-height: 400px;
        order: 2;
    }
    
    .trust-content {
        padding: var(--space-12);
        order: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-24: 4rem;
        --space-20: 3rem;
        --space-16: 2.5rem;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
    }
    
    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding-left: var(--space-8);
    }
    
    .step-content {
        margin-left: var(--space-4);
    }
    
    .trust-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    /* Mobile navigation */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-surface);
        flex-direction: column;
        padding: var(--space-24) var(--space-6);
        transition: right var(--transition-slow);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--color-text) !important;
        font-size: var(--text-lg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
}

/* ============================================
   16. UTILITY CLASSES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal-on-scroll {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .reveal-text {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
/* ============================================
   CLIENTS MARQUEE SECTION
   ============================================
   
   💡 WHAT THIS DOES:
   Infinite scrolling animation of client logos
   Creates social proof and brand credibility
   
   🎯 EDIT HERE:
   - Change animation speed (30s = slower, 15s = faster)
   - Adjust logo sizes
   - Change colors to match brand guidelines
*/

.section-clients {
    background-color: var(--color-background-alt);
    padding: var(--space-16) 0;
    overflow: hidden;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-6) 0;
}

/* Gradient fade on edges */
.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background-alt), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background-alt), transparent);
}

/* The scrolling track */
.marquee-track {
    display: flex;
    gap: var(--space-12);
    animation: scroll 30s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.clients-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Individual logo container */
.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
}

/* Logo placeholder styling */
.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-md);
    min-width: 180px;
    height: 80px;
    transition: all var(--transition-base);
    border: 2px solid var(--color-border);
    background-color: var(--color-surface);
}

.logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

/* Brand-specific colors (optional) */
.logo-placeholder.woolworths {
    border-color: #00704a; /* Woolworths green */
    background-color: rgba(0, 112, 74, 0.05);
}

.logo-placeholder.clicks {
    border-color: #0055a4; /* Clicks blue */
    background-color: rgba(0, 85, 164, 0.05);
}

.logo-placeholder.dischem {
    border-color: #e31837; /* Dis-Chem red */
    background-color: rgba(227, 24, 55, 0.05);
}

.logo-placeholder.sorbet {
    border-color: #f06292; /* Sorbet pink */
    background-color: rgba(240, 98, 146, 0.05);
}

/* Optional text styling for placeholder logos, if image logos are unavailable. */
.logo-placeholder-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}
.client-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.client-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 20s; /* Faster on mobile */
        gap: var(--space-6);
    }
    
    .logo-placeholder {
        min-width: 140px;
        height: 60px;
        padding: var(--space-3) var(--space-6);
    }
    
    .logo-placeholder-text {
        font-size: var(--text-base);
    }
    
    .clients-marquee::before,
    .clients-marquee::after {
        width: 80px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: var(--space-6);
    }
    
    .client-logo {
        flex-shrink: 1;
    }
}
/* ============================================
   PRODUCTS SECTION - WITH LANDSCAPE FEATURE
   ============================================ */

.section-products {
    background-color: var(--color-background);
}

/* Featured Landscape Product */
.product-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: center;
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-12);
    transition: all var(--transition-base);
}

.product-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-featured:hover .featured-image {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
}

.featured-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.featured-content {
    padding: var(--space-10);
}

.featured-content .product-brand {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.featured-content .product-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.featured-content .product-description {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Standard Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.product-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-6);
}

.product-brand {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.product-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.product-description {
    color: var(--color-text-light);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* Responsive Products */
@media (max-width: 1024px) {
    .product-featured {
        grid-template-columns: 1fr;
    }
    
    .featured-image-wrapper {
        min-height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: var(--space-6);
    }
    
    .featured-content .product-title {
        font-size: var(--text-2xl);
    }
}

/* ============================================
   INTERACTIVE TEAM / DIRECTORS SECTION
   ============================================ */

.section-team {
    background-color: var(--color-background-alt);
    overflow: hidden;
}

.team-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    margin-top: var(--space-12);
}

/* Featured Team Member Layout */
.team-featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.team-featured:nth-child(3) {
    grid-template-columns: 1.2fr 1fr;
}

/* Portrait Styling */
.team-portrait {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portrait-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.portrait-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.portrait-backdrop {
    position: absolute;
    inset: 20px -20px -20px 20px;
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.1;
    transition: all var(--transition-base);
}

.portrait-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    top: -20px;
    left: -20px;
    z-index: 3;
    transition: all var(--transition-base);
}

.portrait-accent.accent-right {
    left: auto;
    right: -20px;
    top: auto;
    bottom: -20px;
}

/* Hover Effects */
.team-featured:hover .portrait-img {
    transform: translateY(-10px);
}

.team-featured:hover .portrait-backdrop {
    transform: translate(10px, 10px);
    opacity: 0.2;
}

.team-featured:hover .portrait-accent {
    transform: scale(1.1) rotate(5deg);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.experience-badge.badge-right {
    right: auto;
    left: -10px;
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-top: var(--space-1);
}

/* Team Details */
.team-details {
    padding: var(--space-6);
}

.order-2 {
    order: 2;
}

.order-1 {
    order: 1;
}

.details-header {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-border);
}

.team-role {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.team-name {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--color-primary);
    line-height: var(--leading-tight);
}

.details-content {
    margin-bottom: var(--space-6);
}

.team-bio {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.tag:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Contact Link */
.details-footer {
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-primary);
    font-weight: 600;
    transition: all var(--transition-base);
}

.contact-link:hover {
    color: var(--color-accent);
    gap: var(--space-4);
}

.contact-link svg {
    transition: transform var(--transition-base);
}

.contact-link:hover svg {
    transform: translateX(4px);
}

/* Connector Between Directors */
.team-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-4) 0;
}

.connector-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

.connector-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-16);
    padding-top: var(--space-12);
    border-top: 1px solid var(--color-border);
}

.stat-box {
    text-align: center;
    padding: var(--space-8);
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    display: block;
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Responsive Team Section */
@media (max-width: 1024px) {
    .team-featured,
    .team-featured:nth-child(3) {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .order-2,
    .order-1 {
        order: unset;
    }
    
    .team-portrait {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .experience-badge,
    .experience-badge.badge-right {
        right: 20px;
        left: auto;
        bottom: 20px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .team-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .team-name {
        font-size: var(--text-3xl);
    }
    
    .portrait-accent,
    .portrait-accent.accent-right {
        display: none;
    }
    
    .stat-box {
        padding: var(--space-6);
    }
}
/* ============================================
   PRODUCTS SECTION
   ============================================ */

.section-products {
    background-color: var(--color-background);
    padding: var(--space-24) 0;
}

/* Featured Landscape Product - Perfect for 1024x372 */
.product-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: center;
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-12);
    transition: all var(--transition-base);
}

.product-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    background-color: var(--color-background-alt);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.product-featured:hover .featured-image {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
    z-index: 2;
}

.featured-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.featured-content {
    padding: var(--space-10);
}

.featured-content .product-brand {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.featured-content .product-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.featured-content .product-description {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.product-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--color-background-alt);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-6);
}

.product-brand {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.product-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.product-description {
    color: var(--color-text-light);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* Responsive Products */
@media (max-width: 1024px) {
    .product-featured {
        grid-template-columns: 1fr;
    }
    
    .featured-image-wrapper {
        min-height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: var(--space-6);
    }
    
    .featured-content .product-title {
        font-size: var(--text-2xl);
    }
}
