/**
 * Landing Page 1 - Roofing Styles
 * Matches HTML reference with custom brand colors
 * Primary BG: #012854 (dark blue)
 * Button Gradient: linear-gradient(180deg, #C00 0%, #8C0000 100%)
 */

:root {
    /* Brand Colors */
    --lp1-primary-blue: #012854;
    --lp1-button-gradient: linear-gradient(180deg, #C00 0%, #8C0000 100%);
    --lp1-button-hover: linear-gradient(180deg, #8C0000 0%, #C00 100%);

    /* Slate Palette (from HTML reference) */
    --lp1-slate-50: #f8fafc;
    --lp1-slate-100: #f1f5f9;
    --lp1-slate-200: #e2e8f0;
    --lp1-slate-300: #cbd5e1;
    --lp1-slate-400: #94a3b8;
    --lp1-slate-500: #64748b;
    --lp1-slate-600: #475569;
    --lp1-slate-700: #334155;
    --lp1-slate-800: #1e293b;
    --lp1-slate-900: #0f172a;

    /* Orange Palette (accents) */
    --lp1-orange-50: #fff7ed;
    --lp1-orange-100: #ffedd5;
    --lp1-orange-200: #fed7aa;
    --lp1-orange-400: #fb923c;
    --lp1-orange-500: #f97316;
    --lp1-orange-600: #ea580c;
    --lp1-orange-700: #c2410c;

    /* Additional */
    --lp1-white: #ffffff;
    --lp1-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --lp1-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --lp1-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.landing-page-1 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--lp1-slate-900);
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
.landing-page-1 h1,
.landing-page-1 h2,
.landing-page-1 h3,
.landing-page-1 h4,
.landing-page-1 h5,
.landing-page-1 h6,
.lp1-btn-cta,
.lp1-btn-hero-primary,
.lp1-btn-hero-secondary,
.lp1-btn-orange,
.lp1-footer-cta-btn,
.lp1-form-title,
.lp1-service-title,
.lp1-nav-phone,
.lp1-hero-badge,
.lp1-trust-label {
    font-family: 'Montserrat', sans-serif;
}

.landing-page-1 * {
    box-sizing: border-box;
}

.landing-page-1 .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =========================================
   Trust Bar (Utility Bar)
   ========================================= */
.utility-bar {
    background-color: var(--lp1-primary-blue);
    color: #cbd5e1;
    font-size: 1.25rem;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Fix for themes injecting pseudo-elements */
.utility-bar .container::before,
.utility-bar .container::after {
    display: none;
    content: none;
}

@media (max-width: 768px) {
    .utility-bar {
        display: none !important;
    }

    .utility-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.utility-bar .location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.075px;
    line-height: 28px;
    margin: 0;
    text-transform: uppercase;
}

.utility-bar .location i {
    font-size: 1.5rem;
}

.utility-bar .phone-strip {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 480px) {
    .utility-bar .phone-strip {
        gap: 10px;
        flex-direction: column;
    }
}

.utility-bar .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-weight: 600;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.utility-bar .dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px rgba(74, 222, 128, 0.5);
}

.utility-bar .phone-number {
    display: inline-block;
    font-size: 20px;
    margin-left: 5px;
    text-decoration: none;
    vertical-align: middle;
    color: white;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    opacity: 0.9;
}

.utility-bar .phone-number:hover {
    opacity: 1;
    text-decoration: underline;
}

/* =========================================
   Navbar / Header
   ========================================= */
.lp1-navbar {
    background-color: var(--lp1-white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--lp1-shadow);
    transition: var(--lp1-transition);
}

.lp1-navbar.lp1-scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.lp1-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp1-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 70%;
}

.lp1-logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.lp1-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    gap: 4px;
}

.lp1-brand-title {
    color: var(--lp1-primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .lp1-brand-title {
        font-size: 2rem;
    }
}

.lp1-brand-subtitle {
    color: var(--lp1-slate-600);
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .lp1-brand-subtitle {
        font-size: 1.5rem;
    }
}

.lp1-nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lp1-nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lp1-primary-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.lp1-nav-phone i {
    color: #c00;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .lp1-nav-phone span {
        display: none;
    }

    .lp1-nav-phone i {
        font-size: 4rem;
        margin-right: 10px;
    }
}

