/* Grounded Soles Foundation - Website Styles */

:root {
    /* Brand Colors from Logo */
    --navy: #2C3E6F;
    --teal: #3FDBCC;
    --green: #5FE9A0;
    --white: #FFFFFF;
    --light-bg: #F8FAFB;
    --text-dark: #1A2332;
    --text-gray: #5A6B7D;
    
    /* Gradient */
    --gradient: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
    
    /* Typography */
    --font-display: 'Darker Grotesque', sans-serif;
    --font-body: 'Public Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
}

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

/* ===== URGENT NEED BANNER ===== */
.urgent-banner {
    background: linear-gradient(135deg, #E63946 0%, #D62828 100%) !important;
    color: white !important;
    padding: 12px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    width: 100% !important;
}

.urgent-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgent-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgent-text {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.urgent-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: background 0.3s ease;
    font-size: 14px;
}

.urgent-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.urgent-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-left: auto;
}

.urgent-close:hover {
    opacity: 1;
}

/* ===== HELP US LAUNCH SECTION ===== */
.launch-need {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.launch-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.launch-badge {
    display: inline-block;
    background: #3FDBCC;
    color: #2C3E6F;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.launch-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.launch-text > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.launch-need-box {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #3FDBCC;
    margin: 28px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.launch-need-box h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.launch-need-box p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.launch-need-box p:last-child {
    margin-bottom: 0;
}

.launch-benefit {
    background: rgba(63, 219, 204, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px !important;
    color: var(--text-gray) !important;
    margin-bottom: 32px !important;
}

.launch-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 62, 111, 0.3);
}

.launch-visual {
    background: white;
    padding: 48px 32px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.launch-icon {
    font-size: 48px;
    animation: float 3s ease-in-out infinite;
}

.launch-icon:nth-child(4) {
    animation-delay: 0.5s;
}

.launch-icon:nth-child(7) {
    animation-delay: 1s;
}

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

.launch-arrow {
    font-size: 32px;
    color: #3FDBCC;
    font-weight: 700;
}

.launch-visual p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
}

/* ===== GLOBAL STYLES ===== */

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--teal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    padding: 12px 28px;
    background: var(--gradient);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(63, 219, 204, 0.3);
}

.btn-hero {
    padding: 20px 48px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(63, 219, 204, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(63, 219, 204, 0.5);
}

.btn-large {
    padding: 18px 44px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(63, 219, 204, 0.4);
}

.btn-outline-large {
    padding: 18px 44px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-large:hover {
    background: white;
    color: var(--navy);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--navy);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(63, 219, 204, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -100px) scale(1.1); }
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 80px;
    margin-top: 80px;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    margin-top: 8px;
    font-weight: 600;
}

.stat-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 4px;
}

/* Mission Section */
.mission {
    padding: var(--section-padding) 0;
    background: white;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 60px;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.pillar {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.pillar p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Impact Section */
.impact {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.impact-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    flex-wrap: wrap;
    gap: 30px;
}

.impact-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.impact-step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 16px;
}

.impact-step h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.impact-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.flow-arrow {
    font-size: 32px;
    color: var(--teal);
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--navy);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-status {
    font-size: 14px;
    opacity: 0.6;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .impact-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Additional Page Styles */

/* Page Hero */
.page-hero {
    padding: 180px 40px 100px;
    background: var(--navy);
    color: white;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 22px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: var(--section-padding) 0;
    background: white;
}

.story-text {
    max-width: 800px;
}

.story-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Mission & Vision */
.mission-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Values */
.values-section {
    padding: var(--section-padding) 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
}

.value-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Team */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.centered-intro {
    text-align: center;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.team-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.team-placeholder {
    width: 120px;
    height: 120px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.team-title {
    font-size: 16px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Help Page Styles */
.ways-to-help {
    padding: var(--section-padding) 0;
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.help-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.help-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.help-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.help-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.help-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: var(--green);
}

/* Donation Section */
.donate-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.donation-info-box {
    background: white;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 700px;
    margin: 60px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.donation-info-box h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.donation-info-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.impact-breakdown {
    max-width: 900px;
    margin: 60px auto 0;
}

.impact-breakdown h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.impact-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.impact-example {
    text-align: center;
}

.impact-amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.impact-example p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Shoe Donation */
.donate-shoes-section {
    padding: var(--section-padding) 0;
    background: white;
}

.shoes-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin: 60px 0;
}

.guidelines-col h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.donation-cta-box {
    background: var(--light-bg);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.donation-cta-box h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.donation-cta-box p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

/* Volunteer Section */
.volunteer-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.role-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.role-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.role-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.volunteer-cta {
    background: white;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.volunteer-cta h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.volunteer-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

/* Partnership Page */
.partnership-value {
    padding: var(--section-padding) 0;
    background: white;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.value-prop {
    text-align: center;
}

.prop-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.value-prop h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-prop p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
}

.partnership-opportunities {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.opportunity-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.opportunity-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.opportunity-card > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.opportunity-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.opportunity-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.opportunity-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.opportunity-benefit {
    font-size: 15px;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 16px;
}

.partnership-tiers {
    padding: var(--section-padding) 0;
    background: white;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.tier-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: var(--teal);
    transform: translateY(-8px);
}

.tier-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.tier-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.tier-benefits {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.tier-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.tier-note {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 40px;
}

.partner-cta {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

/* Contact Page */
.contact-section {
    padding: var(--section-padding) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.method-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.method-details p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.method-details a {
    color: var(--teal);
    text-decoration: none;
}

.method-details a:hover {
    text-decoration: underline;
}

.contact-boxes {
    margin-top: 48px;
}

.info-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.info-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid #E5E9ED;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
}

.btn-form {
    padding: 16px 40px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(63, 219, 204, 0.3);
}

/* Embedded Form Container */
.form-embed-container {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.form-embed-container iframe {
    width: 100%;
    height: 1800px;
    border: none;
    display: block;
}

/* Partnership Forms Section */
.partnership-forms {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0 40px;
}

.form-option {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.form-option-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.form-option h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.form-option p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-option-list {
    list-style: none;
    text-align: left;
    margin: 24px 0 32px;
    padding: 0;
}

.form-option-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
}

.form-option-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 18px;
}

.btn-form-link {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-form-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(63, 219, 204, 0.3);
}

.forms-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 40px;
}

.forms-note a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.forms-note a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 48px;
    }
    
    .form-embed-container iframe {
        height: 2200px;
    }
    
    /* Banner Mobile */
    .urgent-banner-content {
        font-size: 14px;
    }
    
    .urgent-text {
        font-size: 13px;
        text-align: center;
        flex: 1 1 100%;
    }
    
    /* Launch Section Mobile */
    .launch-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .launch-text h2 {
        font-size: 28px;
    }
    
    .launch-visual {
        padding: 32px 24px;
    }
    
    /* Forms Section Mobile */
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .form-embed-container iframe {
        height: 2500px;
    }
    
    /* Banner Mobile Small */
    .urgent-banner {
        padding: 10px 0;
    }
    
    .urgent-close {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Launch Section Mobile Small */
    .launch-need {
        padding: 60px 0;
    }
    
    .launch-cta {
        flex-direction: column;
    }
    
    .launch-cta a {
        width: 100%;
        text-align: center;
    }
}
