/*
 * DiscoveryTrials Theme — landing-page.css
 * Styles for the Patient Recruitment Landing Page template.
 * Inherits all theme CSS custom properties (colors, fonts, etc.)
 */

/* ==========================================================================
   1. BASE OVERRIDES FOR LP BODY
   ========================================================================== */
.lp-body { overflow-x: hidden; }

/* Remove default section padding from any theme wrappers on this template */
.lp-body .content-area { padding: 0; }

/* LP container — slightly narrower than site container for focused reading */
.lp-container {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.lp-container--wide { max-width: 1240px; }
.lp-container--narrow { max-width: 740px; }

/* ==========================================================================
   2. SECTION TYPOGRAPHY HELPERS
   ========================================================================== */
.lp-eyebrow {
    display: inline-block;
    font-family: var(--dt-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dt-accent);
    margin-bottom: 0.75rem;
}

.lp-eyebrow--light { color: var(--dt-light); }

.lp-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.lp-section-header h2 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    margin-bottom: 0.875rem;
    color: var(--dt-primary);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.lp-section-header p {
    color: var(--dt-neutral);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.lp-hero {
    position: relative;
    min-height: 100svh;
    background: linear-gradient(145deg, #070c1f 0%, var(--dt-primary) 35%, #0d2560 65%, var(--dt-secondary) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Abstract medical background SVG */
.lp-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-hero__bg svg {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
    max-width: 820px;
    min-width: 480px;
    opacity: 1;
}

/* Floating gradient orbs */
.lp-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.lp-hero__orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,136,229,0.22) 0%, transparent 70%);
    top: -150px; right: -100px;
}

.lp-hero__orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(110,193,244,0.14) 0%, transparent 70%);
    bottom: -100px; left: 10%;
}

.lp-hero .lp-container {
    max-width: 1400px;
}

.lp-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 1.5rem;
    max-width: 100%;
    text-align: center;
}

.lp-hero__badge-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(110, 193, 244, 0.14);
    border: 1px solid rgba(110, 193, 244, 0.3);
    color: var(--dt-light);
    font-family: var(--dt-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
}

.lp-hero__badge svg { width: 13px; height: 13px; flex-shrink: 0; }

.lp-hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.375rem;
    max-width: 100%;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.03em;
}

.lp-hero h1 em {
    font-style: normal;
    color: var(--dt-light);
}

.lp-hero__sub {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255,255,255,0.8);
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    font-weight: 300;
    text-align: center;
}

.lp-hero__cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.lp-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.25rem;
    background: var(--dt-accent);
    color: #fff;
    font-family: var(--dt-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 9px;
    border: 2px solid var(--dt-accent);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(30,136,229,0.4);
}

.lp-cta-main:hover {
    background: #1a7bd4;
    border-color: #1a7bd4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30,136,229,0.5);
}

.lp-cta-main:active { transform: translateY(0); }
.lp-cta-main svg { width: 18px; height: 18px; transition: transform 0.2s; }
.lp-cta-main:hover svg { transform: translateX(3px); }

.lp-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.lp-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
}

.lp-hero__meta-item svg { width: 14px; height: 14px; color: var(--dt-light); flex-shrink: 0; }
.lp-hero__meta-sep { opacity: 0.3; font-size: 1rem; }

/* Scroll indicator — inline beside the CTA button */
.lp-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255,255,255,0.45);
    font-size: 1.0625rem;
    font-family: var(--dt-font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: lp-bounce 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

.lp-scroll-hint svg { width: 28px; height: 28px; }

@keyframes lp-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ==========================================================================
   5. TRUST BAR
   ========================================================================== */
.lp-trust-bar {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 3px solid var(--dt-accent);
    padding-block: 1.375rem;
}

.lp-trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--dt-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dt-secondary);
    white-space: nowrap;
}

.lp-trust-badge svg {
    width: 20px; height: 20px;
    color: var(--dt-accent);
    flex-shrink: 0;
}

.lp-trust-sep {
    width: 1px;
    height: 28px;
    background: var(--dt-light-gray);
    flex-shrink: 0;
}

/* ==========================================================================
   6. STATS STRIP
   ========================================================================== */
