/* ========================================
   LANDING PAGE — CONVERSION-OPTIMIZED
   Follows Leadpages/Unbounce best practices:
   - No navigation (distraction-free)
   - Single, repeated CTA
   - Social proof with specific numbers
   - Mobile-first responsive
   - High-contrast CTAs
   - Trust indicators
   ======================================== */

/* Top Bar — Logo only, no nav */
.lp-topbar {
    padding: 18px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.lp-topbar-logo {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lp-topbar-logo:hover {
    opacity: 1;
}

/* Container */
.lp-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-container-wide {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HERO — Above the fold
   ======================================== */
.lp-hero {
    padding: 80px 0 64px;
    text-align: center;
    background: var(--bg);
}

.lp-hero::before {
    display: none;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: var(--gold-subtle);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
}

.lp-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
}

.lp-hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
}

/* ========================================
   EMAIL CAPTURE FORM
   ======================================== */
.lp-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.lp-form {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.lp-form:focus-within {
    border-color: var(--gold);
}

.lp-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.lp-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.lp-form button {
    padding: 16px 28px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.lp-form button:hover {
    background: var(--gold-light);
}

.lp-trust-line {
    text-align: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.lp-trust-line svg {
    width: 12px;
    height: 12px;
    vertical-align: -2px;
    margin-right: 4px;
    color: var(--text-muted);
}

/* ========================================
   SECTIONS
   ======================================== */
.lp-section {
    padding: 72px 0;
    position: relative;
}

.lp-section::before {
    display: none;
}

.lp-section-alt {
    background: var(--bg-light);
}

.lp-section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.lp-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 28px;
}

/* ========================================
   WHAT YOU GET — Feature/Benefit List
   ======================================== */
.lp-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.lp-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: flex-start;
}

.lp-feature-item:last-child {
    border-bottom: none;
}

.lp-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: var(--gold-subtle);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.lp-feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.lp-feature-text h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.lp-feature-text p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================================
   SOCIAL PROOF — Numbers Block
   ======================================== */
.lp-proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
}

.lp-proof-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 32px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.lp-proof-text {
    font-size: 1.02rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 24px;
}

.lp-proof-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.lp-proof-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.lp-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 32px;
}

.lp-stat {
    background: var(--bg-card);
    padding: 24px 16px;
    text-align: center;
}

.lp-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 4px;
}

.lp-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* ========================================
   HOW IT WORKS — Steps
   ======================================== */
.lp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.lp-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: flex-start;
    counter-increment: step;
}

.lp-step:last-child {
    border-bottom: none;
}

.lp-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-subtle);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
}

.lp-step-content h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.lp-step-content p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================================
   TRUST / ABOUT — Credibility
   ======================================== */
.lp-trust {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.lp-trust-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
}

.lp-trust-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-trust-info h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.lp-trust-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.lp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.lp-trust-badge {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 5px 12px;
    border-radius: 2px;
    letter-spacing: 0.02em;
}

/* ========================================
   FINAL CTA
   ======================================== */
.lp-final-cta {
    text-align: center;
    padding: 80px 0;
    background: var(--bg);
}

.lp-final-cta::before {
    display: none;
}

.lp-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 12px;
}

.lp-final-cta p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS — Technical Detail
   ======================================== */
.lp-tech-detail {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.85;
    max-width: 640px;
}

/* ========================================
   FOOTER
   ======================================== */
.lp-footer {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.lp-footer .lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lp-footer-link {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lp-footer-link:hover {
    opacity: 1;
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.lp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(15, 14, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 999;
    text-align: center;
}

.lp-sticky-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* ========================================
   FORM SUCCESS STATE
   ======================================== */
.lp-form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gold-subtle, rgba(196, 162, 101, 0.10));
    border: 1px solid var(--border, rgba(196, 162, 101, 0.12));
    border-radius: var(--radius, 6px);
    color: var(--text, #e8e4de);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 640px) {
    .lp-hero {
        padding: 56px 0 48px;
    }

    .lp-hero h1 {
        font-size: 2.2rem;
    }

    .lp-form {
        flex-direction: column;
    }

    .lp-form input[type="email"] {
        padding: 14px 16px;
    }

    .lp-form button {
        padding: 14px 24px;
    }

    .lp-stats-row {
        grid-template-columns: 1fr;
    }

    .lp-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lp-trust-badges {
        justify-content: center;
    }

    .lp-section {
        padding: 56px 0;
    }

    .lp-proof-card {
        padding: 28px 20px;
    }

    .lp-footer .lp-container {
        flex-direction: column;
        gap: 8px;
    }

    .lp-form-success {
        gap: 10px;
    }

    .lp-sticky-cta {
        display: block;
    }

    .lp-final-cta {
        padding-bottom: 100px; /* Room for sticky CTA */
    }
}
