/* ============================================
   Modern Blinds — Landing Page Stylesheet
   ============================================
   Loaded by base_lp.html (paid ad landing pages).
   Tokens, reset, and .container live in tokens-primitive.css
   (loaded first, declares @layer order).
   Naming: .lp-* and .lp-ba-* prefixes.
   Optimized for LCP — keep this file lean.

   Cascade: all content here lives in @layer pages. Layer order
   (declared in tokens-primitive.css):
     @layer tokens, base, components, pages, overrides;
   @layer pages beats @layer base/components, so page rules win
   purely via layer precedence — no importance hacks needed.
   ============================================ */

@layer pages {
/* LP Header - minimal sticky */
.lp-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lp-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.lp-header .logo-text .logo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

/* LP Phone CTA button */
.lp-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}

.lp-phone-cta:hover {
    background: var(--color-brand-accent-dark);
    transform: translateY(-1px);
}

/* LP Footer - minimal dark */
.lp-footer {
    background: var(--primary-dark);
    color: var(--gray-500);
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
}

.lp-footer a {
    color: var(--gray-300);
    text-decoration: underline;
    margin-left: 8px;
}

.lp-footer a:hover {
    color: var(--accent);
}

.lp-footer-business {
    color: var(--gray-400);
    margin-bottom: 4px;
    font-size: 12px;
}

.lp-footer-business a {
    margin-left: 0;
}

/* LP Hero Section */
.lp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0 70px;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.lp-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.lp-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(255 255 255 / 0.85);
    margin-bottom: 24px;
}

.lp-hero-badges {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-hero-badges li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

/* LP Hero (Meta variant) - centered, full-width */
.lp-hero-meta {
    text-align: center;
    padding: 80px 0 90px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a365d 50%, var(--primary) 100%);
}

.lp-hero-center {
    max-width: 700px;
    margin: 0 auto;
}

.lp-hero-center h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.lp-hero-cta-btn {
    margin-top: 24px;
    font-size: 18px;
    padding: 16px 36px;
}

/* LP Form Card */
.lp-form-card {
    background: var(--white);
    color: var(--gray-700);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.18);
    border-top: 4px solid var(--accent);
}

.lp-form-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.lp-form-card-centered {
    max-width: 560px;
    margin: 0 auto;
}

/* LP Form elements */
.lp-form .form-group {
    margin-bottom: 14px;
}

.lp-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgb(217 119 6 / 0.15);
}

.lp-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 8px;
    cursor: pointer;
}

.lp-consent-group {
    margin-top: 12px;
}

.lp-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    cursor: pointer;
}

.lp-consent-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.lp-consent-label a {
    color: var(--accent);
    text-decoration: underline;
}

.lp-form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 10px;
}

.lp-form-privacy i {
    margin-right: 4px;
}

.lp-form-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 16px;
    margin-top: -12px;
}

/* LP Form Section (standalone, for Meta mid/bottom forms) */
.lp-form-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.lp-form-section-dark {
    background: var(--primary-dark);
}

.lp-form-section-dark .lp-form-card {
    box-shadow: 0 8px 40px rgb(0 0 0 / 0.3);
}

/* LP Trust Bar */
.lp-trust-bar {
    background: var(--gray-100);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.lp-trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.lp-trust-item i {
    color: var(--accent);
    font-size: 18px;
}

/* LP Benefits Section */
.lp-benefits {
    padding: 70px 0;
    background: var(--white);
}

.lp-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

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

.lp-benefit-card {
    text-align: center;
    padding: 30px 24px;
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lp-benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--accent);
}

.lp-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.lp-benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
}

/* LP Gallery Strip */
.lp-gallery-strip {
    padding: 60px 0;
    background: var(--gray-100);
}

.lp-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lp-gallery-row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s;
}

.lp-gallery-row img:hover {
    transform: scale(1.03);
}

/* LP Bottom CTA */
.lp-bottom-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.lp-bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 10px;
}

.lp-bottom-cta p {
    font-size: 16px;
    color: rgb(255 255 255 / 0.8);
    margin-bottom: 20px;
}

.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 17px;
}

/* LP Hero Photo Background — Blinds Austin */
.lp-hero.lp-hero-blinds-austin {
    background: linear-gradient(135deg, rgb(20 40 30 / 0.45) 0%, rgb(10 25 20 / 0.55) 100%),
                url('/static/images/Product/Motorized/motorized-shades-1600.jpg');
    background-size: cover;
    background-position: center;
}

.lp-hero-brand {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgb(255 255 255 / 0.7);
    margin-bottom: 8px;
}

