/* ============================================================
   SOUTIEN SCOLAIRE NATIONAL - DESIGN SYSTEM & MAIN STYLES
   ============================================================ */

:root {
    /* Colors - Green, Orange & Charcoal (Logo based) */
    --primary: #059669;
    --primary-hover: #047857;
    --primary-light: #D1FAE5;
    --secondary: #4B5563;
    --accent: #F59E0B;

    /* Neutral / Dark Mode ready */
    --bg-body: #F8FAFC;
    --bg-surface: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;

    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', system-ui, sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --container-padding: 2rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 40px -10px rgba(5, 150, 105, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: #E07B00;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    background: var(--bg-body);
    color: var(--primary);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-new {
    background: var(--accent);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Header */
#main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

#main-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-icon {
    background: var(--primary-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.25rem;
}

/* ── Navigation desktop ─────────────────────────────── */
.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.nav-links>li>a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links>li>a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.highlight-link {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.2s;
    pointer-events: none;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    padding: 0.375rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 300;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6rem 0.875rem;
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-menu li a i {
    width: 15px;
    text-align: center;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Bouton don header */
.btn-don-header {
    font-size: 0.825rem !important;
    padding: 0.45rem 0.875rem !important;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.375rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--bg-surface);
    padding: 1.5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.mobile-logo {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.mobile-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.75rem 0.75rem 0.25rem;
}

.mobile-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Hero Section */
.hero {
    padding: 10rem 0 8rem;
    background: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)), url('../img/hero-students.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 159, 110, 0.1);
    color: var(--secondary);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 140, 0, 0.3);
    z-index: -1;
    transform: rotate(-2deg);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
}

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

/* Stats Bar */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.125rem;
}

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

/* Sections Common */
.section {
    padding: 6rem 0;
}

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

.section-eyebrow {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.program-img {
    height: 200px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    position: relative;
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.program-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.program-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.program-link:hover {
    gap: 0.75rem;
    color: var(--primary-hover);
}

/* Footer */
#main-footer {
    background: #0D1117;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: auto;
}

.footer-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-quote h2 {
    color: white;
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-quote p {
    color: #8B949E;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-brand p {
    color: #8B949E;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #8B949E;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8B949E;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #8B949E;
}

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

/* ── Pages légales ─────────────────────────────────── */
.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 100px;
}

.toc-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.toc-card h4 {
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.toc-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.toc-card li a {
    font-size: .875rem;
    color: var(--text-muted);
    padding: .35rem .5rem;
    border-radius: var(--radius-sm);
    display: block;
    transition: var(--transition);
}

.toc-card li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.legal-content {
    min-width: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .875rem;
}

.legal-section h3 {
    font-size: 1rem;
    margin: 1.5rem 0 .75rem;
    color: var(--text-main);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: .975rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-num {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin: 1rem 0;
}

.legal-table th,
.legal-table td {
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.legal-table th {
    background: #F8FAFC;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

.legal-table td {
    color: var(--text-muted);
}

.legal-table thead th {
    background: var(--primary-light);
    color: var(--primary);
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: 1rem 0;
    padding-left: .5rem;
}

.legal-list li {
    color: var(--text-muted);
    font-size: .975rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.legal-notice {
    background: var(--primary-light);
    border: 1px solid #6EE7B7;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.legal-notice i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.legal-notice p {
    margin: 0;
    color: #065F46;
    font-size: .9rem;
    line-height: 1.7;
}

.legal-highlight {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    margin: 1.25rem 0;
}

.legal-highlight i {
    color: #D97706;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .15rem;
}

.legal-highlight div {
    font-size: .875rem;
    color: #92400E;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }
}

@media (max-width: 640px) {
    .legal-table {
        font-size: .8rem;
    }

    .legal-table th,
    .legal-table td {
        padding: .5rem .6rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 5px rgba(255, 140, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Global Overrides */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .donation-grid,
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

/* ── Header responsive — un seul breakpoint ────────── */
@media (max-width: 1024px) {

    /* Tablette / mobile : burger uniquement */
    .nav-links {
        display: none;
    }

    .btn-don-header,
    .header-actions .btn-outline,
    .header-actions .btn-primary {
        display: none;
    }

    .btn-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.25rem !important;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .teaser-grid,
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .donation-module,
    .contact-module {
        padding: 1.5rem !important;
    }

    .amount-grid,
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .amount-grid div:last-child {
        grid-column: span 1 !important;
    }

    .payment-methods {
        flex-direction: column;
    }

    .impact-list li {
        flex-direction: column;
        text-align: center;
        align-items: center !important;
    }

    .responsive-order-2 {
        order: 2 !important;
    }

    .responsive-order-1 {
        order: 1 !important;
    }
}

/* Layout Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-1-15 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

/* Components */
.card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card-premium {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.media-box {
    background: #f8fafc;
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-box i {
    font-size: 5rem;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Donation Specific Classes */
.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.impact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.impact-icon {
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.impact-item h4 {
    margin-bottom: 0.25rem;
}

.impact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.donation-module {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.amount-card:hover {
    border-color: var(--primary);
}

.amount-card.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.amount-card span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
}

.amount-card.active span {
    color: var(--primary);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    flex: 1;
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: bold;
}