:root {
    --primary: #c2410c;
    --primary-dark: #9a3412;
    --primary-light: rgba(194, 65, 12, 0.12);
    --accent: #f59e0b;
    --dark: #0f172a;
    --muted: #475569;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #7c2d12 0%, #c2410c 45%, #ea580c 100%);
    --gradient-hero: linear-gradient(135deg, #7c2d12 0%, #b45309 50%, #c2410c 100%);
    --gradient-cta: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-card: 0 4px 24px rgba(194, 65, 12, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
    color: var(--white);
}
.lp-nav .logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.lp-nav .logo span { color: #fb923c; }
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.lp-nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.lp-nav-links a:hover { color: #fb923c; }
.lp-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.lp-btn-ghost { color: #fb923c; background: transparent; }
.lp-btn-ghost:hover { background: rgba(251, 146, 60, 0.15); }
.lp-btn-primary {
    background: var(--gradient-cta);
    color: var(--dark);
    border: none;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
.lp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.lp-hero-wrap {
    background: var(--gradient-hero);
    width: 100%;
    position: relative;
}
.lp-hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}
.lp-hero {
    position: relative;
    z-index: 1;
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .lp-hero { grid-template-columns: 1fr; text-align: center; }
}
.lp-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.lp-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.lp-hero h1 .highlight { color: #fbbf24; }
.lp-hero .sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.75rem;
    max-width: 480px;
}
@media (max-width: 900px) { .lp-hero .sub { margin-left: auto; margin-right: auto; } }
.lp-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 900px) { .lp-hero-ctas { justify-content: center; } }
.lp-hero-ctas .lp-btn { padding: 0.9rem 1.5rem; font-size: 1rem; }
.lp-hero-ctas .lp-btn-solid {
    background: white;
    color: var(--primary-dark);
}
.lp-hero-ctas .lp-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lp-hero-ctas .lp-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}
.lp-hero-ctas .lp-btn-outline:hover { background: rgba(255,255,255,0.15); }

.lp-hero-card {
    background: var(--white);
    color: var(--dark);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.lp-hero-card .quote {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.lp-hero-card .stat {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.lp-benefits {
    padding: 4rem 2rem;
    background: #f9fafb;
}
.lp-benefits-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-benefits h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-benefits .sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2.5rem;
}
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 700px) { .lp-benefits-grid { grid-template-columns: 1fr; } }
.lp-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: left;
}
.lp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.lp-card-icon.orange { background: #fffbeb; }
.lp-card-icon.purple { background: #f0f4ff; }
.lp-card-icon.green { background: #ecfdf5; }
.lp-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.lp-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

.lp-steps {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--light);
}
.lp-steps h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-steps .sub { text-align: center; color: var(--muted); margin-bottom: 2.5rem; }
.lp-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.lp-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}
@media (max-width: 600px) {
    .lp-timeline { flex-direction: column; gap: 2rem; }
    .lp-timeline::before { display: none; }
}
.lp-timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.lp-timeline-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-timeline-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.lp-timeline-item p { font-size: 0.9rem; color: var(--muted); }

.lp-who {
    padding: 4rem 2rem;
    background: rgba(194, 65, 12, 0.06);
}
.lp-who h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-who .sub { text-align: center; color: var(--muted); margin-bottom: 1.5rem; }
.lp-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.lp-pill {
    padding: 0.65rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}
.lp-pills a.lp-pill { text-decoration: none; }

.lp-cta {
    padding: 4rem 2rem;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}
.lp-cta h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.lp-cta p { opacity: 0.9; margin-bottom: 1.25rem; }
.lp-cta .lp-btn-primary {
    background: var(--gradient-cta);
    color: var(--dark);
}

.lp-roi {
    padding: 4rem 2rem;
    background: var(--light);
}
.lp-roi h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-roi .sub { text-align: center; color: var(--muted); margin-bottom: 1.5rem; }
.lp-roi-inner { max-width: 640px; margin: 0 auto; }
.lp-roi-quote {
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.lp-roi-stat {
    display: inline-block;
    padding: 0.65rem 1.15rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
}
.lp-roi-stat-wrap { text-align: center; }

.lp-waste {
    padding: 4rem 2rem;
    background: var(--gradient-hero);
    color: white;
}
.lp-waste h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: white;
}
.lp-waste .sub { text-align: center; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.lp-waste-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.lp-waste-item {
    padding: 1.25rem;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius);
    border-left: 3px solid rgba(255,255,255,0.6);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
}
.lp-waste-item strong { color: white; }

.lp-roi-calc {
    padding: 4rem 2rem;
    background: var(--white);
}
.lp-roi-calc-inner {
    max-width: 900px;
    margin: 0 auto;
}
.lp-roi-calc h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-roi-calc .sub {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.lp-roi-calc-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}
.lp-roi-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 600px) {
    .lp-roi-inputs { grid-template-columns: 1fr; }
}
.lp-roi-input-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.lp-roi-input-group .input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lp-roi-input-group input[type="number"],
.lp-roi-input-group input[type="text"] {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
}
.lp-roi-input-group input[type="number"]:focus,
.lp-roi-input-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
}
.lp-roi-input-group .currency {
    color: var(--muted);
    font-size: 0.9rem;
}
.lp-roi-slider-wrapper {
    margin-top: 0.5rem;
}
.lp-roi-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.lp-roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}
.lp-roi-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}
.lp-roi-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.lp-roi-result-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--primary-light);
}
.lp-roi-result-card .label {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.lp-roi-result-card .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.lp-roi-result-card .sub-value {
    color: var(--muted);
    font-size: 0.85rem;
}
.lp-roi-examples {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light);
}
.lp-roi-examples h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.lp-roi-example {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}
.lp-roi-example strong {
    color: var(--dark);
    font-weight: 700;
}
.lp-roi-example p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.lp-footer {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.lp-footer-headline {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.lp-footer-cta {
    margin-bottom: 1.25rem;
}
.lp-footer-cta .lp-btn {
    padding: 1rem 2.25rem;
    font-size: 1.15rem;
}
.lp-footer-login {
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.75);
}
.lp-footer-login a { color: white; text-decoration: underline; text-underline-offset: 2px; }
.lp-footer-login a:hover { color: rgba(255,255,255,0.95); }

.lp-footer-fineprint {
    background: var(--white);
    padding: 0.5rem 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.lp-footer-fineprint a {
    color: var(--muted);
    text-decoration: none;
}
.lp-footer-fineprint a:hover { color: var(--dark); text-decoration: underline; }

/* Comparison table – List Processor vs Word mail merge (matches lp-who: centered title/sub, warm bg) */
.lp-comparison {
    padding: 4rem 2rem;
    background: rgba(194, 65, 12, 0.06);
    text-align: center;
}
.lp-comparison-inner {
    max-width: 900px;
    margin: 0 auto;
}
.lp-comparison-inner h2,
.lp-comparison h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-comparison-inner .sub,
.lp-comparison .sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}
.lp-comparison-table-wrap {
    text-align: left;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-light);
    background: var(--white);
}
.lp-comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.lp-comparison th, .lp-comparison td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.lp-comparison th {
    background: var(--light);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
}
.lp-comparison tr:last-child td { border-bottom: none; }
.lp-comparison .col-word { width: 32%; }
.lp-comparison .col-us { width: 32%; background: rgba(194, 65, 12, 0.04); font-weight: 600; color: var(--primary-dark); }
.lp-comparison td.check { color: #059669; }
.lp-comparison td.cross { color: var(--muted); }

/* Works with your existing data (matches lp-who: centered title/sub, warm bg) */
.lp-data-sources {
    padding: 4rem 2rem;
    background: rgba(194, 65, 12, 0.06);
    text-align: center;
}
.lp-data-sources-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-data-sources-inner h2,
.lp-data-sources h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-data-sources-inner .sub,
.lp-data-sources .sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}
.lp-data-sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.lp-data-source-item {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.lp-data-source-item span { color: var(--muted); font-weight: 400; font-size: 0.9rem; }

/* Final CTA after new sections (same as lp-cta: gradient, centered) */
.lp-cta-final {
    padding: 4rem 2rem;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}
.lp-cta-final h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}
.lp-cta-final p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
    text-align: center;
}
.lp-cta-final .lp-btn-primary {
    background: var(--gradient-cta);
    color: var(--dark);
}
