/* Momentum Page - Updates & Progress Tracking */

/* Import variables from home.css */
:root {
    --primary-blue: #1b365d;
    --secondary-blue: #2d5aa0;
    --primary-beige: #f5f5dc;
    --secondary-beige: #e8e4c9;
    --accent-beige: #f0ecd6;
    --text-dark: #2c3e50;
    --text-medium: #4a5568;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - Modern & Polished */
.momentum-hero {
    background: linear-gradient(135deg, #fafaf0 0%, #f5f5dc 50%, #f0ecd6 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.momentum-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(27, 54, 93, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(27, 54, 93, 0.04) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    text-shadow: none;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 400;
    max-width: 400px;
}



.hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Launch Announcement - Modern Card */
.launch-announcement {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(27, 54, 93, 0.1);
    border: 2px solid var(--primary-blue);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.launch-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.02) 0%, rgba(45, 90, 160, 0.02) 100%);
    z-index: 1;
}

.launch-badge {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.5rem;
}

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

.launch-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.launch-date {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary-blue);
}

.launch-description {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(27, 54, 93, 0.25);
    border: 2px solid var(--primary-blue);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Headers - Modern & Sleek */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Development Section - Modern & Polished */
.development-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
    position: relative;
}

.development-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 54, 93, 0.1) 50%, transparent 100%);
}

.development-checklist {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(27, 54, 93, 0.06);
    border: 1px solid rgba(27, 54, 93, 0.08);
    position: relative;
    overflow: hidden;
}

.checklist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.02) 0%, transparent 100%);
    z-index: 1;
}

