/* =========================================================================
   AussiePest — design system
   8px spacing, Outfit throughout, restrained green palette, soft depth.
   ========================================================================= */

:root {
  --green-950: #07301d;
  --green-900: #0b3d26;
  --green-800: #0f5132;
  --green-700: #146c43;
  --green-600: #1a8a52;
  --green-500: #23a262;
  --green-200: #bfe3cd;
  --green-100: #e4f3ea;
  --green-50:  #f1f9f4;

  --ink:    #0f231a;
  --text:   #34423b;
  --muted:  #66736c;
  --faint:  #93a09a;
  --line:   #e3e8e5;
  --line-2: #eef2ef;
  --bg:     #ffffff;
  --bg-soft:#f6f8f6;
  --sand:   #faf7f1;

  --gold:   #f4ab00;
  --blue:   #2563d8;
  --blue-50:#eaf1fd;
  --red:    #c2412d;
  --red-50: #fdeeeb;
  --amber:  #b86e00;
  --amber-50:#fff4e0;

  --r-xs: 6px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --pill: 999px;

  --sh-xs: 0 1px 2px rgba(15, 35, 26, .06);
  --sh-sm: 0 1px 2px rgba(15, 35, 26, .05), 0 2px 8px rgba(15, 35, 26, .05);
  --sh:    0 2px 4px rgba(15, 35, 26, .04), 0 8px 24px rgba(15, 35, 26, .08);
  --sh-lg: 0 4px 10px rgba(15, 35, 26, .05), 0 20px 48px rgba(15, 35, 26, .14);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --container: 1200px;
  --header-h: 72px;
  --font: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0; font-weight: 600; letter-spacing: -.02em; }
h1 { font-size: clamp(2.05rem, 3.5vw, 3.15rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h3 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; }
::selection { background: var(--green-200); color: var(--ink); }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--green-600) 55%, transparent); outline-offset: 2px; border-radius: 6px; }

