/* =========================================================================
   VSO-LANDING.CSS — $15-20 CPC CONVERSION MACHINE
   Zero distraction. One goal. Maximum conversion.
   ========================================================================= */

/* --- Page-level overrides for landing context --- */
body.lp-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--clr-bg-deep);
    color: var(--clr-text-main);
    font-family: var(--font-body);
}

/* Kill any default link colors */
body.lp-body a { color: inherit; }

/* =========================================================================
   STICKY NAV — minimal, trust-only
   ========================================================================= */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}
.lp-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }

.lp-nav-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-nav-brand i { font-size: 1.4rem; }

.lp-nav-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}
.lp-nav-trust i { color: #10b981; margin-right: 4px; }

.lp-nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background: var(--clr-accent-1);
    background: linear-gradient(135deg, var(--clr-accent-1), var(--clr-accent-2));
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37,99,235,0.2);
}
.lp-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37,99,235,0.3);
}

/* =========================================================================
   HERO — "De Klap"
   ========================================================================= */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.lp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.lp-hero-content { position: relative; z-index: 2; }

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.03);
    border-radius: 100px;
    padding: 6px 16px;
    font-family: var(--font-data);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}
.lp-hero-badge .pulse {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: lpPulse 2s infinite;
}

@keyframes lpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.lp-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--clr-text-main);
    margin: 0 0 24px;
}
.lp-hero h1 .highlight {
    background: linear-gradient(135deg, #2563EB, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-hero-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--clr-text-muted);
    max-width: 520px;
    margin: 0 0 36px;
}

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

.lp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--clr-accent-1);
    background: linear-gradient(135deg, var(--clr-accent-1), var(--clr-accent-2));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}
.lp-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 12px 30px -4px rgba(37,99,235,0.4);
    color: #fff;
}
.lp-cta-primary i { font-size: 1.1rem; color: inherit; }

.lp-cta-sub {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}
.lp-cta-sub i { color: #10b981; margin-right: 4px; }

/* Trust stats panel (right side of hero) */
.lp-hero-proof {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-proof-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 12px 40px -12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}
.lp-proof-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 16px 50px -12px rgba(0,0,0,0.12);
}

.lp-proof-stat {
    font-family: var(--font-data);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.lp-proof-stat .accent { color: var(--clr-accent-1); }

.lp-proof-label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.lp-proof-detail {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* =========================================================================
   AGITATE — "Wat u niet weet, kost u geld"
   ========================================================================= */
.lp-agitate {
    padding: 100px 60px;
    background: var(--clr-bg-panel);
    border-top: var(--hairline-strong);
    border-bottom: var(--hairline-strong);
}

.lp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lp-section-label {
    font-family: var(--font-data);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent-1);
    margin-bottom: 16px;
}

.lp-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--clr-text-main);
    margin: 0 0 16px;
}

.lp-section-sub {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 640px;
    line-height: 1.7;
    margin: 0 0 48px;
}

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

.lp-mistake-card {
    background: var(--clr-bg-deep);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 32px 28px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}
.lp-mistake-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.lp-mistake-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.lp-mistake-card.danger::before { background: #ef4444; }
.lp-mistake-card.warning::before { background: #f59e0b; }
.lp-mistake-card.info::before { background: var(--clr-accent-1); }

.lp-mistake-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.lp-mistake-card.danger .lp-mistake-icon {
    background: rgba(239,68,68,0.08); color: #ef4444;
}
.lp-mistake-card.warning .lp-mistake-icon {
    background: rgba(245,158,11,0.08); color: #f59e0b;
}
.lp-mistake-card.info .lp-mistake-icon {
    background: rgba(37,99,235,0.08); color: var(--clr-accent-1);
}

.lp-mistake-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--clr-text-main);
}

.lp-mistake-card p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin: 0 0 16px;
}

.lp-stat-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-data);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(15,23,42,0.04);
    color: var(--clr-primary);
}

/* =========================================================================
   SOLVE — The VSO Tool Section
   ========================================================================= */
.lp-tool-section {
    padding: 100px 60px;
    background: var(--clr-bg-deep);
    position: relative;
}
.lp-tool-section::before {
    content: 'SCAN';
    position: absolute;
    bottom: -4vh; right: -2vw;
    font-family: var(--font-heading);
    font-size: 18vw;
    color: rgba(37,99,235,0.02);
    white-space: nowrap;
    pointer-events: none;
    font-weight: 700;
}

