:root {
  --black: #030404;
  --white: #ffffff;
  --teal: #0085CA;
  --red: #C8102E;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 86px;
  padding: 16px clamp(24px, 4vw, 62px);
  background: rgba(0, 0, 0, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 38px;
  line-height: 0.86;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a,
.call-button,
.button {
  text-decoration: none;
}

.nav-item {
  position: relative;
}

.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 12px 0;
  background: rgba(3, 4, 4, 0.96);
  border: 1px solid rgba(53, 184, 196, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 16px;
  white-space: nowrap;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.call-button {
  border-color: var(--red);
}

.call-button img,
.button img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(3432%) hue-rotate(345deg) brightness(95%) contrast(93%);
}

.bedbug-hero {
  position: relative;
  min-height: 554px;
  overflow: hidden;
  background: #050606;
}

.bedbug-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.94) 34%, rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.08) 78%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.24) 100%);
}

.bedbug-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
}

.bedbug-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bedbug-hero-copy {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 48px));
  padding: 170px 0 70px;
  margin-left: clamp(24px, 4.2vw, 72px);
}

h1 {
  margin: 0 0 0;
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.96;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--teal);
  font-weight: 400;
  white-space: nowrap;
}

.bedbug-hero-copy > p {
  max-width: 430px;
  margin: 0 0 32px;
  color: #f2f5f5;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.hero-brush-line {
  display: block;
  width: 430px;
  max-width: 92%;
  height: 20px;
  margin: 10px 0 18px;
  background: url("instinct-brush-line.png") left center / 100% 100% no-repeat;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  color: #f2f5f5;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-credentials span {
  position: relative;
}

.hero-credentials span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.button.primary {
  background: var(--red);
}

.button.outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.8);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #090b0b;
  border-top: 1px solid var(--line);
}

.proof-strip div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 22px clamp(14px, 2vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip img {
  width: clamp(36px, 3vw, 50px);
  flex: 0 0 auto;
}

.proof-strip span,
.proof-strip strong {
  display: block;
}

.proof-strip span {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.section {
  padding: clamp(58px, 7vw, 80px) clamp(24px, 4vw, 64px);
}

.services,
.feature-section {
  color: #070808;
  background: #f3f3f1;
}

.section-title {
  margin-bottom: 34px;
}

.section-title h2,
.why-copy h2,
.feature-copy h2,
.cta-content h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(36px, 4.2vw, 48px);
}

.section-title span,
.red-rule {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 14px;
  background: var(--red);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.service-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #030404;
  border-radius: 3px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.service-photo {
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  margin: -38px auto 18px;
  object-fit: contain;
}

.service-body {
  min-height: 206px;
  padding: 0 44px 28px;
  text-align: center;
}

.service-body h3 {
  margin: 0 0 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-body p {
  margin: 0 0 26px;
  color: #f4f7f7;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.learn-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.learn-link::after {
  content: " ->";
}

.red-link {
  color: var(--red);
}

.why-band {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 6vw, 72px) clamp(24px, 4.5vw, 72px);
  color: var(--white);
  background: #030404;
}

.why-page-hero {
  padding: 160px clamp(24px, 6vw, 72px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72)),
    url("template.PNG") center / cover no-repeat;
}

.why-page-hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(60px, 8vw, 104px);
  line-height: 0.95;
}

.why-page-hero p:last-child {
  max-width: 620px;
  margin: 0;
  color: #f2f5f5;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.why-page-band {
  border-top: 1px solid var(--line);
}

.about-certifications {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 6vw, 68px) clamp(24px, 6vw, 72px);
  color: #070808;
  background: #f3f3f1;
}

.about-certifications h2 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.about-certifications p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.why-copy p {
  color: #f0f4f4;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid article {
  min-height: 150px;
  padding: 8px 28px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.why-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.why-grid h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: #f4f7f7;
  font-size: 13px;
  line-height: 1.45;
}

