/* ==========================================================================
   LifeBridge Ohio - Modern Donation Landing Page Stylesheet
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #0a0f1d;
    --bg-surface: #111827;
    --bg-surface-elevated: #1a2236;
    --bg-card: rgba(26, 34, 54, 0.7);
    --bg-card-hover: rgba(33, 44, 70, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 201, 167, 0.3);

    /* Primary Teal Accents */
    --primary: #00c9a7;
    --primary-light: #34d399;
    --primary-dark: #0f766e;
    --primary-glow: rgba(0, 201, 167, 0.35);

    /* Warm Highlights */
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-indigo: #6366f1;

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-inverse: #090d16;

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 35px var(--primary-glow);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}

.bg-glow-1 {
    width: 550px;
    height: 550px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.25) 0%, rgba(15, 118, 110, 0) 70%);
}

.bg-glow-2 {
    width: 650px;
    height: 650px;
    top: 40%;
    right: -150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.85rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-top: -3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-light);
}

.btn-nav,
.hero-cta-btn,
.cta-btn-glow,
.btn-sticky,
.pillar-btn,
.open-donation-modal {
    cursor: pointer;
    user-select: none;
}

.open-donation-modal * {
    pointer-events: none;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
    color: #061c18;
    border: none;
    outline: none;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--primary-glow);
    transition: var(--transition-fast);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.5);
    background: linear-gradient(135deg, #10e3bd 0%, #0f766e 100%);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 4.5rem 0 3.5rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(0, 201, 167, 0.1);
    border: 1px solid rgba(0, 201, 167, 0.25);
    border-radius: 9999px;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero Donation Card */
.donation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-amber) 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.tax-tag {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(0, 201, 167, 0.12);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}

/* Amount Chips */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.amount-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
}

.amount-chip .chip-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.amount-chip .chip-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.amount-chip:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: rgba(0, 201, 167, 0.05);
}

.amount-chip.active {
    border-color: var(--primary);
    background: rgba(0, 201, 167, 0.15);
    box-shadow: 0 0 15px rgba(0, 201, 167, 0.25);
}

.amount-chip.active .chip-val {
    color: var(--primary-light);
}

.amount-chip.active .chip-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Impact Preview Banner */
.impact-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.impact-preview-icon {
    font-size: 1.35rem;
}

.impact-preview-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.impact-preview-text strong {
    color: var(--text-primary);
}

/* Hero CTA Button */
.hero-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #00c9a7 0%, #0d9488 100%);
    color: #04241e;
    border: none;
    outline: none;
    padding: 1.05rem 1.75rem;
    border-radius: 0.85rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--primary-glow);
    transition: var(--transition-smooth);
    position: relative;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 201, 167, 0.55);
    background: linear-gradient(135deg, #12e8c2 0%, #0f766e 100%);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

.hero-cta-btn .btn-arrow {
    transition: transform var(--transition-fast);
}

.hero-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Card Trust Footer */
.card-footer-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.15rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-sep {
    opacity: 0.4;
}

/* Hero Right Visual Column */
.hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.visual-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 29, 0) 40%, rgba(10, 15, 29, 0.75) 100%);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(17, 24, 39, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.floating-badge.top-right {
    top: 1.5rem;
    right: 1.5rem;
    border-left: 3px solid var(--primary);
}

.floating-badge.bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
    animation-delay: 2s;
    border-left: 3px solid var(--accent-amber);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.badge-icon-wrap {
    font-size: 1.35rem;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.badge-sub {
    font-size: 0.725rem;
    color: var(--text-secondary);
}

.badge-avatar-stack {
    display: flex;
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 2px solid var(--bg-surface);
    font-size: 0.8rem;
    margin-right: -8px;
}

/* ==========================================================================
   Impact Stats Section
   ========================================================================== */
.stats-section {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(17, 24, 39, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.65rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Mission Pillars Section
   ========================================================================== */
.pillars-section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(0, 201, 167, 0.1);
    border: 1px solid rgba(0, 201, 167, 0.2);
    border-radius: 9999px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: 2.35rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.85rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    background: var(--bg-surface-elevated);
}

.pillar-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pillar-icon-box svg {
    width: 26px;
    height: 26px;
}

.p-teal { background: rgba(0, 201, 167, 0.12); color: var(--primary-light); }
.p-amber { background: rgba(245, 158, 11, 0.12); color: var(--accent-amber); }
.p-indigo { background: rgba(99, 102, 241, 0.12); color: #818cf8; }
.p-rose { background: rgba(244, 63, 94, 0.12); color: #fb7185; }

.pillar-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.pillar-text {
    font-size: 0.885rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--primary-light);
    font-size: 0.885rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    transition: var(--transition-fast);
}

.pillar-btn:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ==========================================================================
   Testimonial Story Section
   ========================================================================== */
.story-section {
    padding: 3rem 0 5rem;
}

.story-box {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.9) 0%, rgba(17, 24, 39, 0.9) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: 1.5rem;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.story-badge {
    display: inline-block;
    color: var(--accent-amber);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
    color: #04241e;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.author-role {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
    padding: 3rem 0 5rem;
    background: rgba(17, 24, 39, 0.3);
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--border-highlight);
    background: var(--bg-surface-elevated);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 400;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Final CTA Banner Section
   ========================================================================== */
.final-cta-section {
    padding: 2rem 0 5rem;
}

.cta-banner {
    background: radial-gradient(circle at 50% 0%, #1f3747 0%, #0e172a 100%);
    border: 1px solid var(--border-highlight);
    border-radius: 1.75rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 201, 167, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-pill {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(0, 201, 167, 0.15);
    color: var(--primary-light);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2.25rem;
}

.cta-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
    color: #04241e;
    border: none;
    outline: none;
    padding: 1.15rem 2.5rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 35px var(--primary-glow);
    transition: var(--transition-smooth);
}

.cta-btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 201, 167, 0.6);
}

/* ==========================================================================
   Sticky Bottom CTA Floating Bar
   ========================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 99;
    width: 90%;
    max-width: 540px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-inner {
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-highlight);
    border-radius: 9999px;
    padding: 0.65rem 0.85rem 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

.sticky-sub {
    font-size: 0.725rem;
    color: var(--primary-light);
}

.btn-sticky {
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
    color: #04241e;
    border: none;
    outline: none;
    padding: 0.65rem 1.35rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-fast);
}

.btn-sticky:hover {
    transform: scale(1.04);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #070a14;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.footer-brand .logo-title {
    font-size: 1.35rem;
    color: #ffffff;
}

.footer-tagline {
    margin-top: 0.5rem;
    max-width: 320px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 3.5rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-col a, .footer-link-btn {
    display: block;
    background: none;
    border: none;
    outline: none;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.25rem 0;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.footer-col a:hover, .footer-link-btn:hover {
    color: var(--primary-light);
}

.footer-secure-tag {
    display: block;
    font-size: 0.825rem;
    color: var(--text-secondary);
    padding: 0.2rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.footer-sub-btn {
    background: none;
    border: none;
    color: var(--primary-light);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-img {
        height: 380px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.95rem;
    }

    .cta-title {
        font-size: 1.85rem;
    }

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

    .story-box {
        padding: 2.5rem 1.5rem;
    }

    .story-quote {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid, .pillars-grid {
        grid-template-columns: 1fr;
    }

    .card-footer-trust {
        flex-direction: column;
        gap: 0.35rem;
    }

    .trust-sep {
        display: none;
    }
}
