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

:root {
    --green: #0d5c4e;
    --green-light: #1a7a68;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --border: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.header-icon-btn:hover {
    background: var(--gray-light);
    color: var(--black);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.3px;
}

.logo-name span { color: var(--green); }

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.btn-outline {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--black);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--gray-light);
    border-color: #ccc;
}

.btn-green {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: var(--green);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-green:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.header-nav {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.header-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    height: 42px;
}

.header-nav a {
    font-size: 0.8rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--green);
    font-weight: 500;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    background: var(--white);
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 0;
}

.wave-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72%;
    z-index: 0;
    pointer-events: none;
}

.wave-background svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.hero-top {
    text-align: center;
    margin-bottom: 52px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray);
    background: white;
    margin-bottom: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -1px;
    max-width: 680px;
    margin: 0 auto 18px;
}

.hero h1 strong {
    font-style: normal;
    font-weight: 700;
    color: var(--green);
}

.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 240px 200px;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.hero-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    position: relative;
}

.hero-img-main { grid-row: span 2; }

.hero-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    transition: transform 0.6s ease;
    position: relative;
}

.hero-img:hover .hero-img-inner { transform: scale(1.04); }

.hero-img-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-inner span { font-size: 2.2rem; }

.hero-img-inner p {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ===== SPLIT : ALBUM + VINTED ===== */
.split-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ===== GRILLE PHOTOS ===== */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.photo-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: var(--gray-light);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity   0.55s ease,
        transform 0.55s ease,
        box-shadow 0.3s ease;
}

.photo-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-item:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    transform: translateY(-4px) !important;
}

.photo-item.span2 { grid-column: span 2; }

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gray-light);
}

.photo-item.span2 .photo-placeholder { aspect-ratio: 16/6; }

.photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-item:hover .photo-placeholder img { transform: scale(1.07); }

.ph-icon  { font-size: 1.8rem; opacity: 0.25; position: relative; z-index: 1; }
.ph-label { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: #aaa; position: relative; z-index: 1; }

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,92,78,0.92) 0%, rgba(13,92,78,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.photo-item:hover .photo-overlay { opacity: 1; }

.overlay-tag   { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.overlay-title { font-size: 0.9rem; font-weight: 600; color: white; margin-bottom: 2px; }
.overlay-desc  { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.photo-badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 26px; height: 26px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
    color: var(--green);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.photo-item:hover .photo-badge { opacity: 1; transform: scale(1); }

/* ===== VINTED ===== */
.vinted-col {
    position: sticky;
    top: 112px;
}

.vinted-header-block { margin-bottom: 20px; }

.vinted-profile-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    margin-bottom: 14px;
}

.vinted-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
    50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0.05); }
}

.vinted-info h4 { font-size: 0.82rem; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.vinted-info p  { font-size: 0.7rem; color: var(--gray); }

.vinted-open-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--green);
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.vinted-open-btn:hover { background: var(--green-light); transform: translateY(-1px); }

.iframe-container {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    height: 700px;
    position: relative;
    background: var(--gray-light);
}

.iframe-container iframe { width: 100%; height: 100%; border: none; display: block; }

.iframe-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--gray-light);
    z-index: 2;
    transition: opacity 0.4s;
}

.spinner {
    width: 32px; height: 32px;
    border: 2px solid var(--border);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

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

.loading-text { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

.iframe-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    text-align: center;
    z-index: 3;
    gap: 16px;
    overflow: hidden;
}

.iframe-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/boutique-vinted.png') center / cover no-repeat;
    filter: blur(7px);
    transform: scale(1.06);
    z-index: 0;
}

.iframe-fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.iframe-fallback > * {
    position: relative;
    z-index: 2;
}

.fallback-icon {
    width: 64px; height: 64px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.fallback-title { font-size: 1.1rem; font-weight: 700; color: white; }
.fallback-text  { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 300px; }

.fallback-note {
    font-size: 0.68rem; color: rgba(255,255,255,0.6);
    max-width: 300px; line-height: 1.6;
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ===== VINTED CARD PROFIL ===== */
.vinted-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.vinted-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vinted-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    flex-shrink: 0;
}

.vinted-card-identity { flex: 1; }

.vinted-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.vinted-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #f59e0b;
}

