:root {
  --bg: #ffffff;
  --bg-soft: #f5fbf8;
  --bg-mist: #eef8f3;
  --ink: #101720;
  --text: #26323d;
  --muted: #66737d;
  --line: #d9eee4;
  --line-strong: #b7ddcd;
  --green: #18aa69;
  --green-dark: #0b7b4c;
  --green-soft: #dcf7eb;
  --signal: #e84d3d;
  --amber: #f1a23c;
  --footer: #101b22;
  --shadow: 0 22px 70px rgba(16, 23, 32, 0.16);
  --container: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 92px;
  padding: 16px max(24px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 238, 228, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: linear-gradient(145deg, #21bf78, #0c9359);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(24, 170, 105, 0.26);
}

.brand-mark svg {
  width: 54px;
  height: 54px;
}

.brand-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.brand-copy {
  display: grid;
  gap: 0;
  color: var(--ink);
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--green);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--green);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-contact {
  display: grid;
  gap: 2px;
  justify-items: end;
  min-width: max-content;
}

.phone-link,
.email-link,
.hero-email {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.phone-link {
  color: var(--green);
  font-size: 18px;
  font-weight: 850;
}

.phone-link svg,
.hero-email svg {
  width: 20px;
  height: 20px;
}

.phone-link path,
.hero-email path,
.hero-email rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.email-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: clamp(640px, 78vh, 820px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.54) 51%, rgba(255, 255, 255, 0.05) 78%),
    linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.9fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6.8vw, 86px);
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #2b3741;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 520;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  height: 21px;
}

.button path,
.button circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #25be78, #0f965d);
  box-shadow: 0 18px 34px rgba(24, 170, 105, 0.25);
}

.button-primary:hover {
  box-shadow: 0 24px 44px rgba(24, 170, 105, 0.3);
}

.button-ghost {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 170, 105, 0.18);
  backdrop-filter: blur(10px);
}

.hero-email {
  margin-top: 22px;
  color: #36434e;
  font-weight: 680;
}

.search-proof {
  position: relative;
  display: grid;
  justify-self: end;
  width: min(100%, 590px);
  min-height: 470px;
}

.map-card,
.rank-card,
.testimonial,
.audit-strip,
.audit-form {
  background: #ffffff;
  border: 1px solid rgba(183, 221, 205, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card {
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 2;
  width: min(410px, 76%);
  padding: 18px;
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 14px;
  color: #4a5863;
  background: #f9fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 680;
}

.search-bar svg {
  width: 18px;
  height: 18px;
  color: #2f8bff;
}

.search-bar circle,
.search-bar path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.map-surface {
  position: relative;
  height: 170px;
  margin-top: 14px;
  overflow: hidden;
  background:
    linear-gradient(35deg, rgba(24, 170, 105, 0.07), transparent 45%),
    linear-gradient(125deg, rgba(232, 77, 61, 0.08), transparent 50%),
    #eff7f3;
  border: 1px solid #d8eadf;
  border-radius: 8px;
}

.road {
  position: absolute;
  height: 2px;
  background: #cad9d0;
  border-radius: 999px;
}

.road-a {
  top: 46px;
  left: -20px;
  width: 120%;
  transform: rotate(-16deg);
}

.road-b {
  top: 96px;
  left: -12px;
  width: 112%;
  transform: rotate(13deg);
}

.road-c {
  top: 130px;
  left: 22px;
  width: 92%;
  transform: rotate(-7deg);
}

.pin {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--signal);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 14px rgba(232, 77, 61, 0.25);
  transform: rotate(-45deg);
}

.pin-a { top: 45px; left: 44px; }
.pin-b { top: 87px; left: 136px; }
.pin-c { top: 52px; right: 106px; }
.pin-d { bottom: 36px; right: 52px; }

.listing {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 4px 2px;
  border-bottom: 1px solid #edf3ef;
}

.listing:last-child {
  border-bottom: 0;
}

.listing div {
  display: grid;
  gap: 2px;
}

.listing strong {
  color: var(--ink);
  font-size: 15px;
}

.listing span {
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 781px) {
  .listing div {
    max-width: 220px;
  }
}

.listing a {
  align-self: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.listing.first strong::after {
  display: inline-block;
  margin-left: 8px;
  color: var(--amber);
  content: "5.0";
  font-size: 13px;
}

.muted {
  color: #99a5ae;
}

.rank-card {
  position: absolute;
  right: 0;
  bottom: 6px;
  z-index: 3;
  width: min(300px, 58%);
  padding: 20px;
}

.rank-label {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  text-transform: capitalize;
}

.rank-card strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
}

.rank-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 12px;
  list-style: none;
}