.lp1-btn-cta {
    background-image: var(--lp1-button-gradient);
    color: white;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    transition: var(--lp1-transition);
    display: none;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    border: 3px solid #8c0000;
    border-radius: 1rem;
}

@media (min-width: 640px) {
    .lp1-btn-cta {
        display: inline-flex;
    }
}

.lp1-btn-cta i {
    font-size: 0.9em;
    flex-shrink: 0;
}

.lp1-btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--lp1-shadow-lg);
    filter: brightness(1.1);
}

/* =========================================
   Hero Section
   ========================================= */
.lp1-hero {
    background-color: var(--lp1-primary-blue);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lp1-hero {
        padding: 10rem 0 12rem;
    }
}

.lp1-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 40, 84, 0.85) 0%, rgba(1, 40, 84, 0.4) 100%);
    z-index: 1;
}

.lp1-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (min-width: 1024px) {
    .lp1-hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        text-align: left;
    }
}

/* Hero Text Content */
.lp1-hero-badges-top {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .lp1-hero-badges-top {
        justify-content: center;
    }
}

.lp1-hero-badge {
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp1-badge-orange {
    background-color: rgba(234, 88, 12, 0.2);
    color: #e00000;
    border: 1px solid rgba(234, 88, 12, 0.3);
}

.lp1-badge-blue {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Badge — Green (licensed / certified) */
.lp1-badge-green {
    background-color: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Badge — Red / Crimson (urgent / promo) */
.lp1-badge-red {
    background-color: rgba(204, 0, 0, 0.2);
    color: #f87171;
    border: 1px solid rgba(204, 0, 0, 0.35);
}

/* Badge — Gold / Yellow (award / premium) */
.lp1-badge-gold {
    background-color: rgba(234, 179, 8, 0.18);
    color: #fcd34d;
    border: 1px solid rgba(234, 179, 8, 0.35);
}

/* Badge — White / Glass (neutral on dark bg) */
.lp1-badge-white {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

/* Badge — Solid Orange (high-contrast CTA badge) */
.lp1-badge-solid-orange {
    background-color: #c00;
    color: #ffffff;
    border: 1px solid #a30000;
}

/* Badge — Solid Blue (strong trust signal) */
.lp1-badge-solid-blue {
    background-color: var(--lp1-primary-blue);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Icon support inside hero badges */
.lp1-hero-badge i {
    font-size: 0.8em;
    margin-right: 0.3em;
    vertical-align: middle;
}

/* Pulse animation — add class lp1-badge-pulse for attention */
.lp1-badge-pulse {
    animation: lp1BadgePulse 2.2s ease-in-out infinite;
}

@keyframes lp1BadgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.25);
    }
}

.lp1-badge-green.lp1-badge-pulse {
    animation-name: lp1BadgePulseGreen;
}

@keyframes lp1BadgePulseGreen {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
    }
}

/* =========================================
   Hero Form Badge (floating "Free Quote" pill)
   ========================================= */
.lp1-form-badge {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    transition: var(--lp1-transition);
}

.lp1-form-badge:hover {
    background-color: #a30000;
    transform: translateY(-1px);
}

/* =========================================
   Hero Feature Badges (below form)
   ========================================= */
.lp1-form-features {
    flex-wrap: wrap;
}

.lp1-feature-badge {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--lp1-slate-600);
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    transition: var(--lp1-transition);
}

.lp1-feature-badge:hover {
    background-color: var(--lp1-slate-200);
}

.lp1-feature-badge i {
    padding: 4px;
    background: var(--lp1-primary-blue);
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    margin-right: 2px;
}

.lp1-hero-accent {
    color: #c41e2a;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: block;
}

.lp1-hero-headline {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 1.75rem;
    color: white;
}

