/* ===========================================
   Webster Electrical Landing Pages - Shared CSS v2
   Prefix: .we-lp- (unique to LPs)
   Font: Satoshi (loaded via <link> in HTML head)
   =========================================== */

/* ---- Base ---- */
* { box-sizing: border-box; }

.we-lp-body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #303231;
    line-height: 1.6;
    background: #ffffff;
}

.we-lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Nav bar ---- */
.we-lp-nav {
    background: #303231;
    width: 100%;
    position: relative;
    top: 0;
    z-index: 100;
    padding: 18px 24px;
    border-bottom: 3px solid #e8a020;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.we-lp-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.we-lp-nav__logo {
    display: inline-block;
    text-decoration: none;
}

.we-lp-nav__logo img {
    height: 96px;
    width: auto;
    display: block;
}

.we-lp-nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8a020;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: background 0.2s ease;
}

.we-lp-nav__phone:hover {
    background: #d18f15;
    color: #ffffff;
}

.we-lp-nav__phone-icon {
    font-size: 1.1rem;
}

/* Mobile - nav sticks on scroll */
@media (max-width: 767px) {
    .we-lp-nav {
        position: fixed;
        padding: 10px 16px;
    }

    .we-lp-nav__logo img {
        height: 64px;
    }

    .we-lp-nav__phone {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .we-lp-nav__phone-text-full {
        display: none;
    }

    .we-lp-hero {
        padding-top: 110px;
    }
}

/* ---- Hero with background image ---- */
.we-lp-hero {
    position: relative;
    padding: 96px 24px;
    color: #ffffff;
    overflow: hidden;
    background-color: #1f2120;
    background-image: linear-gradient(135deg, rgba(31, 33, 32, 0.88) 0%, rgba(48, 50, 49, 0.78) 100%), url('/images/webster-home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.we-lp-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.we-lp-hero__content {
    color: #ffffff;
}

.we-lp-hero__h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.we-lp-hero__sub {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 28px 0;
    color: rgba(255, 255, 255, 0.92);
    max-width: 540px;
}

.we-lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.we-lp-hero__phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8a020;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.we-lp-hero__phone-cta:hover {
    background: #d18f15;
    color: #ffffff;
}

.we-lp-hero__phone-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.we-lp-hero__reviews {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.we-lp-hero__google {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 12px 6px 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.we-lp-hero__google:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.we-lp-hero__google-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.we-lp-hero__google-label {
    line-height: 1;
}

/* ---- Form card (hero side) ---- */
.we-lp-form-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    color: #303231;
}

.we-lp-form-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #303231;
}

.we-lp-form-card__sub {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.we-lp-form__group {
    margin-bottom: 14px;
}

.we-lp-form__input,
.we-lp-form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #303231;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.we-lp-form__input::placeholder,
.we-lp-form__textarea::placeholder {
    color: #888;
    opacity: 1;
}

.we-lp-form__input:focus,
.we-lp-form__textarea:focus {
    outline: none;
    border-color: #e8a020;
}

.we-lp-form__textarea {
    resize: none;
    min-height: 150px;
}

/* Honeypot - hidden from real users */
.we-lp-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.we-lp-form__submit {
    width: 100%;
    background: #e8a020;
    color: #ffffff;
    border: none;
    padding: 15px 24px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.we-lp-form__submit:hover {
    background: #d18f15;
}

.we-lp-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.we-lp-form__privacy {
    font-size: 0.75rem;
    color: #888;
    margin-top: 12px;
    line-height: 1.5;
}

.we-lp-form__privacy a {
    color: #888;
    text-decoration: underline;
}

.we-lp-form__notice {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.we-lp-form__notice--error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.we-lp-form__error {
    color: #c33;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
}

/* ---- Trust strip - YELLOW with BLACK text ---- */
.we-lp-trust {
    background: #e8a020;
    padding: 36px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.we-lp-trust__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.we-lp-trust__item {
    text-align: center;
    color: #303231;
}

.we-lp-trust__icon {
    font-size: 1.9rem;
    color: #303231;
    margin-bottom: 10px;
    display: block;
}

.we-lp-trust__label {
    font-weight: 800;
    font-size: 1rem;
    margin: 0 0 4px 0;
    color: #303231;
}

.we-lp-trust__sub {
    font-size: 0.85rem;
    color: #303231;
    opacity: 0.85;
    margin: 0;
}

/* ---- Generic section ---- */
.we-lp-section {
    padding: 72px 24px;
}

.we-lp-section--white {
    background: #ffffff;
}

.we-lp-section--grey {
    background: #faf3f3;
}

.we-lp-section--dark {
    background: #303231;
    color: #ffffff;
}

/* Lighter dark - used for Services section to differentiate from Testimonials/Footer */
.we-lp-section--dark-light {
    background: #3d4040;
    color: #ffffff;
}

/* Cream - used for FAQ */
.we-lp-section--cream {
    background: #f5ede1;
}

/* Light yellow-tinted - used for Contact */
.we-lp-section--soft-gold {
    background: #fdf6e8;
}

.we-lp-section--dark .we-lp-section__title,
.we-lp-section--dark .we-lp-section__lead,
.we-lp-section--dark-light .we-lp-section__title,
.we-lp-section--dark-light .we-lp-section__lead {
    color: #ffffff;
}

.we-lp-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.we-lp-section__inner--narrow {
    max-width: 820px;
}

.we-lp-section__title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #303231;
    text-align: center;
}

.we-lp-section__title-rule {
    display: block;
    width: 64px;
    height: 3px;
    background: #e8a020;
    margin: 12px auto 24px auto;
}

.we-lp-section__lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.we-lp-section--dark .we-lp-section__lead,
.we-lp-section--dark-light .we-lp-section__lead {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Two-column content (legacy - kept for compatibility) ---- */
.we-lp-twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.we-lp-twocol__block {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.we-lp-section--grey .we-lp-twocol__block {
    background: #ffffff;
}

.we-lp-twocol__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #303231;
    display: flex;
    align-items: center;
    gap: 10px;
}

.we-lp-twocol__title i {
    color: #e8a020;
}

.we-lp-twocol__subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin: 20px 0 10px 0;
}

.we-lp-twocol__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.we-lp-twocol__list li {
    padding: 8px 0 8px 26px;
    position: relative;
    color: #444;
    font-size: 0.97rem;
    line-height: 1.5;
}

.we-lp-twocol__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e8a020;
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 0.9rem;
}

/* ---- Services grid - each service its own card with flair ---- */
.we-lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.we-lp-service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.we-lp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8a020 0%, #d18f15 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.we-lp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(232, 160, 32, 0.25);
    border-color: rgba(232, 160, 32, 0.4);
}

.we-lp-service-card:hover::before {
    transform: scaleX(1);
}

.we-lp-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8a020 0%, #d18f15 100%);
    color: #ffffff;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.35);
}

.we-lp-service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #303231;
    line-height: 1.3;
}

.we-lp-service-card__copy {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* ---- Coverage / Areas block (sits below the services grid) ---- */
.we-lp-coverage {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 160, 32, 0.25);
    border-radius: 12px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    align-items: center;
}

.we-lp-coverage__heading {
    color: #ffffff;
    text-align: left;
}

.we-lp-coverage__title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.we-lp-coverage__title i {
    color: #e8a020;
    font-size: 1.6rem;
}

.we-lp-coverage__sub {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.we-lp-coverage__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.we-lp-coverage__pill {
    background: rgba(232, 160, 32, 0.15);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(232, 160, 32, 0.3);
    white-space: nowrap;
}

/* ---- Gallery with lightbox ---- */
.we-lp-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.we-lp-gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #ddd;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.we-lp-gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.we-lp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.we-lp-gallery__item:hover img {
    transform: scale(1.05);
}

.we-lp-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.we-lp-gallery__item:hover .we-lp-gallery__overlay {
    opacity: 1;
}

.we-lp-gallery__zoom-icon {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Lightbox */
.we-lp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.we-lp-lightbox.is-open {
    display: flex;
}

.we-lp-lightbox__image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.we-lp-lightbox__close,
.we-lp-lightbox__prev,
.we-lp-lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s ease;
}

.we-lp-lightbox__close:hover,
.we-lp-lightbox__prev:hover,
.we-lp-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.we-lp-lightbox__close {
    top: 24px;
    right: 24px;
}

.we-lp-lightbox__prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.we-lp-lightbox__next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.we-lp-lightbox__caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    max-width: 80vw;
    text-align: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

/* ---- How it works ---- */
.we-lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

/* Desktop accent line connecting the steps */
@media (min-width: 992px) {
    .we-lp-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 16.66%;
        right: 16.66%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #e8a020 15%, #e8a020 85%, transparent 100%);
        z-index: 0;
    }
}

