/**
 * Landing Page Styles — SaaS Conversion Design
 * Navy (#102a43) + Gold (#d4a012) Premium Theme
 *
 * @package DLM_EFormation
 * @since 4.3.0
 */

/* ── Reset & Variables ─────────────────────────── */
:root {
    --navy: #102a43;
    --navy-dark: #0b1e33;
    --navy-mid: #1a3a5c;
    --gold: #d4a012;
    --gold-hover: #c49510;
    --gold-light: rgba(212, 160, 18, 0.12);
    --green: #059669;
    --green-bg: #ecfdf5;
    --orange: #ea580c;
    --orange-bg: #fff7ed;
    --text: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f8fafc;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(16, 42, 67, 0.08);
    --shadow-lg: 0 8px 40px rgba(16, 42, 67, 0.12);
}

.landing-page { background: var(--bg); }

/* ── Landing Header ────────────────────────────── */
.landing-header {
    background: var(--navy);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.landing-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.landing-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.15;
}

.landing-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}

.landing-logo .logo-tagline {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.landing-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.landing-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.landing-phone:hover { color: var(--gold); }
.landing-phone i { color: var(--gold); }

.landing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.landing-cta-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* ── Hero — 2 Column Layout ────────────────────── */
.lp-hero {
    position: relative;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #091726 100%);
    z-index: 0;
}

.lp-hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 18, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px 48px;
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto auto;
    grid-template-areas:
        "left-top  right"
        "left-bot  right";
    gap: 0 48px;
    align-items: start;
}

/* Hero Left — Pitch */
.lp-hero-left-top {
    grid-area: left-top;
    color: var(--white);
    padding-bottom: 8px;
}

.lp-hero-left-bottom {
    grid-area: left-bot;
    color: var(--white);
    margin-top: 20px;
}

.lp-hero-right {
    grid-area: right;
    grid-row: 1 / span 2;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 160, 18, 0.25);
    letter-spacing: 0.3px;
}

.lp-hero-left-top h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 28px;
    color: var(--white);
}

.gold-text { color: var(--gold); }

.lp-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

.lp-benefits li i {
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Hero Trust Items */
.lp-hero-trust {
    display: flex;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
}

.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 160, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Hero Right — Form Card */
.lp-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 160, 18, 0.15);
    overflow: hidden;
}

.lp-form-header {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.form-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-header-icon i {
    color: var(--navy);
    font-size: 1.1rem;
}

.lp-form-header h2 {
    font-size: 1.15rem;
    margin: 0 0 2px;
    font-weight: 700;
    color: var(--white);
}

.lp-form-header p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

#lead-form-el {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group { margin-bottom: 0; }

.form-group + .form-group:not(.form-row .form-group) {
    margin-top: 12px;
}

#lead-form-el > .form-group:last-of-type {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.req { color: #dc2626; }

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 18, 0.12);
}

.form-group input::placeholder { color: #9ca3af; }

.form-group-optional label {
    color: var(--text-light, #6b7280);
    font-weight: 500;
}

.form-group-optional select {
    border-color: #d1d5db;
    background-color: #f9fafb;
    color: #9ca3af;
}

.form-group-optional select:focus {
    color: #374151;
}

.form-group-optional label::after {
    content: ' (facultatif)';
    font-weight: 400;
    font-size: 0.75rem;
    color: #9ca3af;
}

.btn-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--gold), #c9960e);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(212, 160, 18, 0.25);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-hover), #b8870c);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 160, 18, 0.35);
}

.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-guarantee {
    text-align: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-guarantee i { color: var(--green); margin-right: 3px; }
.form-guarantee a { color: var(--text-muted); text-decoration: underline; }

/* ── Success State ─────────────────────────────── */
.lead-success {
    padding: 44px 24px;
    text-align: center;
}

.success-icon { font-size: 3.2rem; color: var(--green); margin-bottom: 14px; }
.lead-success h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 8px; }
.lead-success p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 6px; }
.success-detail { font-size: 0.82rem !important; font-style: italic; }

/* ── Pricing Section ───────────────────────────── */
.lp-pricing {
    padding: 64px 24px;
    background: var(--white);
}

.lp-container {
    max-width: 1100px;
    margin: 0 auto;
}

.lp-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin: 0 0 6px;
}

.lp-section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 40px;
}

.google-icon { color: #4285f4; }

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.lp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lp-price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-card-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border);
}

.price-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.price-icon i {
    color: var(--gold);
    font-size: 1.15rem;
}

.price-card-header h3 {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0 0 10px;
    font-weight: 700;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.price-badge.online {
    background: var(--green-bg);
    color: var(--green);
}

.price-badge.visio {
    background: var(--orange-bg);
    color: var(--orange);
}

.price-card-body {
    padding: 20px 24px 24px;
}

.price-amount {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.price-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.price-duration {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.price-features li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features li i {
    color: var(--green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ── Testimonials ──────────────────────────────── */
.lp-testimonials {
    padding: 64px 24px;
    background: var(--bg);
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.lp-testimonial {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.lp-testimonial:hover {
    transform: translateY(-2px);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-top strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-stars {
    color: #facc15;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

.lp-testimonial blockquote {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
    font-style: italic;
}

.lp-testimonials-link {
    text-align: center;
}

.lp-testimonials-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4285f4;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.lp-testimonials-link a:hover { opacity: 0.8; }

/* ── Final CTA ─────────────────────────────────── */
.lp-final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 56px 24px;
    text-align: center;
}

.lp-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 10px;
    color: var(--white);
}

.lp-final-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 28px;
}

.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 15px 40px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(212, 160, 18, 0.3);
}

.lp-cta-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 160, 18, 0.4);
}

/* ── Landing Footer ────────────────────────────── */
.landing-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.5);
    padding: 20px 24px;
    font-size: 0.78rem;
}

.landing-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-footer-links {
    display: flex;
    gap: 20px;
}

.landing-footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer-links a:hover { color: var(--gold); }

/* ── Legal Urgency Section ─────────────────────── */
.lp-legal {
    padding: 64px 24px;
    background: linear-gradient(180deg, var(--white) 0%, #fef9ec 100%);
}

.lp-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 36px;
}

.lp-legal-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-legal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.legal-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.lp-legal-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}