.checklist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.checklist-item.completed {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.checklist-item.in_progress {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.checklist-item.testing {
    border-left-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.checklist-item.deployed {
    border-left-color: #06b6d4;
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
}

.item-status {
    flex-shrink: 0;
}

.status-icon {
    font-size: 2rem;
    display: block;
}

.item-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.item-description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.item-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.priority-badge, .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-critical { background: #fee2e2; color: #dc2626; }
.priority-high { background: #fef3c7; color: #d97706; }
.priority-medium { background: #dbeafe; color: #2563eb; }
.priority-low { background: #dcfce7; color: #16a34a; }

.status-completed { background: #dcfce7; color: #16a34a; }
.status-in_progress { background: #fef3c7; color: #d97706; }
.status-testing { background: #f3e8ff; color: #9333ea; }
.status-deployed { background: #cffafe; color: #0891b2; }
.status-pending { background: #f3f4f6; color: #6b7280; }

.completion-date {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-style: italic;
}

/* No Updates State */
.no-updates {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-medium);
}

.no-updates-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Business Section - Modern & Polished */
.business-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    position: relative;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 54, 93, 0.08) 50%, transparent 100%);
}

.business-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.business-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid var(--white);
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -60px;
}

.timeline-marker.current {
    background: var(--primary-blue);
    box-shadow: 0 0 0 8px rgba(27, 54, 93, 0.2);
}

.timeline-marker.next {
    background: var(--secondary-blue);
    box-shadow: 0 0 0 8px rgba(45, 90, 160, 0.2);
}

.timeline-marker.fund-us {
    background: #10b981;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2);
}

.timeline-marker.update {
    background: #10b981;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-item.current .timeline-content {
    border-color: var(--primary-blue);
}

.timeline-item.next .timeline-content {
    border-color: var(--secondary-blue);
}

.timeline-item.update .timeline-content {
    border-color: #10b981;
}

.timeline-item.fund-us .timeline-content {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Fund Us CTA Styles - Now within business updates */
.fund-us-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.fund-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
    border: 2px solid var(--white);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.fund-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
    color: var(--white);
}

.fund-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid #e5e7eb;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 2rem 0;
}

.modal-content {
    background-color: var(--white);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--primary-blue);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.close {
    color: var(--text-medium);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--primary-blue);
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.update-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-funding { background: #fef3c7; color: #d97706; }
.category-partnership { background: #dbeafe; color: #2563eb; }
.category-milestone { background: #dcfce7; color: #16a34a; }
.category-team { background: #f3e8ff; color: #9333ea; }
.category-expansion { background: #fce7f3; color: #ec4899; }
.category-other { background: #f3f4f6; color: #6b7280; }

/* Outreach Section - Modern & Polished */
.outreach-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
    position: relative;
}

.outreach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 54, 93, 0.1) 50%, transparent 100%);
}

.outreach-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(27, 54, 93, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.02) 0%, transparent 100%);
    z-index: 1;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card.instagram {
    border-color: #e91e63;
}

.stat-card.testers {
    border-color: var(--primary-blue);
}

.stat-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.icon-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stat-description {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.stat-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.post-count, .engagement-rate {
    font-size: 0.8rem;
    color: var(--text-medium);
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

/* Outreach CTA - Modern & Compact */
.outreach-cta {
    text-align: center;
    background: var(--accent-beige);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.outreach-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.outreach-cta p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 768px) {
    /* Container adjustments for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section mobile adjustments */
    .momentum-hero {
        padding: 3rem 0 2rem 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        text-align: center;
        max-width: 100%;
    }
    
    .launch-announcement {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .launch-badge {
        font-size: 3rem;
    }
    
    .launch-content h3 {
        font-size: 1.2rem;
    }
    
    .launch-date {
        font-size: 1.1rem;
    }
    
    .launch-description {
        font-size: 0.9rem;
    }
    
    /* Section headers mobile adjustments */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    /* Development section mobile adjustments */
    .development-section {
        padding: 3rem 0;
    }
    
    .checklist-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .item-status {
        align-self: center;
    }
    
    .status-icon {
        font-size: 1.8rem;
    }
    
    .item-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .item-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .item-meta {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .priority-badge, .status-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .completion-date {
        font-size: 0.75rem;
    }
    
    /* Business section mobile adjustments */
    .business-section {
        padding: 3rem 0;
    }
    
    .business-timeline {
        max-width: 100%;
    }
    
    .business-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        margin-bottom: 2rem;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        display: none;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .fund-us-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .fund-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.25rem;
    }
    
    /* Outreach section mobile adjustments */
    .outreach-section {
        padding: 3rem 0;
    }
    
    .outreach-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        height: 60px;
    }
    
    .icon-image {
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .stat-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .post-count, .engagement-rate {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Outreach CTA mobile adjustments */
    .outreach-cta {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .outreach-cta h3 {
        font-size: 1.5rem;
    }
    
    .outreach-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
    
    /* Modal mobile adjustments */
    .modal-content {
        margin: 1rem auto;
        padding: 1.5rem;
        width: 95%;
        max-height: calc(100vh - 2rem);
    }
    
    .close {
        top: 0.75rem;
        right: 1rem;
        font-size: 24px;
    }
    
    .form-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        gap: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 0.75rem;
    }
    
    .momentum-hero {
        padding: 2.5rem 0 1.5rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .launch-announcement {
        padding: 1.25rem;
    }
    
    .launch-badge {
        font-size: 2.5rem;
    }
    
    .launch-content h3 {
        font-size: 1.1rem;
    }
    
    .launch-date {
        font-size: 1rem;
    }
    
    .launch-description {
        font-size: 0.85rem;
    }
    
    /* Development section extra small adjustments */
    .development-section {
        padding: 2.5rem 0;
    }
    
    .checklist-item {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .item-title {
        font-size: 1rem;
    }
    
    .item-description {
        font-size: 0.85rem;
    }
    
    /* Business section extra small adjustments */
    .business-section {
        padding: 2.5rem 0;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        display: none;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* Outreach section extra small adjustments */
    .outreach-section {
        padding: 2.5rem 0;
    }
    
    .stat-card {
        padding: 1.5rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .outreach-cta {
        padding: 1.75rem 1.25rem;
        margin: 0 0.75rem;
    }
    
    .outreach-cta h3 {
        font-size: 1.4rem;
    }
    
    .outreach-cta p {
        font-size: 0.95rem;
    }
    
    /* Modal extra small adjustments */
    .modal-content {
        margin: 0.5rem auto;
        padding: 1.25rem;
        width: 98%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
}


