/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: #2d3748;
    background: #f8fafc;
    font-weight: 300;
    font-size: 14px;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 28px;
    height: 28px;
    border-radius: 5px;
}

.logo-text-svg {
    height: 20px;
    width: auto;
    margin-left: 5px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 300;
    font-size: 15px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #4a90e2;
}

.nav-links a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #2d3748;
    padding: 120px 0 80px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #1a202c;
}

.hero-title em {
    font-style: normal;
    color: #4a90e2;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 480px;
    color: #4a5568;
}

.platform-notice {
    margin-bottom: 1.5rem;
}

.platform-notice p {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #2d3748;
}

.platform-notice i {
    color: #3ddc84;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #4a90e2;
    color: white;
    border: 1px solid #4a90e2;
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.8rem 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
    border-radius: 50px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: #3182ce;
    border-color: #3182ce;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.download-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.download-badge img {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-badge:hover img {
    transform: scale(1.05);
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-phone {
    position: relative;
    width: 360px;
    height: 754px;
    padding: 10px;
    border-radius: 43px;
    background: white;
    box-shadow: 0 15px 20px -10px rgba(50, 50, 93, 0.25), 0 30px 40px -30px rgba(0, 0, 0, 0.3), inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35);
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero-phone-image {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    object-fit: contain;
    border-radius: 33px;
    margin: 6px;
    /* Subtle enhancement */
    filter: contrast(1.02) saturate(1.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* SVG optimization for crisp rendering */
img[src$=".svg"] {
    image-rendering: auto;
    shape-rendering: geometricPrecision;
    /* Subtle enhancement for SVG */
    filter: contrast(1.02) saturate(1.08);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Removed app preview styles - now using screenshot */

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 3rem;
    color: #2d3748;
    letter-spacing: 0.5px;
}

/* Audience Section Styles */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.audience-card {
    background: #f8fafc;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.audience-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.audience-card h3 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    color: #2d3748;
    letter-spacing: 0.3px;
}

.audience-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.8rem;
    font-weight: 300;
}

/* Interactive Features Styles */
.interactive-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.phone-mockup-container {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Phone Notification Overlay */
.phone-notification-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-35%) translateY(-20px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 10;
}

/* Show notification when progress tracking feature is active */
.interactive-features:has(.feature-item[data-feature="progress-tracking"].active) .phone-notification-overlay {
    opacity: 1;
    transform: translateX(-35%) translateY(0) scale(1);
    animation: notificationPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes notificationPop {
    0% {
        opacity: 0;
        transform: translateX(-35%) translateY(-30px) scale(0.9);
    }
    50% {
        transform: translateX(-35%) translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(-35%) translateY(0) scale(1);
    }
}

.notification-card-phone {
    width: 340px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 0 0 0.5px rgba(0, 0, 0, 0.1);
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transform-origin: top center;
}

.interactive-features .phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 33px;
    overflow: hidden;
    padding: 6px;
    box-sizing: border-box;
}

.interactive-features .feature-screen {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    object-fit: contain;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px;
    image-rendering: auto;
    /* Subtle enhancement */
    filter: contrast(1.02) saturate(1.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.interactive-features .feature-screen.active {
    opacity: 1;
    transform: translateY(0);
}


.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

.feature-item.active {
    border-color: #4a90e2;
    background: #f7faff;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15);
}

.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f8fafc;
    flex-shrink: 0;
}


.feature-item .feature-icon {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}


.feature-content h3 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    color: #2d3748;
}

.feature-content p {
    font-size: 0.8rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* Shared Notification Styles */

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}

.notification-app-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.notification-app-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.2;
}

.notification-time {
    font-size: 12px;
    color: #718096;
    line-height: 1.2;
}

.notification-body {
    padding-left: 44px;
}

.notification-title {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.notification-message {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* Mobile: Adjust notification for smaller screens */
@media (max-width: 1024px) {
    .phone-notification-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    .notification-card-phone {
        width: 280px;
        padding: 12px;
    }
}

.additional-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Hide Progress Tracking card on desktop (shown as button instead) */
.additional-features .feature-card:first-child {
    display: none;
}

/* Show Progress Tracking card only on mobile */
@media (max-width: 768px) {
    .additional-features .feature-card:first-child {
        display: block;
    }
}

.feature-card {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #4a90e2;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    opacity: 1;
    color: #3182ce;
}

/* Coming Soon Feature Card */
.feature-card.coming-soon {
    opacity: 0.7;
    background: #f8fafc;
    border: 2px dashed #cbd5e0;
}

.coming-soon-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 500;
}

.feature-card.coming-soon .feature-icon {
    opacity: 0.5;
    color: #94a3b8;
}

/* Founder's Note Section */
.founders-note {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founders-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.quote-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.founder-signature p {
    margin-bottom: 0.5rem;
    font-style: normal;
}

.founder-subtitle {
    color: #718096 !important;
    font-size: 0.9rem;
}

.founder-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.founder-avatar {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4a90e2 0%, #63b3ed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a202c;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    color: #2b6cb0;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    color: #2b6cb0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.1);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.faq-answer.active {
    max-height: 400px;
    padding: 1.5rem 2rem 2rem;
}

.faq-answer p {
    color: #2d3748;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

/* Sticky CTA Button for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
}

.sticky-cta .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }
    
    .founders-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founders-text h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .interactive-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .additional-features {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Benefits List - Modern Design */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    transform: translateX(8px);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Visual Enhancements */
.benefits {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.features {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Add subtle background patterns */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero {
    position: relative;
}

/* Legal Pages Styles */
.legal-page {
    padding: 6rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.last-updated {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-intro {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
    margin-bottom: 3rem;
}

.privacy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: #2d3748;
    font-weight: 600;
}

.privacy-commitment {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #38a169;
    margin: 3rem 0;
}

.privacy-commitment h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.privacy-commitment p {
    margin-bottom: 1rem;
}

.privacy-commitment ul {
    margin: 0;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.8rem 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(203, 213, 224, 0.2);
    border-radius: 50px;
}

.btn-secondary:hover {
    background: #cbd5e0;
    color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(203, 213, 224, 0.3);
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-intro,
    .privacy-commitment {
        padding: 1.5rem;
    }
}

/* FAQ Page Specific Styles */
.faq-intro {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
}

.faq-categories {
    margin-bottom: 3rem;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.category-link {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.category-link:hover,
.category-link.active {
    background: #4a90e2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4a90e2;
    text-align: center;
}

.faq-contact {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0 3rem;
    border: 1px solid #c6f6d5;
}

.faq-contact h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.faq-contact p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Mobile Responsive for FAQ Categories */
@media (max-width: 768px) {
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-link {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .faq-icon {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

/* Simple Waitlist Form Styles */
.waitlist-form-container {
    margin: 2rem 0;
}

.simple-waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.email-input-group input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.email-input-group input[type="email"]:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.email-input-group input[type="email"]::placeholder {
    color: #9ca3af;
}

.email-input-group .btn {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 600;
}

.confirmation-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-radius: 16px;
    border: 2px solid #c6f6d5;
    animation: slideIn 0.5s ease;
}

.confirmation-icon {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1rem;
}

.confirmation-message h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.confirmation-message p {
    color: #2d3748;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Error Message Styling */
.error-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-radius: 16px;
    border: 2px solid #fc8181;
    animation: slideIn 0.5s ease;
}

.error-icon {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.error-message h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.error-message p {
    color: #2d3748;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Honeypot field - hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Privacy Notice */
.privacy-notice {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    font-size: 0.75rem !important;
    color: #9ca3af !important;
    text-align: center !important;
    line-height: 1.4 !important;
}

.privacy-notice a {
    color: #4a90e2;
    text-decoration: underline;
}

.privacy-notice a:hover {
    color: #357abd;
}

/* reCAPTCHA Modal */
.recaptcha-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recaptcha-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.recaptcha-modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
    z-index: 10001;
}

.recaptcha-modal-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #2d3748;
}

.recaptcha-modal-content p {
    margin: 0 0 1.5rem 0;
    color: #718096;
    font-size: 0.95rem;
}

.recaptcha-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.recaptcha-modal-close:hover {
    color: #2d3748;
}

.recaptcha-loading {
    padding: 2rem 0;
    text-align: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation for confirmation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .email-input-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .email-input-group input[type="email"] {
        width: 100%;
    }
    
    .email-input-group .btn {
        padding: 1rem 1.5rem;
        justify-content: center;
        width: auto;
        min-width: 200px;
    }
    
    .confirmation-message {
        padding: 1.5rem;
    }
    
    .confirmation-message h3 {
        font-size: 1.2rem;
    }
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #2d3748;
    letter-spacing: 0.3px;
}

.feature-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.85rem;
    font-weight: 300;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #2d3748;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

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

.benefit-item h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    color: #2d3748;
    letter-spacing: 0.3px;
}

.benefit-item h3 i {
    color: #4a90e2;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.benefit-item p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.85rem;
    font-weight: 300;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.chart-mockup {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 280px;
    transition: transform 0.3s ease;
}

.chart-mockup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chart-header {
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2d3748;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 200px;
}

.bar {
    flex: 1;
    background: linear-gradient(135deg, #4a90e2, #3182ce);
    border-radius: 3px 3px 0 0;
    min-height: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.chart-mockup:hover .bar {
    opacity: 1;
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: white;
    color: #2d3748;
    text-align: center;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.download-content h2 {
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: #2d3748;
}

.download-content p {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: #718096;
}

.waitlist-button {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.waitlist-button .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

.waitlist-button .btn i {
    font-size: 0.9rem;
}

/* Hide download buttons - keeping styles for potential future use */
.download-btn {
    display: none;
}

.download-note {
    opacity: 0.6;
    font-size: 0.75rem;
    font-weight: 300;
    color: #718096;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Hide entire Get in Touch section during alpha testing, keep social links visible */
#contact .section-title,
#contact .section-subtitle,
#contact .contact-grid,
#contact .privacy-notice {
    display: none !important;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-top: -1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #4299e1;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.email-fallback-link {
    font-size: 0.85rem;
    color: #718096;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.email-fallback-link:hover {
    color: #4299e1;
    text-decoration: underline;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #3182ce 0%, #5a67d8 100%);
}

.contact-btn i {
    font-size: 1rem;
}

.contact-btn:focus {
    outline: 3px solid #4299e1;
    outline-offset: 2px;
}

/* Response Time & Crisis Notice */
.response-time {
    font-size: 0.85rem;
    color: #4299e1;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.crisis-notice {
    font-size: 0.75rem;
    color: #e53e3e;
    background: #fff5f5;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    line-height: 1.5;
    border-left: 3px solid #e53e3e;
}


/* Social Links Section */
.social-links-section {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.social-links-section h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #3182ce 0%, #5a67d8 100%);
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
}

.modal-content h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    background: white;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.char-count {
    float: right;
    font-size: 0.85rem;
    color: #718096;
    font-weight: normal;
}

.char-hint {
    color: #a0aec0;
    font-size: 0.8rem;
}

.form-notices {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.sla-notice {
    font-size: 0.9rem;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sla-notice i {
    color: #4299e1;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.btn-secondary {
    background: #e2e8f0;
    color: #2d3748;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #cbd5e0;
}

.btn-text {
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 0.9rem;
    text-decoration: underline;
}

.btn-text:hover {
    color: #4299e1;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #718096;
    font-size: 0.8rem;
}

.form-notice {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.email-fallback {
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
}

.email-fallback a {
    color: #4299e1;
    text-decoration: underline;
}

/* Honeypot spam protection */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Ensure buttons are at least 44x44px for touch */
.contact-btn,
.modal button[type="submit"] {
    min-height: 44px;
    min-width: 44px;
}

/* Success State */
#successState,
#errorState {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 1rem 0 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Error State */
.error-icon {
    font-size: 4rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 1rem 0 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Mobile Sheet */
@media (max-width: 768px) {
    .modal-content.mobile-sheet {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: 10%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-actions,
    .error-actions {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    border-top: 1px solid #4a5568;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #90cdf4;
    transform: translateX(2px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social .social-link:hover {
    background: rgba(74, 144, 226, 0.8);
    transform: translateY(-3px);
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-text-svg {
    height: 24px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1.25rem;
    text-align: center;
    color: #a0aec0;
    font-size: 0.8rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    color: #7eb6ff;
    letter-spacing: 0.5px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.8rem;
    font-weight: 300;
}

/* Responsive Design */
/* Comprehensive Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100vw;
    }
    
    /* Container & Spacing */
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    section {
        padding: 3rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: #2d3748;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Navigation Links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .logo {
        width: 24px;
        height: 24px;
    }
    
    /* Hero Section */
    .hero {
        padding: 5rem 0 0 0;
        width: 100%;
        overflow-x: hidden;
        margin-bottom: 0;
    }
    
    /* Features Section - Remove top padding */
    .features {
        padding: 0 0 5rem 0 !important;
        margin-top: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem 16px 1rem;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Fix all images to fit screen */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .platform-notice p {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image {
        order: -1;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .hero-image .home-phone {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        aspect-ratio: 360 / 754;
        margin: 0 auto;
        padding: 6px !important;
        border-radius: 43px;
    }
    
    .hero-phone-image {
        width: calc(100% - 12px) !important;
        height: calc(100% - 12px) !important;
        object-fit: cover;
        object-position: center;
        margin: 6px;
        border-radius: 33px;
    }
    
    /* Scale down phone screens in features */
    .phone-screen {
        transform: scale(0.95);
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Features Section */
    .interactive-features {
        flex-direction: row;
        gap: 0.5rem;
        position: relative;
        align-items: center;
        justify-content: center;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100vw;
        overflow: visible;
    }
    
    .phone-mockup-container {
        order: 0;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .home-phone {
        width: 260px !important;
        height: 544px !important;
        padding: 4px;
        border-radius: 43px;
        background: white;
        box-shadow: 0 15px 20px -10px rgba(50, 50, 93, 0.25), 0 30px 40px -30px rgba(0, 0, 0, 0.3), inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35);
    }
    
    .phone-screen {
        position: relative;
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 39px;
        overflow: hidden;
        padding: 4px;
        box-sizing: border-box;
    }
    
    .feature-screen {
        position: absolute !important;
        top: 4px !important;
        left: 4px !important;
        width: calc(100% - 8px) !important;
        height: calc(100% - 8px) !important;
        object-fit: contain !important;
        border-radius: 35px !important;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        image-rendering: auto !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: opacity;
        filter: none !important;
    }
    
    .feature-screen[src$=".svg"] {
        image-rendering: auto !important;
        shape-rendering: geometricPrecision !important;
    }
    
    .feature-screen.active {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    
    /* Hide notification overlay on mobile */
    .phone-notification-overlay {
        display: none !important;
    }
    
    .feature-list {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        align-self: stretch;
    }
    
    .feature-list::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Hide Progress Tracking button on mobile (shown as card instead) */
    .feature-item[data-feature="progress-tracking"] {
        display: none;
    }
    
    /* Transform feature items into circular bubbles on mobile */
    .feature-item {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0.4rem !important;
        text-align: center;
        min-height: auto;
        align-items: center;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        transition: transform 0.2s ease;
        flex-shrink: 0;
        width: 100%;
        max-width: 65px;
        box-shadow: none !important;
    }
    
    .feature-item:hover {
        transform: scale(1.05);
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .feature-item.active {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .feature-icon-wrap {
        width: 56px !important;
        height: 56px !important;
        background: white;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        border: 2.5px solid #e2e8f0 !important;
        transition: all 0.3s ease;
        flex-shrink: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .feature-item.active .feature-icon-wrap {
        background: #667eea !important;
        border-color: #667eea !important;
        box-shadow: none !important;
    }
    
    .feature-item .feature-icon {
        font-size: 1.6rem !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        height: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        transform: translateZ(0);
    }
    
    .feature-item.active .feature-icon {
        filter: brightness(0) invert(1);
    }
    
    .feature-content {
        flex: 1;
        width: 100%;
    }
    
    .feature-item h3 {
        font-size: 0.65rem !important;
        margin-bottom: 0;
        line-height: 1.1;
        font-weight: 500;
        color: #2d3748;
        white-space: normal;
        word-wrap: break-word;
        width: 100%;
        text-align: center;
    }
    
    .feature-item.active h3 {
        color: #667eea;
        font-weight: 600;
    }
    
    /* Hide feature descriptions on mobile in stacked list */
    .feature-content p {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Audience Grid */
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
        width: 100%;
        max-width: 100%;
    }
    
    .audience-card {
        padding: 0.75rem 0.5rem;
        min-height: auto;
    }
    
    .audience-card .icon {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }
    
    .audience-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    .audience-card p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
    }
    
    /* Values Grid - 2x2 layout on mobile */
    .values-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        justify-items: center;
        align-items: center;
    }
    
    /* Additional Features Grid */
    .additional-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
    }
    
    .value-card {
        padding: clamp(0.75rem, 3vw, 1rem) !important;
        width: clamp(140px, 40vw, 180px) !important;
        height: clamp(140px, 40vw, 180px) !important;
        max-width: 180px !important;
        max-height: 180px !important;
        aspect-ratio: 1 / 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box;
        border-radius: 50% !important;
        margin: 0 auto;
    }
    
    .value-icon {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: 0.4rem;
    }
    
    .value-card h3 {
        font-size: clamp(0.75rem, 3.5vw, 0.9rem) !important;
        margin-bottom: 0.15rem;
        line-height: 1.2;
        font-weight: 600;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .value-card p {
        display: none !important;
    }
    
    /* Benefits Section */
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-text {
        order: 1;
    }
    
    .benefits-visual {
        order: 2;
    }
    
    .benefit-item {
        gap: 1rem;
        padding: 1.25rem 0;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-content h3 {
        font-size: 1.15rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .chart-mockup {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Founders Section */
    .founders-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .founders-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .quote-content {
        padding: 1.5rem;
    }
    
    /* Waitlist Section */
    .waitlist-content {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .waitlist-form {
        max-width: 100%;
        width: 100%;
    }
    
    .waitlist-input {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .confirmation-message,
    .error-message {
        padding: 1.5rem;
    }
    
    .confirmation-message h3,
    .error-message h3 {
        font-size: 1.2rem;
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .response-time {
        font-size: 0.8rem;
    }
    
    .card-actions {
        gap: 0.75rem;
    }
    
    .contact-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    /* About Page Mobile Styles */
    .about-hero {
        height: 350px !important;
        padding-top: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-hero-content {
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin-top: 60px;
    }
    
    .about-hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
        word-wrap: break-word;
    }
    
    .about-hero-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        opacity: 1 !important;
        font-weight: 500 !important;
    }
    
    .about-content {
        padding: 2rem 0 !important;
    }
    
    /* Footer Social */
    .footer-social {
        justify-content: center;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 2rem 1.5rem;
    }
    
    /* About Page Hero */
    .about-hero {
        height: 250px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .platform-notice p {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .home-phone {
        width: 240px;
        height: 502px;
    }
    
    .hero-phone-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
