/* ══════════════════════════════════════════════════════════════
   PROGETTO CASA CODINE FELICI — Refined UI Design System
   ══════════════════════════════════════════════════════════════ */

:root {
    /* Brand Colors - Elegant and striking */
    --primary:       #E85D04; /* Deep vibrant orange */
    --primary-op:    rgba(232, 93, 4, 0.08);
    --primary-hover: #DC2F02;
    
    --accent:        #FFBA08; /* Warm sun yellow */
    
    --bg-main:       #FAF9F6; /* Warm off-white pearl background */
    --bg-card:       #FFFFFF;
    --bg-section:    #F5F3ED; /* Slightly darker warm tone for sections */
    
    --text-dark:     #1C1917; /* Very dark warm gray / Almost black */
    --text-body:     #44403C; /* Medium dark warm gray */
    --text-muted:    #A8A29E;
    
    --border:        #E7E5E4;
    --border-hover:  #D6D3D1;

    /* Spacing & Sizes */
    --nav-h:       86px;
    --radius-sm:   10px;
    --radius:      16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --radius-full: 9999px;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm:   0 4px 12px rgba(28, 25, 23, 0.04);
    --shadow-md:   0 10px 30px rgba(28, 25, 23, 0.06);
    --shadow-lg:   0 20px 50px rgba(28, 25, 23, 0.08);
    --shadow-primary: 0 8px 24px rgba(232, 93, 4, 0.25);
    --shadow-focus: 0 0 0 4px rgba(232, 93, 4, 0.15);
    
    --ease: cubic-bezier(.16, 1, .3, 1);
    --trans: 0.3s var(--ease);
}

/* ─── Base Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-dark); font-weight: 700; line-height: 1.2; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 2rem; }
.mt-flex { margin-top: auto; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--trans);
    cursor: pointer;
    text-align: center;
}
.btn i { font-size: 18px; }

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(232, 93, 4, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-hover);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-op);
    transform: translateY(-3px);
}
.btn--small {
    padding: 10px 22px;
    font-size: 14px;
}

/* ─── Loader ────────────────────────────────────────────────── */
.loader {
    position: fixed; inset: 0; z-index: 10000; background: var(--bg-main);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 140px; animation: pulse 2s infinite ease-in-out; }
.loader-spinner {
    width: 44px; height: 44px; margin: 24px auto 0;
    border: 3px solid var(--border); border-top-color: var(--primary);
    border-radius: 50%; animation: spin 1s infinite linear;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.5s var(--ease),
                border-color 0.5s var(--ease),
                box-shadow 0.5s var(--ease),
                backdrop-filter 0.5s var(--ease);
    will-change: background;
}
.navbar.scrolled {
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(231, 229, 228, 0.6);
    box-shadow: var(--shadow-sm);
}

/* Transparent state — white text and logo over hero image */
.navbar:not(.scrolled) .logo-img { filter: brightness(0) invert(1); transition: filter 0.5s var(--ease); }
.logo-img { transition: filter 0.5s var(--ease); }

