/* FeetCalm — Professional Podiatric Cosmetics */
/* Global Styles */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111827;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --text-primary: #f5f5f5;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    --accent: #14b8a6;
    --accent-light: #2dd4bf;
    --accent-dark: #0d9488;
    --gold: #d4a853;
    --gold-light: #e0be7a;
    --border: #1e293b;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   PASSWORD GATE
   ============================================ */

#password-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    transition: opacity 0.6s var(--transition), visibility 0.6s;
}

#password-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gate-container {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

.gate-logo {
    width: 200px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.gate-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.gate-input-wrap {
    position: relative;
    margin-bottom: 1rem;
}

.gate-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-align: center;
    outline: none;
    transition: border-color 0.3s var(--transition);
}

.gate-input:focus {
    border-color: var(--accent);
}

.gate-input::placeholder {
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.gate-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gate-error.visible {
    opacity: 1;
}

.gate-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: inherit;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    margin-top: 1rem;
}

.gate-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--border);
}

.nav-logo img {
    height: 56px;
    transition: height 0.3s var(--transition);
}

.nav.scrolled .nav-logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    transition: all 0.3s var(--transition) !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s var(--transition);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 3px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 2rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
    padding: 8rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   AMPOULE HERO
   ============================================ */

.ampoule-section {
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.ampoule-banner {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 5rem;
}

.ampoule-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ampoule-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.ampoule-banner-text {
    text-align: center;
    padding: 2rem;
}

.ampoule-banner-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.ampoule-banner-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 300;
}

.ampoule-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.ampoule-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.ampoule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--transition);
}

.ampoule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ampoule-card:hover::before {
    transform: scaleX(1);
}

.ampoule-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: transform 0.4s var(--transition);
}

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

.ampoule-card h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.ampoule-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ampoule-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ============================================
   PRODUCT RANGES
   ============================================ */

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.4s var(--transition);
    cursor: pointer;
    group: true;
}

.product-card:hover {
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-card-img {
    width: 100%;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--transition);
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 2rem;
}

.product-card-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.product-card-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap 0.3s var(--transition);
}

.product-link:hover {
    gap: 1rem;
}

.product-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--transition);
}

.product-card:hover .product-link svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */

.tech-section {
    background: var(--bg-secondary);
}

.tech-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 350px;
}

.tech-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

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

.tech-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.2) 60%
    );
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    transition: background 0.4s var(--transition);
}

.tech-card:hover .tech-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.3) 60%
    );
}

.tech-card-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tech-card-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s var(--transition);
}

.tech-card:hover .tech-card-text p {
    opacity: 1;
    max-height: 100px;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        height: 280px;
    }

    .tech-card-text p {
        opacity: 1;
        max-height: none;
    }
}

/* ============================================
   NEEDS / SOLUTIONS
   ============================================ */

.needs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.need-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition);
}

.need-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.need-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.need-card:hover img {
    transform: scale(1.08);
}

.need-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.need-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.need-card .need-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}

.need-card:hover .need-icon {
    border-color: var(--accent);
    background: rgba(20, 184, 166, 0.1);
}

.need-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    transition: stroke 0.3s;
}

.need-card:hover .need-icon svg {
    stroke: var(--accent);
}

@media (max-width: 768px) {
    .needs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .needs-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    background: var(--bg-secondary);
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 9;
}

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

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    cursor: pointer;
    transition: background 0.3s var(--transition);
}

.video-play-btn:hover {
    background: rgba(10, 10, 10, 0.2);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}

.video-play-btn:hover .play-circle {
    transform: scale(1.1);
    border-color: var(--accent);
    background: rgba(20, 184, 166, 0.1);
}

.play-circle svg {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 4px;
}

/* ============================================
   DISTRIBUTION MAP
   ============================================ */

.distribution-section {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.distribution-visual {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.distribution-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.dist-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dist-stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.distribution-map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.6;
}

.distribution-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BRAND VALUES
   ============================================ */

.values-section {
    background: var(--bg-secondary);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.4s var(--transition);
    text-align: center;
}

.value-card:hover {
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent);
    stroke-width: 1;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 5rem 2rem 2rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    background: rgba(20, 184, 166, 0.1);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: fill 0.3s;
}

.footer-social a:hover svg {
    fill: var(--accent);
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-barcelona {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BRAND STORY
   ============================================ */

.brand-story {
    background: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text .section-desc {
    text-align: left;
}

.story-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-img-main {
    overflow: hidden;
    border: 1px solid var(--border);
}

.story-img-main img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--transition);
}

.story-img-main:hover img {
    transform: scale(1.03);
}

.story-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-img-row img {
    width: 100%;
    display: block;
    border: 1px solid var(--border);
    transition: transform 0.6s var(--transition);
}

.story-img-row img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   SOS REPAIR SHOWCASE
   ============================================ */

.sos-section {
    background: var(--bg-secondary);
    padding: 0;
    overflow: hidden;
}

.sos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.sos-image {
    overflow: hidden;
    position: relative;
}

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

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

.sos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

.sos-content .section-title {
    text-align: left;
}

.sos-content .section-desc {
    text-align: left;
}

.sos-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sos-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .sos-grid {
        grid-template-columns: 1fr;
    }

    .sos-content {
        padding: 3rem 2rem;
    }

    .sos-image {
        max-height: 400px;
    }
}

/* ============================================
   LIFESTYLE GALLERY
   ============================================ */

.gallery-section {
    padding: 0;
    overflow: hidden;
}

.gallery-strip {
    display: flex;
    gap: 0;
    height: 300px;
}

.gallery-strip img {
    flex: 1;
    min-width: 0;
    object-fit: cover;
    display: block;
    transition: flex 0.6s var(--transition), filter 0.4s;
    filter: brightness(0.7);
}

.gallery-strip img:hover {
    flex: 1.5;
    filter: brightness(1);
}

@media (max-width: 768px) {
    .gallery-strip {
        height: 200px;
    }

    .gallery-strip img:nth-child(n+4) {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Parallax helper */
.parallax-bg {
    will-change: transform;
}

/* Selection color */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}
