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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #2B3A67;
    color: white;
}

.btn-primary:hover {
    background-color: #1A2238;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #2B3A67;
    border: 2px solid #2B3A67;
}

.btn-secondary:hover {
    background-color: #2B3A67;
    color: white;
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-primary.small, .btn-secondary.small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Header */
.header {
    background: #2F3E46;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 145, 77, 0.2);
}

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

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-image {
    height: 55px;
    width: auto;
}

.beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.6rem;
    font-weight: 700;
    position: absolute;
    top: 8px;
    right: -35px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FF914D;
}

.cta-btn {
    background: #FF914D;
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #E67D3D;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2F3E46;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2F3E46 0%, #2B3A67 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: white;
}

.hero h1 {
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Problems Section */
.problems {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.problems h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2F3E46;
    font-size: 32px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background-color: white;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: #2B3A67;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 132, 96, 0.15);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.problem-card h3 {
    color: #2F3E46;
    margin-bottom: 16px;
    text-align: center;
}

.problem-card p {
    text-align: center;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 60px 0;
    background-color: white;
}

.solution h2 {
    text-align: center;
    margin-bottom: 16px;
    color: #2F3E46;
    font-size: 32px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: #2B3A67;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 132, 96, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.benefit-card h3 {
    color: #2F3E46;
    margin-bottom: 16px;
    text-align: center;
}

.benefit-card p {
    text-align: center;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2F3E46;
    font-size: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    padding: 24px;
    background-color: white;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #2B3A67;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 132, 96, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2B3A67 0%, #2F3E46 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(118, 132, 96, 0.3);
}

.step-card h3 {
    color: #2F3E46;
    margin-bottom: 16px;
    text-align: center;
}

.step-card p {
    text-align: center;
    line-height: 1.6;
}

/* Creator Types Section */
.creator-types {
    padding: 60px 0;
    background-color: white;
}

.creator-types h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2F3E46;
    font-size: 32px;
}

.types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.type-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.type-card:hover {
    border-color: #2B3A67;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 132, 96, 0.15);
}

.type-card h3 {
    color: #2F3E46;
    margin-bottom: 16px;
    font-size: 20px;
    text-align: center;
}

.type-card p {
    text-align: center;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #2F3E46 0%, #1a2a2e 100%);
    color: white;
    text-align: center;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
}

.stats > * {
    position: relative;
    z-index: 1;
}

.stats h2 {
    margin-bottom: 40px;
    color: white;
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 16px;
    color: #2F3E46;
    font-size: 32px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2F3E46;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    margin-left: 35px;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-image {
    height: 45px;
    width: auto;
}

.footer-beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.5rem;
    font-weight: 700;
    position: absolute;
    top: 6px;
    right: -30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: white;
}

.footer-links-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-links-simple a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-links-simple a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-content {
        align-items: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-links-simple {
        gap: 40px;
    }
    
    .footer-legal {
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}