@media (min-width: 768px) {
    .lp1-hero-headline {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .lp1-hero-headline {
        font-size: 4.75rem;
    }
}

.lp1-hero-description {
    font-size: 1.75rem;
    line-height: 1.75;
    color: var(--lp1-slate-300);
    margin-bottom: 2rem;
    max-width: 620px;
}

@media (max-width: 768px) {
    .lp1-hero-description {
        font-size: 1.5rem;
    }
}

.lp1-hero-description strong,
.lp1-hero-description b {
    color: #ffffff;
    font-weight: 700;
}

.lp1-hero-description em {
    color: #e00000;
    font-style: normal;
}

.lp1-hero-description a {
    color: #e00000;
    text-decoration: underline;
}

.lp1-hero-description p {
    margin: 0 0 0.75em;
}

.lp1-hero-description p:last-child {
    margin-bottom: 0;
}

.lp1-hero-subheadline {
    font-size: 1.3rem;
    line-height: 1.65;
    color: var(--lp1-slate-300);
    margin-top: 1.5rem;
    max-width: 620px;
}

.lp1-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp1-stat-item {
    text-align: center;
}

.lp1-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.35rem;
}

.lp1-stat-label {
    font-size: 1.25rem;
    color: var(--lp1-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp1-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp1-hero-ctas {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Shared base — both buttons are a matched pair */
.lp1-btn-hero-primary,
.lp1-btn-hero-secondary {
    padding: 1.1rem 2.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--lp1-transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 3px solid transparent;
}

@media (max-width: 768px) {

    .lp1-btn-hero-primary,
    .lp1-btn-hero-secondary {
        font-size: 1.5rem;
    }
}

/* Primary — solid red gradient fill */
.lp1-btn-hero-primary {
    background-image: var(--lp1-button-gradient);
    color: white;
    border-color: #8c0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
}

.lp1-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(204, 0, 0, 0.45);
    filter: brightness(1.08);
}

/* Secondary — white outline, matches primary dimensions exactly */
.lp1-btn-hero-secondary {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.65);
}

.lp1-btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Hero Form Card */
.lp1-form-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--lp1-shadow-lg);
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.lp1-form-badge {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: var(--lp1-primary-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--lp1-shadow);
}

.lp1-form-title {
    color: var(--lp1-slate-900);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lp1-form-subtitle {
    color: var(--lp1-slate-500);
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.lp1-form-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lp1-slate-100);
    font-size: 0.75rem;
    color: var(--lp1-slate-600);
}

/* =========================================
   Trust Strip
   ========================================= */
.lp1-trust-strip {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid var(--lp1-slate-200);
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    border-radius: 1rem 1rem 0 0;
}

@media (min-width: 1024px) {
    .lp1-trust-strip {
        margin-top: -3rem;
        padding: 6rem 0;
    }
}

.lp1-trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    justify-items: center;
}

@media (min-width: 640px) {
    .lp1-trust-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp1-trust-strip-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

a.lp1-trust-strip-item {
    text-decoration: none;
}

a.lp1-trust-strip-item:hover .lp1-trust-strip-text {
    color: var(--lp1-primary);
}

.lp1-trust-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* App-icon style square */
.lp1-trust-strip-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background-color: var(--lp1-primary-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: var(--lp1-transition);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .lp1-trust-strip-icon {
        width: 200px;
        height: 200px;
    }
}

.lp1-trust-strip-item:hover .lp1-trust-strip-icon {
    transform: translateY(-4px);
}

/* Image mode — white background, padding, contain fit */
.lp1-trust-strip-icon--image {
    background-color: #ffffff;
    padding: 12px;
}

.lp1-trust-strip-icon--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lp1-trust-strip-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lp1-slate-800);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 160px;
}

/* Infinite Scroll Mode */
.lp1-trust-strip--scroll {
    padding: 3rem 0;
    overflow: hidden;
}

.lp1-trust-strip-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.lp1-trust-strip-scroll-track {
    display: flex;
    gap: 15rem;
    width: max-content;
    animation: lp1TrustScroll 30s linear infinite;
}

