/* ============================================================
   Dr.Pest — modern conversion-optimized landing page
   ============================================================ */

:root {
  /* palette */
  --bg: #faf9f5;
  --bg-2: #f3f1ea;
  --ink: #0b1410;
  --ink-2: #1c2620;
  --muted: #6b7565;
  --line: #e6e4d9;
  --line-2: #d8d5c8;
  --card: #ffffff;

  --brand: #0e4d3a;
  --brand-2: #0a3a2c;
  --brand-3: #073025;

  --accent: #d4ff3a;      /* electric lime */
  --accent-ink: #0b1410;
  --warning: #ff6b35;
  --danger: #ff3838;
  --ok: #27d17a;

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(11,20,16,.04), 0 2px 6px rgba(11,20,16,.04);
  --shadow-md: 0 4px 12px rgba(11,20,16,.06), 0 12px 32px rgba(11,20,16,.06);
  --shadow-lg: 0 12px 32px rgba(11,20,16,.08), 0 32px 80px rgba(11,20,16,.10);
  --shadow-glow: 0 8px 24px rgba(14,77,58,.25);

  /* type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-display: 'Inter Tight', 'Inter', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* reset */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul,ol { padding: 0; margin: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.05; font-weight: 700; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.ital { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 880px; }

/* topbar */
.topbar {
  background: var(--ink);
  color: #c9d1cc;
  font-size: 13px;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(39,209,122,.18);
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
.topbar-item { display: inline-flex; align-items: center; }
.topbar-spacer { flex: 1; }
.topbar-item.wa { color: var(--accent); font-weight: 600; }
.topbar a { transition: color .15s; }
.topbar a:hover { color: #fff; }
@media (max-width: 640px) {
  .topbar-inner { gap: 10px; font-size: 12px; padding: 8px 16px; }
  .topbar-item:first-child { display: none; }
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,245,.85);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(250,249,245,.95);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
  color: var(--ink);
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: var(--accent);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .2s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  padding: 14px 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.btn { border-bottom: 0; margin-top: 10px; }
.nav-mobile.open { display: flex; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-inner { justify-content: space-between; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.full { width: 100%; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--brand-2); box-shadow: 0 12px 28px rgba(14,77,58,.32); }
.btn-secondary {
  background: var(--ink);
  color: #fff;
}
.btn-secondary:hover { background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(11,20,16,.04); border-color: var(--ink-2); }
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.32);
}
.btn-wa:hover { background: #20bf5b; box-shadow: 0 12px 28px rgba(37,211,102,.4); }

/* hero */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-left { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(39,209,122,.20);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,209,122,.5); }
  50% { box-shadow: 0 0 0 6px rgba(39,209,122,0); }
}
.hero-h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  letter-spacing: -0.04em;
  line-height: .96;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-h1 .ital {
  display: inline-block;
  background: linear-gradient(90deg, var(--brand) 0%, #1c8a6a 60%, #2cb482 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 6px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.pest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
.chips-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-right: 6px;
}
.chip {
  border: 1px solid var(--line-2);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .15s;
}
.chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.hero-trust strong { color: var(--ink); font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: #ffb800; }
.stars svg { width: 18px; height: 18px; }

/* hero floating card */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 88px;
  transform: rotate(.4deg);
  transition: transform .3s;
}
.hero-card:hover { transform: rotate(0deg) translateY(-2px); }
.card-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(90deg, rgba(255,107,53,.12), rgba(255,184,0,.12));
  color: var(--warning);
  border: 1px solid rgba(255,107,53,.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.flag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
  animation: pulse 1.5s infinite;
}
.hero-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.card-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* hero card — one-tap WhatsApp */
.wa-big {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(37,211,102,.32);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
}
.wa-big::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.wa-big:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.4); }
.wa-big:hover::before { transform: translateX(100%); }
.wa-big-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-big-icon svg { width: 24px; height: 24px; }
.wa-big-text { display: flex; flex-direction: column; flex: 1; }
.wa-big-text strong { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.wa-big-text small { font-size: 12px; opacity: 0.88; margin-top: 2px; }
.wa-big-arrow { font-size: 22px; opacity: 0.85; transition: transform .15s; }
.wa-big:hover .wa-big-arrow { transform: translateX(4px); }

.call-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 22px;
  transition: background .15s, border-color .15s;
}
.call-row:hover { background: var(--bg-2); border-color: var(--line-2); }
.call-row strong { color: var(--ink); font-weight: 600; }

.activity {
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
  margin-bottom: 18px;
}
.act-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.activity ul { display: flex; flex-direction: column; gap: 6px; }
.activity li {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.act-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(39,209,122,.18);
}
.activity li:first-child .act-dot { animation: pulse 2s infinite; }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
}
.trust-pills span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 6px 10px;
  border-radius: 999px;
}

