*,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     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: 14px;
 }
 
 body {
     font-family: var(--font-main);
     font-size: 16px;
     color: var(--black);
     background: #fff;
 }
 
 img {
     max-width: 100%;
     display: block;
 }
 
 a {
     text-decoration: none;
     color: inherit;
 }
 
 a:hover, a:focus {
     text-decoration: none;
 }
 
 .maincontent {
     max-width: 100%;
     margin: 0 auto;
     padding: 0;
     border: none;
 }
 
 /* --- 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;          /* full viewport height */
     display: flex;
     align-items: center;
     overflow: hidden;
 }
 
 .lp-hero::before {
     content: '';
     position: absolute;
     inset: -80px 0;
     background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
         url('/imageserver/UserMedia/newedge/landing-banner.jpg') center/cover no-repeat;
     transform: translateY(var(--parallax-offset, 0px));
     will-change: transform;
     z-index: 0;
 }
 
 .lp-hero>* {
     position: relative;
     z-index: 1;
 }
 
 .lp-hero-inner {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 40px;
     gap: 48px;
 }
 
 /* Left copy - center aligned */
 .lp-hero-copy {
     flex: 1;
     color: #fff;
     max-width: 700px;
     text-align: center;
 }
 
 .lp-hero-copy h1 {
     font-family: 'Montserrat', sans-serif;
     font-size: 48px;
     font-weight: 800;
     line-height: 1.12;
     margin-bottom: 16px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 }
 
 .lp-hero-copy p {
     font-size: 18px;
     line-height: 1.65;
     margin-bottom: 10px;
     opacity: 0.93;
 }
 
 .lp-hero-copy .hero-sub {
     font-size: 16px;
     opacity: 0.82;
     margin-bottom: 28px;
 }
 
 /* Two-button row in hero copy */
 .lp-hero-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     justify-content: center;
 }
 
 .lp-btn-phone {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--green-light);
     color: #fff;
     font-weight: 700;
     font-size: 16px;
     padding: 14px 28px;
     border-radius: var(--radius);
     border: 2px solid transparent;
     cursor: pointer;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
     transition: background 0.25s ease, color 0.25s ease,
         border-color 0.25s ease, box-shadow 0.25s ease,
         transform 0.2s ease;
 }
 
 .lp-btn-phone:hover {
     background: #fff;
     color: var(--green-light);
     border-color: var(--green-light);
     box-shadow: 0 8px 24px rgba(142, 198, 73, 0.40);
     transform: translateY(-3px);
 }
 
 .lp-btn-phone:hover svg { stroke: var(--green-light); }
 .lp-btn-phone:active    { transform: translateY(-1px); }
 
 /* Second hero button - outline style */
 .lp-btn-form-scroll {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: transparent;
     color: #fff;
     font-weight: 700;
     font-size: 16px;
     padding: 14px 28px;
     border-radius: var(--radius);
     border: 2px solid #fff;
     cursor: pointer;
     transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
 }
 
 .lp-btn-form-scroll:hover {
     background: #fff;
     color: var(--green-dark);
     transform: translateY(-3px);
 }
 
 .lp-btn-form-scroll:active { transform: translateY(-1px); }
 
 /* --- HERO FORM --- */
 #lp-hero-form {
     background: #fff;
     border-radius: var(--radius);
     padding: 36px 32px 28px;
     width: 420px;
     flex-shrink: 0;
     box-shadow: 0 12px 50px rgba(0, 0, 0, 0.28);
 }
 
 /* Form heading */
 .lp-form-heading {
     font-family: 'Montserrat', sans-serif;
     font-size: 20px;
     font-weight: 800;
     color: var(--green-dark);
     margin-bottom: 18px;
     text-align: center;
 }
 
 /* Field labels injected above each CWZ input */
 .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;
 }
 