@media (max-width: 1024px) {
    .lp1-trust-strip-scroll-track {
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .lp1-trust-strip-scroll-track {
        gap: 2.5rem;
    }
}

.lp1-trust-strip-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes lp1TrustScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lp1-trust-strip--scroll .lp1-trust-strip-item {
    flex-shrink: 0;
}

/* =========================================
   Calculator Section
   ========================================= */
.lp1-calculator-section {
    background-color: var(--lp1-slate-50);
}

.lp1-section-py {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.lp1-section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 3rem;
}

.lp1-section-title {
    font-size: 4rem;
    color: var(--lp1-primary-blue);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

@media (max-width: 768px) {
    .lp1-section-title {
        font-size: 3rem;
    }
}

.lp1-section-description {
    font-size: 1.75rem;
    color: var(--lp1-slate-600);
}

.lp1-calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   Work Speaks Section
   ========================================= */
.lp1-work-speaks-section {
    background-color: var(--lp1-white);
    overflow: hidden;
    padding-bottom: 10rem;
}

.lp1-work-speaks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp1-work-speaks-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lp1-feature-img-wrapper {
    position: relative;
}

.lp1-feature-img-wrapper img {
    width: auto;
    height: 100%;
    display: block;
    position: relative;
    border-radius: 24px;
    background-color: #eee;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    border: 8px solid #fff;
    overflow: hidden;
}

.lp1-feature-float-card {
    text-align: center;
    position: absolute;
    bottom: -32px;
    right: -32px;
    background-color: var(--lp1-primary-blue);
    color: #000;
    padding: 32px;
    border-radius: 24px;
    box-shadow: -10px -10px 100px 10px rgb(255 255 255 / 50%)
}

@media (max-width: 1024px) {
    .lp1-feature-float-card {
        bottom: 10px;
        right: 0;
        transform: scale(0.75);
        box-shadow: 0px 0px 100px 10px rgb(255 255 255 / 50%);
    }
}

.lp1-float-card-value {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.lp1-float-card-label {
    font-size: 1.125rem;
    color: #ccc;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Work Speaks Title */
.lp1-ws-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--lp1-primary-blue);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    letter-spacing: -0.025em;
}

.lp1-ws-title-accent {
    color: #c00;
}

/* Work Speaks Subtitle (bold text line below title) */
.lp1-ws-subtitle {
    font-size: 2.125rem;
    font-weight: 700;
    color: var(--lp1-slate-800);
    margin-bottom: 1rem;
}

.lp1-btn-orange {
    padding: 1.1rem 2.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 3px solid transparent;
    transition: var(--lp1-transition);
    background-image: var(--lp1-button-gradient);
    color: white;
    border-color: #8c0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
}

.lp1-btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(204, 0, 0, 0.45);
    filter: brightness(1.08);
    color: #fff;
}

.lp1-trust-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lp1-slate-200);
}

.lp1-trust-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp1-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp1-trust-label i {
    color: var(--lp1-slate-400);
    font-size: 1.5rem;
}

/* =========================================
   Services Section (Grid)
   ========================================= */
.lp1-services-section {
    background-color: var(--lp1-slate-50);
    border-top: 1px solid var(--lp1-slate-100);
}

.lp1-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp1-services-desc {
    color: var(--lp1-slate-600);
    font-size: 2rem;
    max-width: 60rem;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .lp1-services-desc {
        font-size: 1.75rem;
    }
}

.lp1-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lp1-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp1-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp1-service-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--lp1-slate-100);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp1-service-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
}

.lp1-service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--lp1-slate-50);
    color: var(--lp1-primary-blue);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: var(--lp1-transition);
}

@media (max-width: 768px) {
    .lp1-service-icon {
        width: 100%;
        margin-bottom: 1rem;
    }

    .lp1-service-card {
        text-align: center;
        padding: 20px;
    }
}

.lp1-service-card:hover .lp1-service-icon {
    background-color: #fff0f0;
    color: #a30000;
}

.lp1-service-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--lp1-primary-blue);
    letter-spacing: -0.025em;
}

