/* ============================================================
   YOUR SPONSO — Uber-inspired Design System
   ============================================================ */

/* ── 1. DESIGN TOKENS ── */
:root {
    --black:          #000000;
    --white:          #FFFFFF;
    --green:          #000000;
    --green-dark:     #1C1C1C;
    --green-light:    #EEEEEE;
    --green-xlight:   #F8F8F8;

    --gray-50:        #FAFAFA;
    --gray-100:       #F6F6F6;
    --gray-200:       #EEEEEE;
    --gray-300:       #D9D9D9;
    --gray-400:       #B0B0B0;
    --gray-500:       #8D8D8D;
    --gray-600:       #545454;
    --gray-700:       #333333;
    --gray-800:       #1C1C1C;
    --gray-900:       #111111;

    --red:            #CF3030;
    --red-light:      #FFF0F0;
    --orange:         #F5A623;

    --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-xs:      4px;
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --radius-xl:      24px;
    --radius-pill:    9999px;

    --shadow-sm:      0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:      0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:      0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl:      0 16px 48px rgba(0,0,0,0.16);

    --nav-height:     68px;
    --container:      1240px;

    --transition:     0.2s ease;
    --transition-md:  0.35s ease;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.hidden { display: none !important; }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── 3. SCROLL PROGRESS ── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--black);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ── 4. COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    width: calc(100% - 48px);
    max-width: 640px;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease;
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; font-size: 14px; line-height: 1.5; }
.cookie-text strong { display: block; margin-bottom: 2px; }
.cookie-text span { color: var(--gray-400); }
.cookie-link { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── 5. BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 8000;
    width: 48px; height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gray-800); transform: translateY(-2px); }

/* ── 6. BUTTONS ── */
.btn-green {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-green:hover { background: var(--gray-800); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.btn-green:active { transform: translateY(0); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent;
    color: var(--black);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-outline:hover { border-color: var(--black); background: var(--gray-50); }
.btn-outline svg { width: 16px; height: 16px; }

.btn-white {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-white:hover { background: var(--gray-100); }

.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--black); }

.btn-green-sm {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}
.btn-green-sm:hover { background: var(--gray-800); }

.btn-ghost-sm {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}
.btn-ghost-sm:hover { border-color: var(--gray-600); color: var(--black); }

.btn-outline-sm {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    color: var(--black);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}
.btn-outline-sm:hover { border-color: var(--black); }

.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── 7. NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    height: var(--nav-height);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-left { display: flex; align-items: center; gap: 32px; }

.logo {
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-accent { color: var(--gray-500); }

.nav-links.desktop-only { display: flex; align-items: center; gap: 4px; }
.nav-link {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}
.nav-link:hover { color: var(--black); }

.nav-mode-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius-pill);
    padding: 4px;
    gap: 2px;
}
.mode-tab {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}
.mode-tab.active {
    background: var(--black);
    color: var(--white);
}
.mode-tab:not(.active):hover { color: var(--black); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-icon-btn {
    position: relative;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-icon-btn svg { width: 20px; height: 20px; }
.nav-icon-btn:hover { background: var(--gray-100); color: var(--black); }

.notif-dot {
    position: absolute;
    top: 8px; right: 8px;
    width: 8px; height: 8px;
    background: var(--black);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.nav-cta { padding: 9px 20px; font-size: 14px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.hamburger span {
    width: 20px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition-md);
    display: block;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Notifications Dropdown */
.notifications-dropdown {
    position: absolute;
    top: calc(var(--nav-height) + 8px);
    right: 24px;
    width: 360px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    animation: fadeInDown 0.2s ease;
    z-index: 999;
}
.notif-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--gray-200);
}
.notif-title { font-weight: 700; font-size: 15px; color: var(--black); }
.notif-clear-btn { font-size: 13px; color: var(--black); font-weight: 600; }
.notif-clear-btn:hover { text-decoration: underline; }

.notif-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition);
    cursor: pointer;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--gray-50); }
.notif-item.unread { background: var(--gray-50); }
.notif-item.unread:hover { background: var(--gray-100); }