.we-lp-steps__item {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.we-lp-steps__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8a020 0%, #d18f15 100%);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(232, 160, 32, 0.35);
    border: 4px solid #faf3f3;
}

.we-lp-section--dark-light .we-lp-steps__num,
.we-lp-section--dark .we-lp-steps__num {
    border-color: #303231;
}

.we-lp-steps__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #303231;
}

.we-lp-section--dark .we-lp-steps__title,
.we-lp-section--dark-light .we-lp-steps__title {
    color: #ffffff;
}

.we-lp-steps__copy {
    font-size: 0.96rem;
    color: #555;
    margin: 0;
    line-height: 1.65;
}

.we-lp-section--dark .we-lp-steps__copy,
.we-lp-section--dark-light .we-lp-steps__copy {
    color: rgba(255, 255, 255, 0.78);
}

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

.we-lp-testimonial {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 28px;
}

.we-lp-section--grey .we-lp-testimonial,
.we-lp-section--cream .we-lp-testimonial,
.we-lp-section--soft-gold .we-lp-testimonial {
    background: #ffffff;
    border: 1px solid #eee;
}

.we-lp-section--white .we-lp-testimonial {
    background: #faf3f3;
    border: 1px solid #eee;
}

.we-lp-testimonial__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.we-lp-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
}