.i { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.i-sm { width: 16px; height: 16px; }
.i-lg { width: 26px; height: 26px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--green-800); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); }
.skip:focus { top: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--green-700); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px;
  font-size: 14.5px; font-weight: 500; line-height: 1; white-space: nowrap;
  color: var(--btn-fg); background: var(--btn-bg); border: 1.5px solid var(--btn-bd); border-radius: var(--r-sm);
  transition: background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease), color .18s;
}
.btn:hover { --btn-bg: var(--green-800); box-shadow: 0 6px 16px rgba(20, 108, 67, .22); }
.btn:active { transform: translateY(1px); }
.btn .i { width: 18px; height: 18px; }
.btn-outline { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn-outline:hover { --btn-bg: #fff; --btn-bd: var(--green-700); --btn-fg: var(--green-800); box-shadow: var(--sh-sm); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); }
.btn-ghost:hover { --btn-bg: var(--bg-soft); box-shadow: none; }
.btn-light { --btn-bg: #fff; --btn-fg: var(--green-900); }
.btn-light:hover { --btn-bg: var(--green-50); }
.btn-on-dark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.7); }
.btn-on-dark:hover { --btn-bg: rgba(255,255,255,.1); --btn-bd: #fff; box-shadow: none; }
.btn-bright { --btn-bg: var(--green-600); }
.btn-bright:hover { --btn-bg: var(--green-700); }
.btn-danger { --btn-bg: var(--red); }
.btn-danger:hover { --btn-bg: #a3321f; box-shadow: 0 6px 16px rgba(194,65,45,.22); }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 13.5px; border-radius: 9px; }
.btn-lg { min-height: 52px; padding: 0 26px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn-icon { width: 40px; min-height: 40px; padding: 0; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.btn.is-loading::after { content: ""; width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.link { color: var(--green-700); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.link:hover { color: var(--green-900); }
.link .i { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link:hover .i { transform: translateX(3px); }

/* ---------- badges & chips ---------- */

.badge { display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 9px; font-size: 12px; font-weight: 500; border-radius: var(--pill); white-space: nowrap; background: var(--bg-soft); color: var(--text); }
.badge .i { width: 13px; height: 13px; stroke-width: 2.2; }
.badge-green { background: var(--green-100); color: var(--green-800); }
.badge-solid-green { background: var(--green-700); color: #fff; }
.badge-blue { background: var(--blue); color: #fff; }
.badge-soft-blue { background: var(--blue-50); color: var(--blue); }
.badge-amber { background: var(--amber-50); color: var(--amber); }
.badge-red { background: var(--red-50); color: var(--red); }
.badge-dark { background: rgba(7, 48, 29, .82); color: #fff; backdrop-filter: blur(6px); }

.chip { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 11px; font-size: 12.5px; color: var(--text); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--pill); transition: .18s var(--ease); }
a.chip:hover, button.chip:hover { border-color: var(--green-600); color: var(--green-800); background: var(--green-50); }

.stars { display: inline-flex; gap: 1px; vertical-align: middle; }
.star { width: 14px; height: 14px; background: linear-gradient(90deg, var(--gold) var(--fill), #dde3df var(--fill)); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2.6 2.9 5.9 6.5.9-4.7 4.6 1.1 6.4L12 17.4l-5.8 3 1.1-6.4-4.7-4.6 6.5-.9L12 2.6Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2.6 2.9 5.9 6.5.9-4.7 4.6 1.1 6.4L12 17.4l-5.8 3 1.1-6.4-4.7-4.6 6.5-.9L12 2.6Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.stars-md .star { width: 18px; height: 18px; }
.stars-lg .star { width: 24px; height: 24px; }

/* ---------- demo notice ---------- */

.demo-bar { background: var(--green-950); color: rgba(255,255,255,.86); font-size: 12.5px; text-align: center; padding: 7px 16px; }
.demo-bar strong { color: #fff; font-weight: 500; }

/* ---------- header ---------- */

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.97); border-bottom: 1px solid transparent; transition: box-shadow .25s var(--ease), border-color .25s; }
@supports (backdrop-filter: blur(8px)) { .site-header { background: rgba(255,255,255,.9); backdrop-filter: saturate(1.4) blur(12px); } }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px rgba(15,35,26,.06); }
.header-inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); transition: height .25s var(--ease); }
.site-header.is-scrolled .header-inner { height: 60px; }

.brand { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.brand-mark { width: 44px; height: 38px; transition: width .25s var(--ease), height .25s var(--ease); }
.site-header.is-scrolled .brand-mark { width: 38px; height: 33px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 23px; font-weight: 700; letter-spacing: -.035em; color: var(--green-900); }
.brand-name span { color: var(--green-600); }
.brand-motto { font-size: 7.5px; letter-spacing: .16em; font-weight: 600; color: var(--muted); margin-top: 4px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; margin-right: auto; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; height: 40px; padding: 0 11px; font-size: 13.5px; font-weight: 500; color: var(--ink); border-radius: 9px; background: none; border: 0; transition: background .15s, color .15s; }
.nav-link .i { width: 15px; height: 15px; color: var(--muted); transition: transform .2s var(--ease); }
.nav-link:hover, .nav-item.is-open > .nav-link { background: var(--bg-soft); color: var(--green-800); }
.nav-item.is-open > .nav-link .i { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: -8px; min-width: 260px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-4px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
}
.nav-item.is-open > .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s; }
/* Wide menus (services, locations): three columns, anchored to the header container and centred so they
   stay inside the viewport whichever nav item opens them. */
.dropdown-wide { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 6px; min-width: 0; width: min(780px, 100%); left: 0; right: 0; margin: 0 auto; max-height: calc(100vh - 120px); overflow-y: auto; }
.header-inner { position: relative; }
.nav-item:has(> .dropdown-wide) { position: static; }
.dropdown-wide a { padding: 8px 10px; font-size: 13px; }
.dropdown-wide a .i { width: 17px; height: 17px; }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; font-size: 13.5px; color: var(--text); }
.dropdown a:hover { background: var(--green-50); color: var(--green-800); }
.dropdown a .i { width: 18px; height: 18px; color: var(--green-700); }
.dropdown .dd-title { grid-column: 1 / -1; padding: 6px 10px 4px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.dropdown .dd-all { grid-column: 1 / -1; margin-top: 4px; border-top: 1px solid var(--line-2); border-radius: 0 0 9px 9px; color: var(--green-700); font-weight: 500; }
.dd-sub { display: block; font-size: 12px; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.signin { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 12px; font-size: 13.5px; font-weight: 500; color: var(--ink); border-radius: 9px; }
.signin:hover { background: var(--bg-soft); }
.menu-toggle { display: none; }

.account { position: relative; }
.avatar { width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--green-100); color: var(--green-800); font-weight: 600; font-size: 13px; }

/* mobile drawer */
.mnav { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; transition: visibility 0s linear .3s; }
.mnav.is-open { visibility: visible; pointer-events: auto; transition: visibility 0s; }
.mnav-scrim { position: absolute; inset: 0; background: rgba(7, 30, 19, .45); opacity: 0; transition: opacity .3s var(--ease); }
.mnav.is-open .mnav-scrim { opacity: 1; }
.mnav-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; }
.mnav.is-open .mnav-panel { transform: none; }
.mnav-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mnav-body { padding: 10px 12px 24px; }
.mnav-group { border-bottom: 1px solid var(--line-2); }
.mnav-group summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 14px 8px; font-weight: 500; color: var(--ink); cursor: pointer; }
.mnav-group summary::-webkit-details-marker { display: none; }
.mnav-group[open] summary .i { transform: rotate(180deg); }
.mnav-group a { display: block; padding: 9px 12px; font-size: 14.5px; color: var(--text); border-radius: 8px; }
.mnav-group a:hover { background: var(--bg-soft); }
.mnav-foot { margin-top: auto; padding: 16px 18px 22px; display: grid; gap: 10px; border-top: 1px solid var(--line); }

/* ---------- hero ---------- */

/* overflow-x: clip (not hidden) keeps the 100vw glass band from causing sideways scroll while letting the search suggestions hang below the hero */
.hero { position: relative; z-index: 5; isolation: isolate; overflow-x: clip; overflow-y: visible; background: #dfe9e2; }   /* z-index: the hanging dropdown must sit above the pest tiles below (their drop-shadow filters form their own layers) */
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
/* The dark bottom fade is the TOP layer, so the glass stats band always sits on a dark ground and
   its white text reads on the left too (it was under the white fade and washed out). */
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(0deg, rgba(4, 28, 17, .86) 0%, rgba(4, 28, 17, .62) 14%, rgba(4, 28, 17, .18) 24%, rgba(4, 28, 17, 0) 32%),
    linear-gradient(90deg, rgba(250,252,250,.97) 0%, rgba(250,252,250,.9) 30%, rgba(250,252,250,.55) 48%, rgba(250,252,250,0) 64%); }
.hero-inner { position: relative; padding-top: 44px; padding-bottom: 0; min-height: 520px; display: flex; flex-direction: column; }
.hero-copy { max-width: 590px; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; height: 26px; padding: 0 11px 0 8px; font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-800); background: rgba(228, 243, 234, .92); border: 1px solid rgba(20,108,67,.14); border-radius: var(--pill); margin-bottom: 16px; }
.eyebrow svg { width: 15px; height: 13px; }
.hero h1 { color: var(--ink); line-height: 1.07; }
.hero h1 em { font-style: normal; color: var(--green-600); }
.hero-lede { margin: 16px 0 0; font-size: clamp(.98rem, 1.05vw, 1.06rem); line-height: 1.55; color: #26332c; max-width: 520px; }


.search-card { position: relative; z-index: 20; margin-top: 28px; max-width: 790px; background: #fff; border-radius: var(--r); box-shadow: 0 18px 50px rgba(8, 40, 24, .18), 0 2px 6px rgba(8, 40, 24, .06); padding: 16px 16px 12px; }
.search-row { display: grid; grid-template-columns: 1.45fr 1fr .72fr auto; gap: 12px; align-items: end; }
.sfield { position: relative; min-width: 0; }
.sfield > label { display: block; font-size: 12px; font-weight: 600; color: var(--ink); margin: 0 0 6px 2px; }
.sinput { position: relative; }
.sinput > .i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted); pointer-events: none; }
.sinput input, .sinput select { width: 100%; height: 46px; padding: 0 12px 0 38px; font-size: 13.5px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); transition: border-color .15s, box-shadow .15s; appearance: none; }
.sinput select { padding-left: 12px; padding-right: 34px; cursor: pointer; }
.sinput .i-caret { left: auto; right: 12px; }
.sinput input::placeholder { color: var(--faint); }
.sinput input:focus, .sinput select:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(26,138,82,.12); }
.search-btn { height: 46px; padding: 0 32px; min-width: 150px; }
.popular { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 12px; font-size: 12px; color: var(--muted); }
.popular .chip { height: 24px; font-size: 11.5px; padding: 0 9px; }

/* autocomplete */
.ac { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 6px; max-height: 360px; overflow-y: auto; opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity .15s var(--ease), transform .15s var(--ease); min-width: 280px; }
.ac.is-open { opacity: 1; transform: none; pointer-events: auto; }
.ac-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 10px; border: 0; background: none; text-align: left; border-radius: 9px; font-size: 14px; color: var(--ink); }
.ac-item[aria-selected="true"], .ac-item:hover { background: var(--green-50); }
.ac-ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); flex: none; }
.ac-ico .i { width: 17px; height: 17px; }
.ac-label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ac-label mark { background: none; color: var(--green-700); font-weight: 600; }
.ac-hint { font-size: 12px; color: var(--muted); flex: none; }
.ac-head { padding: 8px 10px 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); font-weight: 600; }
.ac-empty { padding: 12px; font-size: 13.5px; color: var(--muted); }
/* guided search: chip → service box fills → location opens with popular cities → search is ready */
.popular .chip[aria-pressed="true"] { background: var(--green-700); border-color: var(--green-700); color: #fff; box-shadow: 0 4px 10px -4px rgba(20,108,67,.45); }
.popular .chip[aria-pressed="true"]::before { content: ""; width: 9px; height: 5px; margin: -2px 1px 0 0; border: solid #fff; border-width: 0 0 1.6px 1.6px; transform: rotate(-45deg); }
@keyframes ap-filled { 0% { box-shadow: 0 0 0 0 rgba(26,138,82,.35); border-color: var(--green-600); } 100% { box-shadow: 0 0 0 10px rgba(26,138,82,0); } }
.sinput input.is-filled { animation: ap-filled .8s var(--ease); border-color: var(--green-600); }
@keyframes ap-ready { 0% { box-shadow: 0 0 0 0 rgba(20,108,67,.45); } 100% { box-shadow: 0 0 0 12px rgba(20,108,67,0); } }
.search-btn.is-ready { animation: ap-ready .9s var(--ease); }
.ac-head + .ac-item { margin-top: 2px; }
@media (prefers-reduced-motion: reduce) { .sinput input.is-filled, .search-btn.is-ready { animation: none; } }

.hero-stats { margin-top: auto; padding: 30px 0 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; color: #fff; }
.hstat { display: flex; align-items: center; gap: 14px; }
.hstat .i { width: 34px; height: 34px; stroke-width: 1.4; flex: none; }
.hstat strong { display: block; font-size: 19px; font-weight: 600; letter-spacing: -.01em; line-height: 1.15; }
.hstat span { font-size: 12.5px; color: rgba(255,255,255,.82); }

/* ---------- sections ---------- */

.section { padding: clamp(40px, 5vw, 64px) 0; }
.section-tight { padding: clamp(28px, 3.5vw, 44px) 0; }
.section-soft { background: var(--bg-soft); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sec-head p { margin: 5px 0 0; font-size: 13.5px; color: var(--muted); }
.sec-head .link { font-size: 13px; flex: none; }

/* service tiles */
.tiles { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.tile { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 10px 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--green-200); }
.tile-img { width: 100%; aspect-ratio: 1 / .78; border-radius: 8px; overflow: hidden; background: var(--bg-soft); display: grid; place-items: center; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.tile:hover .tile-img img { transform: scale(1.06); }
.tile-img .i { width: 46px; height: 46px; color: var(--green-800); stroke-width: 1.3; }
.tile-name { font-size: 12.5px; font-weight: 500; color: var(--ink); line-height: 1.25; }

/* state cards */
.states { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.state-card { position: relative; display: block; aspect-ratio: 1 / 1.24; border-radius: var(--r-sm); overflow: hidden; isolation: isolate; background: var(--green-900); box-shadow: var(--sh-xs); }
.state-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s var(--ease); }
.state-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(3, 20, 12, .82) 100%); }
.state-card:hover img { transform: scale(1.07); }
.state-label { position: absolute; left: 6px; right: 6px; bottom: 11px; text-align: center; color: #fff; line-height: 1.2; }
.state-label strong { display: block; font-size: 12.5px; font-weight: 600; }
.state-label span { font-size: 11px; opacity: .88; }

/* business card (featured grid) */
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bcard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.bcard-cover { position: relative; aspect-ratio: 16 / 8.6; background: var(--green-900); overflow: hidden; }
.bcard-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.bcard:hover .bcard-cover img { transform: scale(1.05); }
.bcard-cover .badge { position: absolute; top: 10px; left: 10px; height: 22px; font-size: 11px; }
.fav { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.65); color: #fff; backdrop-filter: blur(4px); transition: .18s var(--ease); z-index: 2; }
.fav .i { width: 16px; height: 16px; }
.fav:hover { background: rgba(255,255,255,.35); }
.fav[aria-pressed="true"] { background: #fff; color: var(--red); border-color: #fff; }
.fav[aria-pressed="true"] .i { fill: currentColor; }
.bcard-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bcard-id { display: flex; align-items: center; gap: 12px; }
.bcard-id h3 { font-size: 14.5px; line-height: 1.25; }
.bcard-id h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.bcard-meta { display: flex; align-items: center; gap: 6px; margin-top: 7px; font-size: 12.5px; color: var(--muted); }
.bcard-id > div { min-width: 0; }
.no-reviews { font-size: 12.5px; color: var(--muted); }
.bcard-meta strong { color: var(--ink); font-weight: 500; }
.bcard-loc { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text); }
.bcard-loc .i { width: 15px; height: 15px; color: var(--green-700); }
.bcard-services { font-size: 12.5px; color: var(--text); line-height: 1.55; }
.bcard-services span + span::before { content: " • "; color: var(--faint); }
.open-state { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; }
.open-state::before { content: ""; width: 14px; height: 14px; border-radius: 50%; flex: none; }
.open-state.tone-open { color: var(--green-700); }
.open-state.tone-open::before { background: var(--green-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4L18 8'/%3E%3C/svg%3E") center / 9px no-repeat; }
.open-state.tone-warn { color: var(--amber); }
.open-state.tone-warn::before { background: var(--gold); }
.open-state.tone-closed, .open-state.tone-muted { color: var(--muted); }
.open-state.tone-closed::before, .open-state.tone-muted::before { background: #cdd5d0; width: 8px; height: 8px; margin: 0 3px; }
.bcard-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; padding-top: 6px; position: relative; z-index: 2; }
.bcard-actions .btn { min-height: 38px; font-size: 13px; padding: 0 10px; }

.logo { position: relative; flex: none; display: grid; place-items: center; overflow: hidden; background: #fff; border-radius: 50%; border: 1px solid var(--line); }
.logo img { width: 100%; height: 100%; object-fit: cover; }
.logo-sm { width: 36px; height: 36px; font-size: 13px; }
.logo-md { width: 44px; height: 44px; font-size: 15px; }
.logo-lg { width: 88px; height: 88px; font-size: 28px; border-radius: 22px; border-width: 3px; border-color: #fff; box-shadow: var(--sh); }
.logo-mono { background: var(--mono-bg); color: var(--mono-fg); font-weight: 700; letter-spacing: -.02em; border-color: transparent; }

/* why split */
.why { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); align-items: center; gap: clamp(28px, 4vw, 56px); }
.why-media { position: relative; border-radius: 0 var(--r-lg) var(--r-lg) 0; overflow: hidden; aspect-ratio: 1.6 / 1; margin-left: calc((100vw - min(100vw, var(--container))) / -2 - 24px); }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why h2 { margin-bottom: 26px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-ico { width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.why-ico .i { width: 19px; height: 19px; }
.why-item h3 { font-size: 14px; margin: 2px 0 3px; }
.why-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.45; }

/* reviews */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev { position: relative; padding: 22px 22px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); display: flex; flex-direction: column; gap: 12px; }
.rev::after { content: "\201D"; position: absolute; top: 4px; right: 18px; font-size: 64px; line-height: 1; color: #dfe5e1; font-family: Georgia, serif; }
.rev q { font-size: 13.5px; line-height: 1.6; color: var(--text); quotes: "\201C" "\201D"; }
.rev-who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.rev-who .avatar { width: 32px; height: 32px; font-size: 12px; }
.rev-who strong { display: block; font-size: 13px; color: var(--ink); font-weight: 600; line-height: 1.2; }
.rev-who span { font-size: 12px; color: var(--muted); }
.rev-for { font-size: 12px; color: var(--muted); }
.rev-for a { color: var(--green-700); }

/* CTA band */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--green-950); color: #fff; }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; z-index: -2; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4, 24, 14, .97) 0%, rgba(4, 24, 14, .88) 38%, rgba(4, 24, 14, .25) 72%, rgba(4, 24, 14, .1) 100%); }
.cta-inner { padding: clamp(40px, 5vw, 56px) 0; max-width: 540px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.25rem); }
.cta-inner p { margin: 12px 0 22px; color: rgba(255,255,255,.86); font-size: 15px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* resources */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.res { display: flex; gap: 14px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.res:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.res-img { width: 42%; flex: none; aspect-ratio: 1.45 / 1; border-radius: 9px; overflow: hidden; background: var(--bg-soft); }
.res-img img { width: 100%; height: 100%; object-fit: cover; }
.res-body { padding: 6px 4px 4px 0; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.res-body h3 { font-size: 13.5px; line-height: 1.35; }
.res-tag { font-size: 11.5px; color: var(--green-700); font-weight: 500; }
.res-time { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--muted); margin-top: auto; }
.res-time .i { width: 13px; height: 13px; }

/* ---------- footer ---------- */

.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .9fr .85fr 1.4fr; gap: 28px; padding-top: 44px; padding-bottom: 36px; }
.footer-about p { font-size: 13px; color: var(--muted); margin: 14px 0 16px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 7px; }
.footer-col a { font-size: 13px; color: var(--muted); }
.footer-col a:hover { color: var(--green-700); }
.socials { display: flex; gap: 8px; }
.socials a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); transition: .15s; }
.socials a:hover { background: var(--green-100); color: var(--green-800); }
.socials .i { width: 19px; height: 19px; }
.newsletter p { font-size: 13px; color: var(--muted); margin: 0 0 12px; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input { flex: 1; min-width: 0; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; font-size: 13.5px; }
.newsletter input:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(26,138,82,.12); }
.newsletter small { display: block; margin-top: 8px; font-size: 11.5px; color: var(--faint); }
.footer-bar { background: var(--green-950); color: rgba(255,255,255,.82); font-size: 12px; }
.footer-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
.footer-bar nav { display: flex; gap: 6px; align-items: center; }
.footer-bar nav a:hover { color: #fff; }
.footer-bar nav span { opacity: .4; margin: 0 6px; }
.footer-bar .heart { display: inline-flex; align-items: center; gap: 6px; }
.footer-bar .heart .i { width: 14px; height: 14px; fill: #fff; stroke: #fff; }

/* ---------- forms ---------- */

.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field > label, .label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.field .hint { font-size: 12.5px; color: var(--muted); margin: -2px 0 0; }
.input, .select, .textarea {
  width: 100%; min-height: 46px; padding: 11px 13px; font-size: 14.5px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); transition: border-color .15s, box-shadow .15s;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.select { appearance: none; padding-right: 38px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2366736c' 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 12px center; background-size: 16px; }
.input:hover, .select:hover, .textarea:hover { border-color: #cdd6d1; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(26,138,82,.12); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 4px rgba(194,65,45,.1); }
.field-error { font-size: 12.5px; color: var(--red); margin: 0; display: flex; gap: 6px; align-items: center; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0 16px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--green-700); flex: none; }

.alert { display: flex; gap: 12px; align-items: flex-start; padding: 13px 15px; border-radius: var(--r-sm); font-size: 14px; margin-bottom: 16px; border: 1px solid transparent; }
.alert .i { margin-top: 1px; }
.alert-success { background: var(--green-50); border-color: var(--green-200); color: var(--green-900); }
.alert-error { background: var(--red-50); border-color: #f5c9c0; color: #7d2718; }
.alert-info { background: var(--blue-50); border-color: #cddcf8; color: #1a3f86; }
.alert-warn { background: var(--amber-50); border-color: #f6dca8; color: #6c4200; }

/* toasts */
.toasts { position: fixed; z-index: 120; left: 50%; bottom: 24px; transform: translateX(-50%); display: grid; justify-items: center; width: min(420px, calc(100vw - 32px)); pointer-events: none; }
.toast { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; padding: 7px 16px 7px 7px; background: rgba(255,255,255,.96); color: var(--ink); border: 1px solid rgba(15,40,25,.08); border-radius: 99px; box-shadow: 0 10px 30px -10px rgba(10,30,20,.28), 0 2px 6px rgba(10,30,20,.06); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-size: 13.5px; font-weight: 500; pointer-events: auto; animation: toast-in .3s var(--ease); }
.toast .i { flex: none; width: 24px; height: 24px; padding: 5px; border-radius: 50%; background: var(--green-700); color: #fff; stroke-width: 2.6; }
.toast.is-error .i { background: #c2412d; }
@keyframes fav-pop { 0% { transform: scale(1); } 35% { transform: scale(1.28); } 65% { transform: scale(.92); } 100% { transform: scale(1); } }
.fav.is-pop .i, .fav-inline.is-pop .i { animation: fav-pop .42s var(--ease); }
@media (prefers-reduced-motion: reduce) { .fav.is-pop .i, .fav-inline.is-pop .i { animation: none; } }
.toast.is-leaving { animation: toast-out .25s var(--ease) forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(8px); } }

/* modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; visibility: hidden; pointer-events: none; transition: visibility 0s linear .25s; }
.modal.is-open { visibility: visible; pointer-events: auto; transition: visibility 0s; }
.modal-scrim { position: absolute; inset: 0; background: rgba(7, 30, 19, .5); opacity: 0; transition: opacity .25s var(--ease); }
.modal.is-open .modal-scrim { opacity: 1; }
.modal-panel { position: relative; width: min(560px, 100%); max-height: calc(100vh - 32px); overflow-y: auto; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.modal.is-open .modal-panel { opacity: 1; transform: none; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 24px 0; }
.modal-head p { margin: 4px 0 0; font-size: 14px; color: var(--muted); }
.modal-body { padding: 18px 24px 24px; }

/* skeleton & empty */
.skel { position: relative; overflow: hidden; background: #edf1ee; border-radius: 8px; }
.skel::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent); animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.empty { text-align: center; padding: 48px 24px; background: #fff; border: 1px dashed #d3dbd6; border-radius: var(--r-lg); }
.empty-ico { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.empty-ico .i { width: 28px; height: 28px; }
.empty h3 { font-size: 1.15rem; margin-bottom: 8px; }
.empty p { color: var(--muted); max-width: 440px; margin: 0 auto 14px; }
.empty ul { list-style: none; padding: 0; margin: 0 auto 20px; display: inline-grid; gap: 6px; text-align: left; font-size: 14px; color: var(--text); }
.empty li { display: flex; gap: 8px; align-items: center; }
.empty li .i { width: 16px; height: 16px; color: var(--green-600); }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); list-style: none; padding: 0; margin: 0; }
.crumbs a:hover { color: var(--green-700); }
.crumbs li { display: inline-flex; align-items: center; gap: 4px; }
.crumbs li + li::before { content: ""; width: 14px; height: 14px; background: currentColor; opacity: .5; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat; }
.crumbs [aria-current] { color: var(--ink); }

/* pagination */
.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.pager a, .pager span { min-width: 40px; height: 40px; padding: 0 12px; display: inline-grid; place-items: center; border-radius: var(--r-sm); font-size: 14px; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.pager a:hover { border-color: var(--green-600); color: var(--green-800); }
.pager [aria-current] { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.pager .gap { border: 0; background: none; min-width: 20px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 2px; cursor: pointer; font-weight: 500; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { color: var(--green-700); transition: transform .2s var(--ease); flex: none; }
.faq details[open] summary .i { transform: rotate(45deg); }
.faq .faq-a { padding: 0 2px 18px; color: var(--text); font-size: 14.5px; }

.prose { font-size: 15.5px; line-height: 1.72; color: var(--text); }
.prose h2 { font-size: 1.3rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.08rem; margin: 1.4em 0 .4em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin: .3em 0; }
.prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.prose > :first-child { margin-top: 0; }

/* in-view reveal — content is visible by default; only animated when JS is ready */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- brand, header extras ---------- */

.brand-logo { height: 62px; width: auto; transition: height .25s var(--ease); }
.site-header.is-scrolled .brand-logo { height: 48px; }
.dropdown-right { left: auto; right: 0; min-width: 220px; }
.dropdown form { margin: 0; }
.dd-button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 10px; border: 0; background: none; border-radius: 9px; font-size: 13.5px; color: var(--text); text-align: left; }
.dd-button:hover { background: var(--red-50); color: var(--red); }
.dd-button .i { width: 18px; height: 18px; }
.account .nav-link { gap: 8px; padding-left: 4px; }
/* Header shows only the avatar + caret (the name sat on top of "Resources" when signed in);
   the name stays readable to screen readers and is shown at the top of the menu. */
.site-header .acct-name { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.account .nav-link { gap: 4px; padding: 0 6px 0 2px; }
.dd-user { display: grid; gap: 1px; padding: 8px 10px 10px; margin-bottom: 4px; border-bottom: 1px solid var(--line-2); min-width: 220px; }
.dd-user strong { font-size: 14px; color: var(--ink); font-weight: 600; }
.dd-user span { font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mnav-link { display: flex; align-items: center; gap: 10px; padding: 14px 8px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.mnav-link .i { color: var(--green-700); }
.flash-wrap { padding-top: 16px; }
.eyebrow img { width: 16px; height: 16px; }

.cta-band .container { position: relative; }

.tile-img-icon { background: #fff; }
.tile-img-icon .i { width: 54px; height: 54px; color: var(--green-900); stroke-width: 1.4; }

.bcard-cover-empty { display: grid; place-items: center; background:
  radial-gradient(120% 90% at 20% 0%, rgba(35,162,98,.35), transparent 60%),
  repeating-radial-gradient(circle at 80% 120%, rgba(255,255,255,.07) 0 1px, transparent 1px 14px),
  var(--green-900); }
.cover-art .logo { width: 64px; height: 64px; font-size: 22px; border: 3px solid rgba(255,255,255,.9); }

.nav-link, .signin, .btn-list { white-space: nowrap; }
/* Stats band: full-width, deep green with a slight frosted-glass blur of the photo behind. */
.hero-stats { position: relative; isolation: isolate; margin-top: 34px; padding: 22px 0 20px; text-shadow: 0 1px 6px rgba(0, 0, 0, .2); }
.hero-stats::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
  -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5);
  border-top: 1px solid rgba(255, 255, 255, .32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18); }

/* pest tiles: cut-out pests on light grey, like the reference */
.tile { background: #f2f3f2; border-color: #eceeec; }
.tile:hover { background: #eef0ee; border-color: #e2e6e3; }
.tile-img { background: transparent; aspect-ratio: 1 / .74; }
.tile-img img { object-fit: contain; padding: 4px 6px; filter: drop-shadow(0 8px 10px rgba(20, 30, 25, .22)); }
.tile:hover .tile-img img { transform: scale(1.08) rotate(-2deg); }
.tile-img-icon { background: transparent; }

.bcard-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.bcard-badges .badge { position: static; height: 24px; font-size: 11.5px; }

/* Premium "Verified" pill: soft blue, solid shield with a white tick */
.badge-blue, .pill-verified { background: #eaf2ff; color: #1d5fd6; border: 1px solid #d3e3fd; font-weight: 600; letter-spacing: .005em; box-shadow: 0 1px 2px rgba(29, 95, 214, .08); }
.badge-blue .i, .pill-verified .i { width: 15px; height: 15px; color: #2266e3; stroke-width: 1; }
.bcard-badges .badge-blue { background: rgba(234, 242, 255, .96); backdrop-filter: blur(4px); }

/* Premium verified seal pill (business cards) */
.badge-seal {
  gap: 6px; height: 28px !important; padding: 0 12px 0 4px; border-radius: 99px;
  font-size: 12px !important; font-weight: 700; letter-spacing: .01em; color: #1747a6;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}
.badge-seal .seal { width: 20px !important; height: 20px !important; stroke: none; filter: none; }
.badge-seal { display: inline-flex; align-items: center; flex: none; white-space: nowrap; }
/* on white surfaces (result cards, tables) — same seal, calmer lift */
.badge-seal-sm { gap: 5px; height: 24px !important; padding: 0 10px 0 3px; font-size: 11.5px !important; box-shadow: none; }
.badge-seal-sm .seal { width: 18px !important; height: 18px !important; }
.badge-seal-lg { gap: 7px; height: 32px !important; padding: 0 14px 0 5px; font-size: 13px !important; }
.badge-seal-lg .seal { width: 23px !important; height: 23px !important; }
.feat .seal { stroke: none; filter: none; }
/* the seal used as a standalone icon (icon circles, buttons, menus) */
.i.seal { stroke: none; filter: none; }
.why-ico .i.seal, .tp-ico .i.seal { width: 22px !important; height: 22px !important; }
/* green seal inside the green "Why use" circles (the seal reads its colours from these vars) */
.why-ico .i.seal { --seal-a: #146c43; --seal-b: #23a262; }
.btn .i.seal { width: 20px; height: 20px; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .25)); }
.rev, .rev blockquote { margin: 0; }
.section-tight + .section-tight { padding-top: 8px; }
.sec-head { margin-bottom: 18px; }

/* Tap targets: at least 24px tall (WCAG 2.5.8) for standalone links and small buttons. */
.link, .f-more, .f-reset, .readmore, .rr-report { min-height: 24px; }
.link, .readmore, .rr-report { display: inline-flex; align-items: center; }
.footer-col ul { gap: 2px; }
.footer-col a, .fc-help a, .fc-bottom a, .footer-bar nav a { display: inline-block; padding: 4px 0; }
.area-list li a, .more-guides a, .acct-list a { display: inline-block; padding: 3px 0; }
.chip { min-height: 24px; }

/* Header must always fit its container: brand and actions never shrink, the nav compacts first. */
.brand, .header-actions { flex: none; }
/* Nav fills the space between logo and actions; items spread evenly so the last one sits just before Sign In. */
.nav { flex: 1 1 auto; min-width: 0; justify-content: space-between; margin-right: 0; padding: 0; }
.nav > .nav-item { flex: none; }
/* spacing now comes from space-between, so links carry only their hover padding */
.nav .nav-link { padding: 0 8px; }
.nav { padding-left: clamp(8px, 1.8vw, 24px); }
/* The container caps at 1200px, so the header has the same room at every desktop width (100%, 90%, 80% zoom…).
   Use the compact sizing everywhere instead of only below 1360px, or wider windows overflow when signed in. */
.header-inner { gap: 14px; }
.nav { padding-right: 14px; }
.brand-logo { height: 54px; }
.site-header.is-scrolled .brand-logo { height: 46px; }
.nav .nav-link { font-size: 13px; }
.header-actions { gap: 4px; }
.signin { padding: 0 8px; }
.btn-list { padding: 0 14px; }
.why-section { overflow: hidden; }

/* ---------- responsive ---------- */

@media (max-width: 1360px) {
  .header-inner { gap: 14px; }
  .brand-logo { height: 54px; }
  .site-header.is-scrolled .brand-logo { height: 46px; }
  .nav-link { padding: 0 8px; font-size: 13px; }
  .header-actions { gap: 4px; }
  .signin { padding: 0 8px; }
  .btn-list { padding: 0 14px; }
}

@media (max-width: 1180px) {
  .nav-link { padding: 0 8px; font-size: 13px; }
  .header-inner { gap: 16px; }
  .tiles, .states { grid-template-columns: repeat(4, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .newsletter { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 1120px) {
  .nav, .header-actions .signin, .header-actions .btn-list, .header-actions .account { display: none; }
  .menu-toggle { display: inline-grid; margin-left: auto; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 1023px) {
  .hero::before { background: linear-gradient(180deg, rgba(250,252,250,.94) 0%, rgba(250,252,250,.82) 50%, rgba(4,28,17,.6) 78%, rgba(4,28,17,.85) 100%); }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-row .sfield:first-child { grid-column: 1 / -1; }
  .search-btn { grid-column: 1 / -1; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why { grid-template-columns: 1fr; }
  .why-media { margin-left: -24px; margin-right: -24px; border-radius: 0; aspect-ratio: 16 / 9; }
  .rev-grid, .res-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-auto-flow: column; grid-auto-columns: 82%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .rev { scroll-snap-align: start; }
}

@media (max-width: 767px) {
  :root { --header-h: 62px; }
  .hero-stats { display: none; }   /* phones: no stats band under the search card */
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .brand-logo, .site-header.is-scrolled .brand-logo { height: 44px; }
  .hero-inner { padding-top: 28px; min-height: 0; }
  .hero h1 { font-size: 2rem; }
  .search-card { padding: 14px; margin-top: 22px; }
  .search-row { grid-template-columns: 1fr; gap: 10px; }
  .sinput input, .sinput select, .search-btn { height: 50px; font-size: 16px; }
  /* phones: no Popular chip row in the search card */
  .popular { display: none; }
  .hero-stats { gap: 14px 10px; padding-top: 26px; }
  .hstat { gap: 10px; }
  .hstat .i { width: 26px; height: 26px; }
  .hstat strong { font-size: 16px; }
  .hstat span { font-size: 11.5px; }
  .sec-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  /* phones: a tidy 3-up grid (3 + 3 + 2) instead of a sideways scroller */
  .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .tile { padding: 8px 6px 12px; gap: 8px; }
  .tile-name { font-size: 12px; }
  .states { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .state-card { aspect-ratio: 1.5 / 1; }
  /* phones: swipe slider with arrows + dots, no visible scrollbar */
  /* exactly one card per view: each card is the full track width, gap equals the side padding so neighbours stay off-screen */
  .biz-grid { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scroll-snap-stop: always; scroll-padding: 0 16px; margin: 0 -16px; padding: 4px 16px 10px; gap: 32px; scrollbar-width: none; -ms-overflow-style: none; overscroll-behavior-x: contain; }
  .biz-grid > .bcard { scroll-snap-stop: always; }
  .biz-grid::-webkit-scrollbar { display: none; }
  .bcard { scroll-snap-align: start; }
  .slider-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
  .slider-dots { display: flex; align-items: center; gap: 6px; }
  .slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 99px; background: #cfd8d2; cursor: pointer; transition: width .25s var(--ease), background .25s; }
  .slider-dots button[aria-current="true"] { width: 22px; background: var(--green-700); }
  .slider-arrows { display: flex; gap: 8px; }
  .slider-arrows button { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); box-shadow: 0 4px 12px -6px rgba(15,35,26,.25); cursor: pointer; transition: background .15s, color .15s, opacity .15s; }
  .slider-arrows button .i { width: 18px; height: 18px; }
  .slider-arrows button:not([disabled]):active { background: var(--green-700); color: #fff; border-color: var(--green-700); }
  .slider-arrows button[disabled] { opacity: .35; cursor: default; box-shadow: none; }
  .bcard:hover { transform: none; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-media { margin-left: -16px; margin-right: -16px; }
  .rev-grid { grid-auto-columns: 88%; margin: 0 -16px; padding: 0 16px 6px; }
  .cta-band::before { background: linear-gradient(180deg, rgba(4,24,14,.9), rgba(4,24,14,.75)); }
  .cta-actions .btn { flex: 1; }
  .res { flex-direction: column; }
  .res-img { width: 100%; aspect-ratio: 16 / 8; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; padding-top: 34px; }
  .footer-about, .newsletter { grid-column: 1 / -1; }
  .footer-bar .container { justify-content: center; text-align: center; }
  .row-2, .row-3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
