/* =========================================================
   Sukhmani Pest Control — Homepage
   Tokens sampled directly from Sukhmani-HomePage.pdf
   ========================================================= */

@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url('../fonts/franklingothic_demi.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --green:      #3BA100;   /* bright accent: headline, badges, circles */
  --green-dk:   #2E7F00;
  --olive:      #38462D;   /* dark panels, buttons, headings */
  --olive-dk:   #2C3823;

  --bg:         #F1F5DF;   /* page background */
  --bg-light:   #F9FFE2;   /* lighter section band + nav pill */
  --bg-dim:     #EDEFDD;   /* dimmer section band */
  --sage:       #E4E8D3;   /* eyebrow pills, service cards */
  --sage-dk:    #D5DBC2;

  --ink:        #0C1C01;   /* headline near-black */
  --body:       #58644C;   /* body copy */
  --muted:      #7B856D;
  --line:       #D6DCC4;
  --cream:      #FAFFE3;   /* icon + text on dark */
  --star:       #F5A623;

  --ff-head: 'Franklin Gothic Demi', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --sec: 110px;            /* section rhythm */
  --r-card: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
}

* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--ff-head); color: var(--olive); font-weight: 700; line-height: 1.14; letter-spacing: 0; }
a { text-decoration: none; color: inherit; transition: color .25s ease; }
img { max-width: 100%; height: auto; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--green); color: #fff; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* Container — mirrors the 1680-in-1920 grid the design was drawn on (87.5%).
   Bootstrap's .container is overridden so every section shares one rhythm. */
.container,
.container-fluid,
.container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  width: 100%;
  max-width: 1680px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 576px)  { .container { padding-inline: 28px; } }
@media (min-width: 768px)  { .container { padding-inline: 36px; } }
@media (min-width: 992px)  { .container { padding-inline: 48px; } }
@media (min-width: 1400px) { .container { padding-inline: 60px; } }
@media (min-width: 1920px) { .container { padding-inline: 0; } }

.section { padding: var(--sec) 0; position: relative; }
.sec-light { background: var(--bg-light); }
.sec-dim   { background: var(--bg-dim); }

