/* ==========================================================================
   Landing Page Styles
   Builds on base.css — only landing-page-specific additions
   ========================================================================== */

/* Hero / Intro
   ========================================================================== */
.lp-hero {
    margin-top: 30px;
    padding: 50px 0 40px;
    text-align: center;
}

.lp-hero h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lp-hero p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 25px;
    color: #555;
}

.lp-hero .btn {
    margin-top: 10px;
}

/* Section spacing
   ========================================================================== */
.lp-section {
    padding: 40px 0;
}

.lp-section-alt {
    padding: 40px 0;
    background: #f8f9fa;
}

.lp-section h2,
.lp-section-alt h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

/* Feature Grid
   ========================================================================== */
.lp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.lp-feature-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.lp-feature-card i {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 12px;
    display: block;
}

.lp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* How It Works
   ========================================================================== */
.lp-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    counter-reset: step-counter;
}

.lp-step {
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
    counter-increment: step-counter;
}

.lp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Screenshots Gallery
   ========================================================================== */
.lp-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.lp-gallery .thumbnail {
    width: 150px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.lp-gallery .thumbnail:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    transform: scale(1.1);
}

/* Testimonials
   ========================================================================== */
.lp-testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.lp-testimonial {
    flex: 1 1 300px;
    max-width: 460px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lp-testimonial p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}

.lp-testimonial .stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 6px;
}

.lp-testimonial cite {
    font-weight: bold;
    color: #007bff;
    font-size: 14px;
    display: block;
    text-align: right;
}

/* FAQ
   ========================================================================== */
.lp-faq {
    max-width: 720px;
    margin: 0 auto;
}

.lp-faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 0;
}

.lp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.lp-faq-question:hover {
    color: #007bff;
}

.lp-faq-question .lp-faq-icon {
    font-size: 14px;
    transition: transform 0.2s ease;
    color: #999;
}

.lp-faq-item.active .lp-faq-icon {
    transform: rotate(180deg);
}

.lp-faq-answer {
    display: none;
    padding: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.lp-faq-item.active .lp-faq-answer {
    display: block;
}

/* CTA Section
   ========================================================================== */
.lp-cta-section {
    padding: 50px 0;
    background: #f0f4f8;
    text-align: center;
}

.lp-cta-title {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-cta-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-form-wrap {
    max-width: 400px;
    margin: 0 auto;
}

.lp-cta-form-wrap .form-row {
    margin-bottom: 12px;
}

/* Responsive
   ========================================================================== */
@media (max-width: 767px) {
    .lp-hero h1 {
        font-size: 24px;
    }

    .lp-hero p {
        font-size: 15px;
    }

    .lp-feature-card {
        max-width: 100%;
    }

    .lp-step {
        max-width: 100%;
    }

    .lp-gallery .thumbnail {
        width: 120px;
    }

    .lp-testimonial {
        max-width: 100%;
    }
}