.lp-stats {
    position: relative;
    background: linear-gradient(145deg, #07091a 0%, var(--dt-primary) 40%, #0d2560 100%);
    padding-top: 40px;
    padding-bottom: 5rem;
    text-align: center;
    overflow: hidden;
}

/* Decorative orbs */
.lp-stats__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.lp-stats__orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30,136,229,0.18) 0%, transparent 70%);
    top: -150px; left: -100px;
}
.lp-stats__orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(110,193,244,0.12) 0%, transparent 70%);
    bottom: -100px; right: -80px;
}

.lp-stats__eyebrow {
    font-family: var(--dt-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dt-light);
    margin-bottom: 0.75rem;
}

.lp-stats__heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.lp-stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.lp-stat {
    flex: 1;
    padding: 2rem 2.5rem;
    text-align: center;
}

.lp-stat__icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(30,136,229,0.15);
    border: 1px solid rgba(110,193,244,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.lp-stat__icon svg { width: 24px; height: 24px; color: var(--dt-light); }

.lp-stat__number {
    display: block;
    font-family: var(--dt-font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 30%, var(--dt-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-stat__number span {
    background: linear-gradient(135deg, var(--dt-light), var(--dt-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-stat__label {
    display: block;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 700;
    font-family: var(--dt-font-heading);
    margin-bottom: 0.375rem;
}

.lp-stat__sub {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

/* Vertical dividers between stats */
.lp-stat__divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(110,193,244,0.3), transparent);
    flex-shrink: 0;
}

/* ==========================================================================
   7. WHAT TO EXPECT — STEPS
   ========================================================================== */
.lp-steps {
    background: var(--dt-off-white);
    padding-block: 5.5rem;
}

.lp-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.lp-steps__cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Connecting line between steps */
.lp-steps__grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 1.25rem);
    right: calc(16.66% + 1.25rem);
    height: 2px;
    background: linear-gradient(90deg, var(--dt-accent), var(--dt-light));
    border-radius: 2px;
    z-index: 0;
}

.lp-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

.lp-step__icon-wrap {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dt-secondary), var(--dt-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(30,136,229,0.3);
    position: relative;
}

.lp-step__number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px; height: 26px;
    background: var(--dt-primary);
    color: #fff;
    border-radius: 50%;
    font-family: var(--dt-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dt-off-white);
}

.lp-step__icon-wrap svg {
    width: 38px; height: 38px;
    color: #fff;
}

.lp-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: var(--dt-primary);
}

.lp-step p {
    font-size: 0.9375rem;
    color: var(--dt-neutral);
    line-height: 1.65;
    margin: 0;
}

.lp-step__time {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-family: var(--dt-font-heading);
    font-weight: 700;
    color: var(--dt-accent);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   8. WHY PARTICIPATE — BENEFITS
   ========================================================================== */
.lp-benefits {
    background: #fff;
    padding-block: 5.5rem;
}

.lp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.lp-benefit-card {
    background: var(--dt-white);
    border: 1px solid var(--dt-light-gray);
    border-top: 4px solid transparent;
    border-radius: 0 0 16px 16px;
    padding: 2rem 1.75rem;
    transition: box-shadow 0.25s, border-top-color 0.25s, transform 0.25s;
    position: relative;
}

.lp-benefit-card::before {
    content: '';
    position: absolute;
    top: -4px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dt-secondary), var(--dt-accent));
    border-radius: 4px 4px 0 0;
}

.lp-benefit-card:hover {
    box-shadow: 0 12px 40px rgba(13,18,48,0.12);
    transform: translateY(-4px);
}

.lp-benefit-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(18,74,142,0.1), rgba(30,136,229,0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lp-benefit-icon svg {
    width: 28px; height: 28px;
    color: var(--dt-accent);
}

.lp-benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.625rem;
    color: var(--dt-primary);
}

.lp-benefit-card p {
    font-size: 0.9375rem;
    color: var(--dt-neutral);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   9. WHO CAN PARTICIPATE — ELIGIBILITY
   ========================================================================== */
.lp-eligibility {
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f3fc 100%);
    padding-block: 5.5rem;
    border-top: 1px solid rgba(30,136,229,0.1);
    border-bottom: 1px solid rgba(30,136,229,0.1);
}

.lp-eligibility__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.lp-eligibility__text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    margin-bottom: 0.75rem;
    color: var(--dt-primary);
}

.lp-eligibility__intro {
    font-size: 1rem;
    color: var(--dt-neutral);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lp-eligibility__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.lp-eligibility__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--dt-body-text);
    line-height: 1.5;
}

