/* ==========================================================================
   ARPA BRAND 2026 — CLASSIC LUXURY STREETWEAR (GOLD, WHITE, BLACK EDITION)
   High-End Luxury Tech Streetwear Architecture
   ========================================================================== */

:root {
    --arpa-black: #0A0A0A;
    --arpa-obsidian: #050505;
    --arpa-surface: #121212;
    --arpa-gray: #1A1A1A;
    --arpa-white: #FFFFFF;
    --arpa-offwhite: #F5F5F0;
    --arpa-gold: #D4AF37;
    --arpa-gold-light: #F3E5AB;
    --arpa-gold-dark: #997A15;
    --arpa-gold-glow: rgba(212, 175, 55, 0.35);
    --arpa-border: rgba(255, 255, 255, 0.08);
    --arpa-border-gold: rgba(212, 175, 55, 0.3);
    --arpa-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --arpa-font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
    background-color: var(--arpa-black);
}

body,
body.arpa-theme-body,
body.arpa-clean-canvas {
    background-color: var(--arpa-black) !important;
    color: var(--arpa-offwhite) !important;
    font-family: var(--arpa-font-sans) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

.arpa-page-wrapper {
    background-color: var(--arpa-black) !important;
    color: var(--arpa-offwhite) !important;
    width: 100% !important;
    min-height: 100vh;
    position: relative;
}

/* NOISE & CURSOR GLOW */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(255,255,255,0.04) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

/* SECTION DIVIDER */
.section-divider {
    height: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), rgba(255,255,255,0.1), transparent);
}

/* HEADER */
.arpa-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-scrolled {
    background: rgba(10, 10, 10, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.arpa-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.arpa-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--arpa-white);
}

.arpa-brand-logo svg {
    width: 38px;
    height: 38px;
    transition: transform 0.5s ease;
}

.arpa-brand-logo:hover svg {
    transform: rotate(12deg);
}

.arpa-logo-wordmark {
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--arpa-white);
}

.arpa-desktop-nav {
    display: none;
    align-items: center;
    gap: 36px;
}

@media (min-width: 768px) {
    .arpa-desktop-nav {
        display: flex;
    }
}

.arpa-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 245, 240, 0.7);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.arpa-nav-link:hover {
    color: var(--arpa-gold);
}

.arpa-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--arpa-gold);
    transition: width 0.3s;
}

.arpa-nav-link:hover::after {
    width: 100%;
}

.arpa-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.arpa-hub-select-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 9999px;
    color: var(--arpa-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-family: var(--arpa-font-mono);
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.arpa-hub-select-btn:focus,
.arpa-hub-select-btn:hover {
    border-color: var(--arpa-gold);
    box-shadow: 0 0 15px var(--arpa-gold-glow);
}

.arpa-verify-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 9999px;
    border: 1px solid var(--arpa-gold);
    color: var(--arpa-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    background: rgba(212, 175, 55, 0.08);
    transition: all 0.3s;
}

.arpa-verify-pill-btn:hover {
    background: var(--arpa-gold);
    color: var(--arpa-black);
    box-shadow: 0 0 25px var(--arpa-gold-glow);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--arpa-gold);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}

/* MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-link {
    font-size: 2rem;
    font-weight: 900;
    color: var(--arpa-white);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu-link:hover {
    color: var(--arpa-gold);
}

/* ==========================================================================
   HERO SECTION (CLASSIC LUXURY GOLD & BLACK)
   ========================================================================== */
.arpa-hero-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,175,55,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 75% 60%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 25% 70%, rgba(212,175,55,0.12) 0%, transparent 50%);
    animation: meshPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes meshPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.08) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(-1deg); opacity: 0.9; }
}

.hero-content-grid {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 64px;
    }
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--arpa-border-gold);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--arpa-gold);
    animation: pulseDot 2s infinite;
}

.hero-badge-text {
    font-family: var(--arpa-font-mono);
    font-size: 0.75rem;
    color: var(--arpa-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-main-heading {
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--arpa-white);
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 6.8vw, 6.2rem);
}

.hero-heading-line {
    display: block;
    overflow: hidden;
}

.glitch-text {
    position: relative;
    cursor: default;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
}

.glitch-text:hover::before {
    animation: glitch1 0.3s ease-out;
    color: var(--arpa-gold);
    opacity: 0.9;
}

.glitch-text:hover::after {
    animation: glitch2 0.3s ease-out;
    color: var(--arpa-white);
    opacity: 0.9;
}

.gradient-title-word {
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 55%, #F3E5AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-description-p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.75);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.magnetic-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s;
    cursor: pointer;
}

.magnetic-btn-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    color: var(--arpa-black);
}

.magnetic-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D4AF37, #FFFFFF);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.magnetic-btn-primary span {
    position: relative;
    z-index: 2;
}

.magnetic-btn-primary:hover::before {
    opacity: 1;
}

.magnetic-btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 35px var(--arpa-gold-glow);
    color: var(--arpa-black);
}