.rank-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  color: #5a6670;
  font-size: 13px;
}

.rank-card b {
  color: var(--ink);
  font-size: 17px;
}

.rank-line {
  width: 100%;
  height: 70px;
}

.rank-line path {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 4;
}

.rank-line circle {
  fill: #ffffff;
  stroke: var(--green);
  stroke-width: 3;
}

.small-proof {
  display: block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 820;
}

.audit-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: var(--container);
  margin: 34px auto 0;
  padding: 28px 34px;
  box-shadow: none;
}

.audit-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.audit-icon svg {
  width: 48px;
  height: 48px;
}

.audit-icon circle,
.audit-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.audit-strip h2,
.section-heading h2,
.contact-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: 0;
}

.audit-strip h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.audit-strip p,
.section-heading p,
.contact-heading p {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.audit-strip p {
  margin: 6px 0 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
}

.section-heading,
.contact-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px;
  overflow: hidden;
}

.service-item {
  min-height: 244px;
  padding: 30px 20px;
  text-align: center;
  background: #ffffff;
  border-right: 1px solid var(--line);
  outline: none;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-item:hover,
.service-item:focus-visible,
.service-item.is-active {
  background: linear-gradient(180deg, #ffffff, #f2fbf7);
  box-shadow: inset 0 4px 0 var(--green);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--green-dark);
}

.service-icon svg,
.metric-icon svg {
  width: 52px;
  height: 52px;
}

.service-icon path,
.service-icon circle,
.service-icon rect,
.metric-icon path,
.metric-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-item h3,
.process-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.service-item p {
  margin: 14px 0 0;
  color: #52606b;
  font-size: 14px;
  line-height: 1.55;
}

.process-band {
  width: var(--container);
  margin: 10px auto 0;
  padding: 62px 50px 58px;
  background:
    linear-gradient(90deg, rgba(24, 170, 105, 0.08), rgba(255, 255, 255, 0.95), rgba(24, 170, 105, 0.06)),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-band .section-heading {
  margin-bottom: 38px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  counter-reset: process;
}

.process-steps article {
  position: relative;
  text-align: center;
}

.process-steps article:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: -25px;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 850;
}

.process-steps p {
  margin: 10px 0 0;
  color: #52606b;
  font-size: 14px;
  line-height: 1.45;
}

.results {
  padding-bottom: 58px;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: stretch;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px;
  overflow: hidden;
}

.metric-row article {
  padding: 30px 22px 28px;
  background: #ffffff;
  border-right: 1px solid var(--line);
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green);
  margin-bottom: 12px;
}

.metric-row strong {
  display: block;
  color: var(--green);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.metric-row p {
  margin: 10px 0 0;
  color: #34424e;
  font-size: 15px;
}

.testimonial {
  padding: 32px;
  border-left: 5px solid var(--signal);
  box-shadow: none;
}

.rating {
  color: var(--signal);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.testimonial blockquote {
  margin: 18px 0 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.testimonial cite {
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 780;
}

.contact-section {
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0 76px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.contact-options a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 108px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-options a:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px rgba(16, 23, 32, 0.08);
  transform: translateY(-2px);
}

.contact-options svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--green);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.contact-options path,
.contact-options rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-options span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-options strong {
  min-width: 0;
  color: var(--green-dark);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 24px;
  box-shadow: none;
}

.audit-form div {
  display: grid;
  gap: 7px;
}

.audit-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.audit-form input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.audit-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 170, 105, 0.12);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.contact-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 38%, rgba(255, 255, 255, 0.64) 72%, rgba(255, 255, 255, 0.26) 100%),
    linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.74fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  width: var(--container);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 0;
}