/* ---------- Shared ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 14px; font-weight: 400;
  color: var(--olive);
  background: var(--sage);
  padding: 9px 26px;
  border-radius: 10px;
  margin-bottom: 22px;
}

.sec-title { font-size: clamp(1.85rem, 3.1vw, 2.85rem); margin: 0 0 18px; }
.sec-title.on-dark { color: var(--cream); }

.btn {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 15px;
  border: 0; border-radius: 14px;
  padding: 20px 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  line-height: 1.1;
  transition: transform .28s cubic-bezier(.4,0,.2,1), background .28s ease, box-shadow .28s ease;
}
.btn-olive { background: var(--olive); color: var(--cream); }
.btn-olive:hover { background: var(--olive-dk); color: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(56,70,45,.24); }
.btn-cream { background: var(--bg-light); color: var(--olive); }
.btn-cream:hover { background: #fff; color: var(--olive); transform: translateY(-2px); }

.read-more {
  font-family: var(--ff-head); font-weight: 700; font-size: 15px;
  color: var(--olive); display: inline-flex; align-items: center; gap: 9px;
}
.read-more span { transition: transform .25s ease; }
.read-more:hover { color: var(--green); }
.read-more:hover span { transform: translateX(5px); }

/* =========================================================
   Header
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 1030; background: var(--bg-dim); padding: 22px 0; transition: padding .3s ease, box-shadow .3s ease; }
.site-header.stuck { padding: 12px 0; box-shadow: 0 8px 30px rgba(56,70,45,.09); }

.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 52px; width: auto; display: block; }

.nav-pill {
  background: var(--bg-light);
  border-radius: 22px;
  padding: 18px 34px;
  display: flex; align-items: center; gap: 44px;
  box-shadow: 10px 10px 0 rgba(56,70,45,.07);
  position: relative;
}
.nav-pill a {
  font-size: 16px; color: var(--ink); font-weight: 400;
  display: inline-flex; align-items: center; gap: 9px;
}
.nav-pill a:hover, .nav-pill a.active { color: var(--green); }
.nav-pill a svg { flex-shrink: 0; }

.nav-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-mega__trigger {
  padding: 8px 0;
}
.nav-mega__chev {
  transition: transform .25s ease;
}
.nav-mega:hover .nav-mega__chev,
.nav-mega:focus-within .nav-mega__chev {
  transform: rotate(180deg);
}
.mega-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: min(760px, calc(100vw - 48px));
  transform: translate(-50%, 12px);
  background: var(--bg-light);
  border: 1px solid rgba(56, 70, 45, .1);
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(12, 28, 1, .18);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 1045;
}
.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.nav-pill .mega-service {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--olive);
  background: rgba(228, 232, 211, .48);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.nav-pill .mega-service:hover,
.nav-pill .mega-service:focus-visible {
  background: var(--sage);
  color: var(--green-dk);
  transform: translateY(-2px);
}
.mega-service img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  filter: brightness(0) saturate(100%);
}
.nav-pill .mega-all {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--olive);
  color: var(--cream);
  font-family: var(--ff-head);
  font-weight: 700;
}
.nav-pill .mega-all:hover {
  background: var(--green-dk);
  color: var(--cream);
}

.call-box { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.call-btn {
  width: 66px; height: 66px; border-radius: 18px;
  background: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .28s ease, background .28s ease;
}
.call-btn:hover { background: var(--green-dk); transform: translateY(-2px); }
.call-btn img { width: 32px; height: 32px; }
.call-label { font-size: 15px; color: var(--body); line-height: 1.3; }
.call-num { font-family: var(--ff-head); font-weight: 700; font-size: 21px; color: var(--ink); }

.burger { display: none; width: 54px; height: 54px; border: 0; border-radius: 15px; background: var(--olive); color: var(--cream); place-items: center; }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(330px, 88vw);
  background: var(--bg-light); z-index: 1060; padding: 26px 26px 40px;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer .m-link { font-family: var(--ff-head); font-weight: 700; font-size: 17px; color: var(--olive); padding: 15px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; width: 100%; display: flex; align-items: center; gap: 10px; text-align: left; }
.drawer .m-link:hover,
.drawer .m-link.active { color: var(--green); }
.m-mega__toggle { justify-content: space-between; cursor: pointer; }
.m-mega__chev { flex-shrink: 0; transition: transform .25s ease; }
.m-mega.open .m-mega__chev { transform: rotate(180deg); }
.m-mega__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.m-mega.open .m-mega__panel { max-height: 780px; }
.m-service {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(228, 232, 211, .62);
  color: var(--olive);
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.m-service:hover,
.m-service:focus-visible {
  background: var(--sage);
  color: var(--green-dk);
}
.m-service img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 26px;
  filter: brightness(0) saturate(100%);
}
.m-service--all {
  justify-content: center;
  background: var(--olive);
  color: var(--cream);
  margin-top: 14px;
}
.m-service--all:hover,
.m-service--all:focus-visible {
  background: var(--green-dk);
  color: var(--cream);
}
.drawer-x { align-self: flex-end; border: 0; background: var(--sage); width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--olive); margin-bottom: 14px; }
.backdrop { position: fixed; inset: 0; background: rgba(12,28,1,.5); z-index: 1050; opacity: 0; visibility: hidden; transition: .35s; }
.backdrop.show { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: 70px 0 var(--sec); position: relative; overflow: hidden; }
.hero__decor {
  position: absolute; top: 90px; right: -30px; width: 420px;
  opacity: .45; pointer-events: none; user-select: none;
}

.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.55rem); color: var(--ink); font-weight: 700; line-height: 1.06; margin: 0; }
.hero__title em { font-style: normal; color: var(--green); }
.hero__title .inline-cta { display: inline-block; vertical-align: middle; margin-left: 22px; }

.hero__lede { font-size: 17px; max-width: 830px; margin-top: 46px; color: var(--body); }

.hero-feats { position: relative; z-index: 2; }
.hero-feat { display: flex; align-items: center; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.hero-feat:last-child { border-bottom: 0; }
.hero-feat__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.hero-feat__ic img { width: 24px; height: 24px; }
.hero-feat p { font-size: 15px; color: var(--ink); margin: 0; font-weight: 400; }

.hero__media { margin-top: 60px; border-radius: var(--r-lg); overflow: hidden; position: relative; }
.hero__media img.shot { width: 100%; display: block; }
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 86px; height: 86px; border-radius: 50%; border: 0;
  background: var(--bg-light); color: var(--olive);
  display: grid; place-items: center;
  transition: transform .3s ease, background .3s ease;
}
.play-btn:hover { transform: scale(1.08); background: #fff; }
.play-btn::after {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(250,255,227,.5); animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.9); opacity: .9 } 100% { transform: scale(1.35); opacity: 0 } }

/* =========================================================
   Core services
   ========================================================= */