.notif-icon {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.notif-icon svg { width: 18px; height: 18px; }
.notif-icon.green { background: var(--gray-200); color: var(--black); }
.notif-icon.black { background: var(--gray-100); color: var(--black); }
.notif-icon.gray { background: var(--gray-200); color: var(--gray-600); }

.notif-body p { font-size: 14px; font-weight: 500; color: var(--black); line-height: 1.4; }
.notif-body span { font-size: 12px; color: var(--gray-500); margin-top: 2px; display: block; }

/* ── 8. MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 900;
    animation: fadeIn 0.2s ease;
    overflow-y: auto;
}
.mobile-menu-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-menu-links { display: flex; flex-direction: column; }
.mobile-menu-links a {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-800);
    transition: color var(--transition);
    display: block;
}
.mobile-menu-links a:hover { color: var(--gray-400); }

/* ── 9. HERO ── */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    background: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 24px 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 48px;
    align-items: center;
}

.hero-text { grid-column: 1; grid-row: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-pill);
}
.badge-pulse {
    width: 8px; height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.badge-pulse.green { background: var(--black); }

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 24px;
}
.hero-accent {
    font-style: italic;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Visual (floating cards) */
.hero-visual {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 380px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.card-1 {
    top: 20px; left: 0;
    width: 260px;
    animation: float1 6s ease-in-out infinite;
}
.card-2 {
    top: 50%; left: 50%;
    transform: translate(-30%, -50%);
    width: 240px;
    animation: float2 6s ease-in-out infinite 1.5s;
}
.card-3 {
    bottom: 20px; right: 0;
    width: 220px;
    animation: float3 6s ease-in-out infinite 3s;
}

.fc-label {
    display: inline-flex;
    font-size: 11px; font-weight: 700;
    background: var(--gray-200);
    color: var(--black);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fc-label.music { background: var(--gray-300); color: var(--black); }

.fc-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.fc-meta { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; }
.fc-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.fc-bar-fill { height: 100%; background: var(--green); border-radius: 3px; }
.fc-pct { font-size: 12px; font-weight: 600; color: var(--green-dark); }

.match-badge {
    display: inline-flex;
    font-size: 12px; font-weight: 700;
    background: var(--black);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}
.match-badge.green { background: var(--white); color: var(--black); }

.sponsor-card .roi-label { font-size: 12px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.sponsor-card .roi-value { font-size: 42px; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 4px; }
.sponsor-card .roi-sub { font-size: 12px; color: var(--gray-500); }

/* Hero Stats Bar */
.hero-stats-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px 40px;
}
.hero-stat { flex: 1; text-align: center; }
.hero-stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
    flex-shrink: 0;
    margin: 0 16px;
}

/* ── 10. CATEGORIES ── */
.categories-section {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}
.categories-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-pill {
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1.5px solid transparent;
    transition: all var(--transition);
    flex-shrink: 0;
}
.category-pill:hover { background: var(--gray-200); color: var(--black); }
.category-pill.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ── 11. SECTION HEADERS ── */
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}
.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--black);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,0.2); color: var(--white); }
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1.1;
}
.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ── 12. DISCOVER SECTION ── */
.discover-section {
    padding: 80px 0;
    background: var(--white);
}

/* View Toggle */
.view-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius-pill);
    padding: 4px;
    gap: 2px;
}
.view-btn {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--gray-500);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}
.view-btn svg { width: 16px; height: 16px; }
.view-btn.active { background: var(--white); color: var(--black); box-shadow: var(--shadow-sm); }
.view-btn:not(.active):hover { color: var(--black); }

/* Search */
.search-filters-container { margin-bottom: 32px; }
.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-pill);
    padding: 0 20px;
    height: 56px;
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 12px;
}
.search-bar:focus-within {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.search-icon { width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0; }
.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--black);
    background: transparent;
}
.search-bar input::placeholder { color: var(--gray-400); }
.search-clear-btn {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500);
    border-radius: var(--radius-pill);
    background: var(--gray-200);
    transition: all var(--transition);
    flex-shrink: 0;
}
.search-clear-btn svg { width: 14px; height: 14px; }
.search-clear-btn:hover { background: var(--gray-300); color: var(--black); }

