:root {
  --green: #2f4f3a;
  --green-2: #4f8f46;
  --green-3: #dfeadd;
  --navy: #123c69;
  --navy-2: #0a294a;
  --white: #ffffff;
  --off-white: #f7faf8;
  --blue-gray: #e8f0f5;
  --charcoal: #1e2522;
  --muted: #5f6e68;
  --shadow: 0 24px 70px rgba(10, 41, 74, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 60, 105, 0.08);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand img {
  width: 212px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--green);
}

.header-cta {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  padding: 0.74rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47, 79, 58, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(79, 143, 70, 0.17), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(18, 60, 105, 0.15), transparent 32%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 85%);
  padding: 84px 0 66px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -220px;
  border-radius: 999px;
  background: rgba(47, 79, 58, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin: 0 0 0.8rem;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 0 6px rgba(79, 143, 70, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-2);
  line-height: 1.06;
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.75rem);
  max-width: 830px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.27rem;
}

p {
  margin: 0;
}

.hero-lede {
  color: var(--muted);
  font-size: 1.22rem;
  max-width: 650px;
  margin-top: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0.88rem 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(47, 79, 58, 0.22);
}

.btn-primary:hover {
  background: #274631;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(18, 60, 105, 0.14);
  box-shadow: 0 12px 28px rgba(10, 41, 74, 0.08);
}

.btn-white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 660px;
  margin-top: 2.2rem;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 60, 105, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid rgba(18, 60, 105, 0.09);
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.form-heading {
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.97), rgba(47, 79, 58, 0.96));
  color: var(--white);
  border-radius: 22px;
  padding: 1.45rem;
  margin-bottom: 1rem;
}

.form-heading .kicker,
.light {
  color: rgba(255, 255, 255, 0.78);
}

.form-heading h2,
.cta-card h2 {
  color: var(--white);
}

.form-heading p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.45rem;
}

.lead-form {
  display: grid;
  gap: 0.88rem;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.88rem;
}

label {
  display: grid;
  gap: 0.36rem;
  color: var(--navy-2);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 60, 105, 0.14);
  border-radius: 13px;
  background: var(--off-white);
  color: var(--charcoal);
  padding: 0.86rem 0.92rem;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 79, 58, 0.6);
  box-shadow: 0 0 0 4px rgba(79, 143, 70, 0.13);
}

textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status {
  display: none;
  border-radius: 12px;
  padding: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #234328;
  background: #e8f4e7;
}

.form-status.is-error {
  color: #743322;
  background: #fff0e9;
}

.logo-strip {
  background: var(--navy);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem 0;
}

.strip-grid div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--white);
  font-size: 0.78rem;
}

.section {
  padding: 94px 0;
}

.section-soft {
  background: var(--off-white);
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading p:not(.kicker),
.split-copy,
.feature-panel p,
.cta-card p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.step-card,
.pest-card {
  background: var(--white);
  border: 1px solid rgba(18, 60, 105, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 18px 40px rgba(10, 41, 74, 0.06);
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.step-card p,
.pest-card p {
  color: var(--muted);
  margin-top: 0.7rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pest-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
}

.feature-section {
  background:
    linear-gradient(135deg, rgba(18, 60, 105, 0.06), rgba(47, 79, 58, 0.07)),
    #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.feature-panel {
  max-width: 690px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-2);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green-3);
  color: var(--green);
}

.visual-card {
  border-radius: 30px;
  background: var(--white);
  padding: 1.2rem;
  border: 1px solid rgba(18, 60, 105, 0.08);
  box-shadow: var(--shadow);
}

.visual-card-top {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
}

.visual-card-top img {
  width: 54px;
}

.visual-card-top strong,
.visual-card-top span {
  display: block;
}

.visual-card-top strong {
  font-size: 1.1rem;
}

.visual-card-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.mock-request {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0.8rem 1rem;
}

.mock-line {
  height: 13px;
  width: 74%;
  border-radius: 999px;
  background: var(--blue-gray);
}

.mock-line.wide {
  width: 100%;
}

.mock-line.short {
  width: 44%;
}

.mock-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.4rem 0.8rem 0.2rem;
  padding: 0.9rem;
  border-radius: 15px;
  background: #eaf4e7;
  color: #234328;
  font-weight: 900;
}

.mock-status span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--green-2);
}

.cta-section {
  padding: 0 0 94px;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 30px;
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: var(--shadow);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 680px;
}

.site-footer {
  background: var(--navy-2);
  color: var(--white);
  padding: 52px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 2rem;
}

.footer-logo {
  width: 220px;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 0.7rem;
}

.site-footer a {
  display: block;
  margin: 0.36rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.3rem;
  font-size: 0.82rem;
}

.footer-bottom p:last-child {
  max-width: 590px;
  text-align: right;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

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

  .cta-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    height: 74px;
  }

  .brand img {
    width: 178px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .trust-row,
  .field-pair,
  .strip-grid,
  .steps-grid,
  .pest-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 0.85rem;
    border-radius: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .cta-section {
    padding-bottom: 68px;
  }
}

/* Center final homeowner CTA */
.cta-section {
  padding: 96px 0;
}

.cta-card {
  max-width: 1120px;
  margin-inline: auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.35rem;
  padding: 64px 48px;
}

.cta-card > div {
  max-width: 760px;
  margin-inline: auto;
}

.cta-card .kicker {
  justify-content: center;
}

.cta-card h2 {
  max-width: 900px;
  margin-inline: auto;
}

.cta-card p {
  max-width: 680px;
  margin-inline: auto;
}

.cta-card .btn {
  margin-top: 0.4rem;
  margin-inline: auto;
}

@media (max-width: 760px) {
  .cta-section {
    padding: 64px 0;
  }

  .cta-card {
    padding: 44px 24px;
  }
}

/* Logo/header cleanup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand img {
  width: 245px;
  height: auto;
  display: block;
}

.brand small,
.brand span,
.brand-tagline {
  color: #5b6b64;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .container,
.header-inner,
.nav-wrap {
  align-items: center;
}

@media (max-width: 720px) {
  .brand {
    gap: 10px;
  }

  .brand img {
    width: 210px;
  }

  .brand small,
  .brand span,
  .brand-tagline {
    display: none;
  }
}

/* Cleaner BPC monogram logo sizing */
.brand img {
  width: 285px !important;
  max-width: 100%;
  height: auto;
}

.footer img,
.footer-logo img {
  width: 225px !important;
  max-width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .brand img {
    width: 235px !important;
  }
}

/* Final BP logo cleanup */
.brand img {
  width: 360px !important;
  height: auto !important;
  display: block;
}

.brand small,
.brand span,
.brand-tagline {
  display: none !important;
}

.site-header,
.header,
.navbar {
  overflow: visible;
}

@media (max-width: 760px) {
  .brand img {
    width: 285px !important;
  }
}