.lp-hero-local {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

/* LP CTA button override — high-contrast orange for conversion */
.lp-form .lp-submit-btn,
.lp-form .btn-primary {
    background: var(--color-brand-accent-strong);
    border-color: var(--color-brand-accent-strong);
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lp-form .lp-submit-btn:hover,
.lp-form .btn-primary:hover {
    background: var(--color-brand-accent-deep);
    border-color: var(--color-brand-accent-deep);
}

/* LP Reviews Section */
.lp-reviews {
    padding: 60px 0;
    background: var(--gray-50);
}

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

.lp-review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
}

.lp-review-stars {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.lp-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 16px;
}

.lp-review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.lp-reviews-source {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray-500);
}

.lp-reviews-source i {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    color: #4285f4;
    margin-right: 6px;
}

/* LP Gallery Item with Label */
.lp-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.lp-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lp-gallery-item:hover img {
    transform: scale(1.05);
}

.lp-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgb(0 0 0 / 0.7));
    color: var(--white);
    padding: 24px 12px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* LP Local Business Section */
.lp-local {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.lp-local-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lp-local-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.lp-local-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 12px;
}

/* LP Bottom CTA Buttons */
.lp-bottom-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-cta-btn-outline {
    background: transparent;
    border: 2px solid rgb(255 255 255 / 0.8);
    color: var(--white);
}

.lp-cta-btn-outline:hover {
    background: rgb(255 255 255 / 0.15);
}

/* LP Responsive — Mobile */
@media (max-width: 768px) {
    /* Mobile header: hide logo, full-width phone CTA */
    .lp-header .logo {
        display: none;
    }

    .lp-header .container {
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .lp-phone-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 0;
        gap: 8px;
        background: var(--color-brand-accent-strong);
    }

    .lp-phone-cta:hover {
        background: var(--color-brand-accent-deep);
    }

    .lp-header {
        box-shadow: none;
    }

    /* Hero mobile */
    .lp-hero-local {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .lp-hero-text h1 {
        font-size: 26px;
    }

    .lp-hero-sub {
        font-size: 15px;
    }

    .lp-hero-badges li {
        font-size: 13px;
    }

    /* Reviews, gallery, CTA */
    .lp-reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-gallery-row {
        grid-template-columns: 1fr 1fr;
    }

    .lp-bottom-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lp-local-content h2 {
        font-size: 22px;
    }
}

/* LP Agitation Section (Meta) */
.lp-agitation {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}

.lp-agitation h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 16px;
}

.lp-agitation p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* LP Testimonials */
.lp-testimonials {
    padding: 70px 0;
    background: var(--white);
}

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

.lp-testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 3px solid var(--accent);
}

.lp-testimonial-stars {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 14px;
}

.lp-testimonial-stars i {
    margin-right: 2px;
}

.lp-testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 12px;
}

.lp-testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--color-brand-accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}


/* ============================================
   LP GOOGLE — BLINDS/MOTORIZED (shared)
   (migrated from template inline \3c style>)
   ============================================ */

/* ============================================
   LP Blinds Austin — Redesigned
   Clean, bright, luxury conversion-focused
   ============================================ */

/* Hide base header + remove top margin */
header.lp-header { display: none; }

footer.lp-footer {
    background: var(--gray-800);
    color: rgb(255 255 255 / 0.6);
    border-top: none;
}
footer.lp-footer a { color: rgb(255 255 255 / 0.5); }
footer.lp-footer a:hover { color: var(--color-white); }

/* Override base LP hero + remove top gap */
.lp-blinds-austin .lp-hero,
.lp-blinds-austin.lp-hero {
    background: none;
    padding: 0;
}
main { margin-top: 0; padding-top: 0; }
.mobile-call-bar { display: none; }

/* === Mobile Phone Bar === */
.lp-phone-bar {
    display: none;
    background: var(--gray-800);
    text-align: center;
}

.lp-phone-bar a {
    display: block;
    color: var(--color-white);
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.lp-phone-bar a i { margin-right: 8px; }

/* === Hero: side-by-side photo + form === */
.lp-ba-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 520px;
}

.lp-ba-hero-visual {
    position: relative;
    overflow: hidden;
}

.lp-ba-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-ba-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 28px 24px;
    background: linear-gradient(transparent 0%, rgb(0 0 0 / 0.65) 100%);
    color: var(--color-white);
}

.lp-ba-hero-overlay h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.lp-ba-hero-overlay p {
    font-size: 15px;
    color: rgb(255 255 255 / 0.85);
}

.lp-ba-hero-overlay .lp-ba-brand {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgb(255 255 255 / 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Form panel */
.lp-ba-form-panel {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    background: #f8f6f3;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Prevent overflow on narrow viewports — form panel sits in a 420px
       grid column on desktop but must not exceed container on mobile. */
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.lp-ba-form-panel .lp-form,
.lp-ba-form-panel input,
.lp-ba-form-panel select,
.lp-ba-form-panel button {
    max-width: 100%;
    box-sizing: border-box;
}

.lp-ba-form-panel h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gray-800);
    margin-bottom: 4px;
    text-align: center;
}

.lp-ba-form-panel .lp-ba-form-sub {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 20px;
}

.lp-ba-form-panel .lp-form .lp-submit-btn {
    background: var(--color-brand-accent-deep);
    border: none;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 6px;
    width: 100%;
}

.lp-ba-form-panel .lp-form .lp-submit-btn:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    background: #9a3412;
}