.lp1-service-description {
    color: var(--lp1-slate-500);
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================================
   Cost Section
   ========================================= */
.lp1-cost-section {
    background: linear-gradient(165deg, #060f1d 0%, #0f2240 100%);
    color: #fff;
}

.lp1-cost-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp1-cost-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.lp1-cost-subtitle {
    color: #aaa;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.lp1-cost-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 1.5rem;
}

.lp1-cost-title-accent {
    color: #c00;
}

.lp1-cost-description {
    color: #8a9bb5;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lp1-cost-factor {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp1-cost-factor:last-child {
    border-bottom: none;
}

.lp1-cost-factor-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c00;
    font-size: 1.5rem;
}

.lp1-cost-factor-text {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.lp1-cost-factor-text strong {
    color: #fff;
}

.lp1-cost-card {
    background: rgba(255, 255, 255, 0.04);
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.lp1-cost-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.lp1-cost-card-desc {
    color: #8a9bb5;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lp1-cost-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp1-cost-checklist li {
    display: flex;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.lp1-cost-check-icon {
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.lp1-cost-card-btn {
    padding: 1.1rem 2.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 3px solid transparent;
    transition: var(--lp1-transition);
    background-image: var(--lp1-button-gradient);
    color: white;
    border-color: #8c0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
    width: 100%;
}

.lp1-cost-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(204, 0, 0, 0.45);
    filter: brightness(1.08);
    color: #fff;
}

/* =========================================
   Why Accent Roofing Section
   ========================================= */
.lp1-why-section {
    background: linear-gradient(180deg, var(--lp1-slate-50) 0%, #fff 100%);
    border-top: 1px solid var(--lp1-slate-100);
}

.lp1-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp1-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.lp1-why-eyebrow {
    color: #c00;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: clamp(1.5rem, 1vw, 1.75rem);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.lp1-why-title {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: var(--lp1-primary-blue);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.lp1-why-title-accent {
    color: #c00;
}

.lp1-why-description {
    font-size: clamp(1.5rem, 1.5vw, 1.75rem);
    color: var(--lp1-primary-blue);
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Stats */
.lp1-why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lp1-why-stat-card {
    text-align: center;
    padding: 2rem 0.75rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--lp1-slate-200);
    box-shadow: var(--lp1-shadow-sm);
}

.lp1-why-stat-value {
    font-size: clamp(2.5rem, 2.5vw, 3.5rem);
    font-weight: 900;
    color: var(--lp1-primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.lp1-why-stat-label {
    font-size: clamp(1.25rem, 1vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp1-slate-500);
}

/* Image */
.lp1-why-img-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lp1-why-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lp1-why-img-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: clamp(1.25rem, 1vw, 1.75rem);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Features Grid */
.lp1-why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .lp1-why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.lp1-why-feature-card {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid var(--lp1-slate-200);
    box-shadow: var(--lp1-shadow);
    transition: var(--lp1-transition);
    align-items: flex-start;
}

@media (min-width: 768px) {
    .lp1-why-feature-card {
        padding: 3rem;
        gap: 1.5rem;
    }
}

.lp1-why-feature-card:hover {
    border-color: #c00;
    box-shadow: var(--lp1-shadow-lg);
    transform: translateY(-2px);
}

.lp1-why-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 52px;
    border-radius: 0.875rem;
    background: #fff0f0;
    color: #c00;
    font-size: clamp(2rem, 2.5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--lp1-transition);
}

.lp1-why-feature-card:hover .lp1-why-feature-icon {
    background: #c00;
    color: #fff;
}

.lp1-why-feature-title {
    font-size: clamp(1.75rem, 1.5vw, 2rem);
    font-weight: 700;
    color: var(--lp1-primary-blue);
    margin-bottom: 0.5rem;
}

.lp1-why-feature-desc {
    font-size: clamp(1.5rem, 1vw, 1.75rem);
    color: var(--lp1-slate-600);
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================================
   Google Reviews Section
   ========================================= */
.lp1-reviews-section {
    background: #fff;
    overflow: hidden;
}

/* Header row: title/desc left, rating badge right */
.lp1-reviews-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .lp1-reviews-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.lp1-reviews-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--lp1-primary-blue);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.lp1-reviews-desc {
    font-size: clamp(1.5rem, 1.5vw, 1.75rem);
    color: var(--lp1-slate-600);
    line-height: 1.5;
    max-width: 60rem;
}

/* Rating badge */
.lp1-reviews-stats-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--lp1-slate-50);
    border: 1px solid var(--lp1-slate-200);
    border-radius: 1rem;
    padding: 1.5rem 2.5rem;
    flex-shrink: 0;
    max-width: 27rem;
}

@media (max-width: 1024px) {
    .lp1-reviews-stats-card {
        margin: 0 auto;
    }
}

.lp1-reviews-rating-value {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 900;
    color: var(--lp1-primary-blue);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.lp1-reviews-rating-right {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lp1-reviews-stars {
    display: flex;
    gap: 0.25rem;
    color: #facc15;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.lp1-reviews-count {
    font-size: clamp(1.5rem, 1vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp1-slate-500);
}

/* Bottom two-column grid */
.lp1-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .lp1-reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Map Card */
.lp1-reviews-map-card {
    background: var(--lp1-slate-50);
    border: 1px solid var(--lp1-slate-200);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--lp1-shadow-xl);
    display: flex;
    flex-direction: column;
}

.lp1-reviews-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lp1-reviews-map-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp1-reviews-map-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--lp1-primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lp1-reviews-map-name {
    font-size: clamp(1.25rem, 1.2vw, 1.5rem);
    font-weight: 700;
    color: var(--lp1-primary-blue);
    line-height: 1.2;
}

.lp1-reviews-map-sub {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: var(--lp1-slate-500);
}

.lp1-reviews-map-link {
    font-size: clamp(1rem, 1vw, 1.25rem);
    font-weight: 700;
    color: #c00;
    text-decoration: none;
    transition: var(--lp1-transition);
}

.lp1-reviews-map-link:hover {
    text-decoration: underline;
    color: #a30000;
}

.lp1-reviews-map-embed {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--lp1-slate-200);
    background: #fff;
    height: 380px;
    flex: 1;
}

.lp1-reviews-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* CTA Dark Card */
.lp1-reviews-cta-card {
    background: #D3E3F0;
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.lp1-reviews-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lp1-primary-blue);
    font-size: clamp(1.25rem, 1vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.lp1-reviews-cta-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--lp1-primary-blue);
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* Testimonial Slider */
.lp1-tslider {
    position: relative;
}

.lp1-tslider-track {
    position: relative;
    overflow: hidden;
}

.lp1-tslider-slide {
    display: none;
}

.lp1-tslider-slide.active {
    display: block;
    animation: lp1-slide-in 0.4s ease;
}

@keyframes lp1-slide-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* The white testimonial card */
.lp1-tslider-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid #d6dae4;
}

/* Profile row */
.lp1-tslider-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lp1-tslider-profile-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
}

/* Avatar image or initial */
.lp1-tslider-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.lp1-tslider-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
}

.lp1-tslider-name {
    font-size: clamp(1.125rem, 1.2vw, 1.5rem);
    font-weight: 700;
    color: var(--lp1-slate-900);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp1-tslider-time {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: var(--lp1-slate-500);
    margin-top: 0.1rem;
}

/* Google G logo link */
.lp1-tslider-glogo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.lp1-tslider-glogo:hover {
    opacity: 1;
}

/* Stars */
.lp1-tslider-stars {
    display: flex;
    gap: 0.2rem;
    color: #facc15;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    margin-bottom: 0.6rem;
}

.lp1-tslider-star-empty {
    color: var(--lp1-slate-300);
}

/* Review text */
.lp1-tslider-text {
    font-size: clamp(1.25rem, 1.2vw, 1.5rem);
    color: var(--lp1-slate-700);
    line-height: 1.4;
    margin: 0;
}

/* Controls: prev/next + dots */
.lp1-tslider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.lp1-tslider-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--lp1-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.75rem;
    transition: var(--lp1-transition);
    flex-shrink: 0;
}

.lp1-tslider-btn:hover,
.lp1-tslider-btn:active {
    color: var(--lp1-primary-blue);
    box-shadow: none;
}

.lp1-tslider-dots {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.lp1-tslider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #01285488;
    cursor: pointer;
    transition: var(--lp1-transition);
    display: block;
}

.lp1-tslider-dot.active {
    background: var(--lp1-primary-blue);
    width: 20px;
    border-radius: 4px;
}

/* CTA Buttons */
.lp1-reviews-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp1-reviews-cta-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--lp1-primary-blue);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: clamp(1.75rem, 1.5vw, 2rem);
    text-decoration: none;
    transition: var(--lp1-transition);
}

