/* Home Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(237, 137, 54, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(237, 137, 54, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(237, 137, 54, 0.2);
    color: var(--amber-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

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

/* Problem Section */
.problem-section {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* What Is AEO Section */
.what-is-aeo {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.aeo-explainer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.aeo-explainer h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.aeo-explainer .lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.aeo-explainer p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.aeo-platforms {
    margin-top: 2.5rem;
}

.aeo-platforms h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-50);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.platform-icon {
    font-size: 1.25rem;
}

/* Tools Preview Section */
.tools-preview {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.tools-preview h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.tools-preview .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Featured Content */
.featured-content {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.featured-content h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.content-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.content-badge {
    display: inline-block;
    background: rgba(237, 137, 54, 0.1);
    color: var(--amber-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.content-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.content-card h3 a {
    color: var(--navy);
}

.content-card h3 a:hover {
    color: var(--amber);
}

.content-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.content-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Course Preview */
.course-preview {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.course-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.course-content {
    padding: 3rem;
}

.course-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.course-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-content > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-weight: 500;
}

.course-pricing {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
}

.price-original {
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-discount {
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.course-visual {
    background: var(--gray-100);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-mockup {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-header {
    background: var(--gray-200);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.mockup-content {
    padding: 1rem;
}

.mockup-module {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.mockup-module:first-child {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
}

/* Email Capture Section */
.email-capture {
    padding: 4rem 1.5rem;
}

.email-capture .container {
    max-width: 600px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .course-card {
        grid-template-columns: 1fr;
    }
    
    .course-visual {
        order: -1;
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 1rem 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-sub {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .course-content {
        padding: 2rem;
    }
}
