/* === FONTS === */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/montserrat-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/montserrat-latin.woff2) format('woff2');
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #252A32;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.no-mobile { display: none; }
.no-desktop { display: block; }

@media (min-width: 768px) {
  .no-mobile { display: block; }
  .no-desktop { display: none; }
}

/* === 1. URGENCY BAR === */
.urgency-bar {
  background: #FD3939;
  padding: 10px 15px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}
.urgency-bar .attn { color: yellow; font-weight: 700; }
.urgency-bar b { font-weight: 700; }

/* === 2. NAV BAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar__logo img { max-width: 200px; }
@media (min-width: 768px) {
  .navbar { justify-content: space-between; }
}
.navbar__links {
  display: none;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
.navbar__links a:hover { color: #0C64C5; }
.navbar__cta {
  display: none;
  background: #20C862;
  color: #F6F9FE;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  cursor: pointer;
  letter-spacing: 0.2px;
}
@media (min-width: 768px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: inline-block; }
}

/* === 3. HERO === */
.hero {
  background: #E3E6EF;
  padding: 20px 15px 30px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__mobile-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.hero__mobile-proof img { max-width: 100px; }
.hero__mobile-proof span { font-size: 14px; color: #4F4F4F; text-align: center; }
.hero__content { text-align: center; }
.hero__title {
  color: #0C64C5;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}
.hero__mobile-img {
  max-width: 400px;
  margin: 0 auto 15px;
  border-radius: 25px;
  overflow: hidden;
}
.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hero__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
}
.hero__benefit-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  object-fit: scale-down;
}
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(155,155,155,0.31);
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  margin: 10px auto 15px;
  max-width: 340px;
}
.hero__social-proof img.avatars { max-width: 100px; }
.hero__social-proof-text {
  font-size: 12px;
  color: #4F4F4F;
  text-align: center;
}
.hero__social-proof-text img { max-width: 100px; margin: 4px auto; }
.hero__social-proof-text strong { display: block; }
.hero__desktop-img {
  display: none;
  max-width: 500px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero__inner { flex-direction: row; gap: 30px; align-items: center; }
  .hero__content { text-align: left; flex: 1; }
  .hero__title { font-size: 38px; }
  .hero__mobile-proof { display: none; }
  .hero__mobile-img { display: none; }
  .hero__desktop-img { display: block; }
  .hero__benefits { margin-left: 0; }
  .hero__social-proof { margin-left: 0; }
}

/* === CTA BUTTON (shared) === */
.cta-btn {
  display: inline-block;
  background: #20C862;
  color: #F6F9FE;
  font-weight: 700;
  font-size: 22px;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  cursor: pointer;
  box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.52);
  width: 100%;
  max-width: 325px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.4); }