.lp1-reviews-cta-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.lp1-reviews-cta-btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    border: 3px solid var(--lp1-primary-blue);
    color: var(--lp1-primary-blue);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: clamp(1.5rem, 1.5vw, 1.75rem);
    text-decoration: none;
    transition: var(--lp1-transition);
}

.lp1-reviews-cta-btn-outline:hover {
    background: var(--lp1-primary-blue);
    color: #fff;
}

/* =========================================
   How It Works / Process Section
   ========================================= */
.lp1-process-section {
    position: relative;
    background-color: #060f1d;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    overflow: hidden;
}

/* Dark overlay on top of the bg image */
.lp1-process-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Content sits above overlay */
.lp1-process-inner {
    position: relative;
    z-index: 1;
}

/* Header */
.lp1-process-header {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 4rem;
}

.lp1-process-title {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.lp1-process-title-accent {
    color: #c00;
}

.lp1-process-desc {
    font-size: clamp(1.5rem, 1.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Steps grid — auto columns up to 3 */
.lp1-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
}

@media (min-width: 640px) {
    .lp1-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp1-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* If exactly 4 steps */
    .lp1-process-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    /* If exactly 2 steps */
    .lp1-process-cols-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 48rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Individual step */
.lp1-process-step {
    position: relative;
    cursor: default;
    text-align: center;
}

/* Giant ghost number watermark */
.lp1-process-num {
    display: block;
    font-size: clamp(9rem, 12vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: -2.25rem;
    transition: color 0.35s ease;
    user-select: none;
}

/* First step and hover show accent number */
.lp1-process-step:hover .lp1-process-num {
    color: rgba(204, 0, 0, 0.75);
}

/* Content overlaps the ghost number */
.lp1-process-content {
    position: relative;
    z-index: 1;
}

/* Line + title on same row */
.lp1-process-line-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    flex-direction: column-reverse;
}

.lp1-process-divider {
    display: block;
    width: 2rem;
    height: 3px;
    background: #c00;
    flex-shrink: 0;
    border-radius: 2px;
}

.lp1-process-step-title {
    font-size: clamp(1.75rem, 2vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.lp1-process-step-desc {
    font-size: clamp(1.5rem, 1.3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto 1em;
}

/* CTA button below steps */
.lp1-process-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.lp1-process-cta-btn {
    padding: 1.1rem 2.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 3px solid transparent;
    transition: var(--lp1-transition);
    background-image: var(--lp1-button-gradient);
    color: white;
    border-color: #8c0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
}

.lp1-process-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(204, 0, 0, 0.5);
    color: #fff;
}

/* =========================================
   FAQ Section — Enhanced
   ========================================= */
.lp1-faq-section {
    background: linear-gradient(180deg, transparent 0%, transparent 75%, #D3E3F0 100%);
}

/* Two-part header */
.lp1-faq-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .lp1-faq-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 2rem;
    }
}

.lp1-faq-eyebrow {
    color: #c00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.5rem, 1vw, 1.75rem);
    margin-bottom: 0.5rem;
}

.lp1-faq-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: var(--lp1-primary-blue);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.lp1-faq-header-desc {
    font-size: clamp(1.5rem, 1.3vw, 1.75rem);
    color: var(--lp1-slate-600);
    line-height: 1.5;
    max-width: 42rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .lp1-faq-header-desc {
        text-align: right;
    }
}

/* Two-column grid */
.lp1-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .lp1-faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 2rem;
        align-items: start;
    }
}

.lp1-faq-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Each FAQ card */
.lp1-faq-item {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--lp1-slate-200);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp1-faq-item:hover {
    border-color: var(--lp1-slate-300);
    box-shadow: var(--lp1-shadow);
}

.lp1-faq-item.active {
    border-color: #c00;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}

/* Button */
.lp1-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: clamp(1.5rem, 1.3vw, 1.75rem);
    font-weight: 500;
    color: var(--lp1-primary-blue);
    transition: background 0.2s ease;
    font-family: inherit;
}

.lp1-faq-btn:hover,
.lp1-faq-btn:focus {
    background: var(--lp1-slate-50);
    color: var(--lp1-primary-blue);
}

/* Plus icon */
.lp1-faq-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--lp1-slate-400);
    transition: transform 0.3s ease, color 0.2s ease;
    width: 1.25rem;
    text-align: center;
}

