/* =====================================================================
   Pasternack Pest Management — Design System
   Palette: Trust & Professional (navy / blue / green)
   ===================================================================== */

:root {
  /* Brand colors */
  --navy:        #0a2740;
  --navy-700:    #0f3354;
  --navy-600:    #16466f;
  --blue:        #1b6ca8;
  --blue-500:    #2a85c6;
  --blue-300:    #7db8e0;
  --teal:        #149b8e;
  --green:       #2ba24c;
  --green-600:   #1f8a3d;
  --green-700:   #19712f;
  --amber:       #f4b740;

  /* Neutrals */
  --ink:         #122031;
  --slate:       #51677c;
  --slate-300:   #8499ac;
  --line:        #e2eaf1;
  --bg:          #ffffff;
  --bg-soft:     #f3f8fc;
  --bg-tint:     #e9f3fb;
  --white:       #ffffff;

  /* Effects */
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   26px;
  --shadow-sm:   0 2px 8px rgba(13, 43, 71, .06);
  --shadow:      0 12px 30px rgba(13, 43, 71, .10);
  --shadow-lg:   0 26px 60px rgba(13, 43, 71, .16);
  --ring:        0 0 0 4px rgba(43, 162, 76, .22);

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--green-600); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); font-weight: 700; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* --------------------------- Layout utils -------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), var(--bg-soft)); }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }
.grid { display: grid; gap: 26px; }
@media (min-width: 700px){ .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px){ .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px){ .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------- Typography ---------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  background: var(--bg-tint); padding: 7px 14px; border-radius: 999px;
}
.eyebrow svg { width: 15px; height: 15px; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: 1.3rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--slate); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 14px 0 12px; }
.text-green { color: var(--green-600); }
.muted { color: var(--slate); }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 22px rgba(43,162,76,.32); }
.btn-primary:hover { background: var(--green-600); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(43,162,76,.4); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-600); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-tint); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------------------------- Header ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--navy); letter-spacing: -.01em; }
.brand-text span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-300); font-weight: 600; }

.nav-links { display: none; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: var(--navy);
  padding: 9px 14px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--bg-tint); color: var(--blue); }
.nav-links a.active { color: var(--blue); background: var(--bg-tint); }
.nav-cta { display: none; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.nav-phone svg { width: 18px; height: 18px; color: var(--green-600); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; padding: 0 11px;
}
.nav-toggle span { height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease; background: #fff; border-bottom: 1px solid var(--line);
}
.mobile-menu.open { grid-template-rows: 1fr; }
.mobile-menu > div { overflow: hidden; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px var(--gutter) 22px; gap: 4px; }
.mobile-menu a { font-family: var(--font-head); font-weight: 500; color: var(--navy); padding: 13px 12px; border-radius: 10px; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg-tint); color: var(--blue); }
.mobile-menu .btn { margin-top: 10px; }

@media (min-width: 940px){
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* ------------------------------ Hero ------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(43,162,76,.20), transparent 60%),
    radial-gradient(900px 500px at 5% 110%, rgba(27,108,168,.28), transparent 55%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-700) 45%, #103a63 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; gap: 40px; align-items: center; padding: clamp(48px,7vw,90px) 0; }