.lp-eligibility__list li::before {
    content: '';
    display: flex;
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 1px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E88E5' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.lp-eligibility__note {
    font-size: 0.9rem;
    color: var(--dt-neutral);
    line-height: 1.6;
    padding: 1rem 1.25rem;
    background: rgba(30,136,229,0.07);
    border-left: 3px solid var(--dt-accent);
    border-radius: 0 8px 8px 0;
    margin: 0 0 0.875rem;
}

.lp-eligibility__note:last-child {
    margin-bottom: 0;
}

/* Eligibility CTA card */
.lp-eligibility__card {
    background: var(--dt-primary);
    color: #fff;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 20px 60px rgba(13,18,48,0.25);
    position: sticky;
    top: 100px;
}

.lp-eligibility__card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.lp-eligibility__card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.lp-eligibility__card .lp-cta-main {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

.lp-eligibility__privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    justify-content: center;
}

.lp-eligibility__privacy-note svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.lp-testimonials {
    background: #fff;
    padding-block: 5.5rem;
}

.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.lp-testimonial-card {
    background: var(--dt-off-white);
    border: 1px solid var(--dt-light-gray);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.lp-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(13,18,48,0.08);
    transform: translateY(-3px);
}

.lp-testimonial-card__quote-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--dt-secondary), var(--dt-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lp-testimonial-card__quote-icon svg {
    width: 20px; height: 20px;
    color: #fff;
}

.lp-testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.lp-testimonial-card__stars svg { width: 16px; height: 16px; }

.lp-testimonial-card blockquote {
    border: none;
    background: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-style: normal;
    color: var(--dt-body-text);
    font-size: 0.9375rem;
    line-height: 1.7;
    border-radius: 0;
}

.lp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dt-light-gray);
}

.lp-testimonial-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dt-secondary), var(--dt-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--dt-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.lp-testimonial-card__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dt-primary);
    line-height: 1.2;
}

