.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
}

:root {
    --green-dark: #2C6F44;
    --green-mid: #3a8a57;
    --green-light: #8EC649;
    --green-pale: #d6ebbf;
    --green-bg: #eaf4dc;
    --white: #ffffff;
    --black: #111111;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --gray-text: #494949;
    --accent-color: #4c4c4d;
    --font-main: 'Montserrat', 'Poppins', sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --radius: 8px;
}


/* ---- Landing Page Variables ---- */
.lp-wrap {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: #1a1a1a;
}

/* ---- Shared Utilities ---- */
.lp-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.lp-btn-primary {
    display: inline-block;
    background: #2c6f44;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.lp-btn-primary:hover {
    background: #1f5232;
    color: #fff;
}

.lp-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.lp-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.lp-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
}

/* --- LOGO BAR --- */
.lp-logo-bar {
    text-align: center;
    padding: 18px 20px 14px;
    background: #fff;
    border-bottom: 1px solid var(--gray-mid);
}

.lp-logo-bar img {
    max-width: 200px;
    margin: 0 auto;
}


/* ---- Hero ---- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(/imageserver/UserMedia/newedge/newedge-hero001.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.0) 80%);
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 52px;
    width: 100%;
}

.lp-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px 0;
    max-width: 700px;
    text-transform: none;
    letter-spacing: -1px;
}

.lp-hero-content p {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    max-width: 500px;
    margin: 0 0 32px 0;
}

.lp-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.lp-hero-btn-primary {
    display: inline-block;
    background: #8ec649;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
}

.lp-hero-btn-primary:hover {
    background: #76ab35;
    color: #fff;
}

.lp-hero-btn-secondary {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 40px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #ccc;
    transition: all 0.2s;
}

.lp-hero-btn-secondary:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .lp-hero-content {
        padding: 0 28px;
    }

    .lp-hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .lp-hero-content h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .lp-hero-content p {
        font-size: 14px;
    }

    .lp-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Trust Bar ---- */
  .lp-trust {
      background: #40694a;
      padding: 40px 20px;
  }
.lp-trust-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 0;
    flex: 1 1 180px;
justify-content: center;
}

.lp-trust-item svg {
    color: #8ec649;
    flex-shrink: 0;
}

/* ---- Windows Section ---- */
.lp-windows {
    background: #e8f0d8;
}

.lp-windows-top {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-image: url(/imageserver/UserMedia/newedge/newedge-windows001.jpg);
    background-size: contain;
    background-position: center right;
    background-color: #e8f0d8;
    background-repeat: no-repeat;
    max-width: 1600px;
    margin-inline: auto;
}

.lp-windows-top-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #e8f0d8 52%,
            rgba(232, 240, 216, 0.6) 65%,
            rgba(232, 240, 216, 0.0) 100%);
}

.lp-windows-text {
    position: relative;
    z-index: 1;
    padding: 60px 52px;
    max-width: 980px;
}

.lp-windows-text h2 {
    font-size: 60px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 0 24px 0;
    text-transform: none;
    letter-spacing: -0.5px;
}

.lp-windows-text p {
    font-size: 20px;
    font-weight: 600;
    color: #40694a;
    line-height: 1.7;
    margin: 0;
    max-width: 660px;
}

.lp-windows-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 52px;
    max-width: 1600px;
    margin: 0 auto;
}

.lp-windows-feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-windows-feature-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lp-windows-feature-num {
    font-size: 19px;
    font-weight: 800;
    color: #8ec649;
    flex-shrink: 0;
}

.lp-windows-feature strong {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}

.lp-windows-feature p {
    font-size: 16px;
    font-weight: 600;
    color: #2c4a1e;
    line-height: 1.6;
    margin: 0;
    padding-left: 26px;
}

.lp-windows-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 8px 52px 56px;
    flex-wrap: wrap;
}

.lp-btn-green {
    display: inline-block;
    background: #8ec649;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 48px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.lp-btn-green:hover {
    background: #76ab35;
    color: #fff;
}

.lp-btn-outline {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 48px;
    border-radius: 10px;
    border: 2px solid #aaa;
    text-decoration: none;
    transition: all 0.2s;
}

