:root {
    --cp-orange: #D18501;
    --cp-orange-dark: #B8750A;
    --cp-orange-light: #E09520;
    --cp-charcoal: #1a1a1a;
    --cp-white: #ffffff;
    --cp-gray-bg: #f5f5f5;
    --cp-text-body: #555555;
    --cp-text-muted: #666666;
}

body.landing-page .split-tone-nav,
body.landing-page .flash-messages-container {
    display: none !important;
}

body.landing-page {
    padding-top: 0 !important;
}

.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--cp-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cp-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-nav-brand:hover {
    color: var(--cp-orange-dark);
}

.lp-nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lp-nav-link {
    color: var(--cp-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.lp-nav-link:hover {
    color: var(--cp-orange);
}

.lp-nav-cta {
    background: var(--cp-orange);
    color: var(--cp-white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.lp-nav-cta:hover {
    background: var(--cp-orange-dark);
    color: var(--cp-white);
    transform: translateY(-1px);
}

.lp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.lp-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cp-charcoal);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.lp-hero {
    padding: 140px 0 80px;
    background: var(--cp-white);
}

.lp-hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lp-hero-content {
    flex: 1;
    min-width: 0;
}

.lp-hero-visual {
    flex: 1;
    min-width: 0;
}

.lp-eyebrow {
    color: var(--cp-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lp-hero-headline {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--cp-charcoal);
    line-height: 1.15;
    margin-bottom: 20px;
}

.lp-hero-headline span {
    color: var(--cp-orange);
}

.lp-hero-sub {
    font-size: 1.15rem;
    color: var(--cp-text-body);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.lp-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--cp-orange), var(--cp-orange-dark));
    color: var(--cp-white);
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(209,133,1,0.3);
    font-size: 1rem;
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(209,133,1,0.4);
    color: var(--cp-white);
}

.lp-btn-secondary {
    background: transparent;
    border: 2px solid var(--cp-orange);
    color: var(--cp-orange);
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    font-size: 1rem;
}

.lp-btn-secondary:hover {
    background: var(--cp-orange);
    color: var(--cp-white);
}

.lp-trust-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cp-text-muted);
    font-size: 0.9rem;
}

.lp-trust-mini i {
    color: var(--cp-orange);
}

.lp-hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.lp-trust-bar {
    background: var(--cp-gray-bg);
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.lp-trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cp-text-body);
    font-weight: 500;
    font-size: 0.95rem;
}

.lp-trust-item i {
    font-size: 1.4rem;
    color: var(--cp-orange);
}

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

.lp-section-white {
    background: var(--cp-white);
}

.lp-section-gray {
    background: var(--cp-gray-bg);
}

.lp-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cp-charcoal);
    text-align: center;
    margin-bottom: 16px;
}

.lp-section-title span {
    color: var(--cp-orange);
}