.contact-hero-copy {
  max-width: 650px;
}

.contact-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 880;
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #32404b;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 520;
  line-height: 1.55;
}

.contact-quick-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 520px;
  margin-top: 34px;
}

.contact-quick-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(16, 23, 32, 0.08);
  backdrop-filter: blur(12px);
}

.contact-quick-links svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--green);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.contact-quick-links path,
.contact-quick-links rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-quick-links span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-quick-links strong {
  min-width: 0;
  color: var(--green-dark);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(183, 221, 205, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-topline h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: 0;
}

.form-topline p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid div,
.contact-form .full {
  display: grid;
  gap: 7px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
}

.contact-form textarea {
  min-height: 142px;
  padding-top: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 170, 105, 0.12);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-dark) 50%),
    linear-gradient(135deg, var(--green-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 14px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-detail-band {
  width: var(--container);
  margin: 0 auto;
  padding: 82px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-grid article {
  min-height: 210px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 850;
}

.detail-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.detail-grid p {
  margin: 12px 0 0;
  color: #52606b;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  width: var(--container);
  margin: 0 auto 82px;
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(135deg, #f8fffb, #ffffff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: 0;
}

.map-copy p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.map-copy .button {
  width: fit-content;
}

.map-embed {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    linear-gradient(35deg, rgba(24, 170, 105, 0.09), transparent 45%),
    linear-gradient(125deg, rgba(232, 77, 61, 0.07), transparent 50%),
    var(--bg-mist);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 23, 32, 0.1);
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  color: var(--green-dark);
  text-align: center;
}

.map-fallback strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.map-fallback > span:last-child {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 720;
}

.fallback-road {
  position: absolute;
  height: 3px;
  background: rgba(13, 123, 76, 0.16);
  border-radius: 999px;
}

.fallback-road-a {
  top: 30%;
  left: -8%;
  width: 118%;
  transform: rotate(-14deg);
}

.fallback-road-b {
  top: 53%;
  left: -6%;
  width: 112%;
  transform: rotate(10deg);
}

.fallback-road-c {
  top: 70%;
  left: 8%;
  width: 88%;
  transform: rotate(-6deg);
}

.fallback-pin {
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 13px);
  width: 26px;
  height: 26px;
  background: var(--signal);
  border: 5px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 16px 28px rgba(232, 77, 61, 0.28);
  transform: rotate(-45deg);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0.45) 100%),
    url("assets/hero-cincinnati-skyline.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.subpage-hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(86px, 10vw, 138px) 0;
}

.subpage-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 880;
  line-height: 1;
  letter-spacing: 0;
}

.subpage-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #32404b;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 520;
}

.content-band {
  width: var(--container);
  margin: 0 auto;
  padding: 82px 0;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.split-content h2,
.service-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: 0;
}

.split-content p,
.service-intro p {
  margin: 18px 0 0;
  color: #4a5863;
  font-size: 18px;
}

.trust-panel {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f5fbf8);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.trust-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: #52606b;
}

.trust-list li::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--green), inset 0 0 0 9px #ffffff;
}