.cta-btn--sm { font-size: 18px; border-radius: 15px; padding: 15px 20px; }
.guarantee-text {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* === 4. TRUST BADGES === */
.trust-bar {
  background: #00649C;
  border-bottom: 1px solid #9B9B9B;
  padding: 15px;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.trust-badge__icon { width: 40px; height: 40px; object-fit: scale-down; }
.trust-badge__text { color: #fff; font-size: 14px; line-height: 1.4; }
@media (min-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
  .trust-badge__text { font-size: 16px; }
}

/* === 5. FEATURES === */
.features {
  padding: 30px 15px;
  background: #fff;
}
.features__title {
  color: #241854;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}
.features__grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.features__center-img { display: none; max-width: 300px; margin: 0 auto; }
.feature-card { text-align: center; }
.feature-card__icon { width: 70px; height: 70px; margin: 0 auto 10px; border-radius: 50%; object-fit: cover; }
.feature-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 8px; }
.feature-card__text { font-size: 16px; color: #000; line-height: 1.6; padding: 0 10px; }

@media (min-width: 768px) {
  .features__title { font-size: 32px; }
  .features__grid { flex-direction: row; align-items: flex-start; }
  .features__col { flex: 1; display: flex; flex-direction: column; gap: 30px; }
  .features__center-img { display: block; flex: 0.8; align-self: center; }
  .feature-card__text { font-size: 18px; }
}

/* === 6 & 13. MID-PAGE CTA BAR === */
.cta-bar {
  background: #000;
  padding: 15px;
}
.cta-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cta-bar__logo { display: none; max-width: 200px; }
.cta-bar__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(155,155,155,0.31);
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  max-width: 340px;
}
.cta-bar__proof img.avatars { max-width: 100px; }
.cta-bar__proof-text { font-size: 12px; color: #4F4F4F; text-align: center; }
.cta-bar__proof-text img { max-width: 100px; margin: 4px auto; }
.cta-bar__proof-text strong { display: block; }

@media (min-width: 768px) {
  .cta-bar__inner { flex-direction: row; justify-content: space-between; }
  .cta-bar__logo { display: block; }
}

/* === 7. SIZING GUIDE === */
.sizing {
  background: #EAF8FF;
  padding: 30px 15px;
}
.sizing__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.sizing__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.sizing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 25px;
}
.sizing-card {
  background: #fff;
  border: 1px solid rgba(155,155,155,0.55);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 12px;
}
.sizing-card img { width: 100%; }
.sizing-card__name { font-size: 18px; font-weight: 700; color: #333; margin: 8px 0 4px; }
.sizing-card__size { font-size: 13px; color: #000; }

@media (min-width: 768px) {
  .sizing__title { font-size: 32px; }
  .sizing__cards { grid-template-columns: repeat(4, 1fr); }
  .sizing-card__name { font-size: 20px; }
  .sizing-card__size { font-size: 14px; }
}

/* Solves All Pest Issues block */
.pest-features {
  background: #00649C;
  border: 1px solid rgba(74,74,74,0.3);
  border-radius: 25px;
  padding: 20px;
  margin: 0 auto 25px;
  max-width: 900px;
  box-shadow: 2px 3.46px 10px 2px rgba(0,0,0,0.12);
}
.pest-features__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.pest-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.pest-feature {
  text-align: center;
  color: #fff;
}
.pest-feature__icon { width: 60px; height: 60px; margin: 0 auto 6px; border-radius: 50%; object-fit: cover; }
.pest-feature__label { font-size: 14px; font-weight: 700; }

@media (min-width: 768px) {
  .pest-features__title { font-size: 35px; }
  .pest-feature__label { font-size: 16px; }
}

/* Before/After comparison */
.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto 25px;
}
.comparison-card {
  border: 1px solid rgba(155,155,155,0.55);
  border-radius: 15px;
  padding: 20px;
  background: #fff;
}
.comparison-card--with { border: 3px solid #00639C; }
.comparison-card__title { font-size: 22px; font-weight: 700; color: #333; margin-bottom: 12px; }
.comparison-card__list { display: flex; flex-direction: column; gap: 8px; }
.comparison-card__item { font-size: 16px; display: flex; align-items: flex-start; gap: 8px; }
.comparison-card__item::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.comparison-card:not(.comparison-card--with) .comparison-card__item::before { background: #FD3939; }
.comparison-card--with .comparison-card__item::before { background: #20C862; }

@media (min-width: 768px) {
  .comparison-cards { flex-direction: row; }
  .comparison-card { flex: 1; }
  .comparison-card__title { font-size: 24px; }
  .comparison-card__item { font-size: 18px; }
}

/* Guarantee divider */
.guarantee-divider {
  border-top: 2px solid #D5E5FF;
  padding-top: 10px;
  margin-top: 10px;
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
}

/* === 8. HOW TO USE === */
.how-to {
  padding: 30px 15px;
  background: #fff;
}
.how-to__title {
  font-size: 28px;
  font-weight: 700;
  color: #0C64C5;
  text-align: center;
  margin-bottom: 8px;
}
.how-to__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.how-to__steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  border: 1px solid rgba(155,155,155,0.52);
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
}
.step-card img { width: 100%; border-radius: 25px 25px 0 0; }
.step-card__body { padding: 15px; }
.step-card__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-card__text { font-size: 16px; line-height: 1.6; }

@media (min-width: 768px) {
  .how-to__title { font-size: 35px; }
  .how-to__steps { flex-direction: row; }
  .step-card { flex: 1; }
  .step-card__text { font-size: 18px; }
}

/* === 9. SAFE & NON-TOXIC === */
.safe-section {
  background: #D8F2FF;
  padding: 30px 15px;
}
.safe-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.safe-section__content { flex: 1; }
.safe-section__title {
  font-size: 26px;
  font-weight: 700;
  color: #0C64C5;
  margin-bottom: 15px;
  text-align: center;
}
.safe-section__text { font-size: 18px; line-height: 1.6; margin-bottom: 20px; }
.safe-section__subcards { display: flex; gap: 10px; }
.safe-subcard {
  flex: 1;
  background: #2569AA;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}
.safe-subcard__title { color: #fff; font-size: 16px; font-weight: 700; padding: 10px; }
.safe-subcard img { margin: 0 10px 10px; border-radius: 25px; width: calc(100% - 20px); }
.safe-section__image {
  max-width: 390px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .safe-section__inner { flex-direction: row; align-items: center; }
  .safe-section__content { flex: 0.65; }
  .safe-section__image { flex: 0.35; }
  .safe-section__title { font-size: 35px; text-align: left; }
  .safe-subcard__title { font-size: 18px; }
}

/* === 10-11. PEST STATS & CUTTING EDGE === */
.info-section { padding: 30px 15px; }
.info-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-section__content { flex: 1; }
.info-section__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
.info-section__text { font-size: 18px; line-height: 1.6; margin-bottom: 15px; }
.info-section__image {
  max-width: 390px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
}
.stat-cards { display: flex; gap: 10px; margin-bottom: 15px; }
.stat-card {
  flex: 1;
  border: 1px solid #9B9B9B;
  border-radius: 15px;
  padding: 15px;
  background: #fff;
  text-align: center;
}
.stat-card__number { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.stat-card__text { font-size: 16px; color: #828282; line-height: 1.4; }

@media (min-width: 768px) {
  .info-section__inner { flex-direction: row; align-items: center; }
  .info-section__inner--reverse { flex-direction: row-reverse; }
  .info-section__content { flex: 0.65; }
  .info-section__image { flex: 0.35; }
  .info-section__title { font-size: 32px; text-align: left; }
  .stat-card__number { font-size: 35px; }
  .stat-card__text { font-size: 18px; }
}

/* === 12. COMPARISON TABLE === */
.compare-table-section {
  padding: 20px 15px 30px;
}
.compare-table-section__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.compare-table {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 2.5px 4.33px 10px 3px #DEDFE5;
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 12px 10px; text-align: center; vertical-align: middle; }
.compare-table thead th { background: #fff; font-size: 14px; font-weight: 700; padding: 15px 10px; }
.compare-table thead th:first-child { width: 50%; text-align: left; }
.compare-table thead th img { max-width: 80px; margin: 0 auto; }
.compare-table .row-label {
  background: #057B05;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 15px 10px;
}
.compare-table .row-label:last-child { border-radius: 0 0 0 15px; }
.compare-table td img { height: 25px; margin: 0 auto; object-fit: scale-down; }

@media (min-width: 768px) {
  .compare-table-section__title { font-size: 35px; }
  .compare-table .row-label { font-size: 18px; }
  .compare-table td img { height: 30px; }
}

/* === 14. CUSTOMER REVIEWS === */
.reviews {
  background: #EAF8FF;
  padding: 30px 15px;
}
.reviews__header { text-align: center; margin-bottom: 20px; }
.reviews__title { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.reviews__title span { color: #0B63C4; }
.reviews__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}
.reviews__proof img { max-width: 100px; }
.reviews__proof span { font-size: 14px; color: #4F4F4F; text-align: center; }
@media (min-width: 768px) {
  .reviews__proof { flex-direction: row; gap: 10px; }
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 25px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(155,155,155,0.3);
}
.review-card__image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.review-card__body { flex: 1; }
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: #E3E6EF; }
.review-card__name { font-size: 16px; font-weight: 700; color: #333; }
.review-card__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #057B05;
  font-weight: 600;
}
.review-card__verified img { width: 14px; height: 17px; }
.review-card__stars { max-width: 100px; margin-bottom: 8px; }
.review-card__text { font-size: 16px; line-height: 1.5; }

@media (min-width: 768px) {
  .reviews__title { font-size: 35px; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .review-card { flex-direction: row; }
  .review-card__text { font-size: 18px; }
}

/* === 15. EXPERT + GUARANTEE === */
.expert-section {
  padding: 20px 15px;
}
.expert-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #00649C;
  border: 1px solid #4A4A4A;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 3.2px 3.8px 5px 3px rgba(0,0,0,0.23);
}
.expert-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.expert-testimonial__photo {
  max-width: 250px;
  border-radius: 25px;
  overflow: hidden;
}
.expert-testimonial__content { text-align: center; }
.expert-testimonial__stars { max-width: 100px; margin: 0 auto 10px; }
.expert-testimonial__quote {
  font-size: 16px;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 10px;
}
.expert-testimonial__name { font-size: 18px; font-weight: 700; color: #90CAF9; }
.expert-testimonial__badge { max-width: 100px; margin: 10px auto 0; }

.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.guarantee__badge { max-width: 200px; }
.guarantee__title { font-size: 26px; font-weight: 700; color: #fff; }
.guarantee__text { font-size: 16px; color: #fff; line-height: 1.6; }

@media (min-width: 768px) {
  .expert-testimonial { flex-direction: row; align-items: flex-start; }
  .expert-testimonial__photo { max-width: 280px; flex-shrink: 0; }
  .expert-testimonial__content { text-align: left; }
  .expert-testimonial__stars { margin: 0 0 10px; }
  .expert-testimonial__badge { margin: 10px 0 0; }
  .expert-testimonial__quote { font-size: 18px; }
  .guarantee { flex-direction: row; text-align: left; }
  .guarantee__title { font-size: 35px; }
  .guarantee__text { font-size: 18px; }
}

/* === 16. FAQ === */
.faq-section {
  padding: 30px 15px;
  background: #fff;
}
.faq-section__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item { margin-top: 10px; }
.faq-header {
  background: #EAF8FF;
  border-radius: 5px;
  padding: 12px 15px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-header:hover { background: #ddf0fa; }
.faq-chevron {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-item.active .faq-header { background: #F5F5F5; border-bottom: 1px solid #C0C0C0; border-radius: 5px 5px 0 0; }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-content__inner {
  padding: 15px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

@media (min-width: 768px) {
  .faq-section__title { font-size: 45px; }
  .faq-header { font-size: 18px; }
  .faq-content__inner { font-size: 18px; }
}

/* === 17. FOOTER === */
.footer {
  padding: 25px 15px 50px;
  text-align: center;
}
.footer__logo { max-width: 200px; margin: 0 auto 15px; }
.footer__links {
  font-size: 15px;
  margin-bottom: 10px;
}
.footer__links a {
  color: #4A90E2;
  text-decoration: underline;
  margin: 0 8px;
}
.footer__copyright { font-size: 15px; color: #666; }