.feature-section {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 7vw, 78px) clamp(24px, 4.5vw, 72px);
}

.difference-section {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 7vw, 78px) clamp(24px, 4.5vw, 72px);
  color: #070808;
  background: #f3f3f1;
}

.difference-copy h2 {
  max-width: 280px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(46px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.difference-copy p {
  max-width: 300px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 56px;
  padding: clamp(52px, 6vw, 72px) clamp(24px, 4.5vw, 72px);
  color: var(--white);
  background: #080909;
}

.research-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(44px, 6vw, 72px) clamp(24px, 4.5vw, 72px);
  color: #070808;
  background: #f8f4ec;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.research-section h2 {
  max-width: 520px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.research-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.research-copy p {
  margin: 0;
  color: #202526;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

.research-copy a {
  display: inline-block;
  width: fit-content;
  margin-top: 8px;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.research-copy a::after {
  content: " ->";
}

.decision-copy h2 {
  max-width: 430px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.decision-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.decision-grid article {
  padding: 24px 28px;
  background: #111313;
}

.decision-grid h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.decision-grid p {
  margin: 0;
  color: #dfe4e5;
  font-size: 16px;
  line-height: 1.6;
}

.cert-proof {
  display: grid;
  grid-template-columns: 112px minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px clamp(24px, 4.5vw, 72px);
  color: #070808;
  background: #f3f3f1;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.working-dog-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(44px, 6vw, 72px) clamp(24px, 4.5vw, 72px);
  color: #f8fafa;
  background: #080909;
  border-top: 1px solid var(--line);
}

.working-dog-section h2 {
  max-width: 520px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.working-dog-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.working-dog-copy p {
  margin: 0;
  color: #e3e9ea;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

.working-dog-copy a {
  display: inline-block;
  width: fit-content;
  margin-top: 8px;
  color: var(--teal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.working-dog-copy a::after {
  content: " ->";
}

.cert-proof img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.cert-proof h2 {
  margin: 0 0 6px;
  font-family: "Bebas Neue", Impact, sans-serif;
  color: var(--red);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.cert-proof p {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.cert-proof .button.outline {
  color: #070808;
  border-color: rgba(0, 0, 0, 0.38);
}

.process-section {
  padding: clamp(54px, 6vw, 70px) clamp(24px, 4.5vw, 72px);
  color: var(--white);
  background: #030404;
  text-align: center;
}

.process-section h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 26px;
}

.process-grid article {
  position: relative;
  padding: 0 16px;
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: -25px;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.process-grid article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 19px;
  right: -30px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  transform: rotate(45deg);
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 22px;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: #dfe4e5;
  font-size: 15px;
  line-height: 1.55;
}

.receive-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 54px;
  align-items: center;
  padding: clamp(44px, 5vw, 62px) clamp(24px, 4.5vw, 72px);
  color: #070808;
  background: #f3f3f1;
}

.receive-section h2 {
  max-width: 460px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.receive-section .red-rule {
  margin: 18px 0 0;
}

.receive-section ul {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.16);
}

.receive-section li {
  position: relative;
  padding: 18px 24px 18px 44px;
  background: #fbf8f2;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.receive-section li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 54px;
  padding: clamp(50px, 6vw, 74px) clamp(24px, 4.5vw, 72px);
  color: #070808;
  background: #f8f4ec;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.faq-section h2 {
  max-width: 440px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.faq-list summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: #111313;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 0;
  color: var(--red);
  font-size: 28px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
  color: #202526;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.support-section {
  padding: 42px clamp(24px, 7vw, 170px);
  color: #070808;
  background: #f3f3f1;
  text-align: center;
}

.support-section h2 {
  margin: 0 0 22px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  text-transform: uppercase;
}

.support-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 84px;
  text-align: left;
}

.support-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44%;
  width: 1px;
  background: rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.support-grid > div:last-child {
  grid-column: auto;
}

.support-grid h3 {
  margin: 0 0 8px;
  color: #0b4358;
  font-size: 23px;
}

.support-grid p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.bedbug-cta {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 136px;
  padding: 28px clamp(24px, 4.5vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: #030404;
}

.bedbug-cta-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  opacity: 0.5;
}

.bedbug-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.cta-icon img {
  width: 32px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(3432%) hue-rotate(345deg) brightness(95%) contrast(93%);
}

.bedbug-cta h2 {
  margin: 0 0 6px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
}

.bedbug-cta p {
  margin: 0;
  color: #f2f5f5;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 330px;
}

.feature-copy p {
  max-width: 340px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
}

.feature-copy .button {
  margin-top: 16px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: #070808;
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.comparison-table > div {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.comparison-table .table-head {
  min-height: 42px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table .dark {
  grid-column: 1;
  grid-row: 1;
  background: #050606;
}

.comparison-table .teal {
  grid-column: 2;
  grid-row: 1;
  background: #0085CA;
}

.comparison-table .table-vs {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  z-index: 2;
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  color: #070808;
  background: #d8d8d6;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 216, 214, 0.55);
  font-size: 10px;
  font-weight: 900;
}

.table-left {
  grid-column: 1;
}

.table-right {
  grid-column: 2;
}

.table-row-1 {
  grid-row: 2;
}

.table-row-2 {
  grid-row: 3;
}

.table-row-3 {
  grid-row: 4;
}

.table-row-4 {
  grid-row: 5;
}

.table-mark {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: center;
  z-index: 2;
  width: 76px;
  min-height: 76px;
  padding: 0;
  background: transparent;
}

.table-mark img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.table-mark-1 {
  grid-row: 2;
}

.table-mark-2 {
  grid-row: 3;
}

.table-mark-3 {
  grid-row: 4;
}

.table-mark-4 {
  grid-row: 5;
}

.cta-section {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  color: var(--white);
  background: #030404;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #030404 0%, rgba(3, 4, 4, 0.94) 42%, rgba(3, 4, 4, 0.2) 100%);
}

.cta-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 56%;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  padding: 52px 0 46px;
  margin-left: clamp(24px, 4.5vw, 72px);
}

.cta-content h2 {
  margin-bottom: 6px;
}

.cta-content p {
  margin: 0 0 26px;
  color: var(--teal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  min-height: 44px;
  padding: 12px clamp(24px, 4vw, 62px);
  color: var(--white);
  background: #050606;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.site-footer span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 24px;
  vertical-align: middle;
  background: var(--red);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .why-band,
  .feature-section,
  .difference-section,
  .research-section,
  .decision-section,
  .working-dog-section,
  .cert-proof,
  .process-grid,
  .receive-section,
  .faq-section,
  .about-certifications {
    grid-template-columns: 1fr;
  }

  .bedbug-cta {
    grid-template-columns: 76px 1fr;
  }

  .bedbug-cta .hero-actions {
    grid-column: 1 / -1;
  }

  .cert-proof .button {
    width: fit-content;
  }

  .about-certifications {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .bedbug-hero-copy {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding-top: 150px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .call-button,
  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid::before {
    top: 50%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
  }

  .support-grid > div:last-child {
    grid-column: 1;
    padding-top: 22px;
  }

  .bedbug-hero-media,
  .bedbug-cta-media {
    width: 100%;
    opacity: 0.42;
  }

  .process-grid article {
    border-right: 0;
    border-bottom: 0;
  }

  .bedbug-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cert-proof {
    text-align: center;
  }

  .cert-proof img,
  .cert-proof .button {
    justify-self: center;
  }

  .cta-icon {
    margin: 0 auto;
  }

  .comparison-table {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .comparison-table > div {
    min-height: 50px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .table-mark img {
    width: 64px;
    height: 64px;
  }

  .cta-media {
    width: 100%;
    opacity: 0.44;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