.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .nav-link:hover { color: #fff; background: rgba(255,255,255,0.15); }
.navbar:not(.scrolled) .search-box input { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; }
.navbar:not(.scrolled) .search-box input::placeholder { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .search-icon { color: rgba(255,255,255,0.8); }
.navbar:not(.scrolled) .hamburger,
.navbar:not(.scrolled) .hamburger::before,
.navbar:not(.scrolled) .hamburger::after { background: #fff; }

/* Hide nav links when transparent (desktop only — not inside open mobile drawer) */
.nav-links-group {
    display: flex; align-items: center; gap: 4px;
    opacity: 1; visibility: visible;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
/* Only hide on desktop when not scrolled */
@media(min-width: 1101px) {
    .navbar:not(.scrolled) .nav-links-group {
        opacity: 0; visibility: hidden; pointer-events: none;
    }
}

/* Sostienici: desktop version in nav-actions, mobile version inside drawer */
.mobile-sostienici { display: none !important; }
.desktop-sostienici { display: inline-flex; transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease); }

/* Scrolled state: Sostienici back to normal orange */
.navbar.scrolled .nav-link--primary { background: var(--primary) !important; color: #fff !important; }
/* Transparent state: Sostienici pill as white outlined */
.navbar:not(.scrolled) .desktop-sostienici {
    background: transparent !important; color: #fff !important;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-full);
}
.nav-container {
    max-width: 1700px; /* Extremely wide for more space */
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1200px) { .nav-container { padding: 0 20px; } }

.nav-logo { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 46px; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--primary); letter-spacing: -0.5px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center; /* Center the links */
    padding: 0 20px;
}
.nav-link {
    white-space: nowrap !important;
    flex-shrink: 0;
    display: flex; align-items: center; gap: 6px;
    padding: 8px 10px; /* slightly less padding to fit more items */
    border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600;
    color: var(--text-body);
    transition: all var(--trans);
}
.nav-link i { font-size: 18px; color: var(--primary); }
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-op);
}

.nav-link--accent { color: var(--primary) !important; font-weight: 700; margin-left: 10px; }
.nav-link--primary {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: var(--radius-full);
    padding: 10px 22px;
    margin-left: 8px;
    box-shadow: var(--shadow-primary);
}
.nav-link--primary i { color: #fff !important; }
.nav-link--primary:hover { background: var(--primary-hover) !important; transform: translateY(-2px); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Search Box */
.search-box { position: relative; display: flex; align-items: center; }
.search-box input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 10px 16px 10px 42px;
    font-size: 14px; font-family: var(--font-body); font-weight: 500;
    color: var(--text-dark);
    width: 220px;
    transition: all var(--trans);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.search-box input:focus {
    outline: none; border-color: var(--primary);
    box-shadow: var(--shadow-focus); width: 280px;
    background: #fff;
}
.search-icon { position: absolute; left: 16px; font-size: 18px; color: var(--text-muted); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; z-index: 100; cursor: pointer; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--trans); }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile Search (Hidden on Desktop) */
.mobile-search { display: none; }

/* When screen gets too small for the nav text */
@media(max-width: 1100px) {
    .nav-toggle { display: flex; margin-left: auto; position: relative; z-index: 2000; }
    .nav-logo { position: relative; z-index: 2000; }
    .nav-actions { display: none; } /* Hide desktop search entirely */
    
    .nav-menu {
        position: fixed; left: 0; top: 0;
        width: 100vw; height: 100vh;
        z-index: 1500;
        background: #fff;
        flex-direction: column; justify-content: flex-start;
        padding: calc(var(--nav-h) + 24px) 24px 100px; gap: 8px;
        transform: translateX(100%); opacity: 0; visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s var(--ease);
        overflow-y: auto;
    }
    .nav-menu.open { transform: translateX(0); opacity: 1; visibility: visible; }
    
    .mobile-search { display: flex; position: relative; margin-bottom: 24px; width: 100%; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
    .mobile-search i { position: absolute; left: 16px; top: 14px; font-size: 20px; color: var(--text-muted); }
    .mobile-search input { width: 100%; padding: 14px 16px 14px 48px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-main); font-size: 16px; color: var(--text-dark); transition: all var(--trans); }
    .mobile-search input:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: var(--shadow-sm); }
    
    .nav-link { width: 100%; padding: 16px 20px; font-size: 17px; border-radius: 12px; justify-content: flex-start; background: transparent; color: var(--text-dark); font-weight: 600; white-space: normal !important; text-align: left; }
    .nav-link:hover { background: var(--bg-main); color: var(--primary); padding-left: 26px; }
    .nav-link--primary { margin-top: 20px; background: var(--primary); color: #fff; justify-content: center; text-align: center; }
    .nav-link--primary:hover { background: var(--text-dark); color: #fff; padding-left: 20px; }

    /* Swap sostienici versions on mobile */
    .desktop-sostienici { display: none !important; }
    .mobile-sostienici { display: flex !important; }

    /* Always show nav links inside the mobile drawer regardless of scroll */
    .nav-links-group { flex-direction: column; gap: 0; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; width: 100%; }
}

@media(max-width: 480px) {
    .logo-text { font-size: 18px; }
    .classic-hero { height: 100svh; min-height: 100svh; }
}

/* ─── Search Overlay ────────────────────────────────────────── */
.search-overlay {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(250, 249, 246, 0.98); z-index: 999; padding: 60px 24px;
    overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.4s var(--ease); backdrop-filter: blur(10px);
}
.search-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-results-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.search-results-container h3 { font-size: 28px; margin-bottom: 40px; }
.search-results-container h3 span { color: var(--primary); text-decoration: underline; text-decoration-color: var(--primary-op); text-underline-offset: 8px; }

/* ─── Pages ─────────────────────────────────────────────────── */
.page { display: none; min-height: 100vh; padding-bottom: 100px; }
.page.active { display: block; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Hero Scroll Hint ───────────────────────────────────────── */
.hero-scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,0.85); font-size: 32px;
    animation: bounce-arrow 2s ease-in-out infinite;
    cursor: pointer;
}
.hero-scroll-hint i { display: block; }
@keyframes bounce-arrow {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.85; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ─── Classic Humane Hero ────────────────────────────────────── */
.classic-hero {
    position: relative;
    padding-top: 0; /* No extra padding - covers full screen */
    height: 100vh;
    min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    text-align: center; color: #fff;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(28,25,23,0.7) 100%);
    z-index: 1;
}
.hero-content-centered {
    position: relative; z-index: 2; max-width: 860px; padding: 0 20px;
}
.hero-title-classic {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800; letter-spacing: -1.5px; margin-bottom: 24px; color: #fff; line-height: 1.15;
}
.hero-sub-classic {
    font-size: clamp(17px, 2.5vw, 22px); font-weight: 400; opacity: 0.95; line-height: 1.6; margin-bottom: 40px; text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero-btns-classic {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn--outline-white {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #fff; border: 2px solid #fff; padding: 14px 30px;
    border-radius: var(--radius-full); font-weight: 600; font-family: var(--font-heading); font-size: 15px; transition: all var(--trans);
}
.btn--outline-white:hover {
    background: #fff; color: var(--text-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ─── Classic Sections ──────────────────────────────────────── */
.classic-sections-wrapper {
    background: var(--bg-main); padding: 80px 0 100px; position: relative; z-index: 2;
}
.container--narrow { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section-headers { margin-bottom: 60px; }
.section-headers h2 { font-size: 38px; margin-bottom: 16px; color: var(--text-dark); letter-spacing: -1px; }
.section-headers p { font-size: 18px; color: var(--text-body); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.text-center { text-align: center; }

.classic-features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.c-feature-card {
    background: #fff; border-radius: var(--radius-xl); padding: 40px 30px; text-align: center;
    box-shadow: 0 4px 12px rgba(28,25,23,0.03); border: 1px solid var(--border); transition: all var(--trans);
    display: flex; flex-direction: column; align-items: center;
}
.c-feature-card i {
    font-size: 56px; color: var(--primary); margin-bottom: 24px;
    background: var(--primary-op); width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
    transition: all var(--trans);
}
.c-feature-card h3 {
    font-size: 22px; margin-bottom: 14px; color: var(--text-dark);
}
.c-feature-card p {
    font-size: 16px; color: var(--text-body); line-height: 1.6;
}
.c-feature-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--border-hover);
}
.c-feature-card:hover i {
    background: var(--primary); color: #fff; transform: scale(1.05);
}

@media (max-width: 600px) {
    .classic-hero { padding: calc(var(--nav-h) + 40px) 20px 60px; height: auto; min-height: 80vh; }
    .hero-title-classic { font-size: 34px; letter-spacing: -1px; margin-bottom: 20px; }
    .hero-sub-classic { font-size: 16px; margin-bottom: 30px; }
    .hero-btns-classic { flex-direction: column; width: 100%; gap: 14px; }
    .btn--outline-white { width: 100%; }
    
    .classic-sections-wrapper { padding: 60px 0 80px; }
    .section-headers { margin-bottom: 40px; }
    .section-headers h2 { font-size: 30px; }
    
    .classic-features-grid { grid-template-columns: 1fr; gap: 20px; }
    .c-feature-card { padding: 30px 20px; }
    .c-feature-card i { width: 80px; height: 80px; font-size: 40px; margin-bottom: 20px; }
    .c-feature-card h3 { font-size: 20px; }
}


/* ─── Page Hero (Sub Pages) ─────────────────────────────────── */
.page-hero {
    padding: calc(var(--nav-h) + 80px) 0 80px;
    text-align: center; position: relative;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at top, #fff 0%, transparent 100%); opacity: 0.6; pointer-events: none; }
.page-icon {
    width: 80px; height: 80px; background: #fff; color: var(--primary);
    border-radius: 24px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 36px; margin-bottom: 24px; box-shadow: var(--shadow-md); transform: rotate(-5deg);
}
.page-title { font-size: clamp(36px, 5vw, 60px); letter-spacing: -1px; margin-bottom: 20px; }
.page-desc { max-width: 650px; margin: 0 auto; font-size: 18px; color: var(--text-body); line-height: 1.7; }

/* ─── Posts Grid ────────────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; }
.post-card {
    background: #fff; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: all var(--trans); display: flex; flex-direction: column; height: 100%;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.post-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--bg-section); transition: transform 0.6s var(--ease); }
.post-card:hover .post-card-img { transform: scale(1.05); }
.img-wrapper { overflow: hidden; aspect-ratio: 4/3; }
.post-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; background: #fff; position: relative; z-index: 2; }
.post-card-date { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.post-card-text { font-size: 16px; color: var(--text-dark); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 28px; }
.post-link { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; }
.post-link i { transition: var(--trans); }
.post-card:hover .post-link i { transform: translateX(6px); }

/* Skeleton */
.skeleton-card { height: 440px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--border); animation: shimmer 2s infinite linear; background-image: linear-gradient(90deg, #F5F3ED 0px, #E7E5E4 40px, #F5F3ED 80px); background-size: 600px; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer { background: var(--text-dark); color: #fff; padding: 100px 0 30px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr; gap: 50px; } }

.footer-brand .footer-logo { width: 70px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 26px; font-weight: 800; display: block; margin-bottom: 16px; letter-spacing: -0.5px; }
.footer-brand p { color: #A8A29E; font-size: 16px; max-width: 340px; line-height: 1.7; }

.social-row { display: flex; gap: 14px; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 22px; transition: var(--trans); color: #fff; }
.social-btn:hover { background: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-primary); }

.footer-nav h4 { color: #fff; margin-bottom: 28px; font-size: 19px; }
.footer-nav a { display: block; color: #A8A29E; margin-bottom: 14px; font-size: 15px; transition: var(--trans); }
.footer-nav a:hover { color: var(--primary); transform: translateX(6px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: #78716C; font-size: 14px; }

/* ─── Sostienici Custom CSS ─────────────────────────────────── */
.donate-header { background: var(--primary); color: #fff; padding: calc(var(--nav-h) + 100px) 0 160px; text-align: center; position: relative; border-radius: 0 0 60px 60px; margin-bottom: -80px; }
.donate-header .page-title { color: #fff; margin-bottom: 20px; }
.donate-header .page-desc { color: rgba(255,255,255,0.9); }

.donate-cards-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; position: relative; z-index: 10; margin-bottom: 80px; }
.donate-card { background: #fff; border-radius: var(--radius-xl); padding: 48px 40px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-md); transition: all var(--trans); display: flex; flex-direction: column; align-items: center; }
.donate-card--pop { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.03); position: relative; }
.dc-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 8px 24px; border-radius: var(--radius-full); font-size: 14px; font-weight: 700; box-shadow: var(--shadow-primary); }
.dc-icon { width: 80px; height: 80px; background: var(--bg-main); color: var(--primary); border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 38px; margin-bottom: 24px; box-shadow: inset 0 2px 8px rgba(0,0,0,0.04); }
.donate-card--pop .dc-icon { background: var(--primary-op); }
.donate-card h3 { font-size: 22px; margin-bottom: 16px; }
.donate-card p { font-size: 15px; color: var(--text-body); margin-bottom: 24px; line-height: 1.6; }
.dc-price { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--text-dark); margin-bottom: 30px; }

.donate-methods-container { background: #fff; border-radius: var(--radius-xl); padding: 60px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; margin-bottom: 40px; }
@media (max-width: 1024px) { .donate-methods-container { grid-template-columns: 1fr; padding: 40px 30px; gap: 40px; } }
.donate-methods-text h2 { font-size: 32px; margin-bottom: 20px; line-height: 1.2; }
.donate-methods-text p { font-size: 17px; color: var(--text-body); line-height: 1.7; }

.method-list { display: flex; flex-direction: column; gap: 24px; }
.method-item { display: flex; gap: 24px; align-items: center; padding: 28px; background: var(--bg-main); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--trans); }
.method-item:hover { background: #fff; box-shadow: var(--shadow-sm); border-color: var(--border-hover); }
.method-item .icon-wrap { width: 70px; height: 70px; background: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--primary); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.method-details h4 { font-size: 20px; margin-bottom: 8px; }
.method-details p { font-size: 15px; color: var(--text-body); margin-bottom: 12px; }
.iban { font-family: 'Inter', monospace; font-size: 18px; font-weight: 700; letter-spacing: 1.5px; color: var(--text-dark); background: #fff; padding: 12px 20px; border-radius: var(--radius-sm); border: 1px dashed var(--border-hover); display: inline-block; margin-bottom: 8px; }
.method-note { display: block; font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
