/* ==============================================
   Landing Page — Paid Ads (/lp-pest-control)
   ============================================== */

/* ---- Stripped Header ---- */
.lp-header {
    background: var(--color-charcoal);
    border-bottom: 1px solid rgba(234, 245, 241, 0.08);
    height: 96px;
    display: flex;
    align-items: center;
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-header__logo img {
    display: block;
    height: 72px;
    width: auto;
}

.lp-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-white);
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

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

.lp-header__phone:hover {
    color: var(--color-red);
}


/* Override global #main offset — lp-header is static, not fixed */
.page-lp-pest-control #main,
.page-lp-social #main,
.page-lp-maryland #main {
    padding-top: 0;
}

/* ---- Hero ---- */
.lp-hero {
    position: relative;
    padding: 72px 0 80px;
    background: var(--color-charcoal);
}

.lp-hero__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.lp-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.lp-hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12, 35, 46, 0.88) 0%,
        rgba(12, 35, 46, 0.75) 50%,
        rgba(12, 35, 46, 0.55) 100%
    );
}

.lp-hero .container {
    position: relative;
    z-index: 1;
}

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

.lp-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 16px;
}

.lp-hero__content h1 {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.lp-hero__sub {
    font-size: 1.05rem;
    color: var(--color-white-dim);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 520px;
}

.lp-hero__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.lp-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-white);
}

.lp-hero__bullets li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--color-red);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23eaf5f1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.lp-hero__review {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-red);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
}

.lp-hero__stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lp-hero__review p {
    font-size: 0.95rem;
    color: var(--color-white-dim);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.lp-hero__review span {
    font-size: 0.8rem;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-white-muted);
}


/* ---- Form Card ---- */
.lp-hero__content {
    position: sticky;
    top: 96px;
}

.lp-hero__form-wrap {
    position: sticky;
    top: 96px;
}

.lp-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(234, 245, 241, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lp-form-card__header {
    padding: 28px 28px 0;
}

.lp-form-card__header h2,
.lp-form-card__header h3 {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 6px;
}

.lp-form-card__header p {
    font-size: 0.9rem;
    color: var(--color-white-dim);
    margin-bottom: 16px;
}

.lp-form-card__body {
    height: 1000px;
}

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


/* ---- Trust Bar ---- */
.lp-trust {
    background: rgba(0, 83, 139, 0.15);
    border-top: 1px solid rgba(0, 83, 139, 0.3);
    border-bottom: 1px solid rgba(0, 83, 139, 0.3);
    padding: 28px 0;
}

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

.lp-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-trust__item svg {
    color: var(--color-sky-blue);
    flex-shrink: 0;
}

.lp-trust__item strong {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
}

.lp-trust__item span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-white-dim);
}


/* ---- Problem / Solution ---- */
.lp-pas {
    padding: 80px 0;
    background: #ffffff;
}

.lp-pas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.lp-pas__label {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
}

.lp-pas__block--solution .lp-pas__label {
    color: var(--color-red);
}

.lp-pas__block h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--color-charcoal);
    line-height: 1.2;
    margin-bottom: 18px;
}

.lp-pas__block p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 14px;
}

.lp-pas__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.lp-pas__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--color-charcoal);
}

.lp-pas__list li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--color-red);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5l2 2L8 1' stroke='%23eaf5f1' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}


/* ---- Services Grid ---- */
.lp-services {
    padding: 80px 0;
    background: #f4f7f9;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.lp-services__header {
    text-align: center;
    margin-bottom: 48px;
}

.lp-services__eyebrow {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 12px;
}

.lp-services__header h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-charcoal);
}