.filters-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.filter-btn {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--black);
    padding: 10px 18px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    background: var(--white);
}
.filter-btn svg { width: 16px; height: 16px; }
.filter-btn:hover { border-color: var(--black); }
.filter-count-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px;
    background: var(--black);
    color: var(--white);
    font-size: 11px; font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 0 6px;
}
.results-count { font-size: 14px; color: var(--gray-500); font-weight: 500; }

/* Filters Dropdown */
.filters-dropdown {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
    animation: fadeInDown 0.2s ease;
}
.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--black); }
.filter-value-display { color: var(--green-dark); font-weight: 700; }
.filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23545454' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.filter-select:focus { border-color: var(--black); }
.filter-range {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--gray-200);
    outline: none;
    cursor: pointer;
    accent-color: var(--black);
}
.filters-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

/* Project Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Project Card */
.project-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-md);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.4s ease both;
}
.project-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-card-top {
    height: 6px;
    flex-shrink: 0;
}
.project-card-top.sports   { background: var(--black); }
.project-card-top.culture  { background: var(--black); }
.project-card-top.music    { background: var(--black); }
.project-card-top.environment { background: var(--black); }
.project-card-top.education { background: var(--black); }
.project-card-top.tech     { background: var(--black); }

.project-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.project-category-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-favorite-btn {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    transition: all var(--transition);
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
}
.project-favorite-btn:hover { background: var(--gray-200); transform: scale(1.1); }
.project-favorite-btn.active { background: var(--red-light); }

.project-name { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.project-desc { font-size: 14px; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.project-progress { margin-bottom: 14px; }
.project-progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}
.project-progress-fill {
    height: 100%;
    background: var(--black);
    border-radius: 3px;
    transition: width 1s ease;
}
.project-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.project-progress-pct { font-weight: 700; color: var(--black); }
.project-progress-goal { color: var(--gray-500); }

.project-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.project-stat-item { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray-600); font-weight: 500; }

.project-card-footer {
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--gray-100);
    padding: 14px 20px;
}
.project-view-btn {
    flex: 1;
    text-align: center;
    font-size: 14px; font-weight: 600;
    color: var(--black);
    padding: 9px;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    transition: all var(--transition);
}
.project-view-btn:hover { background: var(--black); color: var(--white); }
.project-compare-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    font-size: 16px;
    transition: all var(--transition);
}
.project-compare-btn:hover { background: var(--gray-200); }
.project-compare-btn.selected { background: var(--black); color: var(--white); }

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 24px; }

/* Load more */
.load-more-container { text-align: center; margin-top: 32px; }

/* Map */
.map-view { width: 100%; }
.map-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
}
.map-container {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
}
.map-sidebar {
    background: var(--white);
    overflow-y: auto;
    border-left: 1px solid var(--gray-200);
    padding: 16px;
}
.map-sidebar-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); margin-bottom: 12px; }

.map-project-item {
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition);
    border: 1px solid transparent;
    margin-bottom: 8px;
}
.map-project-item:hover { background: var(--gray-100); border-color: var(--gray-200); }
.map-project-item h5 { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.map-project-item p { font-size: 12px; color: var(--gray-500); }

/* Compare Bar */
.compare-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5000;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    box-shadow: var(--shadow-xl);
    min-width: 360px;
    animation: slideUp 0.3s ease;
}
.compare-bar-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 14px; font-weight: 500;
}
.compare-actions { display: flex; gap: 8px; }

/* ── 13. STATS SECTION ── */
.stats-section {
    padding: 96px 0;
    background: var(--black);
    color: var(--white);
}
.stats-header {
    text-align: center;
    margin-bottom: 64px;
}
.stats-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-800);
}
.stat-card {
    background: var(--black);
    padding: 48px 32px;
    text-align: center;
    transition: background var(--transition);
}
.stat-card:hover { background: var(--gray-900); }
.stat-card.highlight { background: var(--gray-900); }

