/* ── Landing page — campaign styles ──────────────────────────────── */

/* Hero */
.lp-hero {
    background: linear-gradient(145deg, #f5e6c3 0%, #fdf8ef 50%, #faf7f2 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--sj-white));
}
.lp-hero-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sj-warm-brown);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.lp-hero-sub {
    font-size: 1.2rem;
    color: var(--sj-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 560px;
}
.lp-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.lp-cta-btn {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1.05rem;
}
.lp-cta-btn-secondary {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1.05rem;
}
.lp-hero-trust {
    font-size: 0.88rem;
    color: var(--sj-muted);
}
.lp-hero-trust i {
    color: var(--sj-soft-green);
}

/* Hero alert preview card */
.lp-hero-visual {
    perspective: 800px;
}
.lp-alert-preview {
    background: var(--sj-white);
    border: 1px solid var(--sj-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(107, 79, 54, 0.12), 0 2px 8px rgba(107, 79, 54, 0.06);
    padding: 0;
    overflow: hidden;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.3s ease;
}
.lp-alert-preview:hover {
    transform: rotateY(0) rotateX(0);
}
.lp-alert-preview-header {
    background: var(--sj-honey);
    color: var(--sj-white);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.92rem;
}
.lp-alert-preview-header i {
    margin-right: 0.5rem;
}
.lp-alert-preview-job {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--sj-border);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.lp-alert-preview-job:last-child {
    border-bottom: none;
}
.lp-alert-preview-job strong {
    color: var(--sj-warm-brown);
    font-size: 0.95rem;
}
.lp-alert-preview-job span {
    font-size: 0.82rem;
    color: var(--sj-muted);
}
.lp-badge-pension {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--sj-honey-bg);
    color: var(--sj-honey);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    width: fit-content;
}

/* Trust bar */
.lp-trust-bar {
    background: var(--sj-white);
    border-bottom: 1px solid var(--sj-border);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}
.lp-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.lp-trust-stat i {
    font-size: 1.5rem;
    color: var(--sj-honey);
    margin-bottom: 0.25rem;
}
.lp-trust-stat strong {
    color: var(--sj-warm-brown);
    font-size: 0.92rem;
}
.lp-trust-stat span {
    color: var(--sj-muted);
    font-size: 0.82rem;
}

/* Generic section */
.lp-section {
    padding: 4.5rem 0;
}
.lp-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sj-warm-brown);
    margin-bottom: 0.5rem;
}
.lp-section-sub {
    font-size: 1.1rem;
    color: var(--sj-muted);
    margin-bottom: 0;
}
.lp-lead {
    font-size: 1.1rem;
    color: var(--sj-text);
    line-height: 1.7;
}

/* Problem / pain cards */
.lp-problem {
    background: var(--sj-cream);
}
.lp-pain-card {
    background: var(--sj-white);
    border: 1px solid var(--sj-border);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp-pain-card:hover {
    box-shadow: 0 4px 20px rgba(107, 79, 54, 0.1);
    transform: translateY(-2px);
}
.lp-pain-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #fef0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-pain-icon i {
    font-size: 1.4rem;
    color: #c0392b;
}
.lp-pain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sj-warm-brown);
    margin-bottom: 0.5rem;
}
.lp-pain-card p {
    font-size: 0.92rem;
    color: var(--sj-muted);
    margin: 0;
    line-height: 1.6;
}

/* How it works — step cards */
.lp-how {
    background: var(--sj-white);
}
.lp-step-card {
    background: var(--sj-honey-bg);
    border: 1px solid var(--sj-honey-light);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    position: relative;
}
.lp-step-num {
    width: 42px;
    height: 42px;
    background: var(--sj-honey);
    color: var(--sj-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}
.lp-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sj-warm-brown);
    margin-bottom: 0.75rem;
}
.lp-step-card p {
    font-size: 0.92rem;
    color: var(--sj-text);
    margin: 0;
    line-height: 1.6;
}