.form_field_content {
     width: 100%;
display: block;
 }
 
 #lp-hero-form .form_field_text,
 #lp-hero-form .form_field_textarea {
     width: 100%;
     border: 1.5px solid #d0d0d0;
     border-radius: var(--radius);
     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;
 }
 
 /* Privacy text under submit button */
 .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: var(--radius);
     padding: 13px;
     font-size: 15px;
     font-weight: 700;
     font-family: var(--font-main);
     cursor: pointer;
     margin-top: 4px;
     letter-spacing: 0.3px;
     box-shadow: 0 3px 10px rgba(142, 198, 73, 0.30);
     transition: background 0.25s ease, color 0.25s ease,
         box-shadow 0.25s ease, transform 0.2s ease;
 }
 
 .lp-btn-submit:hover, .btn.btn-primary:hover {
     background: #fff;
     color: var(--green-dark);
     box-shadow: 0 6px 20px rgba(44, 111, 68, 0.25);
     transform: translateY(-2px);
 }
 
 .lp-btn-submit:active,.btn.btn-primary:active {
     transform: translateY(0);
 }


  .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;
    margin-bottom: 2px;
  }
 
  @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;
  }
 
  /* ---- Trust Bar ---- */
    .lp-trust {
        background: #40694a;
        padding: 40px 52px;
    }
    .lp-trust-list {
        list-style: none;
        margin: 0 auto;
        padding: 0;
        max-width: 1600px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        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;
    }

    @media (max-width: 900px) {
        .lp-trust {
            padding: 20px 28px;
        }
        .lp-trust-item {
            flex-basis: 45%;
        }
    }
    @media (max-width: 480px) {
        .lp-trust-item {
            flex-basis: 100%;
justify-content: unset;
        }
    }

 
 /* --- DIVIDER --- */
 .lp-divider {
     height: 1px;
     background: var(--gray-mid);
     margin: 0 32px;
 }
 
 /* --- REPLACEMENT SECTION --- */
 .lp-replacement {
     background: var(--green-bg);
     padding: 60px 32px;
 }
 
 .lp-replacement-inner {
     max-width: 1100px;
     margin: 0 auto;
 }
 
.lp-replacement h2 {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 800;
	color: var(--green-dark);
	margin-bottom: 10px;
}
 
 .lp-replacement .section-sub {
     text-align: center;
     font-size: 15px;
     color: var(--gray-text);
     max-width: 680px;
     margin: 0 auto 40px;
     line-height: 1.7;
 }
 
 .lp-replacement-body {
     display: flex;
     gap: 40px;
     align-items: flex-start;
     flex-wrap: wrap;
 }
 
 .lp-replacement-img {
     flex: 0.8;
     min-width: 220px;
     max-width: 320px;
     align-self: stretch;
 }
 
 .lp-replacement-img img {
     width: 100%;
     border-radius: var(--radius);
     object-fit: cover;
     height: 100%;
     max-height: 260px;
     box-shadow: var(--shadow);
 }
 
 .lp-replacement-list {
     flex: 1.2;
     min-width: 260px;
 }
 
 .lp-replacement-list h3 {
     font-size: 17px;
     font-weight: 700;
     color: var(--green-dark);
     margin-bottom: 18px;
 }
 
 .lp-feature-item {
     margin-bottom: 16px;
     line-height: 1.55;
     font-size: 15px;
     color: #333;
 }
 
 .lp-feature-item strong {
     color: var(--gray-text);
     font-weight: 700;
 }
 
 /* --- URGENT ROOFING HELP - full-bleed image with text overlay --- */