.value-grid,
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.value-grid article,
.services-page-grid article {
  min-height: 220px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-grid h3,
.services-page-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.value-grid p,
.services-page-grid p {
  margin: 12px 0 0;
  color: #52606b;
}

.service-item a,
.services-page-grid a,
.contextual-link-copy a,
.seo-context-copy a {
  color: var(--green-dark);
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(25, 118, 76, 0.28);
  text-underline-offset: 0.18em;
}

.contextual-link-copy,
.seo-context-copy {
  margin-top: 46px;
  padding: clamp(26px, 4vw, 42px);
  color: #43515d;
  background: linear-gradient(135deg, #f8fffb, #ffffff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contextual-link-copy h3,
.seo-context-copy h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.14;
}

.contextual-link-copy p,
.seo-context-copy p {
  max-width: 980px;
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

.service-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.services-page-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 54px;
  padding: 30px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.service-cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.link-panel-section {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0;
}

.link-panel-section + .link-panel-section {
  padding-top: 12px;
}

.link-panel-grid,
.seo-detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.link-panel,
.seo-detail-card,
.faq-card {
  min-height: 190px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.link-panel:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px rgba(16, 23, 32, 0.08);
  transform: translateY(-2px);
}

.link-panel span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.link-panel h3,
.seo-detail-card h2,
.seo-detail-card h3,
.faq-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.link-panel p,
.seo-detail-card p,
.faq-card p {
  margin: 12px 0 0;
  color: #52606b;
}

.seo-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: 42px;
}

.seo-page-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 880;
  line-height: 1.1;
}

.seo-page-intro p {
  margin: 18px 0 0;
  color: #4a5863;
  font-size: 18px;
}

.seo-proof-list {
  display: grid;
  gap: 12px;
  padding: 22px;
  margin: 0;
  list-style: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: #52606b;
}

.seo-proof-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.support-band {
  margin-top: 44px;
  padding: 30px;
  background: linear-gradient(135deg, #f8fffb, #ffffff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.support-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--green-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 780;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 780;
}

.site-footer {
  color: #dbe8e2;
  background:
    linear-gradient(135deg, rgba(24, 170, 105, 0.14), transparent 35%),
    var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  width: var(--container);
  margin: 0 auto;
  padding: 44px 0;
}

.footer-brand .brand-copy strong {
  color: #ffffff;
}

.footer-grid p {
  max-width: 310px;
  margin: 20px 0 0;
  color: #c2d1ca;
  font-size: 15px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: #c2d1ca;
  font-size: 15px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 26px;
  color: #9fb0a8;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-contact {
    position: fixed;
    right: 24px;
    left: 24px;
    display: none;
    justify-items: start;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 58px rgba(16, 23, 32, 0.14);
  }

  .site-nav {
    top: 88px;
    flex-direction: column;
    gap: 0;
    padding: 16px 22px;
    border-radius: 8px 8px 0 0;
  }

  .header-contact {
    top: 344px;
    gap: 6px;
    padding: 18px 22px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  body.menu-open .site-nav,
  body.menu-open .header-contact {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .search-proof {
    justify-self: start;
    min-height: 430px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps article:not(:last-child)::after {
    display: none;
  }

  .results-layout,
  .audit-form,
  .contact-hero-inner,
  .map-section,
  .split-content,
  .service-cta,
  .seo-page-intro {
    grid-template-columns: 1fr;
  }

  .contact-hero-inner {
    min-height: auto;
  }

  .map-embed {
    min-height: 330px;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 28px, 680px);
  }

  .site-header {
    min-height: 78px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark svg {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .site-nav {
    top: 76px;
    right: 14px;
    left: 14px;
  }

  .header-contact {
    top: 332px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    opacity: 0.76;
    object-position: 67% center;
  }

  .hero-fade {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.93) 58%, rgba(255, 255, 255, 0.3) 100%),
      linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 26%);
  }

  .hero-inner {
    gap: 36px;
    padding: 54px 0 46px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .search-proof {
    width: 100%;
    min-height: auto;
  }

  .map-card,
  .rank-card {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .rank-card {
    margin-top: 16px;
  }

  .audit-strip {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }

  .audit-icon {
    margin: 0 auto;
  }

  .section {
    padding: 62px 0;
  }

  .service-grid,
  .process-steps,
  .metric-row,
  .contact-options,
  .contact-quick-links,
  .form-grid,
  .detail-grid,
  .value-grid,
  .services-page-grid,
  .link-panel-grid,
  .seo-detail-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .service-grid,
  .metric-row {
    border-right: 1px solid var(--line);
  }

  .service-item,
  .metric-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child,
  .metric-row article:last-child {
    border-bottom: 0;
  }

  .process-band {
    padding: 44px 22px;
  }

  .contact-options a {
    min-height: 96px;
  }

  .map-section {
    padding: 22px;
    margin-bottom: 62px;
  }

  .map-copy .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