.lp-testimonial-card__role {
    font-size: 0.8rem;
    color: var(--dt-neutral);
    margin-top: 0.125rem;
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.lp-faq {
    background: var(--dt-off-white);
    padding-block: 5.5rem;
}

.lp-faq__list {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-faq-item {
    background: #fff;
    border: 1px solid var(--dt-light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.lp-faq-item.is-open { box-shadow: 0 4px 20px rgba(13,18,48,0.08); }

.lp-faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--dt-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dt-primary);
    line-height: 1.3;
    transition: color 0.2s;
}

.lp-faq-item__trigger:hover { color: var(--dt-accent); }

.lp-faq-item__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--dt-off-white);
    border: 1.5px solid var(--dt-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.25s;
}

.lp-faq-item__icon svg {
    width: 14px; height: 14px;
    color: var(--dt-neutral);
    transition: color 0.2s, transform 0.25s;
}

.lp-faq-item.is-open .lp-faq-item__icon {
    background: var(--dt-accent);
    border-color: var(--dt-accent);
}

.lp-faq-item.is-open .lp-faq-item__icon svg {
    color: #fff;
    transform: rotate(45deg);
}

.lp-faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.lp-faq-item.is-open .lp-faq-item__body {
    grid-template-rows: 1fr;
}

.lp-faq-item__body-inner {
    overflow: hidden;
    padding: 0 1.5rem;
}

.lp-faq-item.is-open .lp-faq-item__body-inner {
    padding-bottom: 1.375rem;
}

.lp-faq-item__body-inner p {
    font-size: 0.9375rem;
    color: var(--dt-neutral);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   12. FORM SECTION
   ========================================================================== */
.lp-form-section {
    background: linear-gradient(145deg, #07091a 0%, var(--dt-primary) 50%, #0d2560 100%);
    padding-block: 5.5rem;
    position: relative;
    overflow: hidden;
}

.lp-form-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,136,229,0.15) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}

.lp-form-section__header {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-form-section__header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.lp-form-section__header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.0625rem;
    max-width: 540px;
    margin-inline: auto;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Privacy note above form */
.lp-form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.lp-form-privacy__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-family: var(--dt-font-heading);
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}

.lp-form-privacy__badge svg { width: 15px; height: 15px; color: var(--dt-light); flex-shrink: 0; }

/* Form wrapper card */
.lp-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    max-width: 680px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.lp-form-card__header {
    background: linear-gradient(135deg, var(--dt-secondary), var(--dt-accent));
    padding: 1.5rem 2rem;
    text-align: center;
}

.lp-form-card__header h3 {
    color: #fff;
    font-size: 1.125rem;
    margin: 0;
}

.lp-form-card__body {
    padding: 0;
}

.lp-form-card__body iframe {
    display: block;
    width: 100%;
    min-height: 860px;
    border: none;
}

/* ==========================================================================
   13. LP FOOTER
   ========================================================================== */
.lp-footer {
    background: #070c1f;
    padding-block: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.lp-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-footer__copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.lp-footer__copy a {
    color: rgba(255,255,255,0.4);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.25);
    transition: color 0.2s;
}

.lp-footer__copy a:hover { color: var(--dt-light); }

.lp-footer__links {
    display: flex;
    gap: 1.5rem;
}

.lp-footer__links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.lp-footer__links a:hover { color: var(--dt-light); }

.lp-footer__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-footer__logo,
.lp-footer__brand .custom-logo {
    height: 28px;
    width: auto;
    display: block;
}

/* ==========================================================================
   14. STICKY MOBILE CTA BAR
   ========================================================================== */
.lp-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(7, 9, 30, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.875rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-sticky-bar.is-visible { transform: translateY(0); }

.lp-sticky-bar .lp-cta-main {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

/* ==========================================================================
   15. SHARED LP SECTION SPACING
   ========================================================================== */
.lp-section { padding-block: 5.5rem; }
.lp-section--sm { padding-block: 3.5rem; }

/* ==========================================================================
   16. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .lp-eligibility__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-eligibility__card { position: static; }
    .lp-stats__grid { flex-direction: column; }
    .lp-stat__divider { width: 120px; height: 1px; background: linear-gradient(to right, transparent, rgba(110,193,244,0.3), transparent); }
    .lp-hero__bg svg { width: 75%; opacity: 0.6; }
}

@media (max-width: 768px) {
    .lp-steps__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lp-steps__grid::before { display: none; }

    .lp-benefits__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .lp-testimonials__grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .lp-trust-bar__inner { gap: 1.25rem; }
    .lp-trust-sep { display: none; }

    .lp-hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: -0.02em; }
    .lp-hero__cta-row { flex-direction: column; align-items: center; }

    .lp-step { padding: 0; }
    .lp-step__icon-wrap { width: 72px; height: 72px; }
    .lp-step__icon-wrap svg { width: 30px; height: 30px; }

    .lp-header__phone { display: none; }

    .lp-form-card__body iframe { min-height: 900px; }

    .lp-footer__inner { flex-direction: column; text-align: center; }
    .lp-footer__links { justify-content: center; }

    /* Show sticky mobile CTA */
    .lp-sticky-bar { display: block; }
}

@media (max-width: 480px) {
    .lp-hero { padding-top: 80px; }
    .lp-hero__meta { flex-direction: column; align-items: center; gap: 0.5rem; }
    .lp-hero__meta-sep { display: none; }
    .lp-stats__grid { flex-direction: column; }
    .lp-form-privacy { gap: 0.75rem; }
    .lp-eligibility__card { padding: 1.5rem; }
    .lp-cta-main { font-size: 1rem; padding: 0.9rem 1.75rem; }
}

/* ==========================================================================
   17. QUALIFY DRAWER
   ========================================================================== */

.lp-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
}

.lp-drawer.is-open {
    visibility: visible;
}

/* Dark backdrop */
.lp-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 26, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: pointer;
}

.lp-drawer.is-open .lp-drawer__backdrop {
    opacity: 1;
}

/* Sliding panel */
.lp-drawer__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 48px rgba(0,0,0,0.2);
}

.lp-drawer.is-open .lp-drawer__panel {
    transform: translateX(0);
}

/* Header bar */
.lp-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--dt-light-gray);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--dt-primary), var(--dt-secondary));
}

.lp-drawer__title {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 0.25rem;
}

.lp-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 2px;
}

.lp-drawer__close:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}

.lp-drawer__close svg {
    width: 16px;
    height: 16px;
}

/* Scrollable form body */
.lp-drawer__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lp-drawer__body iframe {
    display: block;
    width: 100%;
    min-height: 860px;
    border: none;
}

/* Mobile: full-width drawer */
@media (max-width: 540px) {
    .lp-drawer__panel { max-width: 100%; }
}

/* ==========================================================================
   18. PRINT
   ========================================================================== */
@media print {
    .lp-header, .lp-sticky-bar, .lp-scroll-hint { display: none !important; }
    .lp-hero { min-height: auto; padding: 3rem 0; }
}
