/* ============================================
   SL Prayer Times - Refined Modern Design
   Clean & Calm for a Prayer App
   ============================================ */

/* === Design Tokens === */
:root {
    /* Colors - Soft & Calming */
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --gold-400: #fbbf24;
    --gold-500: #d4a853;

    --white: #ffffff;
    --black: #000000;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* === Background === */
.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.08), transparent),
        var(--slate-50);
    pointer-events: none;
    z-index: -1;
}

/* === Layout === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* === Navigation === */
.nav {
    padding: var(--space-5) 0;
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    color: var(--slate-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    background: var(--white);
    border: 1px solid var(--slate-200);
}

.nav-back:hover {
    color: var(--emerald-600);
    border-color: var(--emerald-200);
    background: var(--emerald-50);
}

.nav-back i {
    font-size: 1.1rem;
}

/* === Hero Section === */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-16) 0 var(--space-12);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-700);
    margin-bottom: var(--space-6);
}

.hero-badge i {
    color: var(--emerald-500);
}

.app-icon {
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    margin: 0 auto var(--space-8);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 520px;
    margin: 0 auto var(--space-8);
}

/* === Download Buttons === */
.download-group {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--slate-900);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--slate-800);
}

.btn-download i {
    font-size: 1.25rem;
}

/* === Phone Showcase === */
.showcase {
    padding: var(--space-12) 0 var(--space-16);
}

.phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.phone {
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.phone img {
    width: 280px;
    height: auto;
    border-radius: 36px;
    box-shadow: var(--shadow-xl);
}

.phone-center {
    z-index: 2;
}

.phone-center img {
    width: 300px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.phone-side {
    opacity: 0.7;
    transform: scale(0.9);
}

.phone-side:hover {
    opacity: 1;
    transform: scale(0.95);
}

/* === Features Section === */
.features {
    padding: var(--space-16) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-3);
}

.section-header p {
    color: var(--slate-500);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--emerald-100);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--emerald-50);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: var(--space-2);
}

.feature-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.beta-cta {
    margin-top: var(--space-12);
    background: var(--slate-900);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.beta-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 60%);
    pointer-events: none;
}

.beta-cta-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald-400);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.beta-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.beta-cta p {
    color: var(--slate-400);
    margin-bottom: var(--space-6);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.btn-beta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--emerald-500);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.btn-beta:hover {
    background: var(--emerald-600);
    transform: translateX(4px);
}

/* === Widget Section === */
.widget-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, transparent, var(--emerald-50) 50%, transparent);
}

.widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.widget-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.widget-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-4);
}

.widget-content>p {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.widget-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.widget-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--slate-700);
    font-weight: 500;
}

.widget-list i {
    width: 24px;
    height: 24px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    font-size: 0.85rem;
}

/* === Districts Section === */
.districts {
    padding: var(--space-12) 0;
    text-align: center;
}

.districts-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    margin-bottom: var(--space-4);
}

.districts p {
    color: var(--slate-500);
    max-width: 480px;
    margin: 0 auto;
}

/* === CTA Section === */
.cta {
    padding: var(--space-16) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--emerald-700), var(--emerald-600));
    border-radius: var(--radius-2xl);
    padding: var(--space-12) var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
    position: relative;
}

.cta-card>p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-8);
    position: relative;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    position: relative;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === Breadcrumbs === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--slate-500);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--emerald-600);
}

.breadcrumb .separator {
    color: var(--slate-300);
}

.breadcrumb .current {
    color: var(--emerald-700);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    position: relative;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    color: var(--emerald-700);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* === Footer === */
.footer {
    padding: var(--space-8) 0;
    text-align: center;
    border-top: 1px solid var(--slate-100);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--emerald-600);
}

.footer-copy {
    color: var(--slate-400);
    font-size: 0.85rem;
}