.stat-icon-wrap { font-size: 32px; margin-bottom: 16px; }
.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card.highlight .stat-number { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.stat-label { font-size: 14px; color: var(--gray-400); font-weight: 500; }

/* ── 14. FEATURES / HOW IT WORKS ── */
.features-section {
    padding: 96px 0;
    background: var(--gray-100);
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 56px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
}
.step-card {
    flex: 1;
    padding: 40px 32px;
    border-right: 1.5px solid var(--gray-200);
    transition: background var(--transition);
}
.step-card:last-child { border-right: none; }
.step-card:hover { background: var(--gray-50); }

.step-arrow {
    font-size: 24px;
    color: var(--gray-300);
    flex-shrink: 0;
    padding: 0 4px;
    display: none;
}

.step-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.step-icon-wrap { margin-bottom: 16px; }
.step-icon-wrap svg { width: 48px; height: 48px; }
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    animation: fadeInUp 0.5s ease both;
}
.feature-card:hover {
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── 15. TRUST SECTION ── */
.trust-section {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-logo {
    font-size: 16px;
    font-weight: 900;
    color: var(--gray-300);
    letter-spacing: 1px;
    transition: color var(--transition);
    cursor: default;
}
.trust-logo:hover { color: var(--gray-500); }

/* ── 16. TESTIMONIALS ── */
.testimonials-section {
    padding: 96px 0;
    background: var(--white);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.carousel-track-outer {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-xl);
}
.carousel {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-stars {
    font-size: 22px;
    color: var(--orange);
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px; height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800;
    flex-shrink: 0;
}
.author-info strong { display: block; font-size: 15px; font-weight: 700; color: var(--black); }
.author-info span { font-size: 13px; color: var(--gray-500); }

.carousel-arrow {
    width: 48px; height: 48px;
    border-radius: var(--radius-pill);
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    display: flex; align-items: center; justify-content: center;
    color: var(--black);
    transition: all var(--transition);
    flex-shrink: 0;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: var(--radius-pill);
    background: var(--gray-300);
    transition: all var(--transition);
}
.dot.active { background: var(--black); width: 24px; }
.dot:hover { background: var(--gray-500); }

/* ── 17. CALCULATOR ── */
.calculator-section {
    padding: 96px 0;
    background: var(--gray-900);
    color: var(--white);
}
.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.calculator-info .section-title { color: var(--white); }
.calculator-info p { color: var(--gray-400); font-size: 16px; margin: 16px 0 24px; line-height: 1.7; }

.calc-benefits { display: flex; flex-direction: column; gap: 10px; }
.calc-benefits li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gray-300); }
.check-green { color: var(--white); font-weight: 700; }

.calculator-widget {
    background: var(--gray-800);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--gray-700);
}
.calc-group { margin-bottom: 24px; }
.calc-label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.calc-slider-row {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 6px;
}
.calc-slider-row input { flex: 1; accent-color: var(--white); }
.calc-amount-display {
    font-size: 20px; font-weight: 800;
    color: var(--white);
    min-width: 80px;
    text-align: right;
}
.calc-range-labels {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--gray-500);
}
.calculator-widget .filter-select {
    background: var(--gray-700);
    border-color: var(--gray-600);
    color: var(--white);
}
.calculator-widget .filter-select:focus { border-color: var(--white); }

.calc-results {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-700);
}
.calc-result-item { flex: 1; text-align: center; }
.calc-result-label { font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 6px; }
.calc-result-value { font-size: 24px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.calc-result-value.green { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.calc-result-divider { width: 1px; height: 40px; background: var(--gray-700); flex-shrink: 0; }

/* ── 18. PRICING ── */
.pricing-section {
    padding: 96px 0;
    background: var(--white);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.pricing-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: all var(--transition-md);
    animation: fadeInUp 0.5s ease both;
}
.pricing-card:hover { border-color: var(--gray-400); box-shadow: var(--shadow-md); }
.pricing-card.featured {
    border-color: var(--black);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}

.pricing-popular {
    display: inline-flex;
    background: var(--black);
    color: var(--white);
    font-size: 11px; font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pricing-tier {
    font-size: 13px; font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.pricing-price {
    font-size: 40px; font-weight: 900;
    color: var(--black);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--gray-500); letter-spacing: 0; }
.pricing-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; margin-top: 4px; }

.pricing-features {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 32px;
    flex: 1;
}
.pricing-features li {
    font-size: 14px;
    display: flex; align-items: center; gap: 8px;
    padding-left: 4px;
}
.pricing-features li::before {
    font-size: 16px;
    flex-shrink: 0;
}
.pricing-features li.ok { color: var(--black); font-weight: 500; }
.pricing-features li.ok::before { content: '✓'; color: var(--green); font-weight: 700; }
.pricing-features li.no { color: var(--gray-400); }
.pricing-features li.no::before { content: '✗'; color: var(--gray-300); }

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--gray-500);
}

