*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orange: #FF7C0E;
    --brown: #542307;
    --blue: #009ed7;
    --rust: #c85615;
    --cream: #efefe5;
    --warm-cream: #fff8e8;
    --green: #1BBA86;
    --red:#FC2201;
    --star: #FFA601;
  }

  body,html { font-family: 'Inter', sans-serif; color: #333333; overflow-x: hidden; }

  img { max-width: 100%; display: block; }

  a { text-decoration: none; color: inherit; }
  

  /* ─── NAVBAR ─── */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    box-shadow: 0px 0px 0px 0px #00000040;
  }
  .navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo img { height: 65px; width: auto; object-fit: contain; }

  .nav-links {
    display: flex;
    gap: 80px;
    list-style: none;
  }
  .nav-links a {
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--blue); }

  .nav-cta {
    background: var(--green);
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0px 4px 4px 0px #00000040;
    max-width: 147px;
  }
  .nav-cta:hover { background: #62cfab; }

  /* hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: all .3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Kantumruy Pro', sans-serif;
    font-weight: 500;
    font-size: 17px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #111;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .mob-cta {
    margin-top: 14px;
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 13px;
    border-radius: 150px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  /* ─── CTA BUTTON ─── */
  .cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-btn-main {
    background: var(--blue);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 28px;
    border-radius: 18px;
    border: 1px solid #4b4b4b;
    cursor: pointer;
    width: 100%;
    max-width: 360px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 2px 4px 4px rgba(0,0,0,.25);
    transition: background .2s;
  }
  .cta-btn-main:hover { background: #007fb0; }
  .cta-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
  }
  .stock-dot { width: 12px; height: 12px; background: var(--green); border-radius: 6px; flex-shrink: 0; }
  .stock-squares { display: flex; gap: 2px; }
  .stock-sq {
    width: 13px; height: 13px;
    border: 1px solid #686c78;
  }
  .stock-sq.red { background: #ff3838; }
  .stock-sq.white { background: #fff; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: url('../../images/index-new/hero-bg.jpg') no-repeat center center / cover;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-overlay { position: absolute; inset: 0; background: rgba(255,250,240,0.15); }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 0px 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    min-height: 650px;
    direction: rtl;
  }
  .hero-text { max-width: 100%;direction: ltr;}
  .hero-title {
    font-family: 'Manuale', serif;
    font-weight: 600;
    font-size: clamp(36px, 4vw, 62px);
    color: var(--brown);
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 3px 4px 0px #FFFBF2;
    max-width: 400px;
  }
  .hero-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hero-feat {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1d1d1d;
  }
  .hero-feat img { width: 32px; height: 32px; flex-shrink: 0; }

  .hero-review {
    background: #f6f7f9;
    border: 1px dashed #3a748c;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
    color: #3b3b3b;
    text-align: c;
  }
  .hero-review em { font-style: italic; color: #000; display: block; margin-bottom: 8px; font-size: 14px;text-align: center;}
  .review-meta { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap;justify-content: center; }
  .verified { color: #1ac70e; font-size: 12px; }

  .hero-img-side,.hero-img-side-mob {
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    height:640px;
  }
  .hero-img-side img,.hero-img-side video,.hero-img-side-mob video { width: 100%; max-width: 100%; border-radius: 16px; object-fit: cover;height: 100%; filter: brightness(1.2) contrast(1.05);}
  .hero-img-side video,.hero-img-side-mob video {
    border: 8px solid #E5E5E5;
  }
  .verified {
    display: flex;
    align-items: center;
    gap:5px;
  }
  
  /* ─── TRUST STRIP ─── */
  .trust-strip {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
  }
  .trust-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-icon { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
  .trust-title { font-family: 'Kantumruy Pro', sans-serif; font-weight: 600; font-size: 15px; color: #111; margin-bottom: 10px; letter-spacing: .04em; }
  .trust-sub { font-family: 'Kantumruy Pro', sans-serif; font-size: 13px; color: #555; line-height: 1.5; }

  /* ─── SECTION HELPERS ─── */
  .section-title {
    font-family: 'inter', serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
  }
  .container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

  /* ─── STORY SECTION ─── */
  .story {
    padding: 110px 0px;
    /* background: url('../images/pmc-lp-intro-section-3-image-1.jpg') no-repeat center center / cover; */
    background: #ffffff;
  }
  .story-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
  }
  .story-img img { width: 100%; border-radius: 24px; }
  .story-text .section-title {
        text-align: left;
    font-size: 44px;
    line-height: 66px;
    margin-bottom: 30px;
    max-width: 100%;
    color: #333333;
     background: none; /* remove gradient */
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    }
  .story-sub {
    font-size: clamp(27px, 1.5vw, 40px);
    color: #a24100;
    letter-spacing: .02em;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: "Delicious Handrawn", cursive;
  }
  .story-body { font-size: 17px; line-height: 1.8; color: #161515; font-weight: 500; }
.story-body p {
    color: #333;
    line-height: 44px;
    margin-bottom: 20px;
    font-size: 22px;
    font-family: inter;
    font-weight: 400;
}
  /* .story-body p:last-child {
    margin-bottom:0;
  } */

  /* ─── FEATURES ─── */
  .features { background: #F9F9F9; padding: 80px 0px; }
  .features .section-title { font-size:44px;     background: linear-gradient(90deg, #000000 0%, #1E9ACB 33%, #1E5CA8 66%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; margin-bottom: 60px; line-height: 1.2; }
 .features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto;
    gap: 80px;
    
}
  .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    /* background: #F3F3EC; */
    border-radius: 28px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
  }
  .feature-card.ft-card-one .feature-img{
    height: 100%;
  }
  .feature-card.ft-card-one {
    min-height: 380px;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
  }
  .feature-card.reverse { direction: rtl;background: transparent;grid-template-columns: 1fr 1.2fr;
    gap: 20px;}
  .feature-card.ft-card-two {
    direction: rtl;
    text-align: left;
    /* background: url('../images/pmc-lp-highlights-section3-image-1.jpg') no-repeat center center / cover; */
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
  .feature-card.reverse > * { direction: ltr;
    width: 100%;
    max-width: 50%; }
  .feature-card.reverse .feature-img {border-radius: 25px; overflow: hidden;}
  .feature-img { height: 350px; object-fit: cover; width: 100%;    border-radius: 25px;max-width: 50%; }
  .feature-body { padding: 40px; }
  .feature-card.ft-card-one .feature-body{padding-right: 45px;}
 .feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}
.feature-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 470px;
}
.energy-saving, .fast-shipping, .easy-install, .quiet-operation {
    font-family: Inter;
    font-weight: 400;
    font-size: 13px;
     line-height: 20px;
    text-align: center;
}
  .features-cta { text-align: center; margin-top: 80px; }

  /* ─── WHAT MAKES ─── */
  .what-makes { background: #fff; padding: 80px 0px; }
  .what-makes .section-title { font-size:44px;  line-height: 1.25; margin-bottom: 60px; max-width: 625px; margin-left: auto; margin-right: auto; 
 background: linear-gradient(90.1deg, #000000 -0.14%, #1E9ACB 0.49%, #1E5CA8 82.1%, #000000 111.39%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;}
  .wm-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.7fr 1fr;
    gap: 0px;
    align-items: center;
    padding: 0 40px;
  }
  .wm-left, .wm-right { display: flex; flex-direction: column; gap: 40px; position: relative;z-index: 1;}
  .wm-center { display: flex; align-items: center; justify-content: center; }
  .wm-center img { max-width: 100%; width: 90%; }
  .wm-item { display: flex; gap: 16px; align-items: flex-start; }
  .wm-icon { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; }
  .wm-item-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 20px; color: #565656; margin-bottom: 6px; }
  .wm-item-desc { font-size: 15px; color: #333333; line-height: 1.6; }
  .wm-cta { text-align: center; margin-top: 50px; }

  /* ─── STEPS ─── */
  .steps { padding: 20px 0px 80px; background: #fff; }
  .steps .section-title { font-size: 45px; color: var(--orange); margin-bottom: 56px; }
  .steps-grid {
    /* max-width: 1004px; */
        margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  video.img-fluid.step-img, img.step-img {
    z-index: -11;
    position: relative;
}
p.stepCount  {
    z-index: 44;
}
  .step-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0px 4.68px 14.05px 0px #00000026;
    z-index: 0;
    max-width: 430px;
    width: 100%;
}
  .step-img { width: 100%; aspect-ratio: 3/4.5; object-fit: cover; }
  .step-info { padding: 20px; text-align: center;position: absolute;bottom: 20px;border-radius: 17px;background: #f0f0e8;max-width: 90%;width: 100%;left: 50%;transform: translate(-50%,0);}
  .step-name { font-family: 'Nunito', sans-serif; font-size: 25px; color: #212529; margin-bottom: 8px; font-weight: 400; }
  .step-desc { font-family: 'Kantumruy Pro', sans-serif;font-size: 14px;color: #212529;line-height: 1.6;font-weight: 500; }
  .steps-cta { text-align: center; margin-top: 60px; }

  /* ─── COMPARISON ─── */
.comparison {
    padding: 60px 0px 80px;
    /* background: url(../images/pmc-lp-comparison-bgimage.jpg) no-repeat center center / cover; */
    background: #EFEFEF;
}
  .comparison .section-title { font-size: clamp(26px, 3vw, 44px); color: var(--orange); margin-bottom: 48px; line-height: 1.2; max-width: 920px; margin-left: auto; margin-right: auto; }
  .comp-table-wrap { max-width: 1100px; margin: 0 auto;
    border-radius: 35px;padding:0 40px;    margin-bottom: 90px;}
    .reviews .section-title
  .comp-table { width: 100%; border-collapse: collapse; background: #fff7e4; border-radius: 28px; overflow: hidden; }
  .comp-table th, .comp-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid #e8dcc5; font-size: 15px; }
  .comp-table th { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 16px; background: #fff7e4; padding-top: 24px; }
  .comp-table td:first-child { text-align: left; font-family: 'Inter', sans-serif; font-weight: 500; color: #212529; }
  .comp-table tr:last-child td { border-bottom: none; }
  .comp-check { color: #22c55e; font-size: 20px; font-weight: 700; }
  .comp-x { color: #ef4444; font-size: 20px; font-weight: 700; }
  .comp-brand-img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; margin: 0 auto 6px; }
  .comp-brand-name { font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 600; color: #333; }
  .comp-stars { font-size: 12px; color: #888; }
  .comp-punch { background: linear-gradient(to bottom, #a4b57d, #cad6ae); border-radius: 16px; padding: 8px; }

  /* ─── GUARANTEE ─── */
  .guarantee { padding: 72px 0px;background: linear-gradient(100.42deg, #3E3E3E 0.78%, #424242 25.55%);
 }
  .guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; padding:0 10px}
  .guarantee-badge img { width: 340px; height:340px;object-fit: contain;}
  .guarantee-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(24px, 3vw, 44px); color: #fff; margin-bottom: 18px; line-height: 1.2; }
  .guarantee-text {     font-size: 17px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin-bottom: 32px;
        max-width: 674px;    font-weight: 400; }
  .guarantee-text strong { color: #fff; }
  .guarantee-cta {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: baseline;
}
.guarantee-cta {
    max-width: 380px;
}
.guarantee-cta .containerBox {
    width: 100%;
        color: #fff;
}
  .guarantee .cta-btn-main { border-color: rgba(255,255,255,.4); }
  .guarantee .cta-stock { color: rgba(255,255,255,.85); }

  /* ─── REVIEWS ─── */
  .reviews { padding: 80px 0px 80px; background: #fff; }
  .reviews .section-title { font-size: clamp(26px, 3vw, 44px);     background: linear-gradient(90deg, #000000 31%, #1E9ACB 42%, #1E5CA8 62%, #000000 65%);-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; margin-bottom: 50px; }
  .reviews-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;padding: 0 40px; }
  .review-photo-placeholder {position:relative;}
  .review-card {
    background: #fff;
    border-radius: 0px;
    box-shadow: none;
    padding: 0px;
    border: 1px solid #D7D7D7;
    border-radius: 20px;
}
  .rev-author-main {display: flex;position: absolute;background: #fff;border-radius: 12px;padding: 15px 15px;bottom: 15px;left: 15px;gap: 10px;}
  .review-photo { width: 100%; aspect-ratio: 4/3.5; object-fit: cover; border-radius: 16px; margin-bottom: 16px; border: 1px solid #d7d7d7; }
  .review-stars { margin-bottom: 20px; }
  .review-stars img { height: 20px; }
  .reviewCont {
    padding: 8px 16px 16px;
}
.review-headline {
    font-family: Kantumruy Pro;
    font-weight: 500;
    font-size: 22px;
    color: #333;
    margin-bottom: 16px;
}
  .review-body {     font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #333333;
    margin-bottom: 14px;
    font-family: 'Kantumruy Pro'; }
  .review-author { font-family: 'Kantumruy Pro', sans-serif; font-weight: 600; font-size: 18px; color: #111; gap: 10px;}
  .review-verified { font-family: 'Kantumruy Pro', sans-serif; font-size: 12px; color: #1ac70e;display: flex;
    align-items: center;gap: 5px; }

  /* ─── FAQs ─── */
  .faqs { background: #ffffff; padding: 80px 0px; }
  .faqs .section-title {
    font-size: 44px;
    color: #0C2539 !important;
    margin-bottom: 50px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0C2539 !important;
    background-clip: unset;
    text-fill-color: #0C2539;
}


  .faq-list { max-width: 1000px; margin: 0 auto; padding:0 40px;}
  .faq-item { border-bottom: 1px solid #DFDFDF; }
  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    /* font-family: 'Alexandria', sans-serif; */
    font-size: clamp(15px, 1.8vw, 22px);
    color: #333333;
    gap: 16px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
  }
  .faq-icon {transition: transform .3s; width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    /* text-align: center; */
    display: inline-flex;
    justify-content: center;
    align-items: center;}
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
  }
  .faq-item.open .faq-a { display: block; }

  /* ─── URGENCY ─── */
  .urgency { padding: 50px 0px 130px; 
    /* background: url('../images/pmc-closingcta-bgimage.jpg') no-repeat bottom center / cover;  */
  }
  .urgency-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; padding:0 40px;}
  .urgency-title { font-family: 'Manuale', serif; font-weight: 800; font-size: clamp(30px, 3.5vw, 58px); color: var(--brown); line-height: 1.1; margin-bottom: 28px; }
  .urgency-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 60px; }
  .urgency-item { display: flex; align-items: center; gap: 14px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 18px; color: #524d3d; }
  .urgency-item img { width: 32px; height: 32px; }
  .urgency-img img { width: 100%; border-radius: 20px; }

  /* ─── FOOTER ─── */
  .footer {
    background: #424242;
    color: #fff;
    padding: 40px 40px 40px;
    text-align: center;
}
  .footer-logo { display: flex; justify-content: center; margin-bottom: 28px; }
  .footer-logo img { height: 97px; }
  .footer-links { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; font-weight: 700; font-size: 16px; margin-bottom: 10px;}
  .footer-links a { color: #fff; transition: opacity .2s; position:relative;}
  .footer-links a::after {content: '';
    position: absolute;
    right: -13px;
    top: -9px;
    width: 2px;
    height: 95%;
    background: rgba(255, 255, 255);
    margin-top: 10px;}
  .footer-links a:hover { opacity: .8; }
  .footer-links a:last-child::after {display: none;}
  .footer-copy { font-weight: 700; font-size: 16px; margin-bottom: 30px; margin-top: 24px;}
  .footer-fine { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 900px; margin: 0 auto; }
  .hero-img-side-mob {display:none;}
  .trust-marquee {display:none;}
  .story-img-mob {display:none;}
  .story-body {
      display: block;
    }
    .story-body.mob {
      display: none;
    }
    .feature-card.ft-card-two .feature-img{
      display:none;
    }
    .wm-center-mob {
      display:none;
    }
  /* ─── RESPONSIVE ─── */
  @media (max-width: 1199px) {
    .hero-feat {
      font-size: 18px;
    }
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
    .comparison {
      padding: 60px 40px 70px;
    }
    .comparison .section-title {
      font-size: 40px;
    }
    .comp-table-wrap {
      padding:0;
    }
    .reviews-grid {
      gap: 30px;
    }
    .rev-author-main {
      left: 8px;
    }
    .reviews .section-title {
      font-size:40px;
    }
    .features-grid {
      padding:0 40px;
    }
    .faqs .section-title {
      font-size: 40px;
      margin-bottom:20px;
    }
    .urgency-title {
      font-size: 40px;
    }
    .urgency-list {
      gap: 8px;
      margin-bottom: 25px;
    }
  }
  @media (max-width: 1100px) {
    
    
  }
  @media (max-width: 992px) {
    .container {
      padding: 0 20px;
    }
    .nav-links {
      gap:15px;
    }
    .nav-links a {
      font-size: 14px;
    }
    .nav-cta {
      font-size: 15px;
      padding: 10px 25px;
    }
    .nav-logo img {
      height: 50px;
    }
    .hero-content {
      grid-template-columns: 1fr 1.2fr;
      gap: 10px;
    }
    .hero-feat {
      font-size: 17px;
    }
    .hero-review em {
      font-size: 12px;
    }
    .review-meta {
      gap:5px;
    }
    .verified {
      font-size: 10px;
    }
    .hero-review {
      padding: 10px 10px;
    }
    .cta-btn-main {
      padding: 16px 20px;
    }
    .trust-strip {
      padding: 20px 20px;
    }
    .trust-grid {
      gap:15px;
    }
    .trust-icon {
      width: 40px;
      height: 40px;
    }
    .trust-item {
      gap:10px;
    }
    .trust-title,.trust-sub {
      font-size: 12px;
    }
    .story-inner {
      direction: rtl;
      gap: 20px;
      text-align: left;
    }
    .story-body p {
      line-height: 20px;
      margin-bottom: 10px;
      font-size: 14px;
    }
    .features-grid {
      padding:0 40px;
    }
    .feature-card.ft-card-one {
      grid-template-columns: 1fr 1fr;
      min-height:240px
    }
    .feature-title {
      font-size: 28px;
      margin-bottom:10px
    }
    .features-grid {
      gap: 30px;
    }
    .feature-card.reverse {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .feature-card.ft-card-two {
      min-height: 300px;
    }
    .feature-title br,.feature-desc br {
      display: none;
    }
    .step-info {
      padding: 20px 10px;
    }
    .step-name {
      font-size: 20px;
    }
    .story-text .section-title {
      padding:0 20px;
    }
    
    .comparison .section-title {
      font-size: 40px;
    }
    .comp-table-wrap {
      padding:0;
    }
    .reviews .section-title {
      font-size: 40px;
    }
    .reviews-grid {
      gap: 20px;
    }
    .review-author {
      font-size: 12px;
    }
    .rev-author-main {
      padding: 10px 10px;
      gap: 5px;
      left:5px;
    }
    .review-verified {
      font-size: 9px;
    }
    
    .footer-fine {
      display:inline;
    }
  }
  @media (max-width: 900px) {
    .guarantee-inner { gap: 30px; }
    .guarantee-badge { display: flex; justify-content: center; }
    .guarantee-cta { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { grid-template-columns: 1fr; min-height: auto; }
    .feature-card.reverse { direction: ltr; }
    .feature-img { height: 220px; }
    .wm-grid { grid-template-columns: 1fr 1.2fr 1fr; }
    .story-img { order: 1; } .story-text { order: 0; }
    .urgency-img { order: 1; }
     .features {
      padding: 60px 0;
    }
  }

  @media (max-width: 767px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; width: fit-content;}
    .navbar { padding: 10px 15px; }
    .navbar .container {padding:0;}
    .nav-logo img {height:45px;}
    .hero-img-side {display:none;}
    .hero-img-side-mob {display:block;margin-bottom: 20px;}
    .hero-content { grid-template-columns: 1fr; padding: 30px 0px 50px; min-height: auto; gap: 24px;text-align: center; }
    .hero-features {margin-bottom: 30px;}
    .hero-img-side { order: -1; }
    .hero-review {display:none;}
    .limitedOfferSection {padding: 80px 0 20px;}
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .trust-strip { padding: 20px 0; }

    .story { padding: 50px 20px; }
    .story-inner { gap: 28px; }

    .features { padding: 0 20px; }
    .features .section-title {
      font-size: 45px;
      margin-bottom: 40px;
      line-height: 50px;
    }
    .features-grid,.feature-card.ft-card-one { grid-template-columns: 1fr; background: transparent;}
    .feature-card.ft-card-one .feature-body {
      padding:30px 20px;
      text-align:center;
    }
    .story-body {
      display: none;
    }
    .story-body.mob {
      display: block;
    }
    .story-body p {
      font-size:18px;
      line-height: 25px;
    }
    .what-makes { padding: 30px 0px; }
    .wm-grid { grid-template-columns: 1fr; padding:0;}

    .steps { padding: 30px 0px 30px; }
    .steps-grid { grid-template-columns: 1fr; }

    .comparison { padding: 50px 10px 80px; }

    .guarantee { padding: 50px 20px; }
    .guarantee-inner { gap: 24px; }

    .reviews { padding: 50px 20px; }
    .reviews-grid { grid-template-columns: 1fr; }

    .faqs { padding: 50px 20px; }

    .urgency { padding: 50px 20px; }
    .urgency-inner { gap: 28px; }

    .footer { padding: 40px 20px 80px; }
    .footer-links { gap: 12px; font-size: 14px; }

    .container { padding: 0 20px; }
    .cta-btn-main { font-size: 17px; padding: 18px 20px; }

    .hero-title {
      font-size: 40px;
      text-align: center;
      line-height: 41px;
    }
    .hero-feat { font-size: 18px;text-align: left; }
    .hero-img-side-mob video {
      border: 5px solid #fff;
    }
    
    .cta-btn {
      width: 100%;
    }
    .trust-marquee {
      overflow: hidden;
      position: relative;
    }

    .trust-track {
      display: flex;
      width: max-content;
      animation: scrollTrust 25s linear infinite;
    }

    .trust-item {
      max-width: 100%;
      margin-right: 20px;
      width: 260px;
      gap: 25px;
    }

    @keyframes scrollTrust {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .trust-grid {
      display:none;
    }
    .trust-marquee {display:block;}
    .trust-title {
      font-size: 16px;
    }
    .trust-sub {
      font-size: 14px;
    }
    .trust-icon {
      width: 60px;
      height: 60px;
    }
    .story {
      padding: 35px 0px 0px;
      background: #ffffff;
    }
    .story-inner {
      padding: 0 0px;
      text-align: center;
    }
    .story-text .section-title {
      text-align: center;
      font-size: 40px;
      margin: auto;
    }
    .story-img-mob {
      display:block;
    }
    .story-sub {
      font-size: 28px;
      padding: 0 20px;
    }
    .story-body {
      font-size: 17px;
      padding: 0 12px;
      text-align: left;
    }
    .story-inner {
      grid-template-columns: 1fr;
    }
    .feature-card.ft-card-one .feature-img {
      height: 250px;
      object-fit: cover;
      border-radius: 35px;
    }
    .feature-card.ft-card-one .feature-body {
      padding: 20px 20px;
    }
    .feature-title {
      font-size: 28px;
      margin-bottom:10px
    }
    .feature-desc {
      font-size: 16px;
    }
    .features-grid {
      gap: 20px;
    }
    .feature-card.reverse {
      grid-template-columns: 1fr;
      gap:0px;
    }
    .feature-body {
      padding: 20px;
      text-align: center;
    }
    .feature-card.ft-card-two {
      background: transparent;
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .feature-card.ft-card-two .feature-img{
      display:block;
      border-radius: 35px;
    }
    .feature-card.ft-card-two {
      gap:0;
    }
    
    .features-cta {
      margin-top: 20px;
    }
    .feature-card.ft-card-one .feature-body {
      padding: 30px 20px 20px;
    }
    .features-grid {
      padding: 0 0px;
    }
    .what-makes .section-title {
      font-size: 38px;
    }
    .what-makes .section-title{
      padding:0 20px;
      margin-bottom: 20px;
    }
    .wm-center-mob {
      display:block;
    }
    .wm-left, .wm-right {
      padding: 0 20px;
      gap: 29px;
    }
    .wm-left {
      margin-bottom:29px;
    }
    .wm-item-title {
      font-size: 24px;
      margin-bottom:12px;
    }
    .wm-item-desc {
      font-size: 18px;
    }
    .wm-center { display: none; }
    .steps .section-title {
      font-size: 40px;
      max-width: 90%;
      margin: 0 auto 30px;
      line-height: 45px;
    }
    .steps-cta {
      display: none;
    }
    .steps .swiper-pagination {
      position: relative;
      bottom: 0;
      padding-top: 40px;
    }
    .steps .swiper-pagination-bullet {
      width:10px;
      height:10px;
      border:1px solid #789D20;
      background:#fff;
      opacity: 1;
    }
    .steps .swiper-pagination-bullet-active {
      background:#789D20;
    }
    .comparison .section-title br {
      display:none;
    }
    .comparison .section-title {
      font-size: 44px;
      margin-bottom: 40px;
    }
    .comp-table-wrap {
      background: transparent;
      padding: 0 0px;
    }
    .s5CompBox {
      width:100%!important;
      margin: 170px auto 0!important;
    }
    .s5Col4.hide-mob {
      display:none;
    }
    .comparison .section-title br {
      display:none!important;
    }
    .guarantee-inner {
      padding: 0;
      text-align: center;
    }
    .guarantee-cta {
      display:none;
    }
    .guarantee-badge img {
      width: 250px;
      height: 250px;
    }
    .guarantee-title {
      font-size: 32px;
      margin-bottom: 30px;
    }
    .guarantee-text {
      font-size: 16px;
      margin:0 auto 0;
    }
    .guarantee-inner {
      grid-template-columns: 1fr;
    }
    .reviews {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 40px;
    }
    .reviews .section-title {
      font-size:40px;
      line-height: 45px;
      padding:0 20px;
    }
    .reviews-grid {
      padding:0;
    }
    .review-author {
      font-size:14px;
    }
    .rev-author-main {
      padding: 10px 10px;
      bottom: 15px;
      left: 8px;
      gap: 5px;
    }
    .review-headline {
      font-size: 22px;
    }
    .review-stars img {
      height: 25px;
    }
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-list {
      padding: 0 0px;
    }
    
    .faq-q {
      font-size: 18px;
      line-height: 28px;
      font-family: 'Inter';
    }
    .urgency {
      /* background:url('../images/pmc-closingcta-bg-mob.jpg') no-repeat bottom center / cover; */
      padding-bottom:30rem;
    }
    .urgency-inner {
        grid-template-columns: 1fr;
        padding:0 10px;
    }
    .urgency-title {
      text-align: center;
      font-size: 40px;
      line-height:45px;
    }
    .urgency-list {
      padding-left:20px;
      margin-bottom:30px;
    }
    .urgency-item {
      font-size: 20px;
    }
    .urgency .cta-btn-main {
      padding: 18px 10px;
    }
    .footer-links a::after {
      right: -7px;
    }
    .footer-links {
      margin-bottom: 30px;
    }
    .footer-copy {
      max-width: 100%;
      margin: 0 auto 30px;
      line-height: 28px;
      font-size: 14px;
    }
    .footer-fine {
      display: inline;
    }
    .navbar {
      box-shadow: 0px 2px 2px 0px #00000040;
    }




  @media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .trust-item { flex-direction: row; }
    .s5Col1 ul li, .s5Col2 ul li {
    font-size: 13px!important;
}
.footer-links, .footer-copy {
    font-size: 11px;
}

  }
  @media (max-width: 400px) {
    .hero-title {
      font-size: 37px;
    }
    .features .section-title {
      font-size: 40px;
      margin-bottom: 40px;
      line-height: 40px;
    }
    .what-makes .section-title {
      font-size: 38px;
    }
    .comparison .section-title {
      font-size: 35px;
      margin-bottom: 40px;
    }
    .cta-btn {
    font-size: 16px;
  }
  }

  @media(max-width:374.9px) {
      .footer-copy {
      font-size: 12px;
    }
  }

  