.legal-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 16px;
}

.legal-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.legal-badge.green {
    background: var(--green-bg);
    color: var(--green);
}

.legal-sanction {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--orange-bg);
    border: 1.5px solid rgba(234, 88, 12, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text);
}

.legal-sanction > i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.lp-legal-cta {
    text-align: center;
    margin-top: 40px;
}

.lp-legal-cta p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 16px;
}

.lp-cta-btn--outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.lp-cta-btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ── FAQ Accordion Section ─────────────────────── */
.lp-faq {
    padding: 64px 24px;
    background: var(--white);
}

.lp-faq-list {
    max-width: 780px;
    margin: 36px auto 0;
}

.lp-faq-item {
    border-bottom: 1.5px solid var(--border);
}

.lp-faq-item:first-child {
    border-top: 1.5px solid var(--border);
}

.lp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}

.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.25s;
}

.lp-faq-item[open] summary::after {
    content: '−';
}

.lp-faq-item summary:hover { color: var(--gold-hover); }

.lp-faq-answer {
    padding: 0 4px 20px;
}

.lp-faq-answer p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.lp-faq-answer strong {
    color: var(--text);
}

.lp-faq-cta {
    text-align: center;
    margin-top: 40px;
}

.lp-faq-cta p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 16px;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 40px 24px 36px;
    }

    /* Form first: DOM order = left-top → right → left-bot ✅ */
    .lp-hero-left-top,
    .lp-hero-left-bottom { text-align: center; }

    .lp-hero-left-top { margin-bottom: 24px; }
    .lp-hero-left-bottom {
        margin-top: 28px;
        text-align: left; /* override: checkmarks left-aligned look cleaner at variable lengths */
    }

    .lp-benefits {
        align-items: flex-start;
    }

    .lp-hero-trust {
        justify-content: center;
    }

    .lp-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .lp-pricing-grid,
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-legal-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-hero-left-top h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .landing-header-inner { height: 56px; }
    .landing-phone span { display: none; }
    .landing-cta-btn { padding: 7px 14px; font-size: 0.8rem; }

    .lp-hero-inner { padding: 32px 16px 28px; }
    .lp-hero-left-top h1 { font-size: 1.7rem; }
    .lp-benefits li { font-size: 0.95rem; }

    .lp-hero-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        gap: 12px;
    }

    .form-row { grid-template-columns: 1fr; gap: 10px; }
    .lp-form-header { padding: 16px 20px; }
    #lead-form-el { padding: 20px; }

    .lp-pricing,
    .lp-testimonials { padding: 40px 16px; }

    .lp-legal,
    .lp-faq { padding: 40px 16px; }

    .lp-legal-card { padding: 24px 20px; }

    .lp-faq-item summary { font-size: 0.92rem; padding: 16px 2px; }

    .lp-section-title { font-size: 1.4rem; }

    .lp-final-cta { padding: 40px 16px; }
    .lp-final-cta h2 { font-size: 1.5rem; }

    .landing-footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ── Stats Bar ──────────────────────────────────── */
.lp-stats {
    background: var(--navy);
    padding: 28px 24px;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.lp-stat {
    padding: 12px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.lp-stat:last-child { border-right: none; }

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.78rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Comparison Table ───────────────────────────── */
.lp-compare {
    padding: 64px 24px;
    background: var(--bg);
}

.lp-compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 36px;
}

.lp-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.9rem;
}

.lp-compare-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--bg);
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
}

.lp-compare-table thead th:first-child { text-align: left; }

.lp-compare-table thead th.dlm-col {
    background: var(--navy);
    color: var(--gold);
    font-size: 0.92rem;
}

.lp-compare-table thead th.dlm-col i { margin-right: 5px; }

.lp-compare-table tbody td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.lp-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}

.lp-compare-table tbody td.dlm-col {
    background: rgba(212, 160, 18, 0.04);
    color: var(--navy);
    font-weight: 700;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.lp-compare-table tbody tr:last-child td.dlm-col {
    border-bottom: 2px solid var(--gold);
}

.lp-compare-table tbody td.best { color: var(--green); font-size: 1.05rem; }

.cmp-yes { color: var(--green); font-size: 1rem; }
.cmp-no { color: #dc2626; font-size: 1rem; }
.cmp-partial { color: var(--text-muted); font-style: italic; }

.lp-compare-cta { text-align: center; margin-top: 32px; }

/* ── Sticky Bottom CTA ──────────────────────────── */
.lp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 14px 24px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.lp-sticky-cta.visible { transform: translateY(0); }

.lp-sticky-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-text { display: flex; flex-direction: column; }
.sticky-text strong { color: var(--white); font-size: 1rem; font-weight: 700; }
.sticky-text span { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sticky-btn:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ── Responsive additions ───────────────────────── */
@media (max-width: 991px) {
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .lp-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .lp-stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
    .lp-compare { padding: 40px 16px; }
    .lp-sticky-inner { flex-direction: column; gap: 10px; text-align: center; }
    .sticky-btn { width: 100%; justify-content: center; }
}