.core-row {
  display: grid; grid-template-columns: 1fr 1.32fr 1.32fr;
  gap: 56px; align-items: center; padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.core-row:last-child { border-bottom: 0; }
.core-row__ic { width: 58px; height: 58px; margin-bottom: 22px; display: block; }
.core-row__title { font-family: var(--ff-body); font-weight: 400; font-size: clamp(1.5rem, 2.1vw, 2rem); color: var(--olive); letter-spacing: -.01em; line-height: 1.22; margin: 0; }
.core-row__media { border-radius: var(--r-card); overflow: hidden; }
.core-row__media img { width: 100%; display: block; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.core-row:hover .core-row__media img { transform: scale(1.05); }
.core-row__body p { font-size: 15px; margin-bottom: 22px; }

/* =========================================================
   About
   ========================================================= */
.about { position: relative; overflow: hidden; }
.about__twig-1 { position: absolute; top: 30px; left: 30%; width: 300px; opacity: .85; pointer-events: none; }
.about__twig-2 { position: absolute; top: 190px; left: 24%; width: 280px; opacity: .85; pointer-events: none; }
.about__visual img { width: 100%; display: block; }
.about__copy p { font-size: 15px; margin-bottom: 20px; }
.about__copy .btn { margin-top: 22px; }

/* =========================================================
   About page
   ========================================================= */
.about-page {
  background: var(--bg-light);
  overflow: hidden;
}
.about-hero {
  position: relative;
  padding: 88px 0 72px;
}
.about-hero__decor {
  position: absolute;
  right: 6%;
  top: 82px;
  width: 380px;
  opacity: .28;
  pointer-events: none;
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, .92fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-hero h1 {
  color: var(--ink);
  font-size: clamp(2.55rem, 4.85vw, 4.7rem);
  max-width: 840px;
  margin: 0 0 28px;
}
.about-hero h1 span { color: var(--green); }
.about-hero p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.76;
  max-width: 820px;
  margin-bottom: 18px;
}
.about-hero__media {
  border-radius: 24px;
  overflow: hidden;
  background: var(--sage);
}
.about-hero__media img {
  width: 100%;
  aspect-ratio: 760 / 480;
  object-fit: cover;
  display: block;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 12px 0 74px;
}
.principle-card {
  background: rgba(249, 255, 226, .78);
  border-radius: 18px;
  min-height: 214px;
  padding: 42px 32px 34px;
  text-align: center;
  box-shadow: 0 14px 38px rgba(56, 70, 45, .06);
}
.principle-card__ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.principle-card__ic img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.principle-card h3 {
  font-size: 1.22rem;
  color: var(--olive);
  margin-bottom: 12px;
}
.principle-card p {
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.62;
  margin: 0;
}
.about-promise {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding-bottom: 80px;
}
.about-promise__bug {
  position: absolute;
  left: 62%;
  top: -48px;
  width: 86px;
  z-index: 2;
  pointer-events: none;
}
.promise-panel,
.years-panel {
  background: var(--olive);
  color: var(--cream);
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-panel {
  border-radius: 20px;
  padding: 42px 58px;
  clip-path: polygon(0 0, 100% 4%, 100% 92%, 0 100%);
}
.promise-stamp {
  width: 112px;
  margin-bottom: 10px;
}
.promise-panel h2,
.years-panel h2 {
  color: var(--cream);
  margin: 0 0 14px;
}
.promise-panel h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.promise-panel p {
  color: rgba(250, 255, 227, .78);
  font-size: 14px;
  line-height: 1.66;
  max-width: 820px;
  margin: 0;
}
.years-panel {
  border-radius: 18px;
  align-items: center;
  text-align: center;
  padding: 34px;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 91%);
}
.years-panel strong {
  font-family: var(--ff-head);
  color: var(--cream);
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: .95;
}
.years-panel span {
  color: rgba(250, 255, 227, .86);
  font-weight: 700;
}
.about-who {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(300px, .9fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding-bottom: 96px;
}
.about-who__media {
  border-radius: 22px;
  overflow: hidden;
  background: var(--sage);
}
.about-who__media img {
  width: 100%;
  aspect-ratio: 860 / 355;
  object-fit: cover;
  display: block;
}
.about-who h2 {
  color: var(--olive);
  font-size: clamp(2.05rem, 3.7vw, 4rem);
  margin: 0 0 30px;
}
.about-list {
  display: grid;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--olive);
  font-weight: 700;
  font-size: 15px;
}
.about-list__ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: unset;
  display: grid;
  place-items: center;
  margin: unset;
}
.about-list__ic img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.about-page .services-head {
  margin-bottom: 52px;
}
.about-page .svc-link:nth-child(4n+1) .svc,
.about-page .col-6:nth-child(4n+1) .svc {
  transform: unset !important;
}
.about-page .svc-link:nth-child(4n) .svc,
.about-page .col-6:nth-child(4n) .svc {
  transform: unset !important;
}
.about-page .svc-link:hover .svc,
.about-page .col-6:hover .svc {
  transform: translateY(-6px);
}

/* =========================================================
   Trust
   ========================================================= */
.trust { position: relative; overflow: hidden; }
.trust__decor { position: absolute; top: 20px; left: 45%; width: 190px; opacity: .4; pointer-events: none; }

.trust-item { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.trust-item:last-child { border-bottom: 0; }
.trust-item__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.trust-item__ic img { width: 24px; height: 24px; }
.trust-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.trust-item p { font-size: 14.5px; margin: 0; }

.trust-visual { position: relative; }
.trust-visual > img { width: 100%; display: block; }

.stat {
  position: absolute;
  width: 48.4%; height: 31.2%;          /* exact notch cut into trust-family.webp */
  background: var(--olive); color: var(--cream);
  border-radius: var(--r-card); padding: 16px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.stat b { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.3rem); color: var(--cream); display: block; line-height: 1; }
.stat span { font-size: clamp(11px, 1.1vw, 13.5px); color: rgba(250,255,227,.82); line-height: 1.35; }
.stat--exp { top: 0; right: 0; }
.stat--loc { bottom: 0; left: 0; }

.stat-bar {
  background: var(--olive); color: var(--cream); border-radius: var(--r-card);
  margin-top: 18px; padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.stat-bar p { font-size: clamp(13px, 1.1vw, 15px); color: rgba(250,255,227,.85); margin: 0; }
.stat-bar > div { flex-shrink: 0; }
.stat-bar b { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.3rem); color: var(--cream); display: block; line-height: 1; }
.stat-bar span { font-size: 13.5px; color: rgba(250,255,227,.82); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-slider { margin: 0 -15px; }
.gal { padding: 0 15px; }
.gal img { width: 100%; aspect-ratio: 539 / 531; object-fit: cover; border-radius: var(--r-card); display: block; }
.slick-track { display: flex !important; align-items: stretch; }
.slick-slide { height: inherit !important; }
.slick-slide > div { height: 100%; }

.slick-dots { display: flex !important; justify-content: center; align-items: center; gap: 10px; list-style: none; padding: 0; margin: 44px 0 0; }
.slick-dots li button { font-size: 0; width: 9px; height: 9px; padding: 0; border: 0; border-radius: var(--r-pill); background: var(--olive); opacity: .55; transition: all .3s ease; }
.slick-dots li.slick-active button { background: var(--green); opacity: 1; width: 68px; height: 8px; }

/* =========================================================
   Services grid
   ========================================================= */
.services-head { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; margin-bottom: 56px; position: relative; }
.services-head .roach { position: absolute; right: 6px; top: -40px; width: 78px; pointer-events: none; }

.svc {
  background: var(--sage); border-radius: var(--r-card);
  padding: 46px 26px 40px; height: 100%; text-align: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .3s ease, box-shadow .3s ease;
}
.svc__ic { width: 52px; height: 52px; border-radius: 13px; background: var(--green); display: grid; place-items: center; margin: 0 auto 26px; transition: background .3s ease; }
.svc__ic img { width: 27px; height: 27px; }
.svc h3 { font-size: 1.42rem; margin-bottom: 14px; line-height: 1.2; }
.svc p { font-size: 13.5px; line-height: 1.6; margin: 0; color: var(--body); }

.svc:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(56,70,45,.13); }
.svc.featured { background: var(--olive); }
.svc.featured h3 { color: var(--cream); }
.svc.featured p { color: rgba(250,255,227,.78); }
.svc-link { display: block; color: inherit; }
.svc-link:hover { color: inherit; }

/* =========================================================
   Services page
   ========================================================= */
.services-page {
  background: var(--bg-light);
  padding-top: 90px;
  overflow: hidden;
}
.services-page__head {
  max-width: 760px;
  margin: 0 auto 42px;
}
.services-page__head h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  margin: 0 0 18px;
}
.services-page__head p {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.72;
  margin: 0 auto;
}
.services-page__decor {
  position: absolute;
  opacity: .24;
  pointer-events: none;
  user-select: none;
}
.services-page__decor--top {
  width: 330px;
  right: 7%;
  top: 135px;
}
.services-page__decor--mid {
  width: 420px;
  left: -95px;
  top: 930px;
  transform: rotate(12deg);
}
.service-list {
  position: relative;
  z-index: 1;
}
.service-line {
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(280px, 1.2fr) minmax(260px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-line:last-child {
  border-bottom: 0;
}
.service-line__title img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: .74;
}
.service-line__title h2 {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--olive);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}
.service-line__photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--sage);
}
.service-line__photo img {
  width: 100%;
  aspect-ratio: 600 / 400;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.service-line:hover .service-line__photo img {
  transform: scale(1.045);
}
.service-line__copy p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 22px;
}
.contact.contact--services::before {
  background-image: linear-gradient(rgba(12, 28, 1, .22), rgba(12, 28, 1, .22)), url("../img/webp/services/contact-photo.webp");
}