/* ── 19. MEDIA KIT ── */
.media-section {
    padding: 96px 0;
    background: var(--gray-100);
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.media-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: all var(--transition);
}
.media-card:hover { border-color: var(--black); box-shadow: var(--shadow-md); }
.media-icon { font-size: 28px; flex-shrink: 0; }
.media-info { flex: 1; }
.media-info h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.media-info p { font-size: 12px; color: var(--gray-500); }

/* ── 20. FAQ ── */
.faq-section {
    padding: 96px 0;
    background: var(--white);
}
.faq-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: flex-start;
}
.faq-header-col { position: sticky; top: 120px; }
.faq-header-col .section-title { margin-bottom: 12px; }
.faq-header-col p { color: var(--gray-500); font-size: 15px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    font-size: 16px; font-weight: 600;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gray-600); }
.faq-arrow {
    width: 20px; height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--gray-400);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--black); }
.faq-answer {
    display: none;
    padding: 0 0 24px;
    animation: fadeIn 0.2s ease;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ── 21. CTA SECTION ── */
.cta-section {
    padding: 96px 0;
    background: var(--black);
}
.cta-content { text-align: center; }
.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px;
}
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-actions .btn-green { background: var(--white); color: var(--black); }
.cta-actions .btn-green:hover { background: var(--gray-200); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,255,255,0.15); }
.cta-actions .btn-white { border: 2px solid rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.cta-actions .btn-white:hover { background: rgba(255,255,255,0.1); }

.cta-trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* ── 22. FOOTER ── */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--gray-800);
}
.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.footer-logo span { color: var(--gray-400); }
.footer-tagline { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; max-width: 260px; }

.footer-social { display: flex; gap: 8px; }
.social-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--white); color: var(--black); }

.footer-col h5 {
    font-size: 13px; font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--gray-500); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-newsletter-desc { font-size: 14px; color: var(--gray-500); line-height: 1.5; margin-bottom: 16px; }
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.newsletter-input {
    flex: 1;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-pill);
    padding: 10px 16px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: var(--gray-600); }
.newsletter-input:focus { border-color: var(--white); }
.newsletter-btn {
    width: 44px; height: 44px;
    background: var(--white);
    color: var(--black);
    font-size: 18px; font-weight: 700;
    border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}
.newsletter-btn:hover { background: var(--gray-300); }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
    font-size: 12px; font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-800);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
    color: var(--gray-600);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--gray-600); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── 23. MODALS ── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}
.modal.active {
    pointer-events: all;
    opacity: 1;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.25s ease;
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all var(--transition);
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: var(--gray-200); color: var(--black); }
.modal-header { margin-bottom: 28px; }
.modal-header h2 { font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.modal-header p { font-size: 14px; color: var(--gray-500); }

/* Forms */
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--black); }
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.form-input.is-valid { border-color: var(--green); }
.form-input.is-invalid { border-color: var(--red); }
.form-feedback { font-size: 12px; min-height: 16px; }
.form-input.is-valid ~ .form-feedback { color: var(--green-dark); }
.form-input.is-invalid ~ .form-feedback::before { content: '⚠ Valeur invalide'; color: var(--red); }

/* Password strength */
.password-strength-bar {
    height: 4px;
    border-radius: 2px;
    margin-top: 6px;
    background: var(--gray-200);
    transition: all var(--transition-md);
}
.password-strength-bar.weak { background: var(--red); width: 33%; }
.password-strength-bar.medium { background: var(--orange); width: 66%; }
.password-strength-bar.strong { background: var(--black); width: 100%; }
.password-strength-text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}
.password-strength-text.weak { color: var(--red); }
.password-strength-text.medium { color: var(--orange); }
.password-strength-text.strong { color: var(--black); }

.form-terms {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.5;
}
.form-terms a { color: var(--black); text-decoration: underline; }