.lp-section-sub {
    font-size: 1.1rem;
    color: var(--cp-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.lp-feature-card {
    background: var(--cp-white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.lp-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cp-orange), var(--cp-orange-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-feature-icon i {
    font-size: 1.5rem;
    color: var(--cp-white);
}

.lp-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cp-charcoal);
    margin-bottom: 10px;
}

.lp-feature-card p {
    color: var(--cp-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.lp-feature-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.lp-feature-wide-text {
    flex: 1;
}

.lp-feature-wide-visual {
    flex: 1;
}

.lp-feature-wide-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lp-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-persona-card {
    background: var(--cp-white);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.lp-persona-card:hover {
    border-color: var(--cp-orange);
    transform: translateY(-6px);
}

.lp-persona-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cp-orange), var(--cp-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.lp-persona-icon i {
    font-size: 2rem;
    color: var(--cp-white);
}

.lp-persona-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cp-charcoal);
    margin-bottom: 14px;
}

.lp-persona-card p {
    color: var(--cp-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.lp-persona-card .lp-persona-outcome {
    color: var(--cp-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 16px;
    display: block;
}

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.lp-step-card {
    background: var(--cp-white);
    border-radius: 20px;
    padding: 48px 28px 36px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.lp-step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--cp-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cp-white);
    box-shadow: 0 4px 12px rgba(209,133,1,0.35);
}

.lp-step-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cp-charcoal);
    margin: 12px 0 14px;
}

.lp-step-card p {
    color: var(--cp-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.lp-founder {
    padding: 100px 0;
    background: var(--cp-white);
}

.lp-founder-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lp-founder-img-wrap {
    flex-shrink: 0;
}

.lp-founder-img {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(209,133,1,0.2);
    border: 4px solid var(--cp-white);
}

.lp-founder-text {
    flex: 1;
}

.lp-founder-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cp-charcoal);
    margin-bottom: 20px;
}

.lp-founder-text p {
    color: var(--cp-text-body);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.lp-founder-badge {
    display: inline-block;
    background: var(--cp-orange);
    color: var(--cp-white);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(209,133,1,0.3);
}

.lp-pilot-card {
    background: var(--cp-white);
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(209,133,1,0.2);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lp-pilot-badge {
    display: inline-block;
    background: var(--cp-orange);
    color: var(--cp-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.lp-pilot-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cp-charcoal);
    margin-bottom: 12px;
}

.lp-pilot-card > p {
    color: var(--cp-text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
}

.lp-pilot-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    margin-bottom: 36px;
}

.lp-pilot-benefit {
    background: var(--cp-gray-bg);
    border-radius: 14px;
    padding: 24px;
}

.lp-pilot-benefit h5 {
    color: var(--cp-orange);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-pilot-benefit p {
    color: var(--cp-text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.lp-pilot-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.lp-pilot-urgency {
    color: var(--cp-text-muted);
    font-size: 0.85rem;
    margin-top: 16px;
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-testimonial-card {
    background: var(--cp-white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.lp-testimonial-stars {
    color: var(--cp-orange);
    font-size: 1rem;
    margin-bottom: 16px;
}

.lp-testimonial-card blockquote {
    color: var(--cp-text-body);
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0 0 20px;
    flex: 1;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cp-orange), var(--cp-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cp-white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lp-testimonial-meta h6 {
    font-weight: 700;
    color: var(--cp-charcoal);
    margin: 0;
    font-size: 0.95rem;
}

.lp-testimonial-meta small {
    color: var(--cp-orange);
    font-weight: 500;
    font-size: 0.8rem;
}

.lp-final-cta {
    background: linear-gradient(135deg, var(--cp-orange), var(--cp-orange-dark));
    padding: 80px 0;
    text-align: center;
}

.lp-final-cta h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cp-white);
    margin-bottom: 16px;
}

.lp-final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.lp-btn-white {
    background: var(--cp-white);
    color: var(--cp-orange);
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.lp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    color: var(--cp-orange-dark);
}

.lp-boq-mockup {
    background: var(--cp-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.lp-boq-header {
    background: var(--cp-charcoal);
    color: var(--cp-white);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.lp-boq-header .lp-boq-dots {
    display: flex;
    gap: 6px;
}

.lp-boq-header .lp-boq-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.lp-boq-header .lp-boq-dots span:nth-child(1) { background: #ff5f57; }
.lp-boq-header .lp-boq-dots span:nth-child(2) { background: #ffbd2e; }
.lp-boq-header .lp-boq-dots span:nth-child(3) { background: #28c840; }

.lp-boq-table {
    width: 100%;
    font-size: 0.82rem;
}

.lp-boq-table th {
    background: var(--cp-gray-bg);
    color: var(--cp-charcoal);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e5e5;
}

.lp-boq-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--cp-text-body);
}

.lp-boq-table tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    color: var(--cp-charcoal);
    background: rgba(209,133,1,0.05);
}

@media (max-width: 991px) {
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--cp-white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .lp-nav-links.active {
        display: flex;
    }

    .lp-mobile-toggle {
        display: block;
    }

    .lp-hero-row {
        flex-direction: column;
        gap: 40px;
    }

    .lp-hero-headline {
        font-size: 2.4rem;
    }

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

    .lp-feature-wide {
        flex-direction: column;
    }

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

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

    .lp-founder-row {
        flex-direction: column;
        text-align: center;
    }

    .lp-founder-img {
        width: 180px;
        height: 180px;
    }

    .lp-pilot-benefits {
        grid-template-columns: 1fr;
    }

    .lp-pilot-card {
        padding: 36px 24px;
    }

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

    .lp-section-title {
        font-size: 1.8rem;
    }

    .lp-final-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .lp-nav {
        padding: 0 1rem;
    }

    .lp-hero {
        padding: 100px 0 60px;
    }

    .lp-hero-headline {
        font-size: 2rem;
    }

    .lp-hero-btns {
        flex-direction: column;
    }

    .lp-btn-primary,
    .lp-btn-secondary {
        text-align: center;
    }

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

    .lp-trust-items {
        gap: 24px;
    }
}
