/*
   ChiroCare — PPC Landing Page Styles (landing.css)
   Conversion-focused components for Google Ads landing templates.
   Reuses the theme palette: purple #b65cf1, green #8cc63f, slate #2d3748,
   light-purple #f5eaff, gray #f8fafc, border #e2e8f0, body #4a5568, muted #718096.
   All classes are namespaced `.lp-` so they never collide with the main theme.
*/

/* ===== SECTION SCAFFOLD ===== */
.lp-section { padding: 70px 0; }
.lp-section.alt { background: #f8fafc; }
.lp-section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.lp-section-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #2d3748;
}
.lp-section-head p { color: #4a5568; margin-top: 14px; font-size: 1.05rem; }
.lp-section-head .brand-divider { margin-top: 18px; }

/* ===== HERO ===== */
.lp-hero {
    position: relative;
    background-color: #f5eaff;
    overflow: hidden;
    padding: 60px 0 70px;
}
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 234, 255, 0.86), rgba(255, 255, 255, 0.92)),
        var(--lp-hero-img, url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=70'));
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}
.lp-hero .container { position: relative; z-index: 1; }
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b65cf1;
    margin-bottom: 14px;
}
.lp-eyebrow svg { width: 16px; height: 16px; }

.lp-h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: #2d3748;
    margin-bottom: 16px;
}
.lp-h1 span { color: #b65cf1; }

.lp-subhead {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 24px;
    max-width: 540px;
}

.lp-trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d3748;
}
.lp-chip svg { width: 15px; height: 15px; color: #8cc63f; flex-shrink: 0; }
.lp-chip .stars { color: #f5a623; letter-spacing: 1px; }

.lp-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== BUTTONS (large tap targets) ===== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.lp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.lp-btn-call { background: #8cc63f; color: #ffffff; border-color: #8cc63f; }
.lp-btn-call:hover { background: #7ab332; color: #ffffff; }
.lp-btn-primary { background: #b65cf1; color: #ffffff; border-color: #b65cf1; }
.lp-btn-primary:hover { background: transparent; color: #b65cf1; }
.lp-btn-ghost { background: transparent; color: #2d3748; border-color: #2d3748; }
.lp-btn-ghost:hover { background: #2d3748; color: #ffffff; }
.lp-btn-block { width: 100%; }

/* ===== LEAD FORM CARD ===== */
.lp-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 5px solid #b65cf1;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(45, 55, 72, 0.12);
    padding: 32px;
}
.lp-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.lp-form-sub { font-size: 0.95rem; color: #718096; margin-bottom: 20px; }
.lp-form label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2d3748;
    margin-bottom: 6px;
}
.lp-form input,
.lp-form select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2d3748;
    background: #ffffff;
}
.lp-form input:focus,
.lp-form select:focus {
    outline: none;
    border-color: #b65cf1;
    box-shadow: 0 0 0 3px rgba(182, 92, 241, 0.12);
}
.lp-submit { margin-top: 4px; }
.lp-form-note {
    font-size: 0.78rem;
    color: #718096;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}
.lp-form-note svg { width: 13px; height: 13px; vertical-align: -2px; color: #8cc63f; }

/* ===== TRUST BAR ===== */
.lp-trustbar { background: #2d3748; }
.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 26px 0;
}
.lp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    color: #ffffff;
}
.lp-trust-item svg { width: 26px; height: 26px; color: #8cc63f; margin-bottom: 2px; }
.lp-trust-item strong { font-family: 'Outfit', sans-serif; font-size: 1.05rem; }
.lp-trust-item span { font-size: 0.76rem; color: #cbd5e0; letter-spacing: 0.4px; }

/* ===== OFFER BAND ===== */
.lp-offer {
    background: linear-gradient(120deg, #b65cf1, #9333d6);
    color: #ffffff;
    text-align: center;
    padding: 48px 24px;
}
.lp-offer-tag {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #e9d5ff;
    margin-bottom: 10px;
}
.lp-offer h2 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lp-offer p { max-width: 640px; margin: 0 auto 22px; color: #f3e8ff; }
.lp-offer .lp-btn-primary { background: #8cc63f; border-color: #8cc63f; }
.lp-offer .lp-btn-primary:hover { background: #ffffff; color: #2d3748; border-color: #ffffff; }
.lp-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: #e9d5ff;
}
.lp-urgency svg { width: 16px; height: 16px; }

/* ===== BENEFITS ===== */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.lp-benefit {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 34px 28px;
    text-align: center;
    transition: all 0.2s ease;
}
.lp-benefit:hover {
    border-color: #b65cf1;
    box-shadow: 0 15px 40px rgba(182, 92, 241, 0.1);
    transform: translateY(-4px);
}
.lp-ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f5eaff;
    color: #8cc63f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.lp-ico svg { width: 30px; height: 30px; }
.lp-benefit h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #2d3748;
}
.lp-benefit p { font-size: 0.95rem; color: #4a5568; }

/* ===== CHECKLIST ===== */
.lp-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    max-width: 840px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.lp-checklist li {
    padding: 13px 0 13px 30px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1.02rem;
    position: relative;
}
.lp-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #8cc63f;
    font-weight: 700;
}

/* ===== STEPS ===== */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 34px 28px;
    text-align: center;
}
.lp-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #b65cf1;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.lp-step h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; margin-bottom: 10px; color: #2d3748; }
.lp-step p { font-size: 0.92rem; color: #4a5568; }

/* ===== QUOTE / TESTIMONIAL HIGHLIGHT ===== */
.lp-quote {
    background: #f5eaff;
    border-left: 4px solid #b65cf1;
    padding: 34px 38px;
    max-width: 820px;
    margin: 0 auto;
    border-radius: 0 8px 8px 0;
}
.lp-quote .stars { color: #f5a623; letter-spacing: 2px; display: block; margin-bottom: 12px; font-size: 1.1rem; }
.lp-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 14px;
}
.lp-quote-author {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #8cc63f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===== FAQ (native <details>) ===== */
.lp-faq { max-width: 820px; margin: 0 auto; }
.lp-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #ffffff;
    overflow: hidden;
}
.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: "+"; font-size: 1.6rem; color: #b65cf1; font-weight: 400; line-height: 1; flex-shrink: 0; }
.lp-faq-item[open] summary::after { content: "\2013"; }
.lp-faq-item[open] summary { color: #b65cf1; }
.lp-faq-answer { padding: 0 26px 22px; color: #4a5568; font-size: 1rem; line-height: 1.8; }

/* ===== FINAL CTA ===== */
.lp-final { background: #2d3748; text-align: center; padding: 72px 24px; }
.lp-final h2 { color: #ffffff; font-family: 'Outfit', sans-serif; font-size: 2rem; text-transform: uppercase; margin-bottom: 10px; }
.lp-final p { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #b65cf1; margin-bottom: 28px; }
.lp-final .lp-cta-row { justify-content: center; }
.lp-final .lp-btn-ghost { color: #ffffff; border-color: #ffffff; }
.lp-final .lp-btn-ghost:hover { background: #ffffff; color: #2d3748; }
.lp-fineprint { color: #718096; margin-top: 20px; font-size: 0.88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .lp-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
    .lp-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lp-section { padding: 50px 0; }
    .lp-hero { padding: 40px 0 50px; }
    .lp-h1 { font-size: 1.9rem; }
    .lp-subhead { font-size: 1.05rem; }
    .lp-cta-row { flex-direction: column; }
    .lp-cta-row .lp-btn { width: 100%; }
    .lp-checklist { grid-template-columns: 1fr; }
    .lp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-form-card { padding: 24px; }
    .lp-offer h2, .lp-final h2, .lp-section-head h2 { font-size: 1.6rem; }
}

/* ===== GOOGLE REVIEWS WALL ===== */
.lp-google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}
.lp-google-badge .g-logo { width: 42px; height: 42px; flex-shrink: 0; }
.lp-google-badge .g-rating { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.lp-google-badge .g-score {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-google-badge .g-score .stars { color: #f5a623; letter-spacing: 2px; font-size: 1.3rem; }
.lp-google-badge .g-count { font-size: 0.85rem; color: #718096; }

.lp-featured-review {
    max-width: 860px;
    margin: 0 auto 46px;
    background: #f5eaff;
    border: 1px solid #e9d5ff;
    border-radius: 14px;
    padding: 40px 46px;
    text-align: center;
}
.lp-featured-review .stars { color: #f5a623; letter-spacing: 3px; font-size: 1.3rem; display: block; margin-bottom: 16px; }
.lp-featured-review p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 18px;
}
.lp-review-author {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8cc63f;
    font-size: 0.95rem;
}

.lp-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}
.lp-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}
.lp-review-card:hover { box-shadow: 0 15px 40px rgba(45, 55, 72, 0.08); transform: translateY(-3px); }
.lp-review-card .stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.lp-review-card p { color: #4a5568; font-size: 0.98rem; line-height: 1.7; margin-bottom: 22px; flex-grow: 1; }
.lp-review-meta { display: flex; align-items: center; gap: 12px; }
.lp-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #b65cf1;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-review-name { font-family: 'Outfit', sans-serif; font-weight: 600; color: #2d3748; font-size: 0.95rem; display: block; line-height: 1.3; }
.lp-review-src { font-size: 0.76rem; color: #718096; display: flex; align-items: center; gap: 5px; }
.lp-review-src svg { width: 13px; height: 13px; }
.lp-reviews-cta { text-align: center; margin-top: 44px; }
.lp-reviews-cta .lp-btn { display: inline-flex; }

/* ===== AWARDS / AUTHORITY ===== */
.lp-awards { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.lp-award {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5eaff;
    border: 1px solid #e9d5ff;
    border-radius: 50px;
    padding: 8px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7c3aed;
}
.lp-award svg { width: 15px; height: 15px; color: #8cc63f; flex-shrink: 0; }

@media (max-width: 768px) {
    .lp-featured-review { padding: 30px 24px; }
    .lp-featured-review p { font-size: 1.2rem; }
    .lp-google-badge { gap: 12px; }
}

/* ===== DOCTOR BYLINE (hero) ===== */
.lp-doc-byline { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.lp-doc-byline img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 14px rgba(45, 55, 72, 0.18);
    flex-shrink: 0;
}
.lp-doc-name { font-family: 'Outfit', sans-serif; font-weight: 700; color: #2d3748; font-size: 1rem; line-height: 1.25; }
.lp-doc-sub { font-size: 0.85rem; color: #718096; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.lp-doc-sub .stars { color: #f5a623; letter-spacing: 1px; }

/* ===== AFFORDABILITY SPLASH ===== */
.lp-afford { background: #8cc63f; color: #ffffff; padding: 16px 24px; }
.lp-afford-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center; }
.lp-afford svg { width: 24px; height: 24px; flex-shrink: 0; }
.lp-afford strong { font-family: 'Outfit', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 1.02rem; }
.lp-afford span { font-size: 0.92rem; opacity: 0.95; }
@media (max-width: 600px) { .lp-afford strong { width: 100%; } }