/* === Animations === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* === Responsive === */
@media (max-width: 900px) {
    .phones {
        gap: var(--space-4);
    }

    .phone-side {
        display: none;
    }

    .phone-center img {
        width: 280px;
    }

    .widget-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .widget-image {
        order: -1;
    }

    .widget-image img {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: var(--space-12) 0 var(--space-8);
    }

    .app-icon {
        width: 72px;
        height: 72px;
    }

    .download-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-download {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* === Accessibility === */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--emerald-600);
    color: var(--white);
    border-radius: 8px;
    z-index: 1000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Toast Notification === */
.toast {
    position: fixed;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--slate-900);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--emerald-400);
}

/* Prayer Times Section */
.prayer-times {
    padding: var(--space-20) 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.prayer-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    border: 1px solid var(--slate-100);
    box-shadow: var(--shadow-2xl);
    max-width: 800px;
    margin: 0 auto;
}

.prayer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--slate-50);
}

.district-selector {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--slate-50);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid var(--slate-100);
}

.district-selector i {
    color: var(--emerald-600);
    font-size: 1.25rem;
}

.district-selector select {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--slate-900);
    cursor: pointer;
    outline: none;
    font-size: 0.95rem;
}

.current-date {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-500);
}

.next-prayer-highlight {
    text-align: center;
    margin-bottom: var(--space-12);
}

.next-prayer-highlight .label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-600);
    display: block;
    margin-bottom: var(--space-2);
}

.next-prayer-highlight h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: var(--space-2);
}

.next-prayer-highlight .countdown {
    font-family: var(--font-body);
    font-variant-numeric: tabular-nums;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-400);
}

.prayer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.prayer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: var(--slate-50);
    border-radius: var(--radius-2xl);
    border: 1px solid transparent;
    transition: var(--transition-base);
}

.prayer-item .p-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: var(--space-1);
}

.prayer-item .p-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.prayer-item.active {
    background: var(--emerald-50);
    border-color: var(--emerald-200);
}

.prayer-item.active .p-name {
    color: var(--emerald-600);
}

.prayer-item.active .p-time {
    color: var(--emerald-900);
}

@media (max-width: 640px) {
    .prayer-card {
        padding: var(--space-6);
    }

    .prayer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prayer-card-header {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .next-prayer-highlight h2 {
        font-size: 2.5rem;
    }
}

/* === Mission Modal === */
.mission-modal-card {
    max-width: 480px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    width: 90%;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--slate-100);
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-400);
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
}

.btn-close:hover {
    color: var(--slate-900);
}

.mission-content {
    padding: var(--space-8) var(--space-6) var(--space-10);
}

.mission-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.heart-glow-small {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.heart-glow-small i {
    font-size: 2.5rem;
    color: var(--emerald-500);
    animation: pulse 2s infinite ease-in-out;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
}

.mission-item i {
    font-size: 1.5rem;
    color: var(--emerald-600);
}

.mission-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-600);
}

.mission-subtext {
    font-size: 0.9rem;
    color: var(--slate-500);
    max-width: 360px;
    margin: 0 auto;
}

.btn-link-subtle {
    background: none;
    border: none;
    color: var(--slate-500);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: var(--space-2);
    transition: color 0.2s;
    margin-top: var(--space-2);
    display: inline-block;
}

.btn-link-subtle:hover {
    color: var(--emerald-600);
}

@media (max-width: 600px) {
    .mission-modal-card {
        width: 95%;
    }
}

.support-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-12) var(--space-8);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.support-content {
    position: relative;
    z-index: 2;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-5);
}

.support-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.support-card p {
    color: var(--slate-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.support-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.stat-item {
    padding: var(--space-4);
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--emerald-600);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.support-links {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--slate-900);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--slate-800);
}

.btn-support-alt {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    color: var(--slate-900);
    border: 2px solid var(--slate-200);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.btn-support-alt:hover {
    border-color: var(--slate-900);
    background: var(--white);
}

.support-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.heart-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.heart-glow i {
    font-size: 6rem;
    color: #dc2626;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4));
    animation: heartPulse 2s infinite ease-in-out;
}

@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 900px) {
    .support-card {
        grid-template-columns: 1fr;
        padding: var(--space-8);
        text-align: center;
    }

    .support-visual {
        order: -1;
    }

    .support-links {
        justify-content: center;
    }
}