
/* ── Base ── */
.lp-section       { padding: 96px 0; }
.lp-alt           { background: #f9fafb; }
.lp-section-head  { max-width: 560px; }
.lp-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 10px;
}
.lp-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -0.8px;
    line-height: 1.12;
    margin: 0;
}

/* ── Hero ── */
.lp-hero {
    padding: 110px 0 56px;
    text-align: center;
}
.lp-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 28px;
}
.lp-hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -1.5px;
    line-height: 1.06;
    margin-bottom: 20px;
}
.lp-hero-sub {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 36px;
}
.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    background: #111;
    border-radius: 8px;
    padding: 11px 22px;
    text-decoration: none;
    transition: opacity 0.15s;
}
.lp-btn-primary:hover { opacity: 0.8; }
.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280 !important;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 8px;
    transition: all 0.15s;
}
.lp-btn-ghost:hover { color: #111 !important; background: #f5f5f5; }

/* ── Ticker ── */
.lp-ticker-wrap {
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 0;
    margin-bottom: 96px;
}
.lp-ticker-track {
    display: flex;
    width: max-content;
    animation: lp-ticker 30s linear infinite;
}
.lp-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
    padding: 0 32px;
}
.lp-ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}
@keyframes lp-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Feature cards ── */
.lp-feature-card {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-feature-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.lp-feature-icon {
    font-size: 20px;
    color: #0a0a0a;
    margin-bottom: 14px;
    display: block;
}
.lp-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
}
.lp-feature-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* ── Steps ── */
.lp-step {
    padding: 28px 0;
    border-top: 2px solid #0a0a0a;
}
.lp-step-num {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.lp-step-title {
    font-size: 17px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
}
.lp-step-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* ── Clinic type cards ── */
.lp-type-card {
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 100%;
    transition: border-color 0.15s;
}
.lp-type-card:hover { border-color: #0a0a0a; }
.lp-tag {
    font-size: 11px;
    font-weight: 500;
    color: #0a0a0a;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2px 10px;
}
.lp-type-title {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
}
.lp-type-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}
.lp-type-link {
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
    text-decoration: none;
    transition: opacity 0.15s;
}
.lp-type-link:hover { opacity: 0.6; }

/* ── FAQ ── */
.lp-accordion { border-top: 1px solid #e5e7eb; }
.lp-faq-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}
.lp-faq-btn {
    font-size: 14px;
    font-weight: 500;
    color: #0a0a0a;
    background: transparent;
    padding: 18px 0;
    box-shadow: none !important;
}
.lp-faq-btn:not(.collapsed) { color: #0a0a0a; background: transparent; }
.lp-faq-btn::after { filter: grayscale(1); }
.lp-faq-body {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    padding: 0 0 18px;
}

/* ── CTA ── */
.lp-cta {
    padding: 100px 0;
    border-top: 1px solid #f0f0f0;
}
.lp-cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.lp-cta-sub {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .lp-hero-actions { justify-content: center; }
}