/* =========================================================================
   Landing Page Template Styles
   Scoped under .landing-page body class.
   Inspired by fanlychat.com — clean, centered, minimal, professional.
   ========================================================================= */

/* ─── Base Layout ─── */

.landing-page {
    background: #f5f3f7;
}

.landing-page .site-main.landing-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.landing-page .landing-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.landing-page .landing-content-wrap {
    padding: 0;
}

/* ─── Typography ─── */

.landing-page .landing-content-wrap,
.landing-page .landing-content-wrap p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2d2d2d;
}

.landing-page .landing-content-wrap h1,
.landing-page .landing-content-wrap h2,
.landing-page .landing-content-wrap h3 {
    color: #1a1a1a;
    line-height: 1.3;
}

/* ─── Sponsored Label ─── */

.landing-sponsored-label {
    background: #f0edf3;
    color: #777;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 10px 16px;
    border-bottom: 1px solid #e8e4ec;
}

/* ─── Hero Header ─── */

.landing-notification {
    background: linear-gradient(135deg, var(--site-primary-color, #6c5ce7), var(--site-secondary-color, #a855f7));
    color: #fff;
    padding: 32px 32px 28px;
    text-align: center;
    position: relative;
}

.landing-notification h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.3;
}

.landing-notification p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.85;
    color: #fff;
}

/* ─── Content Body ─── */

.landing-body {
    padding: 32px 32px 8px;
}

.landing-body p {
    margin-bottom: 1.1em;
}

.landing-body strong {
    color: #1a1a1a;
}

/* ─── Stats / Social Proof ─── */

.landing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 32px 24px;
}

.landing-stat-card {
    background: #f8f6fa;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #ece8f0;
}

.landing-stat-card .stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--site-primary-color, #6c5ce7);
    line-height: 1.2;
    margin-bottom: 4px;
}

.landing-stat-card .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── How It Works Steps ─── */

.landing-steps {
    padding: 0 32px 24px;
}

.landing-steps h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.landing-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

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

.landing-step .step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--site-primary-color, #6c5ce7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.landing-step .step-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.landing-step .step-text p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ─── Testimonials ─── */

.landing-testimonials {
    padding: 0 32px 24px;
}

.landing-testimonial {
    background: #f8f6fa;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 12px;
    border-left: 3px solid var(--site-primary-color, #6c5ce7);
}

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

.landing-testimonial p {
    font-size: 0.95rem;
    font-style: italic;
    margin: 0 0 6px;
    color: #333;
    line-height: 1.6;
}

.landing-testimonial .testimonial-author {
    font-size: 0.8rem;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

/* ─── CTA Button ─── */

.landing-cta-wrap {
    text-align: center;
    padding: 8px 32px 32px;
}

.landing-cta {
    display: inline-block;
    background: var(--site-primary-color, #6c5ce7);
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(108, 92, 231, 0.35);
    letter-spacing: 0.3px;
}

.landing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.45);
}

.landing-cta-subtext {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
}

/* ─── Advertiser Disclosure (in-content) ─── */

.landing-disclosure {
    padding: 0 32px 28px;
}

.landing-disclosure p {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.landing-disclosure a {
    color: #888;
    text-decoration: underline;
}

.landing-disclosure a:hover {
    color: var(--site-primary-color, #6c5ce7);
}

/* ─── Next Page (page-break cloaking) ─── */

.landing-page .einstein-next-page {
    margin: 24px 0 8px;
    border-color: var(--site-border-color, #e2e8f0);
}

.landing-page .einstein-next-page__progress-bar {
    background: var(--site-primary-color, #6c5ce7);
}

.landing-page .einstein-next-page__btn {
    background: var(--site-primary-color, #6c5ce7);
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.25);
}

.landing-page .einstein-next-page__btn:hover {
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.35);
}

/* ─── Landing Footer ─── */

.landing-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px 32px;
    text-align: center;
}

.landing-footer--links {
    margin-bottom: 12px;
}

.landing-footer--links a {
    color: #777;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-footer--links a:hover {
    color: var(--site-primary-color, #6c5ce7);
    text-decoration: underline;
}

.landing-footer--sep {
    color: #ccc;
    margin: 0 8px;
}

.landing-footer--company {
    margin-bottom: 12px;
    line-height: 1.5;
}

.landing-footer--company p {
    margin: 0;
    font-size: 0.78rem;
    color: #888;
}

.landing-footer--company-name {
    font-weight: 600;
    color: #666 !important;
}

.landing-footer--company-email a {
    color: #888;
    text-decoration: none;
}

.landing-footer--company-email a:hover {
    color: var(--site-primary-color, #6c5ce7);
    text-decoration: underline;
}

.landing-footer--copyright {
    font-size: 0.78rem;
    color: #999;
    margin: 0 0 8px;
}

.landing-footer--disclaimer {
    font-size: 0.72rem;
    color: #aaa;
    margin: 0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ─── Responsive ─── */

@media screen and (max-width: 600px) {
    .landing-page .site-main.landing-main {
        padding: 20px 12px 12px;
    }

    .landing-notification {
        padding: 24px 20px;
    }

    .landing-notification h1 {
        font-size: 1.3rem;
    }

    .landing-body {
        padding: 24px 20px 8px;
    }

    .landing-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 20px 20px;
    }

    .landing-stat-card {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 14px 18px;
    }

    .landing-stat-card .stat-number {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .landing-steps {
        padding: 0 20px 20px;
    }

    .landing-testimonials {
        padding: 0 20px 20px;
    }

    .landing-cta-wrap {
        padding: 8px 20px 24px;
    }

    .landing-cta {
        font-size: 1rem;
        padding: 14px 32px;
        display: block;
    }

    .landing-disclosure {
        padding: 0 20px 24px;
    }

    .landing-footer--links a {
        font-size: 0.78rem;
    }

    .landing-footer--sep {
        margin: 0 5px;
    }
}
