/* Landing Page Styles
------------------------------------------ */

/* General Landing Page Styles */
.landing-page {
    color: var(--text-color);
    overflow-x: hidden;
}

.landing-page .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.landing-page .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.landing-page section {
    padding: 5rem 0;
}

.landing-page section:nth-child(odd) {
    background: rgba(20, 20, 35, 0.3);
}

/* Hero Section */
.landing-page .hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.landing-page .hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 204, 0.15), transparent 70%);
    z-index: -1;
}

.landing-page .hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.15), transparent 70%);
    z-index: -1;
}

.landing-page .hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.landing-page .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.landing-page .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.landing-page .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-page .hero-btn {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.landing-page .hero-image {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-page .hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 0, 204, 0.1), rgba(0, 234, 255, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* Features Section */
.landing-page .feature-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.landing-page .feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.landing-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.landing-page .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--neon-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .feature-icon i {
    font-size: 2rem;
}

.landing-page .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
    text-align: center;
}

.landing-page .feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* How It Works Section */
.landing-page .steps {
    position: relative;
    padding: 2rem 0;
}

.landing-page .steps-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--neon-gradient);
    transform: translateX(-50%);
    z-index: 0;
}

.landing-page .step {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    z-index: 1;
    justify-content: center;
}

.landing-page .step:last-child {
    margin-bottom: 0;
}

.landing-page .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.landing-page .step-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
}

.landing-page .step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: white;
    text-align: left;
}

.landing-page .step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Pain Points Comic Strip */
.landing-page .comic-strip {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .comic-panel {
    background: var(--card-bg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.landing-page .comic-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.landing-page .comic-panel img {
    background: var(--card-bg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.landing-page .comic-panel h3 {
    font-size: 1.3rem;
    padding: 1rem 1rem 0.5rem;
    color: white;
    text-align: left;
    margin: 0;
    font-style: italic;
}

.landing-page .comic-panel p {
    padding: 0 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
}

.landing-page .comic-panel p b {
    color: var(--bs-info-text-emphasis);
}

/* CTA Section */
.landing-page .cta {
    text-align: center;
    background: var(--card-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.landing-page .cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--neon-gradient);
}

.landing-page .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.landing-page .cta-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.landing-page .cta .hero-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Light Mode Overrides */
.light-mode .landing-page .section-subtitle,
.light-mode .landing-page .feature-card p,
.light-mode .landing-page .step-content p,
.light-mode .landing-page .comic-panel p,
.light-mode .landing-page .cta-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

.light-mode .landing-page .feature-card h3,
.light-mode .landing-page .step-content h3,
.light-mode .landing-page .comic-panel h3 {
    color: #333;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .landing-page .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .landing-page .hero-content {
        flex: 1;
        max-width: 550px;
    }
    
    .landing-page .hero-image {
        flex: 1;
        max-width: 550px;
    }
    
    .landing-page .feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .landing-page .comic-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-page .step {
        justify-content: flex-start;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .landing-page .feature-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .landing-page .comic-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .landing-page .hero-title {
        font-size: 2.5rem;
    }
    
    .landing-page .section-title h2 {
        font-size: 2rem;
    }
    
    .landing-page section {
        padding: 3rem 0;
    }
    
    .landing-page .hero {
        padding: 4rem 0;
    }
    
    .landing-page .hero-buttons {
        flex-direction: column;
    }
    
    .landing-page .hero-btn {
        width: 100%;
    }
}
