*,
 *::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: 8px;
 }
 
 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: space-between;
     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: 520px;
     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: 30px;
     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: 30px;
     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: 12px;
     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: 13px;
 }
 
 .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;
 }
 
 /* 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: 5px;
     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;
  }
 
 /* --- ABOUT STRIP --- */
 .lp-about-section {
     border-bottom: 1px solid var(--green-pale);
 }
 
 .lp-about-strip {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 48px;
     max-width: 1180px;
     margin: 0 auto;
     padding: 56px 32px;
     flex-wrap: wrap;
 }
 
 .lp-about-text {
     flex: 1;
     min-width: 220px;
 }
 
.lp-about-text h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 800;
	color: var(--green-dark);
	line-height: 1.15;
}
 
 .lp-about-desc {
     flex: 2;
     min-width: 260px;
 }
 
 .lp-about-desc p {
     font-size: 15px;
     color: var(--gray-text);
     line-height: 1.7;
     margin-bottom: 20px;
 }
 
 .lp-stats {
     display: flex;
     gap: 36px;
     flex-wrap: wrap;
 }
 
.lp-stat {
	text-align: left;
	background: #96c356;
	padding: 10px 15px;
	border-radius: 12px;
}
 
 .lp-stat .num {
     font-size: 32px;
     font-weight: 600;
     color: #fff;
     line-height: 1;
 }
 
 .lp-stat .label {
     font-size: 13px;
     color: var(--gray-text);
     margin-top: 3px;
 }
 
 /* --- 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: 1;
     min-width: 260px;
     max-width: 400px;
 }
 
 .lp-replacement-img img {
     width: 100%;
     border-radius: var(--radius);
     object-fit: cover;
     height: 340px;
     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;
 }
 
 /* --- STORM DAMAGE SECTION --- */
 .lp-storm {
     padding: 0 0 60px;
     text-align: center;
     background: #fff;
 }
 
 /* Image sits flush at top, full width */
 .lp-storm .lp-storm-img {
     margin-bottom: 40px;
     border-radius: 0;
     max-width: 100%;
 }
 
.lp-storm .lp-storm-img img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	border-radius: 0;
	max-width: 1024px;
	margin: 20px auto 10px;
	border-radius: 30px;
}
 
 .lp-storm h2 {
     font-family: 'Montserrat', sans-serif;
     font-size: 32px;
     font-weight: 800;
     color: var(--green-dark);
     margin-bottom: 10px;
     padding: 0 32px;
 }
 
 .lp-storm p {
     font-size: 15px;
     color: var(--gray-text);
     max-width: 560px;
     margin: 0 auto 28px;
     line-height: 1.7;
     padding: 0 20px;
 }
 
 .lp-btn-green {
     display: inline-block;
     background: var(--green-light);
     color: #fff;
     font-weight: 700;
     font-size: 15px;
     padding: 13px 30px;
     border-radius: 30px;
     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);
 }
 
 .lp-storm-img {
     max-width: fit-content;
     margin: 0 auto;
     overflow: hidden;
 }
 
 
 .lp-storm-img img {
     width: 100%;
     object-fit: cover;
 }
 
 /* --- 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: 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;
 }
 
 /* --- 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: 30px;
      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;
 }
 
 /* --- 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 h2 {
         font-size: 24px;
     }
 
     .lp-storm-img img {
         height: 220px;
     }
 
     .lp-office-map iframe {
         height: 220px;
     }
 }
 
 .header_wrapper {
	display: none!important;
}
 
.menu_wrapper {
	display: none !important;
}
 
.footer_wrapper{
	display: none !important;
}