.btn-secondary-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--arpa-white);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary-outline:hover {
    border-color: var(--arpa-gold);
    color: var(--arpa-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px var(--arpa-gold-glow);
}

.hero-stats-bar {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero-stat-item .stat-val {
    font-family: var(--arpa-font-mono);
    font-size: 1.6rem;
    font-weight: 700;
}

.hero-stat-item .stat-lbl {
    font-size: 0.75rem;
    color: rgba(245, 245, 240, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.stat-divider-line {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
}

/* HERO 3D CAP STAGE */
.hero-stage-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-edition-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    z-index: 20;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--arpa-border-gold);
    border-radius: 20px;
    padding: 14px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px var(--arpa-gold-glow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.cap-3d-canvas-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

@media (min-width: 768px) {
    .cap-3d-canvas-wrap {
        width: 420px;
        height: 420px;
    }
}

.cap-glow-backlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(255,255,255,0.1) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(55px);
    animation: meshPulse 6s infinite alternate;
}

/* ==========================================================================
   NFC VERIFICATION SIMULATOR SECTION
   ========================================================================== */
.arpa-nfc-section-wrap {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.nfc-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .nfc-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* Smartphone Mockup */
.smartphone-mockup {
    position: relative;
    margin: 0 auto;
    width: 290px;
    height: 520px;
    background: var(--arpa-gray);
    border-radius: 48px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 40px var(--arpa-gold-glow);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--arpa-black);
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.phone-speaker-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: var(--arpa-gray);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 20;
}

.nfc-rings-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfc-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.65);
    animation: nfcPulse 2.2s ease-out infinite;
}

.nfc-ring:nth-child(2) { animation-delay: 0.5s; }
.nfc-ring:nth-child(3) { animation-delay: 1.0s; }

@keyframes nfcPulse {
    0% { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.nfc-chip-badge-center {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--arpa-gold), #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--arpa-gold-glow);
    z-index: 10;
}

.nfc-scan-progress-bar {
    width: 130px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    margin: 8px auto 0 auto;
}

.nfc-scan-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--arpa-gold), #FFFFFF);
    border-radius: 9999px;
    width: 0%;
    transition: width 1s ease;
}

.holo-card-result {
    position: absolute;
    inset-inline: 16px;
    bottom: 24px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(255,255,255,0.06) 100%);
    border: 1px solid var(--arpa-border-gold);
    border-radius: 20px;
    padding: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 15;
}

.holo-card-result.visible {
    opacity: 1;
    transform: translateY(0);
}

.nfc-feature-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.nfc-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--arpa-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================================================
   COLLECTIONS / WOOCOMMERCE GRID
   ========================================================================== */
.arpa-collections-wrap {
    position: relative;
    padding: 120px 0;
}

.collections-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.collections-header-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
    gap: 20px;
}

@media (min-width: 768px) {
    .collections-header-flex {
        flex-direction: row;
        align-items: flex-end;
    }
}

.product-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

@media (min-width: 1024px) {
    .product-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--arpa-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: var(--arpa-gold);
    box-shadow: 0 25px 60px -10px var(--arpa-gold-glow);
}

.product-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #080808;
}

.product-img-box img,
.product-img-box svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
}

.product-card:hover .product-img-box img,
.product-card:hover .product-img-box svg {
    transform: scale(1.08);
    filter: brightness(1.08);
}

.sold-out-stripe {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(45deg, rgba(212,175,55,0.1), rgba(212,175,55,0.1) 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.sold-out-stripe span {
    font-weight: 900;
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.35);
    transform: rotate(-15deg);
    letter-spacing: 0.15em;
}

/* Extra Products Toggle */
.product-card-extra {
    display: none;
}

.product-card-extra.revealed {
    display: flex;
    animation: fadeInCard 0.6s ease forwards;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   PROCESS TIMELINE SECTION ("DE LA IDEA A TU CABEZA")
   ========================================================================== */
.arpa-process-wrap {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.process-timeline-wrap {
    position: relative;
    max-width: 1080px;
    margin: 60px auto 0 auto;
}

.process-center-line {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

@media (min-width: 1024px) {
    .process-center-line {
        display: block;
    }
}

.process-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--arpa-gold), #FFFFFF);
    transition: height 0.2s;
}

.process-step-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .process-step-row {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.process-step-dot {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--arpa-gold);
    border: 4px solid var(--arpa-black);
    box-shadow: 0 0 15px var(--arpa-gold-glow);
    z-index: 10;
}

@media (min-width: 1024px) {
    .process-step-dot {
        display: block;
    }
}

/* ==========================================================================
   NEXT DROP / COUNTDOWN CTA SECTION
   ========================================================================== */
.arpa-countdown-wrap {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.countdown-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 40px auto;
}

@media (min-width: 640px) {
    .countdown-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.countdown-box-card {
    background: var(--arpa-surface);
    border: 1px solid var(--arpa-border-gold);
    border-radius: 20px;
    padding: 24px 16px;
}

.countdown-num {
    font-family: var(--arpa-font-mono);
    font-size: 2.8rem;
    font-weight: 700;
}

.countdown-lbl {
    font-size: 0.75rem;
    color: rgba(245, 245, 240, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* FOOTER */
.arpa-footer-wrap {
    position: relative;
    padding: 90px 0 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid-4col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid-4col {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