/* Submit button states */
.btn-green .btn-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(0,0,0,0.3);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ── 24. TOAST NOTIFICATIONS ── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    pointer-events: all;
    animation: slideUpFade 0.3s ease;
    max-width: 380px;
}
.toast.success .toast-icon { color: var(--white); }
.toast.error .toast-icon { color: #FF6B6B; }
.toast.info .toast-icon { color: var(--gray-400); }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast.hide { animation: slideDownFade 0.3s ease forwards; }

/* ── 25. PROJECT DETAIL MODAL ── */
.project-detail-modal .modal-content { max-width: 560px; }
.project-detail-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
    margin-bottom: 24px;
}
.project-detail-icon { font-size: 40px; margin-bottom: 12px; }
.project-detail-name { font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.project-detail-location { font-size: 14px; color: var(--gray-500); }

.project-detail-progress { margin-bottom: 24px; }
.project-detail-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    margin-bottom: 24px;
}
.project-detail-stat {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px;
}
.project-detail-stat-label { font-size: 12px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.project-detail-stat-value { font-size: 22px; font-weight: 800; color: var(--black); }

.project-detail-actions { display: flex; gap: 10px; }

/* ── 26. ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDownFade { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(16px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translate(-30%, -50%); } 50% { transform: translate(-30%, calc(-50% - 10px)); } }
@keyframes float3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── 27. UTILITY CLASSES ── */
.desktop-only { display: flex; }

/* ── 28. RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .media-grid { grid-template-columns: repeat(2, 1fr); }
    .calculator-layout { grid-template-columns: 1fr; gap: 48px; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-header-col { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .map-layout { grid-template-columns: 1fr; height: auto; }
    .map-container { height: 400px; }
    .map-sidebar { max-height: 300px; border-left: none; border-top: 1px solid var(--gray-200); }
}

@media (max-width: 768px) {
    :root { --nav-height: 60px; }

    .desktop-only { display: none !important; }
    .hamburger { display: flex; }
    .nav-cta { padding: 8px 16px; font-size: 13px; }
    .nav-mode-toggle { display: none; }

    .hero { min-height: auto; }
    .hero-inner { padding: 48px 24px 40px; gap: 32px; }
    .hero-title { letter-spacing: -1.5px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats-bar { flex-wrap: wrap; padding: 20px 24px; gap: 16px; }
    .hero-stat-divider { display: none; }
    .hero-stat { min-width: calc(50% - 8px); text-align: left; }
    .hero-stat-number { font-size: 24px; }

    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; border-radius: var(--radius-lg); }
    .step-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .step-card:last-child { border-bottom: none; }

    .pricing-grid { grid-template-columns: 1fr; }

    .calculator-layout { gap: 32px; }
    .calc-results { flex-direction: column; gap: 20px; }
    .calc-result-divider { width: 100%; height: 1px; }

    .media-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .testimonial-card { padding: 28px 24px; }
    .testimonial-text { font-size: 17px; }

    .trust-logos { gap: 20px; }
    .trust-logo { font-size: 13px; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .stat-card { padding: 32px 20px; }
    .stat-number { font-size: 36px; }

    .cta-trust-row { gap: 12px; font-size: 13px; }

    .notifications-dropdown { right: 16px; left: 16px; width: auto; }
    .back-to-top { bottom: 20px; right: 20px; }

    .hero-stat { min-width: 45%; }
    .section-title { letter-spacing: -0.5px; }

    .discover-section { padding: 48px 0; }
    .features-section { padding: 64px 0; }
    .stats-section { padding: 64px 0; }
    .testimonials-section { padding: 64px 0; }
    .calculator-section { padding: 64px 0; }
    .pricing-section { padding: 64px 0; }
    .media-section { padding: 64px 0; }
    .faq-section { padding: 64px 0; }
    .cta-section { padding: 64px 0; }
    .footer { padding-top: 48px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-outline,
    .hero-actions .btn-green { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .projects-grid { grid-template-columns: 1fr; }
    .cookie-banner { bottom: 12px; width: calc(100% - 24px); }
}

/* ══════════════════════════════════════════════════════════
   NEW FEATURES — Role distinction & additions
   ══════════════════════════════════════════════════════════ */

/* ── ONBOARDING OVERLAY ── */
.onboarding-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s ease;
}
.onboarding-overlay.hidden { display: none !important; }
.onboarding-inner {
    max-width: 700px;
    width: 100%;
    text-align: center;
}
.onboarding-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
.onboarding-logo span { color: var(--gray-400); }
.onboarding-tagline { font-size: 14px; color: var(--gray-500); margin-bottom: 52px; }
.onboarding-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 40px;
    letter-spacing: -2px;
    line-height: 1.05;
}
.onboarding-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.onboarding-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}
.onboarding-card:hover {
    border-color: var(--black);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.onboarding-emoji {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}
.onboarding-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.onboarding-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 20px;
}
.onboarding-cta {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    display: block;
}
.onboarding-skip {
    font-size: 13px;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
}
.onboarding-skip:hover { color: var(--gray-600); text-decoration: underline; }

