/* LANDING PAGE SPECIFIC STYLES */
/* Content visibility now handled via Master Head Override */


.landing-wrapper {
    position: relative;
    z-index: 2;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-tag {
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.hero-title span {
    display: block;
    color: #a78bfa;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 18px);
    color: #ABAEB7;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* FEATURES SECTION */
.features-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-head p {
    color: #ABAEB7;
    font-size: 16px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    color: #7c3aed;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #ABAEB7;
    font-size: 14px;
    line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 100px 24px;
    background: rgba(124, 58, 237, 0.02);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(124, 58, 237, 0.1);
    line-height: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-content p {
    color: #ABAEB7;
    font-size: 16px;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 24px;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(98, 39, 149, 0.2), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 40px;
    backdrop-filter: blur(20px);
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

/* VISIBILITY ENFORCED VIA INDEX.PHP HEAD OVERRIDE */
.landing-wrapper {
    position: relative;
    z-index: 10 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .step-item, .step-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    .hero-title { font-size: 40px; }
    .cta-box h2 { font-size: 30px; }
}