@media (min-width: 940px){ .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero h1 { color: #fff; }
.hero h1 .hl { color: #8fe3a6; }
.hero p.lead { color: rgba(255,255,255,.86); margin-top: 18px; max-width: 560px; }
.hero .btn-row { margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 500; }
.hero-badge svg { width: 18px; height: 18px; color: #8fe3a6; flex: none; }

/* Hero illustration card */
.hero-art { position: relative; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card .shield { width: 100%; height: auto; }
.hero-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-family: var(--font-head); font-size: .92rem;
}
.hero-float svg { width: 30px; height: 30px; flex: none; }
.hero-float small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--slate); font-size: .78rem; }
.hero-float--tl { top: 14px; left: -14px; }
.hero-float--br { bottom: 18px; right: -10px; }
@media (max-width: 540px){ .hero-float--tl { left: 6px; } .hero-float--br { right: 6px; } }

/* ----------------------- Trust / stats strip ----------------------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar .container { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; padding-block: 28px; }
@media (min-width: 820px){ .trustbar .container { grid-template-columns: repeat(4,1fr); } }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ti-icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--bg-tint); color: var(--blue); }
.trust-item .ti-icon svg { width: 24px; height: 24px; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--navy); }
.trust-item span { font-size: .86rem; color: var(--slate); }

/* ------------------------- Cards (generic) ------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); font-size: .98rem; }

/* Service cards */
.service-card { display: flex; flex-direction: column; }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--bg-tint), #d7ebf9); color: var(--blue);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card .more { margin-top: auto; padding-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .more svg { transform: translateX(4px); }
.service-card .more svg { width: 16px; height: 16px; transition: transform .2s ease; }

/* Pest detail cards (services page) */
.pest-card { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.pest-card .service-icon { margin-bottom: 0; }
.pest-card h3 { margin-bottom: 6px; }
.pest-tag { display: inline-block; font-size: .72rem; font-weight: 600; font-family: var(--font-head); letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.tag-high { background: #fde8e6; color: #c0392b; }
.tag-med { background: #fdf0d8; color: #b9770c; }
.tag-low { background: #e3f6e8; color: var(--green-700); }

/* Value / why-choose cards */
.value-card { text-align: left; }
.value-num { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--green); }
.value-card .service-icon { background: linear-gradient(140deg,#e4f7ea,#cdeed7); color: var(--green-600); }

/* ------------------------- Split feature --------------------------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px){ .split { grid-template-columns: 1fr 1fr; gap: 60px; } .split.reverse > .split-media { order: 2; } }
.split-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--navy), #11497a);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; display: grid; place-items: center; padding: 30px;
}
.media-frame svg { width: 100%; height: 100%; }
.check-list { display: grid; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list .ck { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.check-list .ck svg { width: 15px; height: 15px; }
.check-list strong { font-family: var(--font-head); display: block; }
.check-list span { color: var(--slate); font-size: .96rem; }

/* ----------------------------- Plans ------------------------------- */
.plans { display: grid; gap: 26px; }
@media (min-width: 860px){ .plans { grid-template-columns: repeat(3,1fr); align-items: stretch; } }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan.featured { border: 2px solid var(--green); box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.plan h3 { font-size: 1.35rem; }
.plan .price { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin: 12px 0 4px; }
.plan .price b { font-size: 2.4rem; }
.plan .price small { font-size: .9rem; color: var(--slate); font-weight: 500; }
.plan .price-note { font-size: .85rem; color: var(--slate); }
.plan ul { display: grid; gap: 12px; margin: 22px 0 26px; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.plan ul li svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; }

/* ---------------------------- Reviews ------------------------------ */
.review-card { display: flex; flex-direction: column; gap: 16px; }
.stars { display: inline-flex; gap: 3px; color: var(--amber); }
.stars svg { width: 19px; height: 19px; }
.review-card blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: linear-gradient(140deg, var(--blue), var(--teal)); flex: none; }
.review-author strong { font-family: var(--font-head); display: block; font-size: .98rem; }
.review-author span { font-size: .85rem; color: var(--slate); }
.rating-summary { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; box-shadow: var(--shadow-sm); }
.rating-summary .big { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--navy); }

/* --------------------------- Service area -------------------------- */
.area-wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px){ .area-wrap { grid-template-columns: 1fr 1.1fr; gap: 56px; } }
.area-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 18px; margin-top: 22px; }
@media (min-width: 520px){ .area-list { grid-template-columns: repeat(3,1fr); } }
.area-list li { display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink); }
.area-list li svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ------------------------------ FAQ -------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue-300); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; text-align: left; padding: 20px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--navy);
}
.faq-q .chev { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--bg-tint); color: var(--blue); display: grid; place-items: center; transition: transform .25s ease, background .2s ease; }
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--green); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 22px 22px; color: var(--slate); }

/* ------------------------------ Forms ------------------------------ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 620px){ .form-grid .col-2 { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fcfdfe;
  transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field .err { color: #c0392b; font-size: .82rem; display: none; }
.field.invalid .err { display: block; }
.form-note { font-size: .85rem; color: var(--slate); margin-top: 4px; }
.form-success {
  display: none; background: #e3f6e8; border: 1px solid #b6e6c4; color: var(--green-700);
  border-radius: 12px; padding: 16px 18px; font-weight: 500; align-items: center; gap: 12px;
  scroll-margin-top: 120px;
}
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; flex: none; }

/* contact info list */
.contact-aside { display: grid; gap: 18px; align-content: start; }
.contact-tile { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.contact-tile .ct-icon { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--bg-tint); color: var(--blue); display: grid; place-items: center; }
.contact-tile .ct-icon svg { width: 23px; height: 23px; }
.contact-tile strong { font-family: var(--font-head); color: var(--navy); display: block; }
.contact-tile a, .contact-tile p { color: var(--slate); }
.contact-tile a:hover { color: var(--green-600); }

/* ----------------------------- CTA band ---------------------------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 300px at 90% 0%, rgba(43,162,76,.35), transparent 60%),
    linear-gradient(135deg, var(--navy), #11497a);
  padding: clamp(36px, 6vw, 64px); text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin: 14px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* ------------------------------ Footer ----------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.74); padding-top: 64px; }
.footer-grid { display: grid; gap: 36px; padding-bottom: 44px; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand .logo-mark { width: 46px; height: 46px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: var(--blue-300); }
.footer-brand p { margin-top: 16px; font-size: .94rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.74); font-size: .95rem; }
.footer-col a:hover { color: #8fe3a6; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: #8fe3a6; flex: none; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: .86rem; color: rgba(255,255,255,.55); }
.footer-bottom .lic { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .lic svg { width: 16px; height: 16px; color: #8fe3a6; }

/* ------------------------- Page hero (sub) ------------------------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 88% -20%, rgba(43,162,76,.22), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--navy-700));
  color: #fff; padding: clamp(46px,6vw,80px) 0;
}
.page-hero .eyebrow { background: rgba(255,255,255,.14); color: #8fe3a6; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #8fe3a6; }

/* --------------------------- Reveal anim --------------------------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (max-width: 760px){
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------ Misc ------------------------------- */
.divider-quote { text-align: center; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem,2.5vw,1.9rem); color: var(--navy); max-width: 880px; margin: 0 auto; line-height: 1.4; }
.divider-quote span { color: var(--green-600); }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--navy); padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
.badge-soft { display:inline-flex; align-items:center; gap:8px; background:var(--bg-tint); color:var(--blue); border-radius:999px; padding:6px 14px; font-weight:600; font-size:.86rem; font-family:var(--font-head); }
.badge-soft svg{ width:16px;height:16px; }