.vinted-rating-count {
    font-size: 0.72rem;
    color: var(--gray);
}

.vinted-card-open {
    flex-shrink: 0;
    padding: 8px 14px;
    background: var(--green);
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.vinted-card-open:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.vinted-badge-shipping {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0fdf9;
    border: 1px solid #bbf7e6;
    border-radius: 12px;
    padding: 12px 16px;
}

.vinted-badge-icon { font-size: 1.5rem; flex-shrink: 0; }

.vinted-badge-shipping strong {
    display: block;
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 600;
}

.vinted-badge-shipping p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--gray);
}

.vinted-card-infos {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: #fafafa;
    border-radius: 12px;
}

.vinted-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #444;
}

.vinted-info-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.vinted-card-desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    padding: 14px 16px;
    background: #f8fffe;
    border-left: 3px solid var(--green);
    border-radius: 0 10px 10px 0;
}

.vinted-card-cta {
    display: block;
    text-align: center;
    background: var(--green);
    color: white;
    padding: 13px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.vinted-card-cta:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

/* ===== STATS ===== */
.stats-section {
    background: var(--green);
    padding: 100px 40px 90px;
    position: relative;
    overflow: hidden;
}

.stats-wave-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    overflow: hidden;
    line-height: 0;
}

.stats-wave-top svg { display: block; width: 100%; }

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.stats-left {
    padding-right: 60px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stats-label   { font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.stats-heading { font-size: 1.9rem; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.stats-text    { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 320px; }

.stats-grid {
    padding-left: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat-item {
    padding: 30px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:nth-child(3),
.stat-item:nth-child(4)   { border-bottom: none; }

.stat-value { font-size: clamp(2.4rem, 3.5vw, 3.2rem); font-weight: 700; color: white; line-height: 1; margin-bottom: 8px; }
.stat-value sup { font-size: 0.5em; vertical-align: super; }
.stat-name  { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; text-transform: uppercase; letter-spacing: 1px; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.lightbox.active .lightbox-box { transform: translateY(0); }

.lb-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.lb-body {
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lb-tag   { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.lb-title { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.lb-desc  { font-size: 0.8rem; color: var(--gray); }

.lb-close {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}

.lb-close:hover { background: var(--gray-light); color: var(--black); }

/* ===== FOOTER ===== */
footer {
    background: var(--green);
    padding: 56px 40px 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.footer-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
}

.footer-logo-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}

.footer-logo-name { font-size: 1rem; font-weight: 700; color: white; }
.footer-logo-name span { color: #4ade80; }

.footer-links { display: flex; align-items: center; gap: 24px; }

.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ===== FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .split-section { grid-template-columns: 1fr; gap: 48px; }
    .vinted-col { position: static; }
    .stats-inner { grid-template-columns: 1fr; }
    .stats-left { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 36px; margin-bottom: 36px; }
    .stats-grid { padding-left: 0; }
}

@media (max-width: 768px) {

    /* ── HEADER MOBILE ── */
    .header-top {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 16px;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        position: static;
        transform: none;
        order: 0;
        flex: 1;
        justify-content: center;
    }

    .header-left {
        order: -1;
        flex-shrink: 0;
    }

    .header-right {
        order: 1;
        flex-shrink: 0;
        margin-left: 0;
        gap: 6px;
    }

    /* Boutons texte masqués sur mobile */
    .header-right .btn-outline,
    .header-right .btn-green {
        display: none;
    }

    .header-right .header-icon-btn {
        display: flex;
    }

    /* ── NAV MOBILE : scroll horizontal ── */
    .header-nav-inner {
        gap: 0;
        padding: 0;
        height: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .header-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .header-nav a {
        padding: 10px 14px;
        white-space: nowrap;
        font-size: 0.75rem;
        flex-shrink: 0;
        border-bottom: 2px solid transparent;
    }

    .header-nav a.active,
    .header-nav a:hover {
        border-bottom-color: var(--green);
        color: var(--green);
    }
    /* ── FIN HEADER MOBILE ── */

    .hero { padding-top: 30px; }
    .hero-content { padding: 0 20px 60px; }
    .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hero-img-main { grid-row: span 1; }
    .split-section { padding: 50px 20px; }
    .stats-section { padding: 60px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    footer { padding: 40px 20px 24px; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 6px; }
}