/* =========================================================
   Service detail pages
   ========================================================= */
.detail-hero {
  position: relative;
  background: var(--bg-light);
  padding: 78px 0 68px;
  overflow: hidden;
}
.detail-hero__decor {
  position: absolute;
  right: 7%;
  top: 0px;
  width: auto;
  opacity: 1;
  pointer-events: none;
  object-fit: cover;
}
.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: clamp(46px, 7vw, 120px);
  align-items: start;
}
.detail-hero__media {
  border-radius: 14px;
  overflow: hidden;
  background: var(--sage);
  margin-top: 14px;
}
.detail-hero__media img {
  width: 100%;
  aspect-ratio: 400 / 400;
  object-fit: cover;
  display: block;
}
.detail-hero__copy h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  margin: 0 0 24px;
}
.detail-hero__copy p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 18px;
}
.why-panel {
  margin-top: 28px;
}
.why-panel h2 {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  margin-bottom: 18px;
}
.why-panel ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-panel li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.why-icon {
  width: 40px;
  height: 34px;
  border-radius: 50%;
  background: unset;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  margin-top: -5px;
}
.why-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 8px;
  margin-top: .45em;
}
.why-panel .btn {
  margin-top: 12px;
  padding: 17px 42px;
}
.detail-copy {
  padding-top: 48px;
}
.detail-copy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 115px);
}
.detail-block h2 {
  color: var(--olive);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  margin-bottom: 20px;
}
.detail-block p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.74;
  margin-bottom: 16px;
}
.detail-block .check-list {
  margin-top: 20px;
}
.services-strip {
  padding-top: 34px;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-page {
  position: relative;
  background: var(--bg-light);
  padding: 78px 0 100px;
  overflow: hidden;
}
.contact-page__decor {
  position: absolute;
  right: 0;
  top: 118px;
  width: 430px;
  opacity: .18;
  pointer-events: none;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(280px, 500px) minmax(320px, 560px);
  grid-template-areas:
    "media content details"
    "media form form";
  column-gap: clamp(30px, 3.5vw, 60px);
  row-gap: 52px;
  align-items: start;
}
.contact-page__media {
  grid-area: media;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sage);
  align-self: stretch;
}
.contact-page__media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  display: block;
}
.contact-page__content {
  grid-area: content;
  padding-top: 10px;
}
.contact-page__content h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 3.55vw, 4.05rem);
  max-width: 500px;
  margin: 0 0 26px;
}
.contact-page__content p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.66;
  max-width: 430px;
  margin-bottom: 34px;
}
.contact-mini {
  grid-area: details;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding-top: 10px;
}
.contact-mini__panel {
  background: var(--olive);
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 142px;
  padding: 34px 22px 28px;
}
.contact-mini__panel:first-child {
  clip-path: polygon(0 0, 100% 8%, 100% 82%, 0 100%);
}
.contact-mini__panel:last-child {
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 86%);
}
.contact-mini__item {
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  min-width: 0;
}
.contact-mini__item:hover {
  color: var(--cream);
}
.contact-mini__item span {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-mini__item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.contact-page__form {
  grid-area: form;
  background: transparent;
  margin-top: 0;
}
.contact-page__form form {
  display: block;
}
.contact-page__form .fld input,
.contact-page__form .fld select,
.contact-page__form .fld textarea {
  background: rgba(228, 232, 211, .72);
  border: 0;
  border-radius: 8px;
  min-height: 58px;
  padding: 14px 18px;
}
.contact-page__form .fld textarea {
  min-height: 128px;
}
.contact-page__form .fld label {
  color: var(--olive);
  margin-bottom: 8px;
}
.contact-page__form .form-foot {
  justify-content: flex-start;
}
.contact-page__form .note {
  display: none;
}
.contact-page__form .btn {
  padding: 18px 42px;
  min-width: min(445px, 100%);
}
.map-panel {
  margin-top: 84px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sage);
}
.map-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 1572 / 476;
  object-fit: cover;
}