.lp1-faq-item.active .lp1-faq-icon {
    transform: rotate(45deg);
    color: #c00;
}

/* Content panel */
.lp1-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    font-size: clamp(1.5rem, 1.2vw, 1.75rem);
    line-height: 1.65;
    color: var(--lp1-slate-600);
}

.lp1-faq-item.active .lp1-faq-content {
    max-height: 400px;
    padding: 0 1.5rem 1.5rem;
}

/* =========================================
   Footer
   ========================================= */
.lp1-footer {
    background-color: #D3E3F0;
    padding: 5rem 0 2rem;
}

.lp1-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 767px) {
    .lp1-footer {
        padding-bottom: 10rem;
    }

    .lp1-footer-about,
    .lp1-footer-cta-card {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .lp1-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp1-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.lp1-footer-col-title {
    font-size: 2rem;
    color: var(--lp1-slate-900);
    margin-bottom: 1.5rem;
}

.lp1-footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.lp1-footer-link-list,
.lp1-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0 !important;
}

.lp1-footer-link-list li,
.lp1-footer-contact-list li {
    margin-bottom: 1rem;
}

.lp1-footer-link {
    color: var(--lp1-slate-500);
    text-decoration: none;
    transition: var(--lp1-transition);
}

.lp1-footer-link:hover {
    color: #c00;
    padding-left: 5px;
}

.lp1-footer-contact-list li {
    display: flex;
    gap: 1rem;
    color: var(--lp1-slate-500);
    font-size: 1.5rem;
}

.lp1-footer-contact-list i {
    color: var(--lp1-primary-blue);
    margin-top: 0.25rem;
}

.lp1-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lp1-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--lp1-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp1-slate-600);
    text-decoration: none;
    transition: var(--lp1-transition);
}