/* ── HERO BADGE VARIANTS ── */
.creator-badge {
    border-left: 3px solid var(--black);
    padding-left: 13px;
}
.sponsor-badge {
    background: var(--black);
    color: var(--white);
}
.sponsor-badge .badge-pulse { background: var(--white); }

/* ── MODE TABS — updated styles ── */
.mode-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    line-height: 1.2;
}
.mode-tab-icon { font-size: 13px; }
.mode-tab-text { font-size: 10px; font-weight: 600; }

/* ── MOBILE ROLE SWITCH ── */
.mobile-role-switch {
    border-bottom: 1px solid var(--gray-800);
    padding-bottom: 24px;
    margin-bottom: 8px;
}
.mobile-role-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 12px;
    font-weight: 500;
}
.mobile-role-btns { display: flex; gap: 8px; }
.mobile-role-btn {
    flex: 1;
    padding: 13px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    background: var(--gray-800);
    color: var(--gray-400);
    transition: all var(--transition);
    text-align: center;
}
.mobile-role-btn.active { background: var(--white); color: var(--black); }

/* ── LIVE ACTIVITY STRIP ── */
.live-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    overflow: hidden;
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}
.live-label {
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}
.live-items {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.live-item { color: var(--gray-600); font-size: 13px; }
.live-sep { color: var(--gray-300); flex-shrink: 0; }

/* ── PATHS SECTION ── */
.paths-section { padding: 96px 0; background: var(--gray-50); }
.paths-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 48px;
}
.path-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.path-card:hover,
.path-card.active-path {
    border-color: var(--black);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.path-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.creator-tag { background: var(--black); color: var(--white); }
.sponsor-tag { background: var(--gray-200); color: var(--gray-700); }
.path-card.active-path .sponsor-tag { background: var(--black); color: var(--white); }
.path-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.path-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}
.path-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.path-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}
.path-features li span {
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
    font-size: 15px;
}
.paths-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 32px;
    gap: 16px;
    align-self: stretch;
    justify-content: center;
}
.paths-vs-line {
    flex: 1;
    width: 1px;
    background: var(--gray-200);
    min-height: 40px;
}
.paths-vs-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-400);
    background: var(--gray-50);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--gray-200);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── CTA DUAL PATH ── */
.cta-dual {
    display: flex;
    align-items: stretch;
    margin: 40px 0 32px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}
.cta-path {
    flex: 1;
    padding: 36px 40px;
    text-align: center;
    transition: background var(--transition);
}
.cta-path:hover { background: rgba(255,255,255,0.05); }
.cta-path-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.cta-path-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.cta-path-desc { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.cta-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    margin: 24px 0;
    flex-shrink: 0;
}

/* ── MATCH SCORE BADGE (sponsor mode) ── */
.match-score-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--black);
    color: var(--white);
    flex-shrink: 0;
}
.project-view-btn.sponsor-mode {
    font-weight: 700;
    color: var(--black);
}

