:root {
  color-scheme: light;
  --acid: #f7f8fa;
  --olive: #061a33;
  --ink: #0b0b0f;
  --purple: #0057d9;
  --purple-dark: #003f9e;
  --white: #ffffff;
  --muted: rgba(11, 11, 15, 0.68);
  --line: rgba(11, 11, 15, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--acid);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--white);
  background: var(--purple);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 20px 30px;
}

.brand,
h1,
h2,
h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 750;
  letter-spacing: 0;
}

.brand {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  color: rgba(11, 11, 15, 0.86);
  font-size: 1rem;
}

.nav a:hover {
  color: var(--purple);
}

.nav a {
  white-space: nowrap;
}

.header-cta,
.pill-button,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 3px solid currentColor;
  border-radius: 999px;
  color: var(--purple);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta:hover,
.pill-button:hover,
.hero-link:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: 570px;
  display: grid;
  align-items: center;
  padding: 56px 20px 76px;
}

.hero-inner {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(3.8rem, 7.2vw, 7rem);
  line-height: 0.94;
}

.hero-label {
  width: fit-content;
  margin: 0 auto 18px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  position: relative;
  width: min(780px, 100%);
  margin: 28px auto 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero-kicker::after,
.stats-grid strong::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -6px;
  height: 8px;
  content: "";
  border-bottom: 3px solid var(--purple);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 880px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-link {
  margin-top: 34px;
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.stats-band {
  position: relative;
  color: var(--white);
  background: var(--olive);
}

.stats-band::after,
.about-section::after,
.social-section::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 92px;
  content: "";
  background: var(--acid);
  clip-path: polygon(0 0, 50% 78%, 100% 0, 100% 100%, 0 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 148px;
  text-align: center;
}

.stats-grid strong {
  position: relative;
  display: inline-block;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
}

.stats-grid strong::after {
  border-color: var(--white);
  bottom: -8px;
}

.stats-grid p {
  max-width: 320px;
  margin: 28px auto 0;
  color: rgba(255, 253, 244, 0.88);
  font-size: 1rem;
}

.brand-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 86px;
  text-align: center;
}

.brand-section > p,
.section-heading p {
  color: rgba(11, 11, 15, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 28px 58px;
  width: min(960px, 100%);
  margin-right: auto;
  margin-left: auto;
  margin-top: 36px;
}

.brand-logo {
  display: grid;
  place-items: center;
  min-height: 94px;
  padding: 10px 16px;
}

.brand-logo img {
  display: block;
  width: min(100%, 205px);
  height: 58px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0);
  opacity: 0.72;
}

.logo-toyota img {
  width: 148px;
  height: 62px;
}

.logo-terminix img {
  width: 210px;
  height: 58px;
}

.logo-andersen img {
  width: 205px;
  height: 56px;
}

.logo-wizard img {
  width: 152px;
  height: 78px;
  filter: grayscale(1) saturate(0) contrast(1.18);
  mix-blend-mode: multiply;
  opacity: 0.66;
}

.logo-ffl img {
  width: 218px;
  height: 54px;
}

.logo-ndr img {
  width: 230px;
  height: 66px;
  filter: none;
}

.about-section {
  position: relative;
  color: var(--white);
  background: var(--purple);
}

.about-section::before,
.social-section::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 92px;
  content: "";
  background: var(--acid);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 22%, 0 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1fr);
  align-items: center;
  gap: 74px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 172px 0 158px;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.96;
}

.about-copy p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 253, 244, 0.86);
}

.pill-button.light {
  margin-top: 46px;
  color: var(--purple);
  background: var(--white);
  border-color: var(--white);
}

.portrait {
  margin: 0;
}

.portrait img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 50%;
  background: var(--white);
}

.proof-section,
.packages-section,
.resources-section,
.contact-section,
.social-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 102px 0;
}

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

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

.section-heading h2 {
  margin-top: 12px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.proof-grid article,
.package-list article,
.resource-grid article {
  min-height: 320px;
  padding: 30px;
  background: #ffffff;
  border: 2px solid rgba(11, 11, 15, 0.14);
  border-radius: 22px;
}

.proof-grid span,
.package-list span,
.resource-grid span {
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1;
}

.proof-grid p,
.package-list p,
.resource-grid p {
  margin-top: 18px;
  color: var(--muted);
}

.packages-section {
  padding-top: 40px;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.package-list article {
  display: grid;
  align-content: start;
}

.package-list article.featured {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 18px 0 rgba(6, 26, 51, 0.2);
}

.package-list article.featured span,
.package-list article.featured p {
  color: rgba(255, 253, 244, 0.86);
}

.package-list strong {
  display: block;
  margin-top: 30px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.resources-section {
  padding-top: 34px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.contact-section {
  padding-top: 80px;
  text-align: center;
}

.contact-section p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.pill-button.dark {
  margin-top: 36px;
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.social-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 176px 20px 170px;
  color: var(--purple);
  text-align: center;
}

.social-section::after {
  background: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  margin-top: 56px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: clamp(86px, 14vw, 144px);
  aspect-ratio: 1;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 70px 30px 46px;
  color: var(--ink);
  background: var(--white);
}

.site-footer strong {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-footer nav {
  display: grid;
  gap: 6px;
  width: fit-content;
}

.site-footer a {
  color: var(--purple);
  text-decoration: underline;
}

.site-footer p {
  margin-top: 36px;
  color: rgba(11, 11, 15, 0.64);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    min-height: 48px;
    padding: 0 18px;
  }

  .stats-grid,
  .about-inner,
  .proof-grid,
  .package-list,
  .resource-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    padding-bottom: 128px;
  }

  .about-inner {
    gap: 42px;
    padding-top: 150px;
  }

  .portrait {
    order: -1;
  }

  .portrait img {
    width: min(100%, 430px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 18px;
    gap: 18px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .header-cta {
    display: none;
  }

  .nav {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding: 46px 16px 66px;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .stats-grid {
    gap: 44px;
  }

  .brand-section {
    width: min(100% - 32px, var(--max));
    padding-top: 58px;
  }

  .brand-logo {
    min-height: 76px;
  }

  .brand-logo img,
  .logo-toyota img,
  .logo-terminix img,
  .logo-andersen img,
  .logo-ffl img,
  .logo-ndr img {
    width: min(100%, 190px);
    height: 46px;
  }

  .logo-wizard img {
    width: min(100%, 142px);
    height: 72px;
  }

  .logo-ndr img {
    width: min(100%, 210px);
    height: 60px;
  }

  .about-inner,
  .proof-section,
  .packages-section,
  .resources-section,
  .contact-section {
    width: min(100% - 32px, var(--max));
  }

  .proof-grid article,
  .package-list article,
  .resource-grid article {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .social-links {
    gap: 20px;
  }
}