.we-lp-testimonial__google {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.we-lp-section--grey .we-lp-testimonial__google,
.we-lp-section--white .we-lp-testimonial__google,
.we-lp-section--cream .we-lp-testimonial__google,
.we-lp-section--soft-gold .we-lp-testimonial__google {
    color: #888;
}

.we-lp-testimonial__google-icon {
    width: 14px;
    height: 14px;
    display: block;
    flex-shrink: 0;
}

.we-lp-testimonial__star {
    color: #FBBC05;
    font-size: 1rem;
}

.we-lp-testimonial__quote {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #ffffff;
    margin: 0 0 16px 0;
    font-style: italic;
}

.we-lp-section--grey .we-lp-testimonial__quote,
.we-lp-section--white .we-lp-testimonial__quote,
.we-lp-section--cream .we-lp-testimonial__quote,
.we-lp-section--soft-gold .we-lp-testimonial__quote {
    color: #303231;
}

.we-lp-testimonial__author {
    font-weight: 700;
    color: #e8a020;
    font-size: 0.9rem;
}

/* ---- FAQ ---- */
.we-lp-faq {
    max-width: 820px;
    margin: 0 auto;
}

.we-lp-faq__item {
    background: #ffffff;
    border: 1px solid #eee;
    border-left: 4px solid #303231;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}

.we-lp-section--grey .we-lp-faq__item,
.we-lp-section--cream .we-lp-faq__item {
    background: #ffffff;
}

.we-lp-faq__item.is-open {
    border-left-color: #e8a020;
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.18);
}

.we-lp-faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    text-align: left;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 700;
    color: #303231;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease;
}