/* hero decorative blob */
.hero-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 30% 30%, rgba(212,255,58,.35), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero { padding: 32px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { position: static; transform: none; }
  .hero-blob { right: -200px; width: 400px; height: 400px; }
}

/* marquee */
.marquee {
  background: var(--ink);
  color: #c9d1cc;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  border-top: 1px solid #1a2520;
  border-bottom: 1px solid #1a2520;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  padding-left: 28px;
}
.marquee-track .sep { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* section */
.section {
  padding: 100px 0;
  position: relative;
}
.section.dark {
  background: var(--ink);
  color: #e8ebe9;
}
.section.dark .kicker { color: var(--accent); }
.section.dark h2 { color: #fff; }
.section.dark h2 .ital {
  background: linear-gradient(90deg, var(--accent), #a8e02e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section.dark p { color: #a8b0ac; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  background: rgba(14,77,58,.08);
  border-radius: 999px;
  margin-bottom: 18px;
}
.kicker.dark { color: var(--accent); background: rgba(212,255,58,.15); }
.section-head h2 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 18px;
}
.section-head p { font-size: 17px; color: var(--muted); max-width: 580px; }

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
}

/* pest grid */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.pest-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.pest-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.pest-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2620 0%, #0e4d3a 100%);
}
.pest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.pest-card:hover .pest-photo img { transform: scale(1.05); }
.pest-photo--general {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0e4d3a 0%, #1c8a6a 100%);
}
.general-icon {
  font-size: 96px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}
.pest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--brand);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.pest-badge.danger { background: rgba(255,56,56,.95); color: #fff; }
.pest-badge.safe { background: rgba(39,209,122,.95); color: #fff; }
.pest-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pest-card h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.pest-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; flex: 1; }
.pest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
  margin-bottom: 18px;
}
.pest-meta .warn { color: var(--warning); font-weight: 500; font-size: 12px; flex-basis: 100%; }
.pest-meta .ok { color: #178a52; font-weight: 500; font-size: 12px; flex-basis: 100%; }
.pest-link {
  font-weight: 600;
  color: var(--brand);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(14,77,58,.06);
  border-radius: 999px;
  align-self: flex-start;
  transition: all .15s;
}
.pest-link:hover { background: var(--brand); color: #fff; gap: 10px; }
.pest-link svg { transition: transform .15s; }

/* why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #1a2520;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-card {
  background: var(--ink);
  padding: 36px 28px;
  transition: background .2s;
}
.why-card:hover { background: var(--ink-2); }
.why-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.7;
}
.why-card h3 {
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.why-card p { color: #a8b0ac; font-size: 15px; line-height: 1.55; }

/* process */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: proc;
}
.process li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
}
.proc-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.process h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 8px; }
.process p { color: var(--muted); font-size: 15px; }

