@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Inter:wght@100..900&display=swap');

/* BULLETPROOF RESET */
.transparency-premium,
.transparency-premium * {
    box-sizing: border-box !important;
}

:root {
    --f-bg: #F8FAFC;
    --f-surface: #FFFFFF;
    --f-primary: #0F172A;
    --f-accent: #D4AF37;
    /* Highlight Yellow from mockup */
    --f-accent-dark: #92400E;
    --f-success: #059669;
    --f-danger: #DC2626;
    --f-text: #1E293B;
    --f-radius-2xl: 32px;
    --f-gold: #D4AF37;
    --f-gold-light: rgba(212, 175, 55, 0.1);
    --f-gold-dark: #92622D;
    --f-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --f-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --f-shadow-premium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --f-shadow-subtle: 0 20px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

body {
    background-color: #F8FAFC;
    color: var(--f-text-dark);
    font-display: swap;
    line-height: 1.6;
    letter-spacing: -0.011em;
}

.transparency-premium {
    background-color: var(--f-bg);
    color: var(--f-text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 100vw;
}

.transparency-premium .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TYPOGRAPHY */
.transparency-premium h1,
.transparency-premium h2,
.transparency-premium h3,
.transparency-premium h4 {
    color: var(--f-text-dark);
    font-family: 'Geist', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.text-display {
    font-weight: 900;
}

/* HERO SECTION */
.hero-wrapper {
    padding: 5rem 0;
    background: radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(129, 140, 248, 0.05) 0px, transparent 50%);
    background-color: white;
    position: relative;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
}

.badge-transparent {
    letter-spacing: 0.1em;
    background: var(--f-primary);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 950 !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-desc {
    max-width: 600px;
    line-height: 1.4;
}

.hero-sidebar {
    height: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    /* Vertical Center */
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 3rem;
        padding: 2rem 0;
    }
}

/* IMPACT STRIP */
.impact-strip {
    background: white;
    border: 1px solid var(--f-border);
    box-shadow: var(--f-shadow-subtle);
    border-radius: var(--f-radius-2xl);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.impact-strip-hero {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.impact-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    padding: 0 2rem;
}

.impact-mini-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.impact-mini-card .value {
    font-family: 'Geist', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--f-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.impact-mini-card .label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--f-text-light);
    letter-spacing: 0.1em;
}

/* THERMOMETER CARD */
.thermometer-premium-box {
    background: #0F172A;
    background-image: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    border-radius: 28px;
    padding: 3rem;
    color: white;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4), 0 18px 36px -18px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.thermometer-value {
    font-size: 4.5rem;
    font-weight: 950;
    line-height: 0.9;
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
    color: white;
}

.progress-track-premium {
    height: 12px;
    background: #1E293B;
    border-radius: 99px;
    margin: 1.5rem 0;
    overflow: hidden;
    display: flex;
}

.progress-bar-premium {
    height: 100%;
}

.progress-bar-external {
    background: var(--f-success);
    transition: width 1s ease-out;
}

.progress-bar-internal {
    background: var(--f-gold);
    transition: width 1s ease-out;
}

.progress-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 0.75rem;
}

.color-external {
    background: var(--f-success);
}

.color-internal {
    background: var(--f-gold);
}

/* BUTTONS */
.btn-group-premium {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-group-center {
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .btn-group-premium {
        flex-direction: row;
    }
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.btn-premium-dark {
    background: var(--f-primary);
    color: white;
}

.btn-premium-dark:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

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

.btn-premium-outline:hover {
    background: var(--f-primary);
    color: white;
    transform: translateY(-2px);
}

/* METRICS GRID */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.metric-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--f-radius-xl);
    border: 1px solid var(--f-border);
    box-shadow: var(--f-shadow-subtle);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--f-shadow-premium);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.metric-header .icon {
    margin-bottom: 0 !important;
    font-size: 1.25rem;
}

.metric-header .label {
    margin-bottom: 0 !important;
}

.metric-card .icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.metric-card .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--f-text-light);
    /* Improved contrast */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-card .value-find {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--f-accent-dark);
}

.metric-card .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--f-success);
}