/* =========================================================
   Policy pages
   ========================================================= */
.policy-page {
  background: var(--bg-light);
  padding: 90px 0 110px;
}
.policy-panel {
  max-width: 1050px;
  margin: 0 auto;
  background: rgba(249, 255, 226, .8);
  border: 1px solid rgba(56, 70, 45, .1);
  border-radius: 18px;
  padding: clamp(34px, 5vw, 70px);
}
.policy-panel h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  margin-bottom: 22px;
}
.policy-panel h2 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin: 34px 0 12px;
}
.policy-panel p,
.policy-panel li {
  color: var(--body);
  font-size: 15px;
  line-height: 1.74;
}
.policy-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.policy-panel a {
  color: var(--green-dk);
  font-weight: 700;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  border-radius: var(--r-lg); overflow: hidden; text-align: center;
  background: var(--olive) url("../img/cta-bg.webp") center / cover no-repeat;
  padding: 96px 30px 104px;
}
.cta h2 { color: var(--cream); font-size: clamp(1.6rem, 3.1vw, 2.6rem); max-width: 800px; margin: 0 auto 20px; }
.cta p { color: rgba(250,255,227,.8); font-size: 15px; margin-bottom: 40px; }

/* =========================================================
   Testimonials
   ========================================================= */
.testi { overflow: hidden; }
.quote-mark { font-family: var(--ff-head); font-weight: 700; font-size: 8rem; line-height: .62; color: var(--sage-dk); display: block; margin-bottom: 22px; }