/* plans (formerly pricing) */
.plans-section { background: var(--bg-2); }
.pricing-section { background: var(--bg-2); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-card.featured h3 { color: #fff; }
.price-card.featured .price-desc { color: #a8b0ac; }
.price-card.featured .price-list { color: #c9d1cc; }
.price-card.featured .price-list li strong { color: var(--accent); }
.price-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--bg-2);
  color: var(--muted);
  border-radius: 6px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.price-tag.pop {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}
.price-card h3 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 6px; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price-card.featured .price { border-bottom-color: #1a2520; }
.price-strike {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-card.featured .price-strike { color: #6a746e; }
.price-now {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-now small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}
.price-card.featured .price-now small { color: #a8b0ac; }
.price-save {
  display: inline-block;
  background: rgba(39,209,122,.15);
  color: #178a52;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
  margin-top: 6px;
}
.price-card.featured .price-save {
  background: rgba(212,255,58,.2);
  color: var(--accent);
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
  font-size: 15px;
  color: var(--ink-2);
}
.price-list li.muted { color: var(--muted); opacity: 0.6; }
.price-fine {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 28px;
}

/* risk calculator */
.risk-section {
  background: linear-gradient(135deg, #0a3a2c 0%, #0e4d3a 50%, #073025 100%);
  color: #fff;
}
.risk-section .kicker { color: var(--accent); background: rgba(212,255,58,.15); }
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.risk-left h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.risk-left p { color: #c9d1cc; font-size: 17px; margin-bottom: 24px; }
.risk-left p strong { color: var(--accent); }
.risk-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #d4dcd6;
}
.risk-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.risk-step {
  display: none;
  animation: stepIn .35s ease;
}
.risk-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.risk-progress {
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 22px;
}
.risk-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #2cb482);
  border-radius: 999px;
  transition: width .35s;
}
.risk-q {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}
.risk-card h3 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.risk-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.risk-opts button {
  text-align: left;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .15s;
}
.risk-opts button:hover {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
  transform: translateX(4px);
}
.risk-result { text-align: center; }
.dial { position: relative; max-width: 220px; margin: 0 auto 20px; }
.dial-svg { width: 100%; height: auto; }
.dial-score {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.dial-score small { font-size: 18px; color: var(--muted); font-weight: 500; }
.risk-result h3 { margin-bottom: 8px; }
.risk-result p { color: var(--muted); margin-bottom: 20px; font-size: 15px; }
.risk-restart {
  display: inline-block;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  padding: 10px;
  margin-top: 8px;
}
.risk-restart:hover { color: var(--ink); }

@media (max-width: 920px) {
  .risk-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* stats */
.stats-section { background: var(--bg-2); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { color: var(--muted); font-size: 14px; font-weight: 500; }

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.testi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { color: #ffb800; font-size: 16px; letter-spacing: 2px; }
.testi blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.testi figcaption strong { display: block; font-size: 14px; }
.testi figcaption span { font-size: 12px; color: var(--muted); }

/* guarantee */
.guarantee-section {
  background: linear-gradient(135deg, var(--accent) 0%, #b8e62e 100%);
  position: relative;
  overflow: hidden;
}
.guarantee-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.4), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.guarantee-badge { color: var(--brand-2); flex-shrink: 0; }
.guarantee-text .kicker {
  background: rgba(14,77,58,.15);
  color: var(--brand-2);
}
.guarantee-text h2 {
  color: var(--brand-3);
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.guarantee-text h2 .ital { color: var(--brand-2); }
.guarantee-text p {
  color: var(--brand-3);
  font-size: 17px;
  margin-bottom: 16px;
  max-width: 640px;
}
.guarantee-text strong { font-weight: 700; }
.g-promise { font-size: 16px; opacity: 0.88; }
.guarantee-text .btn-primary { background: var(--brand-2); margin-top: 8px; }
.guarantee-text .btn-primary:hover { background: var(--brand-3); }
@media (max-width: 720px) {
  .guarantee { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .guarantee-badge { margin: 0 auto; }
  .guarantee-text p { margin-left: auto; margin-right: auto; }
}

/* FAQ */
.faq-section { background: var(--bg); }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: var(--brand); }
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--brand);
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 24px; }
.faq-a p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.faq-a a { color: var(--brand); font-weight: 600; }

/* final CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1c2620 100%);
  color: #fff;
  text-align: center;
}
.cta-band .kicker { background: rgba(212,255,58,.15); color: var(--accent); }
.cta-band h2 {
  color: #fff;
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 18px;
}
.cta-band h2 .ital {
  background: linear-gradient(90deg, var(--accent), #a8e02e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-band p {
  color: #a8b0ac;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.2); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.cta-band-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }
.center .kicker { display: inline-block; }

/* legacy booking form styles (kept for future re-use, no longer rendered) */
.book-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.book-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.book-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}
.bp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bp-step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  transition: all .2s;
}
.bp-step label { font-size: 12px; color: var(--muted); font-weight: 500; }
.bp-step.active span { background: var(--brand); color: var(--accent); }
.bp-step.active label { color: var(--brand); font-weight: 600; }
.bp-step.done span { background: var(--brand); color: #fff; }
.bp-step.done span::after { content: "✓"; }
.bp-step.done span > * { display: none; }
.bp-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  margin-top: -18px;
  border-radius: 999px;
  overflow: hidden;
}
.bp-line i {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--brand);
  transition: width .35s;
}
.bp-line.filled i { width: 100%; }
@media (max-width: 560px) {
  .bp-step label { display: none; }
  .book-card { padding: 28px 22px; }
}

.book-step { display: none; animation: stepIn .3s ease; }
.book-step.active { display: block; }
.book-step h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.book-step > p { color: var(--muted); margin-bottom: 24px; }

.opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.opt {
  position: relative;
  cursor: pointer;
}
.opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.opt span {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  transition: all .15s;
  background: #fff;
}
.opt:hover span { border-color: var(--brand); color: var(--brand); }
.opt input:checked + span {
  background: var(--brand);
  color: var(--accent);
  border-color: var(--brand);
  box-shadow: var(--shadow-glow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.field small { color: var(--muted); font-weight: 400; }

.incentive {
  background: linear-gradient(90deg, rgba(212,255,58,.2), rgba(212,255,58,.05));
  border: 1px solid rgba(14,77,58,.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.incentive code {
  display: inline-block;
  padding: 2px 8px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.book-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.book-actions .btn { min-width: 130px; }

.success {
  text-align: center;
  padding: 16px 0;
}
.success-tick {
  color: var(--ok);
  margin: 0 auto 22px;
  width: 80px;
  height: 80px;
}
.success h3 { font-size: 32px; margin-bottom: 12px; }
.success p { color: var(--muted); margin-bottom: 22px; max-width: 460px; margin-left: auto; margin-right: auto; }
.success .btn { margin: 6px 0; }

.book-fine {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 24px;
}

/* footer */
.footer {
  background: var(--ink);
  color: #c9d1cc;
  padding: 72px 0 32px;
  margin-bottom: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #a8b0ac; font-size: 14px; line-height: 1.6; margin-bottom: 14px; max-width: 280px; }
.f-meta { font-size: 12px; color: #8a948e; line-height: 1.7; }
.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
  font-family: var(--font-sans);
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer li:last-child { color: #8a948e; }
.footer-bottom {
  border-top: 1px solid #1a2520;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a948e;
}
.f-legal a { margin: 0 6px; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* sticky mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  display: none;
  gap: 8px;
  z-index: 40;
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
.mcta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
}
.mcta-btn.wa { background: #25d366; color: #fff; border-color: #25d366; }
.mcta-btn.book { background: var(--brand); color: #fff; border-color: var(--brand); }
@media (max-width: 920px) {
  .mobile-cta { display: flex; }
  .footer { margin-bottom: 72px; }
}

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 39;
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 920px) {
  .wa-fab { bottom: 80px; }
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .live-dot, .flag-dot, .wa-pulse { animation: none; }
}

/* toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 920px) {
  .toast { bottom: 88px; }
}

/* small refinements */
::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   Brand logo image  (logo.jpeg — cropped to the wordmark)
   ============================================================ */
.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 7px;
  display: block;
}
.footer-brand .logo img { box-shadow: 0 1px 0 rgba(255,255,255,.04); }
@media (max-width: 560px) {
  .logo img { height: 38px; width: auto; }
}

/* ============================================================
   Enquiry form  —  mobile-first
   ============================================================ */
.enquiry-section { background: var(--bg-2); }
.enquiry-grid { display: flex; flex-direction: column; gap: 28px; }

.enquiry-intro .kicker { margin-bottom: 14px; }
.enquiry-intro h2 {
  font-size: clamp(30px, 7vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 12px;
}
.enquiry-intro > p { color: var(--muted); font-size: 16px; margin-bottom: 18px; max-width: 460px; }
.enquiry-points { display: flex; flex-direction: column; gap: 9px; font-size: 15px; color: var(--ink-2); }
.enquiry-points li { display: flex; align-items: center; gap: 8px; }
.enquiry-points strong { color: var(--ink); font-weight: 600; }

.enquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.enquiry-form[hidden] { display: none; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label,
.form-field .field-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.form-field .opt { color: var(--muted); font-weight: 400; font-size: 13px; }
.form-field input {
  font-family: inherit;
  font-size: 16px;                 /* >=16px keeps iOS from zooming on focus */
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.form-field input::placeholder { color: #a6af9f; }
.form-field input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,77,58,.12);
}
.form-field input.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255,56,56,.12);
}
.field-error { font-size: 12.5px; color: var(--danger); font-weight: 500; }

.choice-group { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg);
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  user-select: none;
}
.choice:active span { transform: scale(.97); }
.choice input:checked + span {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

.form-fine { font-size: 12.5px; color: var(--muted); text-align: center; line-height: 1.5; }
.form-fine a { color: var(--brand); }

/* success state */
.enquiry-success {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.enquiry-success .succ-tick {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(39,209,122,.14);
  color: var(--ok);
  display: grid;
  place-items: center;
}
.enquiry-success h3 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 10px; }
.enquiry-success p { color: var(--muted); font-size: 15px; margin-bottom: 6px; }
.enquiry-success .succ-phone,
.enquiry-success .succ-name { color: var(--ink); font-weight: 600; }
.enquiry-success .btn { margin-top: 18px; }

@media (min-width: 860px) {
  .enquiry-grid { flex-direction: row; align-items: flex-start; gap: 48px; }
  .enquiry-intro { flex: 1; position: sticky; top: 96px; }
  .enquiry-form, .enquiry-success { flex: 1.05; padding: 32px; }
}

/* ============================================================
   SEO service pages  (mobile-first)
   ============================================================ */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--brand); font-weight: 500; }
.breadcrumb .sep { margin: 0 7px; opacity: .55; }
.breadcrumb [aria-current] { color: var(--ink-2); }

.subhero { padding: 22px 0 10px; position: relative; overflow: hidden; }
.subhero .kicker { margin-bottom: 14px; }
.subhero h1 {
  font-size: clamp(34px, 8vw, 62px);
  letter-spacing: -0.035em;
  line-height: 1.03;
  font-weight: 800;
  margin-bottom: 16px;
}
.subhero-lead { font-size: 17px; color: var(--muted); max-width: 600px; margin-bottom: 22px; }
.subhero-lead strong { color: var(--ink); font-weight: 600; }
.subhero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.subhero-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 12.5px; color: var(--muted);
}
.subhero-trust span {
  background: #fff; border: 1px solid var(--line);
  padding: 6px 11px; border-radius: 999px; font-weight: 500;
}
.subhero-media {
  margin-top: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}
.subhero-media img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 720px; }
.prose h2 {
  font-size: clamp(26px, 5vw, 38px);
  letter-spacing: -0.025em;
  margin: 8px 0 14px;
}
.prose h3 { font-size: 20px; letter-spacing: -0.015em; margin: 26px 0 8px; }
.prose p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.prose > p:first-of-type { font-size: 17px; }
.prose .bullets { display: flex; flex-direction: column; gap: 9px; margin: 14px 0 20px; }
.prose .bullets li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.prose .bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand); font-weight: 800;
}
.prose a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.info-callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 22px 0;
  font-size: 15px;
  color: var(--ink-2);
}
.info-callout strong { color: var(--ink); }

.related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.related-card {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.related-card:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-card .rc-emoji { font-size: 26px; line-height: 1; flex-shrink: 0; }
.related-card strong { display: block; font-size: 15px; color: var(--ink); }
.related-card span { font-size: 13px; color: var(--muted); }
.related-card .rc-arrow { margin-left: auto; color: var(--brand); font-size: 18px; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* "full details" link on homepage pest cards */
.pest-more {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 12px;
  display: inline-block;
  transition: color .15s;
}
.pest-more:hover { color: var(--brand); }

/* ============================================================
   Mobile polish pass
   ============================================================ */
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .hero-grid { padding: 0 18px; }
  .hero { padding: 24px 0 48px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { font-size: 13px; }
  .cta-band-row .btn { width: 100%; }
  .enquiry-form { padding: 20px 18px; }
  .subhero h1 { margin-bottom: 14px; }
  .subhero-ctas .btn { width: 100%; }
}