.lp-ba-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 11px 20px;
    background: var(--gray-800);
    color: var(--color-white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
}
/* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
.lp-ba-phone-btn:hover { background: #444444; }
.lp-ba-phone-btn i { font-size: 13px; }

.lp-ba-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.lp-ba-badge {
    font-size: 12px;
    color: var(--gray-700);
    background: var(--color-white);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    border: 1px solid #e5e2dd;
    border-radius: 20px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.lp-ba-badge i { color: var(--color-brand-accent-deep); font-size: 11px; }

/* === Stats Bar === */
.lp-ba-stats {
    background: var(--gray-800);
    color: var(--color-white);
    padding: 16px 0;
}

.lp-ba-stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.lp-ba-stat {
    text-align: center;
}

.lp-ba-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    color: #e8734a;
}

.lp-ba-stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(255 255 255 / 0.7);
}

/* === Reviews === */
.lp-ba-reviews {
    padding: 48px 0;
    background: var(--color-white);
}

.lp-ba-reviews h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.lp-ba-reviews-sub {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
}
/* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
.lp-ba-reviews-sub i { color: #4285f4; }

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

.lp-ba-review {
    background: var(--gray-50);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 24px;
}

.lp-ba-review-stars {
    color: var(--color-brand-accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lp-ba-review q {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    color: #444444;
    margin-bottom: 12px;
    font-style: italic;
}

.lp-ba-review cite {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    font-style: normal;
}

/* === Gallery === */
.lp-ba-gallery {
    padding: 48px 0;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    background: #f5f3ef;
}

.lp-ba-gallery h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 28px;
}

.lp-ba-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lp-ba-gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.lp-ba-gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.lp-ba-gallery-card:hover img { transform: scale(1.05); }

.lp-ba-gallery-card span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 10px 8px;
    background: linear-gradient(transparent, rgb(0 0 0 / 0.6));
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* === Local Section === */
.lp-ba-local {
    padding: 40px 0;
    background: var(--color-white);
    text-align: center;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
    border-top: 1px solid #eeeeee;
}

.lp-ba-local h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.lp-ba-local p {
    font-size: 15px;
    color: var(--gray-650);
    max-width: 600px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

/* === Bottom CTA === */
.lp-ba-cta {
    background: var(--gray-800);
    color: var(--color-white);
    text-align: center;
    padding: 44px 0;
}

.lp-ba-cta h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.lp-ba-cta p {
    color: rgb(255 255 255 / 0.7);
    margin-bottom: 20px;
}

.lp-ba-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-ba-cta-btns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
}

.lp-ba-btn-call {
    background: var(--color-brand-accent-deep);
    color: var(--color-white);
}
/* stylelint-disable-next-line scale-unlimited/declaration-strict-value */
.lp-ba-btn-call:hover { background: #9a3412; }

.lp-ba-btn-form {
    background: transparent;
    border: 2px solid rgb(255 255 255 / 0.5);
    color: var(--color-white);
}
.lp-ba-btn-form:hover { background: rgb(255 255 255 / 0.1); }

/* === MOBILE === */
@media (max-width: 768px) {
    .lp-phone-bar { display: block; }

    .lp-ba-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .lp-ba-hero-visual { max-height: 280px; }
    .lp-ba-hero-overlay h1 { font-size: 24px; }
    .lp-ba-form-panel { padding: 28px 20px; }
    .lp-ba-stats-grid { gap: 24px; }
    .lp-ba-stat strong { font-size: 20px; }
    .lp-ba-reviews-grid { grid-template-columns: 1fr; gap: 14px; }
    .lp-ba-gallery-grid { grid-template-columns: 1fr 1fr; }
    .lp-ba-cta-btns { flex-direction: column; align-items: center; }
    .lp-ba-cta-btns a { width: 80%; justify-content: center; }
}


/* ============================================
   LP FAQ + Form Success — restored from origin style.css
   (erroneously deleted in Phase 1 dead-block prune)
   ============================================ */
.lp-faq {
    padding: 70px 0;
    background: var(--gray-100);
}

/* LP Form Success — main.js injects .form-success div on submit */
.lp-form .form-success {
    text-align: center;
    padding: 30px 20px;
}

.lp-form .form-success i {
    font-size: 48px;
    color: var(--color-state-success);
    margin-bottom: 12px;
}

.lp-form .form-success h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
}

.lp-form .form-success p {
    font-size: 15px;
    color: var(--gray-700);
}

} /* end @layer pages */