.testi-slider { margin: 0 -14px; }
.tcard-wrap { padding: 0 14px; height: 100%; }
.tcard { background: var(--sage); border-radius: var(--r-card); padding: 34px 30px; height: 100%; display: flex; flex-direction: column; }
.tcard .stars { color: var(--star); font-size: 19px; letter-spacing: 5px; margin-bottom: 20px; }
.tcard p { font-size: 14.5px; line-height: 1.68; flex: 1 1 auto; margin-bottom: 28px; }
.tperson { display: flex; align-items: center; gap: 14px; }
.tperson img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.tperson b { font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--olive); }

.testi-nav { display: flex; align-items: center; gap: 22px; margin-top: 52px; }
.testi-nav button { border: 0; background: none; color: var(--olive); padding: 0; display: grid; place-items: center; transition: transform .25s ease, color .25s ease; }
.testi-nav button:hover { color: var(--green); }
.testi-nav button.prev:hover { transform: translateX(-4px); }
.testi-nav button.next:hover { transform: translateX(4px); }
.testi-track { flex: 1 1 auto; max-width: 250px; height: 3px; background: var(--sage-dk); border-radius: var(--r-pill); overflow: hidden; }
.testi-track i { display: block; height: 100%; width: 33%; background: var(--green); border-radius: var(--r-pill); transition: width .45s cubic-bezier(.4,0,.2,1), margin-left .45s cubic-bezier(.4,0,.2,1); }

/* =========================================================
   Contact
   ========================================================= */
.contact {
  position: relative;
  padding: 0;
  isolation: auto;
  background: unset;
}
.contact::before {
  content: ''; position: absolute; inset: 0; z-index: 9;
  background: url("../img/contact-bg.webp") center center / cover no-repeat;
}
.contact__inner { padding: 120px 0; }

.form-card {
  position: relative;
  background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 26px 70px rgba(12, 28, 1, .22);
  border-radius: 10px;
  padding: 62px 66px 58px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: -22%;
  z-index: 99999;
}
/* Fallback for browsers without backdrop-filter (older Firefox, some in-app browsers) */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .form-card { background: rgba(255, 255, 255, .93); }
}
.form-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.35rem); text-align: center; margin-bottom: 10px; }
.form-card .sub { text-align: center; font-size: 17px; color: var(--body); margin-bottom: 52px; }

.fld { margin-bottom: 44px; }
.fld label { display: block; font-size: 14px; color: var(--olive); font-weight: 500; margin-bottom: 10px; }
.fld input, .fld select, .fld textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(56, 70, 45, .28);
  background: transparent; padding: 0 0 12px; font-size: 15px;
  font-family: var(--ff-body); color: var(--ink); border-radius: 0;
  transition: border-color .25s ease;
}
.fld textarea { min-height: 78px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 0; border-bottom-color: var(--green); }
.fld select { appearance: none; background-image: url("data:image/webp,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2358644C' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }

.form-foot { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.form-foot .btn { flex-shrink: 0; }
.form-foot .note { font-size: 12.5px; color: var(--body); line-height: 1.55; flex: 1 1 260px; margin: 0; }
.form-status { font-size: 14px; font-weight: 500; margin: 20px 0 0; }
.form-status.ok { color: var(--green-dk); }
.form-status.err { color: #B3261E; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  position: relative;
  overflow: hidden;
  padding-top: 200px;
}
.faq__web { position: absolute; right: -50px; top: 60px; width: 260px; opacity: .28; pointer-events: none; }
.faq-list { max-width: 1120px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; padding: 32px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--ff-body); font-size: 18px; color: var(--olive); text-align: left;
}
.faq-q .chev {
  width: 54px; height: 54px; border-radius: 13px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--green); flex-shrink: 0;
  transition: transform .35s ease, background .3s ease, border-color .3s ease;
}
.faq-q:hover .chev { background: var(--sage); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); border-color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding: 0 90px 32px 0; font-size: 15px; margin: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { padding: 60px 0 0; background: var(--bg-dim); }
.footer-panel {
  position: relative;
  background: var(--olive) url("../img/footer-bg.webp") center center / cover no-repeat;
  border-radius: var(--r-lg);
  padding: 76px 70px 34px;
  color: rgba(250,255,227,.75);
  overflow: hidden;
}

.f-contact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 52px; }
.f-contact__item { display: flex; gap: 16px; align-items: center; }
.f-contact__ic { width: 52px; height: 52px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.f-contact__ic img { width: 24px; height: 24px; }
.f-contact__item h5 { color: var(--cream); font-size: 14px; margin-bottom: 3px; font-weight: 700; }
.f-contact__item p, .f-contact__item a { font-size: 14px; color: rgba(250,255,227,.72); margin: 0; line-height: 1.5; }
.f-contact__item a:hover { color: var(--green); }

.f-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 54px 0 46px; border-top: 1px solid rgba(250,255,227,.14); }
.f-cols h4 { color: var(--cream); font-size: 20px; margin-bottom: 22px; }
.f-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.f-cols a { font-size: 14px; color: rgba(250,255,227,.72); }
.f-cols a:hover { color: var(--green); }