.lp-services__header p {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 12px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

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

.lp-service-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-service-item__icon {
    font-size: 1.8rem;
}

.lp-service-item strong {
    font-family: var(--font-headline);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.lp-service-item span {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Service cards (linked version for social LP) */
.lp-service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(234, 245, 241, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.lp-service-card:hover {
    border-color: var(--color-red);
    background: rgba(232, 98, 10, 0.06);
}

.lp-service-card__icon {
    font-size: 1.8rem;
}

.lp-service-card strong {
    font-family: var(--font-headline);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
}

.lp-service-card span {
    font-size: 0.85rem;
    color: var(--color-white-dim);
    line-height: 1.5;
}


/* ---- Testimonials ---- */
.lp-testimonials {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.lp-testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.lp-testimonials__eyebrow {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 12px;
}

.lp-testimonials__header h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-charcoal);
}

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

.lp-review {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-review__stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.lp-review p {
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
    line-height: 1.65;
    flex: 1;
}

.lp-review__attr {
    font-size: 0.8rem;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}


/* ---- Bottom CTA ---- */
.lp-bottom-cta {
    padding: 80px 0;
    background: var(--color-brd-blue);
    text-align: center;
}

.lp-bottom-cta h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.lp-bottom-cta p {
    font-size: 1rem;
    color: var(--color-white-dim);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.lp-bottom-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ---- Steps (social LP) ---- */
.lp-steps {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(234, 245, 241, 0.06);
}

.lp-steps__header {
    text-align: center;
    margin-bottom: 48px;
}

.lp-steps__eyebrow {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 12px;
}

.lp-steps__header h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-white);
}

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

.lp-step {
    text-align: center;
}

.lp-step__num {
    width: 52px;
    height: 52px;
    background: var(--color-red);
    border-radius: 50%;
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lp-step h3 {
    font-family: var(--font-headline);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.lp-step p {
    font-size: 0.9rem;
    color: var(--color-white-dim);
    line-height: 1.65;
}


/* ---- Form Section (social LP) ---- */
.lp-form-section {
    padding: 80px 0;
    background: var(--color-charcoal);
    border-top: 1px solid rgba(234, 245, 241, 0.06);
}

.lp-form-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.lp-form-section__eyebrow {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 12px;
}

.lp-form-section__content h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.lp-form-section__content > p {
    font-size: 1rem;
    color: var(--color-white-dim);
    line-height: 1.65;
    margin-bottom: 24px;
}

.lp-form-section__trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.lp-form-section__trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--color-white);
}

.lp-form-section__trust li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--color-red);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5l2 2L8 1' stroke='%23eaf5f1' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.lp-form-section__phone {
    font-size: 0.92rem;
    color: var(--color-white-dim);
}

.lp-form-section__phone a {
    color: var(--color-sky-blue);
    font-weight: 700;
}


/* ---- Stripped Footer ---- */
.lp-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(234, 245, 241, 0.08);
    padding: 24px 0;
}

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

.lp-footer__copy {
    font-size: 0.82rem;
    color: var(--color-white-muted);
}

.lp-footer__links {
    display: flex;
    gap: 20px;
}

.lp-footer__links a {
    font-size: 0.82rem;
    color: var(--color-white-muted);
    transition: color var(--transition-fast);
}

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


/* ---- Social LP Hero ---- */
.lp-social-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.lp-social-hero__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-social-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.lp-social-hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12, 35, 46, 0.92) 0%,
        rgba(12, 35, 46, 0.7) 55%,
        rgba(12, 35, 46, 0.3) 100%
    );
}

.lp-social-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.lp-social-hero__content {
    max-width: 600px;
}

.lp-social-hero__pull-quote {
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--color-red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin-bottom: 28px;
    max-width: 440px;
}

.lp-social-hero__stars {
    color: #f5a623;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.lp-social-hero__pull-quote p {
    font-size: 0.92rem;
    color: var(--color-white-dim);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
}

.lp-social-hero__pull-quote span {
    font-size: 0.76rem;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-white-muted);
}

.lp-social-hero__content h1 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.lp-social-hero__sub {
    font-size: 1.05rem;
    color: var(--color-white-dim);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px;
}

.lp-social-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Social LP testimonials variant */
.lp-testimonials--social {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(234, 245, 241, 0.06);
}


/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1023px) {
    .lp-hero__grid,
    .lp-pas__grid,
    .lp-form-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero__form-wrap {
        position: static;
    }

    .lp-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-services__grid,
    .lp-testimonials__grid,
    .lp-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .lp-hero {
        padding: 40px 0 48px;
    }

    .lp-pas,
    .lp-services,
    .lp-testimonials,
    .lp-steps,
    .lp-form-section,
    .lp-bottom-cta {
        padding: 56px 0;
    }

    .lp-trust__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

    .lp-steps__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .lp-social-hero {
        min-height: auto;
    }
}