.lp-btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}


@media (max-width: 900px) {
    .lp-trust {
        padding: 20px 28px;
    }

    .lp-trust-item {
        flex-basis: 45%;
    }

    .lp-windows-top {
        justify-content: flex-start;
        background-position: center;
        background-size: cover;
    }

    .lp-windows-top-overlay {
        background: linear-gradient(to top,
            #e8f0d8 52%,
            rgba(232, 240, 216, 0.6) 65%,
            rgba(232, 240, 216, 0.0) 100%);
        
    }

    .lp-windows-text h2 {
        font-size: 50px;
    }

    .lp-windows-text p {
        font-size: 19px;
    }

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

@media (max-width: 480px) {
    .lp-trust-item {
        flex-basis: 100%;
    }

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

.lp-siding {
    background: #fff;
    padding-block: 60px;
}

.lp-siding-top {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-image: url(/imageserver/UserMedia/newedge/newedge-siding001.jpg);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
    max-width: 1600px;
    margin-inline: auto;
}

.lp-siding-top-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #fff 55%, rgba(255, 255, 255, 0.6) 65%, rgba(255, 255, 255, 0.0) 100%);
}

.lp-siding-text {
    position: relative;
    z-index: 1;
    padding: 60px 52px;
    max-width: 950px;
}

.lp-siding-text h2 {
    font-size: 62px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 0 24px 0;
    text-transform: none;
    letter-spacing: -0.5px;
}

.lp-siding-text p {
    font-size: 20px;
    font-weight: 600;
    color: #40694a;
    line-height: 1.7;
    margin: 0;
}

.lp-siding-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 52px;
    max-width: 1600px;
    margin: 0 auto;
}

.lp-siding-feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-siding-feature-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lp-siding-feature-num {
    font-size: 19px;
    font-weight: 800;
    color: #8ec649;
    flex-shrink: 0;
}

.lp-siding-feature strong {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}

.lp-siding-feature p {
    font-size: 16px;
    font-weight: 600;
    color: #2c4a1e;
    line-height: 1.6;
    margin: 0;
    padding-left: 26px;
}

.lp-siding-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 8px 52px 56px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .lp-siding-top {
        justify-content: flex-start;
        background-position: center;
        background-size: cover;
    }

    .lp-siding-top-overlay {
        background: linear-gradient(to top,
                #fff 50%,
                rgba(255, 255, 255, 0.0) 100%);
        
    }

    .lp-siding-text {
        padding: 40px 28px 28px;
    }

    .lp-siding-text h2 {
        font-size: 50px;
    }

    .lp-siding-text p {
        font-size: 19px;
    }

    .lp-siding-features {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 24px;
    }

    .lp-siding-btns {
        padding: 8px 28px 40px;
    }
}

/* --- FOOTER --- */
.lp-footer {
    background: #111;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 24px 20px;
    font-size: 13px;
}

.lp-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.lp-footer a:hover {
    color: #fff;
}

.lp-footer-logo {
    max-width: 140px;
    margin: 0 auto 14px;
}

/* --- INSURANCE SECTION --- */
.lp-insurance {
    background: var(--green-bg);
    padding: 60px 32px;
}

.lp-insurance-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap-reverse;
}

.lp-insurance-copy {
    flex: 1.2;
    min-width: 280px;
}

.lp-insurance-copy h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 14px;
}

.lp-insurance-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.lp-insurance-copy>p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 22px;
}

.lp-steps {
    counter-reset: steps;
    list-style: none;
}

.lp-steps li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
    line-height: 1.55;
}

.lp-steps li::before {
    content: counter(steps);
    min-width: 28px;
    height: 28px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.lp-steps li strong {
    color: var(--gray-text);
}

.lp-insurance-img {
    flex: 1;
    min-width: 260px;
    max-width: 560px;
    text-align: center;
}

.lp-insurance-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* --- REVIEWS --- */
.lp-reviews {
    padding: 60px 32px;
}

.lp-reviews h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--green-dark);
    /* green title as requested */
    margin-bottom: 8px;
}