.lp-tool-header {
    text-align: center;
    margin-bottom: 48px;
}
.lp-tool-header .lp-section-label,
.lp-tool-header .lp-section-title,
.lp-tool-header .lp-section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.lp-tool-embed {
    max-width: 900px;
    margin: 0 auto;
    background: var(--clr-primary, #0F172A);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Embedded chat within landing page (not fullscreen) */
.lp-tool-embed .chat-window {
    flex-grow: 1;
    max-height: 520px;
    min-height: 400px;
    overflow-y: auto;
    padding: 32px 24px 32px;
    background: #0B1121; /* Slightly darker than container */
    color: rgba(255,255,255,0.85);
}

.lp-tool-embed .input-area {
    position: relative;
    padding: 24px;
    background: rgba(15,23,42,1.0);
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 2;
}

.lp-tool-embed .disclaimer {
    padding: 12px 24px 16px;
    background: rgba(15,23,42,1.0);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
}

.lp-tool-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: var(--clr-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}
.lp-tool-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-tool-bar-left i { font-size: 1.2rem; }
.lp-tool-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    opacity: 0.7;
}
.lp-tool-bar-right i { color: #10b981; }

/* =========================================================================
   SOCIAL PROOF — Case Studies from Rechtspraak
   ========================================================================= */
.lp-proof-section {
    padding: 100px 60px;
    background: var(--clr-bg-panel);
    border-top: var(--hairline-strong);
    border-bottom: var(--hairline-strong);
}

.lp-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-case-card {
    background: var(--clr-bg-deep);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.lp-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.lp-case-court {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.lp-case-court-name {
    font-family: var(--font-data);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-accent-1);
}
.lp-case-date {
    font-family: var(--font-data);
    font-size: 0.7rem;
    color: var(--clr-text-muted);
}

.lp-case-result {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}
.lp-case-offered {
    font-family: var(--font-data);
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
}
.lp-case-awarded {
    font-family: var(--font-data);
    font-size: 1.4rem;
    font-weight: 700;
    color: #10b981;
}
.lp-case-arrow {
    color: #10b981;
    font-size: 1.1rem;
}

.lp-case-desc {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.lp-case-tag {
    display: inline-block;
    font-family: var(--font-data);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(37,99,235,0.06);
    color: var(--clr-accent-1);
    border: 1px solid rgba(37,99,235,0.12);
}

/* =========================================================================
   URGENCY — Bedenktermijn
   ========================================================================= */
.lp-urgency {
    padding: 80px 60px;
    background: var(--clr-primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-urgency::before {
    content: '14';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-data);
    font-size: 30vw;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    font-weight: 700;
}

.lp-urgency-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lp-urgency-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f59e0b;
}

.lp-urgency h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}

.lp-urgency p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 36px;
}

.lp-urgency .lp-cta-primary {
    background: #fff;
    color: var(--clr-accent-1) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.lp-urgency .lp-cta-primary:hover {
    background: #f8fafc;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    color: var(--clr-accent-1) !important;
}

/* =========================================================================
   FAQ — objection handling
   ========================================================================= */
.lp-faq {
    padding: 100px 60px;
    background: var(--clr-bg-deep);
}

.lp-faq-grid {
    max-width: 720px;
    margin: 48px auto 0;
}

.lp-faq-item {
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: 10px;
    margin-bottom: 12px;
    background: var(--clr-bg-panel);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.lp-faq-item:hover { box-shadow: var(--shadow-card); }

.lp-faq-item summary {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-main);
}
.lp-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--clr-accent-1);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item .faq-answer {
    padding: 0 24px 20px;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================================================
   FOOTER — minimal, legal-only
   ========================================================================= */
.lp-footer {
    padding: 32px 60px;
    background: var(--clr-text-main);
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lp-footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    margin-left: 16px;
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.lp-stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* Counter animation */
@keyframes lpCountUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   MEDIA QUERIES
   ========================================================================= */
@media (max-width: 1024px) {
    .lp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .lp-mistake-grid { grid-template-columns: 1fr; }
    .lp-case-grid { grid-template-columns: 1fr; }
    .lp-hero { padding: 100px 40px 60px; }
    .lp-agitate,
    .lp-tool-section,
    .lp-proof-section,
    .lp-faq { padding: 64px 40px; }
    .lp-urgency { padding: 56px 40px; }
}

@media (max-width: 768px) {
    .lp-nav { padding: 12px 20px; }
    .lp-nav-trust { display: none; }
    .lp-hero { padding: 90px 20px 48px; min-height: auto; }
    .lp-hero h1 { font-size: 1.9rem; }
    .lp-hero-sub { font-size: 1rem; }
    .lp-cta-primary { width: 100%; justify-content: center; padding: 14px 24px; }
    .lp-agitate,
    .lp-tool-section,
    .lp-proof-section,
    .lp-faq { padding: 48px 20px; }
    .lp-urgency { padding: 40px 20px; }
    .lp-section-title { font-size: 1.6rem; }
    .lp-proof-stat { font-size: 2rem; }
    .lp-footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
    .lp-tool-embed .chat-window { max-height: 420px; min-height: 350px; }
}

@media (max-width: 420px) {
    .lp-hero h1 { font-size: 1.6rem; }
    .lp-hero-cta-row { flex-direction: column; align-items: stretch; }
    .lp-cta-sub { text-align: center; }
}

/* =========================================================================
   PROCESS STEPS
   ========================================================================= */
.lp-step-section {
    padding: 80px 20px 40px;
    background: #ffffff;
}
.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) { .lp-steps-grid { grid-template-columns: 1fr; } }
.lp-step {
    text-align: center;
    padding: 40px 30px;
    background: #F8FAFC;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}
.lp-step-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    font-size: 1.8rem;
    color: #2563EB;
}
.lp-step h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0F172A;
}
.lp-step p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================================================================
   FOUNDER / TRUST BLOCK
   ========================================================================= */
.lp-founder-section {
    padding: 80px 20px;
    background: var(--clr-bg-deep);
}
.lp-trust-founder {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) { .lp-trust-founder { flex-direction: column; } }
.lp-founder-img {
    width: 400px;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
}
@media (max-width: 768px) { .lp-founder-img { width: 100%; min-height: 320px; } }
.lp-founder-text {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) { .lp-founder-text { padding: 40px 30px; } }
.lp-founder-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.lp-founder-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.lp-founder-cta { margin-top: auto; }
.lp-founder-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.lp-founder-cta .btn-outline:hover {
    background: #fff;
    color: #0F172A;
}