/* Promise cards */
.lp-promises {
    background: var(--sj-cream);
}
.lp-promise-card {
    display: flex;
    gap: 1.25rem;
    background: var(--sj-white);
    border: 1px solid var(--sj-border);
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow 0.2s ease;
}
.lp-promise-card:hover {
    box-shadow: 0 4px 20px rgba(107, 79, 54, 0.1);
}
.lp-promise-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--sj-honey-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-promise-icon i {
    font-size: 1.4rem;
    color: var(--sj-honey);
}
.lp-promise-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sj-warm-brown);
    margin-bottom: 0.4rem;
}
.lp-promise-card p {
    font-size: 0.9rem;
    color: var(--sj-text);
    margin: 0;
    line-height: 1.6;
}

/* Time savings */
.lp-time-savings {
    background: var(--sj-white);
}
.lp-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.lp-check-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--sj-text);
}
.lp-check-list li i {
    color: var(--sj-soft-green);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Comparison boxes */
.lp-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lp-comparison-before,
.lp-comparison-after {
    border-radius: 14px;
    padding: 1.5rem;
}
.lp-comparison-before {
    background: #fef5f5;
    border: 1px solid #f0d0d0;
}
.lp-comparison-after {
    background: #f0f8f2;
    border: 1px solid #c8e6cf;
}
.lp-comparison-label {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--sj-warm-brown);
    margin-bottom: 0.75rem;
}
.lp-comparison ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-comparison li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--sj-text);
}
.lp-comparison li i {
    margin-right: 0.4rem;
}

/* Career stage cards */
.lp-stages {
    background: var(--sj-cream);
}
.lp-stage-card {
    background: var(--sj-white);
    border: 1px solid var(--sj-border);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp-stage-card:hover {
    box-shadow: 0 4px 20px rgba(107, 79, 54, 0.1);
    transform: translateY(-2px);
}
.lp-stage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--sj-honey-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-stage-icon i {
    font-size: 1.5rem;
    color: var(--sj-honey);
}
.lp-stage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sj-warm-brown);
    margin-bottom: 0.5rem;
}
.lp-stage-card p {
    font-size: 0.9rem;
    color: var(--sj-text);
    margin: 0;
    line-height: 1.6;
}

/* Urgency section */
.lp-urgency {
    background: var(--sj-white);
}
.lp-urgency-box {
    background: linear-gradient(135deg, #fdf4e3 0%, #fdf8ef 100%);
    border: 2px solid var(--sj-honey-light);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}
.lp-urgency-icon {
    font-size: 2.5rem;
    color: var(--sj-honey);
    margin-bottom: 1rem;
}
.lp-urgency-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sj-warm-brown);
    margin-bottom: 1rem;
}
.lp-urgency-box p {
    font-size: 1rem;
    color: var(--sj-text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

/* Final CTA */
.lp-final-cta {
    background: linear-gradient(135deg, var(--sj-honey-light) 0%, var(--sj-cream) 100%);
    padding: 5rem 0;
}
.lp-final-cta .lp-section-title {
    font-size: 2.2rem;
}
.lp-final-cta .lp-lead {
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0.75rem auto 2rem;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .lp-hero {
        padding: 3.5rem 0 3rem;
        text-align: center;
    }
    .lp-hero-headline {
        font-size: 2.1rem;
    }
    .lp-hero-sub {
        max-width: 100%;
    }
    .lp-hero-ctas {
        justify-content: center;
    }
    .lp-hero-trust {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .lp-hero-headline {
        font-size: 1.8rem;
    }
    .lp-hero-sub {
        font-size: 1.05rem;
    }
    .lp-section {
        padding: 3rem 0;
    }
    .lp-section-title {
        font-size: 1.6rem;
    }
    .lp-cta-btn,
    .lp-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
    .lp-urgency-box {
        padding: 2rem 1.5rem;
    }
    .lp-promise-card {
        flex-direction: column;
        text-align: center;
    }
    .lp-promise-icon {
        margin: 0 auto;
    }
}
