:root {
    /* 1. PALETTE: Clean Light Mode (Scotch/SingleStore Inspired) */
    --bg-void: #ffffff;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);
    
    /* Variable Mapping for Inline HTML Compatibility */
    --color-cream: var(--bg-void); 
    --color-blue-900: #0f172a; 
    --color-vayron-fuchsia: #9333ea; /* Brand Purple */
    --color-vayron-cyan: #9333ea;    /* Remapped to Brand Purple */
    --color-gray-600: #475569;       
    --color-gray-400: #94a3b8;       
    --color-border: #e2e8f0;

    /* Text */
    --text-primary: #0f172a;  /* Slate 900 */
    --text-secondary: #64748b; /* Slate 500 */
    --text-dim: #94a3b8;      /* Slate 400 */
    
    /* Accents */
    --accent-primary: #9333ea;  /* Vayron Purple */
    --accent-secondary: #a855f7; /* Lighter Purple */
    
    /* Borders */
    --border-subtle: #e2e8f0;
    --border-glow: #cbd5e1;
    
    /* Spacing & Radius */
    --space-section: 120px;
    --radius-card: 24px;
    --radius-pill: 9999px;
    
    /* Font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 0. RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-void);
    /* Subtle mesh for light mode */
    background-image: 
        radial-gradient(circle at 50% 0%, #f1f5f9 0%, transparent 60%),
        radial-gradient(circle at 100% 50%, rgba(147, 51, 234, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 1. LAYOUT & SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px; /* Increased from 24px for more breathing room */
}

.section {
    padding: var(--space-section) 0;
    position: relative;
    border-top: 1px solid transparent; /* Cleaner sections in light mode */
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

/* Light Mode "Spotlights" */
.section-peach {
    background: radial-gradient(circle at 0% 0%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
}

.section-blue {
    background: radial-gradient(circle at 100% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
}

.section-yellow {
    background: radial-gradient(circle at 50% 100%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
}

/* 2. NAVIGATION - Floating Glass Island */
nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 48px), 1100px);
    height: 72px;
    
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 99px; /* Pill Shape */
    
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 12px;
    
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 12px 24px -4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-links {
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,0.03);
    padding: 4px;
    border-radius: 99px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 99px;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active-nav {
    color: var(--text-primary);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.menu-toggle, .mobile-menu {
    display: none;
}

/* 3. TYPOGRAPHY */
.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    /* Dark gradient text */
    background: linear-gradient(to bottom, #0f172a, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 32px;
    background: linear-gradient(to bottom, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.large-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.accent-italic {
    font-style: italic;
    color: var(--color-vayron-fuchsia);
    -webkit-text-fill-color: var(--color-vayron-fuchsia);
    font-family: serif; 
}

/* 4. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-primary);
    color: #fff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: #f8fafc;
}

/* 5. CARDS - Clean White with Shadow */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    /* Soft shadow for light mode cards */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    background: #f8fafc;
    border: 1px solid var(--border-subtle);
}

.card-icon.fuchsia { color: #d8b4fe; background: rgba(147, 51, 234, 0.05); }
.card-icon.cyan { color: #9333ea; background: rgba(147, 51, 234, 0.05); }

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* 6. HERO STATS */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    /* Subtle hero gradient */
    background: radial-gradient(800px circle at 50% 50%, rgba(241, 245, 249, 0.8), transparent 40%);
}

.hero-stats {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px;
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* 7. LOGOS */
.trust-strip {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.4;
    filter: grayscale(1); /* No invert, keep them dark/gray */
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        top: 0;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-subtle);
        background: rgba(255, 255, 255, 0.9);
        height: 64px;
        transform: none;
        left: 0;
        padding: 0; /* Let the inner container handle padding */
    }
    
    .nav-inner {
        padding: 0 32px !important; /* Force match the main container padding */
    }
    
    .hero-stats {
        position: relative;
        transform: none;
        margin-top: 48px;
        right: auto;
        width: 100%;
        top: auto;
    }
    
    .nav-links { display: none; }
    .nav-cta { display: none; }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Active Animation */
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile Overlay */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 40px;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--color-vayron-fuchsia);
    }

    .mobile-menu .btn {
        width: 100%;
        max-width: 280px;
        color: #fff !important; /* Ensure white text over dark background */
    }
}

/* No logo invert for Light Mode (assuming logo is naturally dark) */
nav img, footer img {
    opacity: 1;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 11. VISUALS & ENHANCEMENTS */
.visual-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cost Bar Chart */
.cost-chart {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    height: 100px;
    padding-bottom: 8px;
    justify-content: center;
}

.bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 60px;
}

.bar {
    width: 100%;
    border-radius: 6px;
    transition: height 1s ease;
}

.bar-us {
    height: 80px;
    background: #cbd5e1;
}

.bar-vayron {
    height: 35px;
    background: var(--color-vayron-fuchsia);
}

.bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Scaling Step Graphics */
.scale-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.scale-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.scale-line {
    flex: 1;
    height: 2px;
    background: var(--border-subtle);
    margin: 0 8px;
}

.scale-node.active {
    border-color: var(--color-vayron-fuchsia);
    color: var(--color-vayron-fuchsia);
    background: rgba(147, 51, 234, 0.05);
}

/* Compliance List */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

/* 12. PARTNER SECTION (Light Mode Adaptation) */
@media (min-width: 0px) { /* Force specificity if needed, usually just overriding */
    .partner-section {
        background: #f8fafc; /* Slate 50 - Light Mode Background */
        position: relative;
        overflow: hidden;
        padding: 120px 0;
        color: #0f172a; /* Slate 900 - Dark Text */
    }
}

/* Background Gradients */
.partner-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.partner-window {
    width: 100%;
    max-width: 1050px; 
    overflow: hidden;
    position: relative;
    /* Removed mask-image to avoid opacity issues */
}

/* Gradient Overlay for "More Content" Hint */
.partner-window::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 250px; /* Wide soft fade */
    background: linear-gradient(to right, transparent 0%, #f8fafc 100%);
    pointer-events: none;
    z-index: 5;
}

.partner-grid {
    display: flex;
    justify-content: flex-start; /* Start from left */
    align-items: center;
    gap: 32px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-top: 50px; /* Prevent top cut-off on hover */
    padding-bottom: 50px; /* Prevent bottom shadow cut-off */
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: 50px; /* INCREASED: Safe zone for left-most card shadow */
    padding-right: 150px; /* Buffer for gradient overlay */

}
.partner-grid::-webkit-scrollbar {
    display: none;
}

.partner-card {
    position: relative;
    width: 320px;
    height: 480px;
    flex-shrink: 0; /* PREVENT COMPRESSION */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #1e293b;
}

.partner-img-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.partner-card img, .partner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Info Overlay (Default State) */
.partner-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 100%);
    color: #fff;
    transition: all 0.3s ease;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.partner-role {
    font-size: 0.9rem;
    color: #a78bfa; /* Light purple accent */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hover/Active State (The "Flip" Effect) */
.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
}

.partner-card:hover .partner-info {
    opacity: 0; /* Hide default info on hover */
}



/* The Grid Overlay Content on Hover */
/* The Grid Overlay Content on Hover */
.partner-hover-content {
    position: absolute;
    inset: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 51, 234, 0.3);
    
    /* Light Mode Glass Effect */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Grid Pattern (Subtle Grey) */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;

    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 24px;
}

/* Ensure text inside hover content is dark for light mode */
.partner-hover-content .hover-name { color: #0f172a; }
.partner-hover-content .hover-role { color: #7c3aed; } /* Vayron Purple */
.partner-hover-content .hover-bio { color: #334155; } /* Slate 700 */
.partner-hover-content .social-links a { color: #334155 !important; }

.partner-card:hover .partner-hover-content {
    opacity: 1;
}

.hover-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.hover-role {
    font-size: 0.9rem;
    color: #c4b5fd;
    margin-bottom: 24px;
}

.hover-bio {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.1s ease;
}

.partner-card:hover .hover-bio {
    opacity: 1;
    transform: translateY(0);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0; /* Prevent squashing */
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.2); /* Dark border for visibility */
    background: #fff; /* White background to stand out */
    color: #0f172a; /* Dark text */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.carousel-btn:hover {
    background: #0f172a; /* Dark background on hover */
    color: #fff; /* White text on hover */
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 13. TEAM MARQUEE SECTION (Light Mode) */
.team-section {
    padding: 100px 0;
    overflow: hidden;
    background: #f8fafc; 
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 38px;
    background: #0f172a;
    color: #fff;
    border-radius: 99px;
    margin-bottom: 24px;
    font-size: 16px;
}


@keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@keyframes scrollLeftToRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); } 
}

.team-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0; /* Reduced margin */
    padding: 40px 0; /* Critical: Buffer for hover scale & shadow bloom */
    white-space: nowrap;
    /* Gradient Fade on Sides */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.team-track {
    display: flex;
    gap: 0; /* Removing gap for perfect loop math */
    width: max-content;
    will-change: transform;
    animation: scrollRightToLeft 40s linear infinite;
}

/* Pause on hover */
.team-track:hover {
    animation-play-state: paused;
}

.team-track.reverse {
    animation: scrollLeftToRight 45s linear infinite;
}

.team-track.reverse:hover {
    animation-play-state: paused;
}


.team-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 32px; /* Using margin instead of gap */
    /* Glass / Metallic Background */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Metal Reflection Borders (Silver-like) */
    border: 1px solid #cbd5e1; /* Base Silver */
    border-top-color: #fff;    /* Pure White Top Edge */
    border-bottom-color: #94a3b8; /* Darker Silver Bottom */
    
    box-shadow: 
        inset 0 1px 0 0 rgba(255, 255, 255, 1),   /* Inner Top White Shine */
        inset 0 -1px 0 0 rgba(148, 163, 184, 0.2), /* Inner Bottom Shadow */
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
        
    padding: 16px 40px 16px 16px;
    border-radius: 120px;
    min-width: 350px; 
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
    position: relative;
    overflow: hidden;
}

/* Sheen Effect */
.team-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.team-card:hover::after {
    left: 150%;
    transition: left 0.7s ease-in-out;
}

.team-card:hover {
    border-color: #9333ea;
    transform: scale(1.05);
    box-shadow: 
        inset 0 1px 0 0 rgba(255, 255, 255, 1),
        0 20px 40px -10px rgba(147, 51, 234, 0.2); /* Subtle Purple Shadow */
}

.team-img {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0);
    border-color: #9333ea;
}

.team-info {
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* 14. FOOTER STYLES */
.main-footer {
    padding: 100px 0 60px 0;
    border-top: 1px solid var(--color-border);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 4px; /* Tiny buffer */
}

.footer-brand p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-gray-400);
    font-size: 0.85rem;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