.lp1-social-btn:hover {
    background-color: var(--lp1-primary-blue);
    color: white;
    transform: translateY(-3px);
}

.lp1-footer-cta-card {
    background-color: var(--lp1-primary-blue);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    height: fit-content;
    width: 100%;
}

.lp1-footer-cta-card .lp1-footer-col-title {
    color: white;
}

.lp1-footer-cta-btn {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: white;
    color: var(--lp1-primary-blue);
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--lp1-transition);
}

.lp1-footer-cta-btn:hover {
    color: var(--lp1-primary-blue);
    transform: scale(1.05);
}

.lp1-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #01285445;
    color: var(--lp1-primary-blue);
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .lp1-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.lp1-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.lp1-footer-bottom-links a {
    color: var(--lp1-slate-400);
    text-decoration: none;
}

/* =========================================
   Mobile Nav
   ========================================= */
.lp1-mobile-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    gap: 1rem;
}

@media (min-width: 768px) {
    .lp1-mobile-nav {
        display: none;
    }
}

.lp1-btn-mobile-call,
.lp1-btn-mobile-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.lp1-btn-mobile-call {
    background-color: var(--lp1-white);
    color: var(--lp1-slate-700);
    border: 1px solid var(--lp1-slate-200);
}

.lp1-btn-mobile-quote {
    background-image: var(--lp1-button-gradient);
    color: white;
}

/* Utility classes */
.lp1-text-center {
    text-align: center;
}

.lp1-text-white {
    color: white;
}

.lp1-bg-white {
    background-color: var(--lp1-white);
}

.lp1-bg-slate {
    background-color: var(--lp1-slate-50);
}

/* Gravity Forms Overrides */
.lp1-form-wrapper .gform_wrapper {
    margin: 0;
}

/* Make inputs look nice */
.lp1-form-wrapper input,
.lp1-form-wrapper select,
.lp1-form-wrapper textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--lp1-slate-200);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.lp1-form-wrapper input:focus {
    border-color: var(--lp1-primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 40, 84, 0.1);
}

.lp1-form-wrapper button[type="submit"] {
    width: 100%;
    background-image: var(--lp1-button-gradient);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    margin-top: 1rem;
    cursor: pointer;
    text-transform: uppercase;
}