/* ============================================================
   Landing Page: Exclusieve verkoopbegeleiding — Expat & RE
   ============================================================ */

/* Bootstrap-aligned tokens (keeps lp styles themeable via Bootstrap) */
:root {
    --lp-primary: var(--bs-primary, var(--primary, #6f42c1));
    --lp-body-bg: var(--bs-body-bg, #fff);
    --lp-body-color: var(--bs-body-color, #212529);
    --lp-secondary-color: var(--bs-secondary-color, #6c757d);
    --lp-border-color: var(--bs-border-color, #dee2e6);
    --lp-tertiary-bg: var(--bs-tertiary-bg, #f8f9fa);
    --lp-border-radius: var(--bs-border-radius, 0.375rem);
    --lp-border-radius-lg: var(--bs-border-radius-lg, 0.5rem);
    --lp-box-shadow: var(--bs-box-shadow, 0 .5rem 1rem rgba(0, 0, 0, .15));
    --lp-box-shadow-lg: var(--bs-box-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, .175));
    --lp-warning: var(--bs-warning, #ffc107);
}

/* ----- Hero ----- */
.lp-hero {
    min-height: 870px;
    padding-top: 5rem;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lp-hero-bg .has-img,
.lp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, var(--lp-body-bg) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
}
.lp-hero-content {
    position: relative;
    z-index: 10;
}
.lp-hero-title {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}
.lp-hero-title em {
    font-style: italic;
}
@media (min-width: 768px) {
    .lp-hero-title { font-size: 4rem; }
}
.lp-hero-intro {
    font-size: 1.125rem;
    color: var(--lp-secondary-color);
    max-width: 32rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* ----- Stars badge ----- */
.lp-stars-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.875rem;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--lp-secondary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: var(--lp-box-shadow);
    margin-bottom: 1.5rem;
}
.lp-stars-badge .lp-stars {
    color: var(--lp-warning);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* ----- Hero quick-form card ----- */
.lp-hero-form {
    background: var(--lp-body-bg);
    max-width: 28rem;
    border-bottom: 4px solid color-mix(in srgb, var(--lp-primary) 20%, transparent);
    box-shadow: var(--lp-box-shadow-lg);
}
.lp-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-secondary-color);
    display: block;
    margin-bottom: 0.25rem;
}
.lp-phone-cta {
    font-size: 0.75rem;
    color: var(--lp-secondary-color);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ----- Section label (small overline) ----- */
.lp-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lp-primary);
    display: block;
    margin-bottom: 1rem;
}

/* ----- Neighborhood tags ----- */
.lp-neighborhood-tag {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 12%, transparent);
    background: var(--lp-tertiary-bg);
    color: var(--lp-primary);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    margin-bottom: 0.5rem;
}
.lp-neighborhood-tag:hover {
    background: var(--lp-primary);
    color: #fff;
    text-decoration: none;
}

/* ----- USP image cards ----- */
.lp-usp-card {
    position: relative;
    overflow: hidden;
    height: 360px;
    box-shadow: var(--lp-box-shadow);
}
.lp-usp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}
.lp-usp-card:hover img {
    transform: scale(1.1);
}
.lp-usp-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: #fff;
    font-style: italic;
    font-size: 1.125rem;
    letter-spacing: -0.025em;
}

/* ----- Value prop cards ----- */
.lp-value-card {
    background: var(--lp-body-bg);
    padding: 2.5rem;
    border-bottom: 2px solid transparent;
    transition: transform 0.25s ease, border-color 0.25s ease;
    height: 100%;
}
.lp-value-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--lp-primary);
}
.lp-value-icon {
    font-size: 2rem;
    color: var(--lp-primary);
    margin-bottom: 1.5rem;
    display: block;
}
.lp-value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}
.lp-value-card p {
    font-size: 0.875rem;
    color: var(--lp-secondary-color);
    line-height: 1.625;
    margin-bottom: 0;
}