/* TWO COLUMN SECTION */
.details-section {
    padding: 6rem 0;
    background: #F8FAFC;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4.5rem;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

@media (min-width: 1024px) {
    .details-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* EXPENSE ITEMS */
.expense-card {
    background: white;
    border: 1px solid var(--f-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-priority {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.priority-high {
    background: #FEE2E2;
    color: #9B1C1C;
}

.priority-mid {
    background: #DBEAFE;
    color: #1E40AF;
}

.priority-low {
    background: #F1F5F9;
    color: #475569;
}

/* RESERVE SECTION */
.reserve-box {
    background: #FFFBEB;
    border: 1px solid #FEF3C7;
    border-radius: var(--f-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.reserve-box h5,
.reserve-box h6 {
    color: #92400E !important;
}

.reserve-box p {
    color: #92400E;
    opacity: 0.8;
}

.reserve-box .progress-track-premium {
    background: rgba(146, 64, 14, 0.1) !important;
}

.reserve-box .progress-bar-premium {
    background: #92400E !important;
}

/* PROJECT CARDS */
.project-card {
    background: white;
    border: 1px solid var(--f-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.project-card p {
    color: var(--f-text-light);
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    background: #0F172A;
    border-radius: var(--f-radius-xl);
    padding: 4rem 2rem;
    color: white;
}

.faq-container h2,
.faq-container h1 {
    color: white !important;
}

.faq-q {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--f-accent);
}

.faq-a {
    padding: 1.5rem 2.5rem 2.5rem;
    color: var(--f-text-light);
    display: none;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-q {
    padding: 1.75rem 2.5rem;
}

/* FOOTER CTA */
.footer-cta {
    background: radial-gradient(circle at top, #1E293B 0%, #0F172A 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(253, 230, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--f-accent), transparent);
}

.footer-cta h2 {
    color: white;
    margin-bottom: 4rem;
    font-size: 3.5rem;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-cta {
        padding: 5rem 0;
    }
}

.footer-cta .btn-group-premium {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
}

.footer-cta .btn-premium-glow {
    background: var(--f-accent);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    font-weight: 800;
}

.footer-cta .btn-premium-glow:hover {
    box-shadow: 0 0 40px rgba(253, 230, 138, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.footer-cta .btn-premium-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.footer-cta .btn-premium-outline:hover {
    border-color: var(--f-accent);
    color: var(--f-accent);
    background: rgba(253, 230, 138, 0.05);
}

/* UTILS */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.text-accent {
    color: var(--f-accent) !important;
}

.text-success {
    color: #0496be !important;
}

.text-muted {
    color: var(--f-text-light) !important;
}

.fw-black {
    font-weight: 950 !important;
}

/* MOBILE REFINEMENTS */
@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .hero-wrapper {
        padding: 2rem 0 !important;
        text-align: center !important;
    }

    .hero-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-content p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        font-size: 1.1rem !important;
    }

    .btn-group-premium {
        justify-content: center !important;
        width: 100% !important;
        gap: 1rem !important;
    }

    .btn-premium {
        width: 100% !important;
        padding: 0.8rem 1.5rem !important;
    }

    .impact-strip {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
        margin-top: 1rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }

    .impact-mini-card {
        padding: 0 !important;
        width: 100% !important;
    }

    .impact-mini-card:not(:last-child)::after {
        display: none !important;
    }

    .team-thanks-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.25rem !important;
        padding: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .team-thanks-bar>div:first-child {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .thanks-heart {
        margin-right: 0 !important;
        margin-bottom: 0.75rem !important;
    }

    .badges-wrapper {
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .section-header-premium {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        margin-bottom: 2rem !important;
    }

    .thermometer-premium-box {
        padding: 1.5rem !important;
        text-align: center !important;
    }

    .thermometer-value {
        font-size: 2.75rem !important;
    }

    .metric-card {
        padding: 1.25rem !important;
        text-align: center !important;
    }

    .metric-header {
        justify-content: center !important;
    }

    .reserve-box {
        padding: 1.25rem !important;
        text-align: center !important;
    }

    .details-section {
        padding: 2.5rem 0 !important;
    }
}

/* ==========================================================================
   TRANSPARENCY DATA DASHBOARD (DETALLE)
   ========================================================================== */

.data-dashboard {
    color: #1a202c;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Custom Grid for Dashboard (Since Bootstrap is not loaded) */
.data-dashboard .row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}

.data-dashboard .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 1rem;
}

.data-dashboard .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 1rem;
}

.data-dashboard .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 1rem;
}

.data-dashboard .col-md-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 1rem;
}

@media (max-width: 992px) {

    .data-dashboard .col-lg-3,
    .data-dashboard .col-lg-9,
    .data-dashboard .col-md-4,
    .data-dashboard .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.data-dashboard .sidebar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--f-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-dashboard .filter-group {
    margin-bottom: 1.5rem;
}

.data-dashboard .filter-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a0aec0;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.data-dashboard .filter-value {
    font-weight: 600;
    color: #2d3748;
}

.data-dashboard .metric-card-minimal {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: var(--f-radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s;
}

.data-dashboard .metric-card-minimal:hover {
    transform: translateY(-2px);
    box-shadow: var(--f-shadow-sm);
}

.data-dashboard .metric-label {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0.5rem;
    display: block;
}

.data-dashboard .metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
}

.data-dashboard .section-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: var(--f-radius-xl);
    padding: 2rem;
    height: 100%;
}

.data-dashboard .section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.data-dashboard .section-subtitle {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 2rem;
}

/* List Items (Breakdown, Contributions, Archive) */
.data-dashboard .list-item-premium {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.data-dashboard .list-item-premium:hover {
    background: #f1f5f9;
}

.data-dashboard .item-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.data-dashboard .item-info p {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 0;
}

.data-dashboard .item-amount {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Toggle Buttons */
.btn-toggle-group {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    display: inline-flex;
}

.btn-toggle {
    border: none;
    background: transparent;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    color: #64748b;
    transition: all 0.2s;
}

.btn-toggle.active {
    background: white;
    color: #1e293b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Progress bar for Reserve */
.reserve-progress {
    height: 12px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.reserve-progress .progress-bar {
    background: #1a202c;
}

/* DONATIONS PAGE SPECIFIC */
.donations-page .trans-hero {
    padding: 6rem 0 !important;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.donations-page .trans-hero h1 {
    font-size: 3.5rem;
    color: white !important;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.donation-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.donation-tier-card {
    background: white;
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    border: 1px solid var(--f-border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.donation-tier-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.donation-tier-card.popular {
    border-color: #6366f1;
    background: linear-gradient(to bottom, #ffffff, #f8faff);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.1);
}

.donation-tier-card.popular::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: #6366f1;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    z-index: 10;
}

.tier-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tier-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--f-primary);
    font-family: 'Geist', sans-serif;
}

.tier-price {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 2rem;
    color: var(--f-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.tier-price small {
    font-size: 1.1rem;
    color: var(--f-text-light);
    font-weight: 600;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.tier-features li {
    padding: 1rem 0;
    font-size: 0.95rem;
    color: var(--f-text-light);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 900;
    flex-shrink: 0;
}

/* TRANSFER BOX PREMIUM */
.transfer-premium-box {
    background: #0F172A;
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
}

.transfer-premium-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.transfer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .transfer-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.transfer-data-list {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.data-item {
    margin-bottom: 2rem;
}

.data-item:last-child {
    margin-bottom: 0;
}

.data-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.data-value-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.data-value {
    font-family: 'Geist Mono', 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    word-break: break-all;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-copy:hover {
    background: white;
    color: var(--f-primary);
    transform: translateY(-2px);
}

/* ONETIME BOX */
.onetime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.btn-onetime {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1rem;
    background: white;
    border: 1px solid var(--f-border);
    border-radius: 1.25rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-onetime:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(99, 102, 241, 0.15);
}

.btn-onetime .amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--f-primary);
    font-family: 'Geist', sans-serif;
}

.btn-onetime .desc {
    font-size: 0.75rem;
    color: var(--f-text-light);
    margin-top: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* SECTION HEADERS */
.section-header-premium {
    margin-bottom: 4.5rem;
    max-width: 700px;
}

.section-header-premium h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.section-header-premium p {
    color: var(--f-text-light);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* WORK BREAKDOWN SECTION */
.work-breakdown-section {
    margin-top: 4rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.work-item-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.work-item-card:hover {
    border-color: var(--f-accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    transform: translateY(-5px);
}

.work-item-info {
    display: flex;
    flex-direction: column;
}

.work-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--f-text-dark);
}

.work-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #0d9488;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.team-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--f-gold-dark);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.work-item-value {
    font-family: 'Geist', sans-serif;
    font-weight: 950;
    font-size: 1.25rem;
    color: var(--f-primary);
}

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

/* PREMIUM TEAM THANKS BAR */
.team-thanks-bar {
    background: linear-gradient(135deg, #ffffff 0%, #fffdec 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--f-shadow-subtle);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 2.5rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border-radius: var(--f-radius-2xl) !important;
}

.team-thanks-bar:hover {
    transform: translateY(-5px);
    box-shadow: var(--f-shadow-premium);
}

.thanks-header {
    flex: 1.2;
    min-width: 320px;
    display: flex;
    align-items: start;
}

.thanks-header h5 {
    font-size: 0.85rem !important;
    letter-spacing: 0.15em !important;
}

.thanks-header p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.team-thanks-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(129, 140, 248, 0.15), 0 10px 10px -5px rgba(129, 140, 248, 0.1);
}

.badges-wrapper {
    flex: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.team-member-badge {
    display: inline-flex;
    align-items: center;
    background: var(--f-gold-light);
    color: var(--f-gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.team-member-badge:hover {
    transform: scale(1.05);
}

.thanks-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    margin-right: 1.25rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}