.f-bottom { border-top: 1px solid rgba(250,255,227,.14); padding: 26px 0 10px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.f-bottom p { font-size: 13.5px; margin: 0; color: rgba(250,255,227,.62); }
.f-bottom a { color: rgba(250,255,227,.85); font-weight: 500; }
.f-bottom a:hover { color: var(--green); }
.socials { display: flex; gap: 11px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--green); display: grid; place-items: center; transition: transform .28s ease, background .28s ease; }
.socials a img { width: 19px; height: 19px; }
.socials a:hover { background: var(--green-dk); transform: translateY(-3px); }

/* ---------- Floating ---------- */
.floats { position: fixed; right: 20px; bottom: 20px; z-index: 1040; display: grid; gap: 11px; }
.floats a, .floats button { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 0; color: #fff; box-shadow: 0 10px 26px rgba(12,28,1,.22); transition: transform .28s ease; }
.floats a:hover, .floats button:hover { transform: translateY(-3px); }
.f-wa { background: #25D366; }
.f-call { background: var(--green); }
.f-top { background: var(--olive); opacity: 0; visibility: hidden; }
.f-top.show { opacity: 1; visibility: visible; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.svc.featured {
    background: var(--sage);
}
.svc.featured h3{
    color:var(--olive); 
}
.svc.featured p{
    color:var(--olive); 
}

.svc-link:hover {    background: var(--olive); }
.svc-link:hover h3{ color: #fff; }
.svc-link:hover p { color: #fff; }
.about-hero__media img {
    aspect-ratio: 460 / 480;
}
.faq__web {
    top: 0px;
    opacity: 1;
}
.stat {
    position: absolute;
    width: 44.4%;
    height: 25.2%;
    
}
.site-header {
    z-index: 999999;}
    .brand img {
    height: 45px;
    width: auto;
    display: block;
}
img.footer-insects {
    position: absolute;
    top: -43px;
    right: 87px;
}
footer.site-footer.insects {
    position: relative;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1399.98px) {
  :root { --sec: 92px; }
  .nav-pill { gap: 26px; padding: 16px 24px; }
  .nav-pill a { font-size: 15px; }
  .call-num { font-size: 18px; }
  .call-btn { width: 58px; height: 58px; }
  .core-row { gap: 36px; }
  .footer-panel { padding: 76px 44px 30px; }
}

@media (max-width: 1199.98px) {
  .nav-pill { display: none; }
  .burger { display: grid; }
  .hero__title .inline-cta { display: block; margin: 30px 0 0; }
  .svc h3 { font-size: 1.2rem; }
  .stat b, .stat-bar b { font-size: 1.9rem; }
  .stat { padding: 18px 20px; }
  .detail-hero__grid,
  .contact-page__grid { gap: 42px; }
  .contact-page__grid {
    grid-template-columns: minmax(260px, 390px) minmax(260px, 1fr) minmax(300px, 440px);
  }
  .contact-page__media img { min-height: 620px; }
}

@media (max-width: 991.98px) {
    
  :root { --sec: 74px; }
  .call-label, .call-num {
        display: none !important;
    }
  .hero { padding-top: 44px; }
  .hero__lede { margin-top: 34px; }
  .hero__decor { width: 400px; opacity: .35; }

  .services-page { padding-top: 64px; }
  .services-page__head { margin-bottom: 26px; }
  .service-line { grid-template-columns: minmax(140px, .8fr) minmax(240px, 1.2fr); gap: 24px 34px; padding: 36px 0; }
  .service-line__copy { grid-column: 2; }
  .services-page__decor { display: none; }
  .detail-hero,
  .contact-page { padding-top: 58px; }
  .about-hero { padding-top: 58px; }
  .detail-hero__decor,
  .about-hero__decor,
  .contact-page__decor { display: none; }
  .detail-hero__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content"
      "details"
      "form";
  }
  .about-hero__grid,
  .about-who {
    grid-template-columns: 1fr;
  }
  .about-principles,
  .about-promise {
    grid-template-columns: 1fr;
  }
  .about-promise__bug {
    display: none;
  }
  .promise-panel,
  .years-panel {
    clip-path: none;
  }
  .about-who__media img {
    aspect-ratio: 16 / 8;
  }
  .detail-hero__media,
  .about-hero__media,
  .contact-page__media { max-width: 620px; }
  .contact-page__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 600 / 400;
  }
  .contact-page__content { padding-top: 0; }
  .detail-copy__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-mini { grid-template-columns: 1fr; }
  .contact-mini__panel {
    clip-path: none !important;
    border-radius: 10px;
  }

  .core-row { grid-template-columns: 1fr 1fr; gap: 26px 34px; padding: 34px 0; }
  .core-row__head { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; }
  .core-row__ic { margin-bottom: 0; width: 48px; height: 48px; }

  .about__twig-1, .about__twig-2, .trust__decor, .faq__web { display: none; }
  .about__visual { margin-bottom: 40px; max-width: 520px; }
  .trust-visual { margin-top: 44px; }

  /* Narrow viewports crop the photo to its darkest area — thicken the glass so the
     heading and labels keep contrast. */
  .form-card { padding: 42px 30px 38px; background: rgba(255, 255, 255, .74); }
  .contact__inner { padding: 78px 0; }
  .fld { margin-bottom: 32px; }

  .f-contact, .f-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-panel { padding: 60px 30px 26px; border-radius: var(--r-lg); background-size: cover; }
  .faq-a p { padding-right: 20px; }
}

@media (max-width: 767.98px) {
    .footer-insects{display:none;}
  :root { --sec: 58px; --r-card: 16px; --r-lg: 20px; }
  body { font-size: 14.5px; }

  .brand img { height: 42px; }
  .site-header { padding: 14px 0; }

  .hero__title { line-height: 1.1; }
  .hero__lede { font-size: 15px; }
  .hero-feat { padding: 18px 0; }
  .hero__media { margin-top: 38px; }
  .play-btn { width: 62px; height: 62px; }

  .core-row { grid-template-columns: 1fr; gap: 20px; }
  .core-row__head { display: block; }
  .core-row__ic { margin-bottom: 16px; }

  .service-line { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .service-line__copy { grid-column: auto; }
  .service-line__title { display: flex; align-items: center; gap: 16px; }
  .service-line__title img { width: 40px; height: 40px; margin-bottom: 0; }
  .service-line__title h2 br { display: none; }
  .detail-hero__copy h1,
  .contact-page__content h1 { line-height: 1.08; }
  .why-panel li,
  .check-list li { font-size: 14px; }
  .contact-page { padding-bottom: 70px; }
  .contact-page__form { margin-top: 40px; }
  .contact-mini__panel { grid-template-columns: 1fr; }
  .contact-page__form .fld input,
  .contact-page__form .fld select,
  .contact-page__form .fld textarea { min-height: 52px; }
  .map-panel img { aspect-ratio: 16 / 8.5; }

  .stat--exp, .stat--loc {
    position: static; width: auto; height: auto;
    margin-top: 14px; align-items: flex-start; text-align: left; padding: 20px 24px;
  }
  .principle-card { min-height: 0; padding: 34px 24px 30px; }
  .promise-panel { padding: 34px 28px; }
  .about-page .svc-link:nth-child(4n+1) .svc,
  .about-page .svc-link:nth-child(4n) .svc,
  .about-page .col-6:nth-child(4n+1) .svc,
  .about-page .col-6:nth-child(4n) .svc {
    transform: none;
  }
  .trust-visual { display: grid; }
  .stat-bar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 24px; }

  .cta { padding: 56px 22px 62px; }
  .quote-mark { font-size: 5.5rem; }
  .testi-nav { margin-top: 34px; }

  .btn { padding: 17px 30px; font-size: 14px; }
  .faq-q { font-size: 16px; padding: 22px 0; gap: 14px; }
  .faq-q .chev { width: 44px; height: 44px; }

  .f-contact, .f-cols { grid-template-columns: 1fr; gap: 24px; }
  .f-bottom { justify-content: center; text-align: center; }
  .footer-panel { padding: 44px 22px 22px; }
}

@media (max-width: 575.98px) {
  .container { padding-inline: 18px; }
  .form-card { padding: 32px 20px 30px; }
  .floats a, .floats button { width: 46px; height: 46px; }
}