/* ----- Process section ----- */
.lp-process-img-wrap {
    position: relative;
    margin-bottom: 2rem;
}
.lp-process-img-blob {
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 16rem;
    height: 16rem;
    background: color-mix(in srgb, var(--lp-primary) 20%, transparent);
    border-radius: 50%;
    filter: blur(64px);
    z-index: 0;
}
.lp-process-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 1s ease;
    box-shadow: var(--lp-box-shadow-lg);
}
.lp-process-img-wrap:hover img {
    filter: grayscale(0);
}
.lp-process-quote {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    background: var(--lp-primary);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 20;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.3;
}
.lp-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.lp-step-number {
    font-size: 3.75rem;
    font-style: italic;
    color: color-mix(in srgb, var(--lp-primary) 20%, transparent);
    line-height: 1;
    font-weight: 700;
    min-width: 3.5rem;
}
.lp-step-body h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lp-step-body p {
    color: var(--lp-secondary-color);
    line-height: 1.625;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ----- Stats / social proof ----- */
.lp-stats-section {
    background: var(--lp-tertiary-bg);
    border-top: 1px solid var(--lp-border-color);
    border-bottom: 1px solid var(--lp-border-color);
}
.lp-stat-number {
    font-size: 3rem;
    font-style: italic;
    color: var(--lp-primary);
    font-weight: 700;
    line-height: 1;
    display: block;
}
.lp-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-secondary-color);
    display: block;
    margin-top: 0.5rem;
}

/* ----- Testimonials ----- */
.lp-testimonial {
    background: var(--lp-body-bg);
    padding: 2.5rem 3rem;
    border-left: 4px solid var(--lp-primary);
    box-shadow: var(--lp-box-shadow);
    height: 100%;
}
.lp-testimonial-stars {
    color: var(--lp-warning);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.lp-testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--lp-body-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.lp-testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--lp-border-color);
    flex-shrink: 0;
}
.lp-testimonial-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--lp-body-color);
    margin-bottom: 0.125rem;
}
.lp-testimonial-sub {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-secondary-color);
}

/* ----- FAQ accordion ----- */
.lp-faq-item {
    background: var(--lp-body-bg);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.lp-faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9375rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-icon {
    transition: transform 0.2s ease;
    font-size: 1.25rem;
    color: var(--lp-primary);
    flex-shrink: 0;
}
.lp-faq-item[open] .lp-faq-icon {
    transform: rotate(180deg);
}
.lp-faq-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--lp-secondary-color);
    line-height: 1.65;
}

/* ----- Lead capture form (purple bg) ----- */
.lp-lead-form {
    background: var(--lp-primary);
    color: #fff;
    padding: 3rem;
    border-radius: var(--lp-border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--lp-box-shadow-lg);
}
.lp-lead-form-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.1;
    font-size: 7rem;
    line-height: 1;
    pointer-events: none;
}
.lp-lead-form h3 {
    font-style: italic;
    margin-bottom: 0.75rem;
}
.lp-lead-form .lp-lead-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}
.lp-lead-form .form-control {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: var(--lp-border-radius);
    padding: 0.875rem 1.25rem;
}
.lp-lead-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.lp-lead-form .form-control:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    color: #fff;
}
.lp-lead-form .btn-lp-submit {
    background: #fff;
    color: var(--lp-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    padding: 1rem;
    border: none;
    width: 100%;
    border-radius: var(--lp-border-radius);
    transition: background 0.2s ease;
}
.lp-lead-form .btn-lp-submit:hover {
    background: var(--lp-tertiary-bg);
}
.lp-lead-disclaimer {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* ----- Responsive tweaks ----- */
@media (max-width: 991.98px) {
    .lp-hero { min-height: 600px; }
    .lp-hero-gradient {
        background: linear-gradient(to bottom, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.6) 100%);
    }
    .lp-process-quote { display: none; }
    .lp-process-img-wrap { margin-bottom: 3.5rem; }
}