.we-lp-faq__question:hover {
    background: rgba(232, 160, 32, 0.08);
}

.we-lp-faq__item.is-open .we-lp-faq__question {
    background: rgba(232, 160, 32, 0.06);
    color: #303231;
}

.we-lp-faq__question:focus-visible {
    outline: 2px solid #e8a020;
    outline-offset: -2px;
    background: rgba(232, 160, 32, 0.08);
}

.we-lp-faq__icon {
    color: #e8a020;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.we-lp-faq__item.is-open .we-lp-faq__icon {
    transform: rotate(45deg);
}

.we-lp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
}

.we-lp-faq__item.is-open .we-lp-faq__answer {
    max-height: 400px;
    padding: 8px 22px 22px 22px;
    border-top: 1px solid rgba(232, 160, 32, 0.2);
    margin-top: 0;
}

.we-lp-faq__answer p {
    margin: 16px 0 0 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.96rem;
}

/* ---- Contact (second form instance) ---- */
.we-lp-contact {
    background: #ffffff;
    padding: 72px 24px;
}

.we-lp-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.we-lp-contact__left {
    padding: 16px 0;
}

.we-lp-contact__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #303231;
}

.we-lp-contact__lead {
    font-size: 1.05rem;
    color: #555;
    margin: 0 0 28px 0;
    line-height: 1.7;
}

.we-lp-contact__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #303231;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.we-lp-contact__phone:hover {
    background: #1f2120;
    color: #ffffff;
}

.we-lp-contact__hours {
    display: block;
    color: #666;
    font-size: 0.95rem;
    margin-top: 8px;
}

.we-lp-contact__expectation {
    margin-top: 24px;
    padding: 16px 18px;
    background: #faf3f3;
    border-left: 3px solid #e8a020;
    border-radius: 4px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Authority credentials strip inside contact section */
.we-lp-contact__authority {
    margin-top: 28px;
    padding: 22px 20px;
    background: #303231;
    border-radius: 6px;
    color: #ffffff;
}

.we-lp-contact__authority-heading {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.we-lp-contact__authority-heading i {
    color: #e8a020;
}

.we-lp-contact__authority-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
}

.we-lp-contact__authority-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.88rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
}

.we-lp-contact__authority-list li i {
    color: #e8a020;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.we-lp-contact__form .we-lp-form-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ---- Success page ---- */
.we-lp-success {
    padding: 96px 24px;
    text-align: center;
}

.we-lp-success__inner {
    max-width: 640px;
    margin: 0 auto;
}

.we-lp-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8a020;
    color: #ffffff;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.we-lp-success__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #303231;
}

.we-lp-success__copy {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

.we-lp-success__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #303231;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.we-lp-success__phone:hover {
    background: #1f2120;
    color: #ffffff;
}