.lp-reviews .section-sub {
    text-align: center;
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

/* Plugin wrapper — gives the CWZ reviews embed room to breathe */
.lp-reviews-plugin {
    max-width: 1100px;
    margin: 0 auto;
}


.lp-form-section {
	background: #40694A;
	padding: 70px 32px;
}
    .lp-form-section-inner {
        display: flex;
        gap: 60px;
        align-items: flex-start;
        max-width: 1100px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .lp-form-copy {
        flex: 1 1 340px;
        color: #fff;
    }
    .lp-form-copy h2 {
        font-size: 38px;
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
        margin: 0 0 8px 0;
    }
    .lp-form-copy .lp-form-copy-sub {
        font-size: 16px;
        font-weight: 600;
        color: var(--green-light);
        margin: 0 0 20px 0;
        line-height: 1.4;
    }
    .lp-form-copy p {
        font-size: 18px;
        color: rgba(255,255,255,0.82);
        line-height: 1.7;
        margin: 0 0 28px 0;
    }
    .lp-form-trust-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .lp-form-trust-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 18px;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
        line-height: 1.4;
    }
    .lp-form-trust-list li svg {
        flex-shrink: 0;
        margin-top: 2px;
        color: var(--green-light);
    }
    .lp-form-card {
        flex: 0 0 420px;
        background: #fff;
        border-radius: 12px;
        padding: 36px 32px 28px;
        box-shadow: 0 12px 50px rgba(0,0,0,0.25);
    }
    @media (max-width: 900px) {
        .lp-form-section-inner {
            flex-direction: column;
        }
        .lp-form-card {
            flex: 1 1 100%;
            width: 100%;
        }
        .lp-form-copy h2 {
            font-size: 28px;
        }
    }


/* ========== OFFICE / MAP / FORM ========== */
.lp-office {
    background: var(--green-bg);
    padding: 60px 32px;
}

.lp-office-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-office-info {
    flex: 1;
    min-width: 220px;
}

.lp-office-info h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.lp-office-info p {
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.6;
}

.lp-office-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 24px;
}

.lp-office-map {
    flex: 1.5;
    min-width: 280px;
}

.lp-office-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ========== FORM CARD ========== */
#lp-hero-form {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 28px;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

.lp-form-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 18px;
    text-align: center;
}

.lp-field-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lp-req {
    color: var(--green-dark);
}

#lp-hero-form .form_field_wrapper {
    margin-bottom: 11px;
}

/* Two-column field row — Option 2 layout request */
.lp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lp-field-row .form_field_wrapper {
    margin-bottom: 11px;
}

@media (max-width: 420px) {
    .lp-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

#lp-hero-form .form_field_content {
    width: 100%;
}

#lp-hero-form .form_field_text,
#lp-hero-form .form_field_textarea {
    width: 100%;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    padding: 11px 13px;
    font-family: var(--font-main);
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

#lp-hero-form .form_field_text:focus,
#lp-hero-form .form_field_textarea:focus {
    border-color: var(--green-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44, 111, 68, 0.10);
}

#lp-hero-form .form_field_textarea {
    resize: vertical;
    min-height: 75px;
}

.lp-privacy-text {
    font-size: 11px;
    color: #888;
    line-height: 1.55;
    margin-top: 12px;
    text-align: center;
}

.lp-privacy-text a {
    color: var(--green-dark);
    text-decoration: underline;
}

.lp-btn-submit,
.btn.btn-primary {
    width: 100%;
    background: var(--green-light);
    color: #fff;
    border: 2px solid var(--green-light);
    border-radius: 10px;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    margin-top: 4px;
    letter-spacing: 0.3px;
    transition: background 0.2s, color 0.2s;
}

.lp-btn-submit:hover,
.btn.btn-primary:hover {
    background: #76ab35;
    color: #fff;
}

/* Form validation */
.lp-field-invalid .form_field_text,
.lp-field-invalid .form_field_textarea {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

.lp-field-error-msg {
    display: block;
    color: #c0392b;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

@keyframes lp-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.lp-shake {
    animation: lp-shake 0.4s ease;
}



.header_wrapper {
    display: none !important;
}

.menu_wrapper {
    display: none !important;
}

.footer_wrapper {
    display: none !important;
}