.lp-storm {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 32px;
	overflow: hidden;
	background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.58)), url('/imageserver/UserMedia/newedge/ne-summer-roofing.jpg');
	background-size: cover;
	background-position: center;
}
 
 .lp-storm-overlay-content {
     position: relative;
     z-index: 1;
     max-width: 600px;
 }
 
 .lp-storm h2 {
     font-family: 'Montserrat', sans-serif;
     font-size: 36px;
     font-weight: 800;
     color: #fff;
     margin-bottom: 14px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 }
 
 .lp-storm p {
     font-size: 16px;
     color: rgba(255, 255, 255, 0.92);
     margin: 0 auto 28px;
     line-height: 1.7;
 }
 
 .lp-btn-green {
     display: inline-block;
     background: var(--green-light);
     color: #fff;
     font-weight: 700;
     font-size: 15px;
     padding: 13px 30px;
     border-radius: var(--radius);
     border: 2px solid transparent;
     cursor: pointer;
     margin-bottom: 36px;
     box-shadow: 0 4px 14px rgba(142, 198, 73, 0.35);
     transition: background 0.25s ease, color 0.25s ease,
         border-color 0.25s ease, box-shadow 0.25s ease,
         transform 0.2s ease;
 }
 
 .lp-btn-green:hover {
     background: #fff;
     color: var(--green-dark);
     border-color: var(--green-light);
     box-shadow: 0 8px 24px rgba(142, 198, 73, 0.38);
     transform: translateY(-3px);
 }
 
 .lp-btn-green:active {
     transform: translateY(-1px);
 }
 
 /* --- INSURANCE SECTION --- */
 .lp-insurance {
     background: var(--green-bg);
     padding: 60px 32px;
 }
 
 .lp-insurance-inner {
     display: flex;
     gap: 50px;
     align-items: center;
     max-width: 1100px;
     margin: 0 auto;
     flex-wrap: wrap;
 }
 
 .lp-insurance-copy {
     flex: 1.2;
     min-width: 280px;
 }
 
 .lp-insurance-copy h2 {
     font-family: 'Montserrat', sans-serif;
     font-size: 32px;
     font-weight: 800;
     color: var(--green-dark);
     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: 420px;
 }
 
 .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: 18px;
     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: 15px;
        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: var(--radius);
        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;
        }
    }

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



 /* --- OFFICE / MAP --- */
 .lp-office {
     background: var(--green-bg);
     padding: 60px 32px;
 }
 
 .lp-office-inner {
     display: flex;
     gap: 40px;
     align-items: center;
     max-width: 1000px;
     margin: 0 auto;
     flex-wrap: wrap;
 }
 
 .lp-office-info {
     flex: 1;
     min-width: 220px;
 }
 
 .lp-office-info h2 {
     font-family: 'Montserrat', sans-serif;
     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-info a {
     font-weight: 500;
 }
 
 .lp-office-info a:hover {
     text-decoration: underline;
 }
 
 /* Two-button stack in office section */
 .lp-office-btns {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 20px;
 }
 
 .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);
 }
 
    .lp-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 0;
      background: var(--green-dark);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 11px 22px;
      border-radius: var(--radius);
      border: 2px solid var(--green-dark);
      box-shadow: 0 3px 12px rgba(44,111,68,0.25);
      transition: background 0.25s ease, color 0.25s ease,
                  box-shadow 0.25s ease, transform 0.2s ease;
    }
    .lp-btn-outline:hover {
      background: #fff;
      color: var(--green-dark);
      box-shadow: 0 6px 20px rgba(44,111,68,0.30);
      transform: translateY(-2px);
    }
    .lp-btn-outline:active { transform: translateY(0); }
 
    /* Ghost variant - transparent background */
    .lp-btn-outline--ghost {
      background: transparent;
      color: var(--green-dark);
    }
    .lp-btn-outline--ghost:hover {
      background: var(--green-dark);
      color: #fff;
    }
 
    /* Green outline variant for insurance section */
    .lp-btn-green--outline {
      background: transparent;
      color: var(--green-dark);
      border-color: var(--green-dark);
      box-shadow: none;
    }
    .lp-btn-green--outline:hover {
      background: var(--green-dark);
      color: #fff;
      border-color: var(--green-dark);
    }
 
 /* --- FOOTER --- */
 .lp-footer {
     background: var(--black);
     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;
 }

 /* --- MOBILE --- */
 @media (max-width: 768px) {
     .lp-hero {
         min-height: 100svh;
     }
 
     .lp-hero-inner {
         flex-direction: column;
         padding: 40px 20px;
         align-items: stretch;
     }
 
     .lp-hero-copy {
         text-align: center;
     }
 
     .lp-hero-copy h1 {
         font-size: 30px;
     }
 
     .lp-hero-btns {
         justify-content: center;
     }
 
     #lp-hero-form {
         width: 100%;
         max-width: 480px;
         margin: 0 auto;
         padding: 28px 20px;
     }
 
     .lp-insurance-btns {
         flex-direction: column;
     }
 
     .lp-office-btns {
         flex-direction: column;
     }
 
     .lp-about-strip {
         padding: 36px 20px;
         gap: 24px;
     }
 
     .lp-about-text h2 {
         font-size: 26px;
     }
 
     .lp-stats {
         gap: 20px;
     }
 
     .lp-replacement,
     .lp-storm,
     .lp-insurance,
     .lp-reviews,
     .lp-office {
         padding: 40px 20px;
     }
 
     .lp-replacement h2,
     .lp-insurance-copy h2,
     .lp-reviews h2 {
         font-size: 26px;
     }
 
     .lp-storm {
         min-height: 360px;
         margin: 0 20px 40px;
         padding: 40px 24px;
     }

     .lp-storm h2 {
         font-size: 24px;
     }

     .lp-office-map iframe {
         height: 220px;
     }
 }
 
 .header_wrapper {
	display: none!important;
}
 
.menu_wrapper {
	display: none !important;
}
 
.footer_wrapper{
	display: none !important;
}