.we-lp-success__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.we-lp-success__trust-item {
    font-size: 0.9rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.we-lp-success__trust-item i {
    color: #e8a020;
}

/* ---- Footer ---- */
.we-lp-footer {
    background: #303231;
    color: rgba(255, 255, 255, 0.7);
    padding: 36px 24px;
    text-align: center;
    font-size: 0.85rem;
}

.we-lp-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.we-lp-footer__logo {
    margin-bottom: 14px;
}

.we-lp-footer__logo img {
    height: 130px;
    width: auto;
}

.we-lp-footer__copy {
    margin: 0 0 8px 0;
}

.we-lp-footer__creds {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 12px 0;
    font-size: 0.8rem;
}

.we-lp-footer__links {
    margin: 12px 0 0 0;
    font-size: 0.8rem;
}

.we-lp-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.we-lp-footer__links a:hover {
    color: #e8a020;
}

/* ---- Tablet responsive ---- */
@media (max-width: 991px) {
    .we-lp-hero {
        padding: 72px 24px;
    }

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

    .we-lp-trust__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .we-lp-twocol {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .we-lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .we-lp-coverage {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
        text-align: center;
    }

    .we-lp-coverage__heading {
        text-align: center;
    }

    .we-lp-coverage__title {
        justify-content: center;
    }

    .we-lp-coverage__pills {
        justify-content: center;
    }

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

    .we-lp-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .we-lp-section {
        padding: 56px 24px;
    }
}

/* ---- Mobile responsive ---- */
@media (max-width: 767px) {
    .we-lp-hero {
        padding: 110px 16px 56px 16px;
        text-align: center;
    }

    .we-lp-hero__content {
        text-align: center;
    }

    .we-lp-hero__h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .we-lp-hero__sub {
        font-size: 1rem;
        line-height: 1.65;
        margin-left: auto;
        margin-right: auto;
    }

    .we-lp-hero__actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .we-lp-hero__phone-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.05rem;
    }

    .we-lp-hero__phone-note {
        text-align: center;
    }

    .we-lp-hero__reviews {
        justify-content: center;
    }

    .we-lp-form-card {
        padding: 28px 22px;
    }

    .we-lp-form-card__title,
    .we-lp-form-card__sub {
        text-align: center;
    }

    .we-lp-form__input,
    .we-lp-form__textarea {
        font-size: 16px; /* prevents iOS auto-zoom on focus */
        padding: 14px 16px;
    }

    .we-lp-form__submit {
        padding: 16px 24px;
        font-size: 1.05rem;
    }

    .we-lp-trust {
        padding: 32px 16px;
    }

    .we-lp-trust__inner {
        gap: 28px 16px;
    }

    .we-lp-section {
        padding: 48px 16px;
    }

    .we-lp-section__title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .we-lp-section__lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .we-lp-contact {
        padding: 48px 16px;
        text-align: center;
    }

    .we-lp-contact__left {
        text-align: center;
    }

    .we-lp-contact__phone {
        width: 100%;
        justify-content: center;
        padding: 18px 28px;
    }

    .we-lp-contact__authority {
        margin-left: auto;
        margin-right: auto;
    }

    .we-lp-contact__authority-list {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .we-lp-contact__authority-list li {
        justify-content: flex-start;
    }

    .we-lp-contact__expectation {
        text-align: left;
    }

    .we-lp-gallery {
        gap: 10px;
    }

    .we-lp-twocol__block {
        padding: 24px 20px;
    }

    .we-lp-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .we-lp-service-card {
        padding: 26px 20px;
    }

    .we-lp-service-card__title {
        font-size: 1.1rem;
    }

    .we-lp-service-card__copy {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .we-lp-coverage {
        padding: 26px 20px;
        text-align: center;
    }

    .we-lp-coverage__pills {
        gap: 8px;
        justify-content: center;
    }

    .we-lp-coverage__pill {
        font-size: 0.82rem;
        padding: 6px 14px;
    }

    .we-lp-steps {
        gap: 32px;
    }

    .we-lp-steps__item {
        padding: 0 8px;
    }

    .we-lp-steps__num {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .we-lp-steps__title {
        font-size: 1.15rem;
    }

    .we-lp-testimonial {
        padding: 24px 20px;
    }

    .we-lp-testimonial__quote {
        font-size: 1rem;
        line-height: 1.65;
    }

    .we-lp-faq__question {
        font-size: 0.98rem;
        padding: 18px 18px;
    }

    .we-lp-faq__answer p {
        font-size: 0.94rem;
    }

    .we-lp-lightbox__close,
    .we-lp-lightbox__prev,
    .we-lp-lightbox__next {
        width: 44px;
        height: 44px;
    }

    .we-lp-footer {
        padding: 32px 20px;
    }

    .we-lp-footer__logo img {
        height: 90px;
    }
}