/* ── RESPONSIVE: new components ── */
@media (max-width: 768px) {
    .onboarding-cards { grid-template-columns: 1fr; gap: 12px; }
    .onboarding-title { letter-spacing: -1px; }
    .paths-grid { grid-template-columns: 1fr; }
    .paths-vs {
        flex-direction: row;
        padding: 16px 0;
        align-self: auto;
    }
    .paths-vs-line { flex: 1; width: auto; height: 1px; min-height: unset; }
    .cta-dual { flex-direction: column; }
    .cta-divider { width: calc(100% - 80px); height: 1px; margin: 0 40px; }
    .live-strip { flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
    .mode-tab-text { display: none; }
    .mode-tab-icon { font-size: 16px; }
    .paths-section { padding: 64px 0; }
}

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHIC DESIGN ELEMENTS
   ══════════════════════════════════════════════════════════ */

/* ── STAT ICON TYPOGRAPHIC ── */
.stat-icon-typo {
    display: flex;
    align-items: center; justify-content: center;
    width: 48px; height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 20px; font-weight: 900;
    margin-bottom: 16px;
    margin-left: auto; margin-right: auto;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* ── CAT-MARK: replaces category emoji ── */
.cat-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    font-size: 11px;
    font-weight: 900;
    background: var(--black);
    color: var(--white);
    border-radius: 4px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    vertical-align: middle;
}
.cat-mark.sports   { background: #1a1a1a; }
.cat-mark.culture  { background: #2d2d2d; }
.cat-mark.music    { background: #0a0a0a; }
.cat-mark.env      { background: #1f2f1f; }
.cat-mark.edu      { background: #1a1f2d; }
.cat-mark.tech     { background: #0d1a2d; }

/* ── ROLE-MARK: replaces role emoji ── */
.role-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    font-size: 12px;
    font-weight: 900;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    vertical-align: middle;
}
.role-mark.creator { background: var(--black); color: var(--white); }
.role-mark.sponsor { background: var(--gray-200); color: var(--gray-700); }
.mode-tab.active .role-mark { background: rgba(255,255,255,0.2); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   SPONSORS SECTION
   ══════════════════════════════════════════════════════════ */
.sponsors-section {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.sponsor-card-item {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    cursor: pointer;
    transition: all var(--transition-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sponsor-card-item:hover {
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.sponsor-card-logo {
    width: 56px; height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: var(--gray-600);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.sponsor-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}
.sponsor-card-sector {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sponsor-card-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    flex: 1;
}
.sponsor-card-budget {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    padding: 6px 0;
    border-top: 1px solid var(--gray-100);
}
.sponsor-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.sponsor-tag-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════════════════
   PROJECT DETAIL MODAL — TABBED
   ══════════════════════════════════════════════════════════ */
.detail-tabs {
    display: flex;
    gap: 2px;
    background: var(--gray-100);
    border-radius: var(--radius-pill);
    padding: 4px;
    margin-bottom: 24px;
}
.detail-tab {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}
.detail-tab.active {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow-sm);
}
.detail-tab:not(.active):hover { color: var(--black); }
.detail-tab-pane { display: none; }
.detail-tab-pane.active { display: block; }

/* Packages (Finances tab) */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}
.package-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: border-color var(--transition);
}
.package-item:hover { border-color: var(--black); }
.package-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    min-width: 72px;
    flex-shrink: 0;
}
.package-info { flex: 1; }
.package-name { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.package-desc { font-size: 12px; color: var(--gray-500); line-height: 1.4; }

/* Benefits (Avantages tab) */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-mark {
    width: 24px; height: 24px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Contact tab form */
.contact-form-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-form-mini .form-input {
    padding: 10px 14px;
    font-size: 14px;
}
.contact-form-mini textarea.form-input {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

/* Previous sponsors chips */
.prev-sponsors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.prev-sponsor-chip {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-pill);
    border: 1px solid var(--gray-200);
}

/* Presentation tab */
.detail-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.detail-info-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 12px 14px;
}
.detail-info-label { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.detail-info-value { font-size: 14px; font-weight: 600; color: var(--black); }

@media (max-width: 480px) {
    .detail-tabs { overflow-x: auto; }
    .detail-tab { font-size: 12px; padding: 7px 10px; }
    .sponsors-grid { grid-template-columns: 1fr; }
    .detail-info-grid { grid-template-columns: 1fr; }
}

/* ── AUTH NAV GROUP ── */
.nav-auth-group { display: flex; align-items: center; gap: 8px; }
#nav-user-btn { border: 1.5px solid var(--gray-200) !important; border-radius: var(--radius-pill) !important; padding: 6px 12px !important; font-size: 13px; }
#nav-user-btn:hover { border-color: var(--black) !important; }

/* ── DASHBOARD ── */
#dashboard-modal .modal-content { padding: 32px; }
