:root {
  --background: #fbfaf5;
  --text: #071f4f;
  --body: #1d2c3f;
  --muted: #586674;
  --green: #5fb83f;
  --green-dark: #2f8f32;
  --yellow: #f4c95d;
  --hero: #ffffff;
  --hero-deep: #eef8e9;
  --white: #ffffff;
  --border: rgba(7, 31, 79, 0.12);
  --shadow: 0 24px 70px rgba(7, 31, 79, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 58px;
  padding: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #071326;
  font-size: 0.86rem;
  font-weight: 900;
}

.header-nav a {
  padding: 6px 0;
  border-radius: 999px;
}

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

.header-nav .nav-cta {
  margin-left: 6px;
  padding: 9px 17px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 14px rgba(95, 184, 63, 0.28);
}

.header-nav .nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--text);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu[open] summary {
  background: var(--text);
  color: var(--white);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(7, 31, 79, 0.12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 31, 79, 0.16);
}

.mobile-nav a {
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.mobile-nav a:hover {
  background: rgba(95, 184, 63, 0.1);
}

.mobile-nav .nav-cta {
  margin-top: 6px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.hero {
  position: relative;
  margin-top: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 38%,
      rgba(255, 255, 255, 0.34) 66%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    url("assets/hero-background.jpg") center 36% / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  right: -4vw;
  bottom: 0;
  width: 44vw;
  min-width: 520px;
  height: 48%;
  border-radius: 999px 0 0 0;
  background: transparent;
  content: "";
  display: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: var(--green);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  width: min(1120px, calc(100% - 32px));
  min-height: min(620px, calc(100vh - 116px));
  margin: 0 auto;
  padding: clamp(50px, 6vw, 72px) 0 clamp(34px, 5vw, 52px);
}

.hero-content {
  max-width: 610px;
}

.hero-kicker {
  display: inline-flex;
  transform: rotate(-3deg);
  margin: 0 0 22px 8px;
  padding: 7px 13px;
  border-radius: 3px;
  background: var(--text);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 10.5ch;
  color: var(--text);
  font-size: clamp(3.2rem, 5.7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--green);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid #09235b;
  border-radius: 9px;
  font-weight: 800;
  box-shadow: 0 5px 0 rgba(7, 31, 79, 0.9);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(7, 31, 79, 0.9);
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--text);
}

.button-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}

.button-svg-icon {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.calendar-icon {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.calendar-icon::before {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
}

.calendar-icon::after {
  position: absolute;
  top: -4px;
  left: 5px;
  width: 10px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.phone-icon {
  position: relative;
  width: 17px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.phone-icon::before {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.phone-icon::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
  color: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-features span {
  position: relative;
  padding-left: 20px;
}

.hero-features span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "✓";
  font-size: 0.62rem;
  font-weight: 900;
}

.hero-mascot {
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 500px;
}

.hero-mascot-mobile {
  display: none;
}

.hero-mascot img {
  display: block;
  width: min(100%, 500px);
  height: auto;
  filter: drop-shadow(0 26px 24px rgba(7, 31, 79, 0.16));
}

.hero-mascot-mobile img {
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 18px rgba(31, 42, 34, 0.12));
}

.how-it-works {
  padding: 58px 0 70px;
  background: var(--background);
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.how-it-works h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 218px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(7, 31, 79, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 31, 79, 0.09);
  text-align: center;
}

.step-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.step-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--text);
}

.schedule-svg-icon::before {
  display: block;
  width: 78px;
  height: 78px;
  background: currentColor;
  content: "";
  mask: url("assets/calendar.svg") center / contain no-repeat;
  -webkit-mask: url("assets/calendar.svg") center / contain no-repeat;
}

.quote-svg-icon::before {
  display: block;
  width: 78px;
  height: 78px;
  background: currentColor;
  content: "";
  mask: url("assets/quote.svg") center / contain no-repeat;
  -webkit-mask: url("assets/quote.svg") center / contain no-repeat;
}

.quote-icon {
  border: 5px solid currentColor;
  border-radius: 8px;
}

.quote-icon::before {
  position: absolute;
  top: -12px;
  left: 22px;
  width: 34px;
  height: 16px;
  border-radius: 6px 6px 3px 3px;
  background: currentColor;
  content: "";
}

.quote-icon span,
.quote-icon::after {
  position: absolute;
  left: 18px;
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.quote-icon span {
  top: 24px;
}

.quote-icon::after {
  top: 42px;
}

.schedule-icon {
  border: 5px solid currentColor;
  border-radius: 9px;
}

.schedule-icon::before {
  position: absolute;
  top: 18px;
  right: -5px;
  left: -5px;
  height: 5px;
  background: currentColor;
  content: "";
}

.schedule-icon span {
  width: 38px;
  height: 30px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 12px 10px no-repeat,
    linear-gradient(currentColor 0 0) 26px 0 / 12px 10px no-repeat,
    linear-gradient(currentColor 0 0) 0 20px / 12px 10px no-repeat,
    linear-gradient(currentColor 0 0) 26px 20px / 12px 10px no-repeat;
}

.yard-icon::before {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 48px;
  height: 38px;
  border: 5px solid currentColor;
  border-top: 0;
  content: "";
}

.yard-icon::after {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 48px;
  height: 48px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.yard-icon span {
  position: absolute;
  right: 6px;
  bottom: 14px;
  width: 12px;
  height: 38px;
  border-radius: 999px;
  background: var(--green);
}

.yard-icon span::before {
  position: absolute;
  top: -18px;
  left: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.step-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
}

.step-card p {
  margin: 10px auto 0;
  max-width: 240px;
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.38;
}

.mobile-step-copy {
  display: none;
}

.step-arrow {
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 900;
}

.pricing {
  padding: 8px 0 76px;
  background: var(--background);
}

.pricing-inner {
  text-align: center;
}

.pricing h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 79, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 31, 79, 0.09);
  text-align: left;
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 1;
  padding: 6px 18px;
  border-radius: 0 0 7px 7px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card-header {
  padding: 28px 24px 18px;
  background: var(--text);
  color: var(--white);
  text-align: center;
}

.price-card-header h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.price-card-header p {
  margin: 4px 0 0;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.price-card-body {
  display: grid;
  justify-items: center;
  padding: 26px 34px 30px;
}

.price {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.price span {
  margin-right: 4px;
  font-size: 0.42em;
  vertical-align: top;
}

.price small {
  margin-left: 4px;
  color: var(--green);
  font-size: 0.22em;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--body);
  font-size: 0.95rem;
  font-weight: 650;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  color: var(--text);
}

.price-calendar-svg-icon::before {
  display: block;
  width: 70px;
  height: 70px;
  background: currentColor;
  content: "";
  mask: url("assets/calendar.svg") center / contain no-repeat;
  -webkit-mask: url("assets/calendar.svg") center / contain no-repeat;
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 22px auto 0;
  color: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-note span {
  color: var(--green);
  font-size: 0.82rem;
}

.pricing-note strong {
  color: var(--text);
  font-weight: 900;
}

.why-choose {
  padding: 6px 0 78px;
  background: var(--background);
}

.why-choose h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 190px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(7, 31, 79, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(7, 31, 79, 0.08);
  text-align: center;
}

.benefit-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: var(--text);
}

.benefit-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
}

.benefit-card p {
  margin: 9px auto 0;
  max-width: 160px;
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.pets-svg-icon::before {
  display: block;
  width: 58px;
  height: 58px;
  background: var(--green);
  content: "";
  mask: url("assets/pets.svg") center / contain no-repeat;
  -webkit-mask: url("assets/pets.svg") center / contain no-repeat;
  mask: url("assets/pets.svg") center / contain no-repeat;
}

.shield-paw-icon {
  border-radius: 44% 44% 52% 52%;
  background: var(--green);
  clip-path: polygon(50% 0, 88% 16%, 82% 70%, 50% 100%, 18% 70%, 12% 16%);
}

.shield-paw-icon span,
.heart-paw-icon span {
  position: absolute;
  left: 23px;
  bottom: 16px;
  width: 13px;
  height: 11px;
  border-radius: 50% 50% 45% 45%;
  background: var(--white);
}

.shield-paw-icon span::before,
.heart-paw-icon span::before {
  position: absolute;
  top: -12px;
  left: -10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    10px -5px 0 var(--white),
    20px 0 0 var(--white);
  content: "";
}

.spray-icon::before {
  position: absolute;
  top: 12px;
  left: 16px;
  width: 28px;
  height: 34px;
  border-radius: 4px 4px 9px 9px;
  background: var(--text);
  content: "";
}

.spray-icon::after {
  position: absolute;
  top: 3px;
  left: 21px;
  width: 28px;
  height: 14px;
  border-radius: 4px;
  background: var(--text);
  content: "";
}

.spray-icon span {
  position: absolute;
  top: 4px;
  left: 2px;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: var(--text);
  box-shadow:
    2px 8px 0 var(--text),
    4px 16px 0 var(--text);
}

.spray-svg-icon::before {
  display: block;
  width: 58px;
  height: 58px;
  background: var(--text);
  content: "";
  mask: url("assets/spray.svg") center / contain no-repeat;
  -webkit-mask: url("assets/spray.svg") center / contain no-repeat;
}

.clock-icon {
  border: 5px solid var(--green);
  border-radius: 50%;
}

.clock-icon::before,
.clock-icon::after {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 4px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform-origin: top center;
}

.clock-icon::before {
  height: 18px;
}

.clock-icon::after {
  height: 15px;
  transform: rotate(55deg);
}

.heart-paw-icon::before,
.heart-paw-icon::after {
  position: absolute;
  top: 9px;
  width: 34px;
  height: 48px;
  border-radius: 34px 34px 0 0;
  background: var(--text);
  content: "";
}

.heart-paw-icon::before {
  left: 27px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart-paw-icon::after {
  left: -3px;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.heart-paw-icon span {
  z-index: 1;
}

.dog-svg-icon::before {
  display: block;
  width: 58px;
  height: 58px;
  background: var(--text);
  content: "";
  mask: url("assets/dog.svg") center / contain no-repeat;
  -webkit-mask: url("assets/dog.svg") center / contain no-repeat;
}

.pin-icon {
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
}

.pin-icon span {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
}

.location-svg-icon::before {
  display: block;
  width: 58px;
  height: 58px;
  background: var(--green);
  content: "";
  mask: url("assets/location.svg") center / contain no-repeat;
  -webkit-mask: url("assets/location.svg") center / contain no-repeat;
}

.final-cta {
  padding: 0 0 80px;
  background: var(--background);
}

.final-cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 35%, rgba(255, 255, 255, 0.08), transparent 7rem),
    var(--text);
  box-shadow: 0 18px 44px rgba(7, 31, 79, 0.18);
}

.final-cta-panel::before,
.final-cta-panel::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.06);
  content: "🐾";
  font-size: 4.8rem;
  line-height: 1;
}

.final-cta-panel::before {
  left: 42px;
  bottom: 24px;
  transform: rotate(-12deg);
}

.final-cta-panel::after {
  top: 36px;
  right: 58px;
  transform: rotate(14deg);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  padding: 34px 24px;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.final-cta p {
  margin: 8px 0 0;
  color: var(--green);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button-outline:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(7, 31, 79, 0.1);
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.footer-logo img {
  display: block;
  width: 92px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-links a:hover {
  color: var(--green);
}

.instagram-link {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.instagram-link img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-note,
.footer-copy {
  margin: 0;
  color: var(--body);
  font-weight: 700;
  line-height: 1.35;
}

.footer-note {
  max-width: 270px;
  text-align: right;
  font-size: 0.9rem;
}

.footer-copy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.quote-page {
  min-height: calc(100vh - 58px);
  padding: clamp(42px, 7vw, 78px) 0 80px;
  background:
    radial-gradient(circle at 88% 26%, rgba(95, 184, 63, 0.18), transparent 24rem),
    linear-gradient(90deg, var(--hero) 0%, var(--hero) 58%, var(--hero-deep) 100%);
}

.quote-page-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.quote-intro h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.quote-intro p:last-child {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--body);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 650;
  line-height: 1.5;
}

.quote-card {
  border: 1px solid rgba(7, 31, 79, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 31, 79, 0.12);
  overflow: hidden;
}

.calculator-placeholder {
  display: grid;
  min-height: 440px;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.calculator-placeholder h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 900;
}

.calculator-placeholder p {
  max-width: 300px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 34px;
    text-align: center;
  }

  .hero-content {
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .hero h1,
  .hero-subtitle,
  .hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mascot {
    min-height: 0;
  }

  .hero-mascot img {
    width: min(72vw, 340px);
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
    justify-self: center;
    line-height: 1;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

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

  .final-cta-panel {
    padding-top: 28px;
  }

  .final-cta-content {
    padding: 0 24px 32px;
  }

  .quote-page-inner {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    text-align: center;
  }

  .quote-intro h1,
  .quote-intro p:last-child {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 24px, 1120px);
    gap: 16px;
    padding: 8px 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    margin-top: 0;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.9) 45%,
        rgba(255, 255, 255, 0.35) 72%,
        rgba(255, 255, 255, 0.12) 100%
      ),
      url("assets/hero-background.jpg") center 36% / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    display: block;
    padding: 34px 0 16px;
  }

  .hero-kicker {
    display: none;
  }

  .hero-content {
    position: relative;
    display: block;
    min-height: 390px;
    text-align: left;
  }

  .hero h1 {
    max-width: 10.6ch;
    margin: 0;
    font-size: clamp(1.8rem, 8.4vw, 2.25rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    margin-right: 0;
    margin-left: 0;
    margin-top: 7px;
    max-width: 12.5rem;
    font-size: 0.95rem;
    line-height: 1.12;
  }

  .hero-copy {
    margin-right: 0;
    margin-left: 0;
    max-width: 13.8rem;
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.34;
    font-weight: 650;
  }

  .hero-actions {
    width: min(56%, 270px);
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .button {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    margin-top: 12px;
    font-size: 0.76rem;
    line-height: 1.16;
  }

  .hero-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 8px 0 24px;
    border-right: 1px solid rgba(7, 31, 79, 0.14);
    text-align: center;
  }

  .hero-features span:nth-child(2n) {
    border-right: 1px solid rgba(7, 31, 79, 0.14);
  }

  .hero-features span:last-child {
    border-right: 0;
  }

  .hero-features span::before {
    top: 50%;
    left: 4px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
  }

  .hero-mascot {
    display: none;
  }

  .hero-mascot-mobile {
    display: block;
    position: absolute;
    top: 36px;
    right: -12px;
    width: 48%;
    margin: 0;
    transform: none;
    z-index: 0;
  }

  .hero-mascot-mobile img {
    width: min(100%, 230px);
    margin: 0;
  }

  .how-it-works {
    padding: 34px 0 48px;
  }

  .how-it-works h2 {
    margin-bottom: 14px;
    font-size: 1.65rem;
    line-height: 1;
  }

  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 7px;
  }

  .step-card {
    display: block;
    min-height: 0;
    padding: 18px 9px 13px;
    border-radius: 10px;
    text-align: center;
  }

  .step-number {
    top: 7px;
    left: 7px;
    width: 22px;
    height: 22px;
    font-size: 0.78rem;
  }

  .step-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    border-width: 3px;
  }

  .schedule-svg-icon::before {
    width: 42px;
    height: 42px;
  }

  .quote-svg-icon::before {
    width: 42px;
    height: 42px;
  }

  .quote-icon::before {
    top: -8px;
    left: 12px;
    width: 18px;
    height: 9px;
  }

  .quote-icon span,
  .quote-icon::after {
    left: 10px;
    width: 20px;
    height: 3px;
  }

  .quote-icon span {
    top: 15px;
  }

  .quote-icon::after {
    top: 25px;
  }

  .schedule-icon::before {
    top: 10px;
    right: -3px;
    left: -3px;
    height: 3px;
  }

  .schedule-icon span {
    width: 24px;
    height: 19px;
    background:
      linear-gradient(currentColor 0 0) 0 0 / 8px 6px no-repeat,
      linear-gradient(currentColor 0 0) 16px 0 / 8px 6px no-repeat,
      linear-gradient(currentColor 0 0) 0 13px / 8px 6px no-repeat,
      linear-gradient(currentColor 0 0) 16px 13px / 8px 6px no-repeat;
  }

  .yard-icon::before {
    bottom: 9px;
    left: 8px;
    width: 26px;
    height: 20px;
    border-width: 3px;
  }

  .yard-icon::after {
    top: 10px;
    left: 8px;
    width: 26px;
    height: 26px;
    border-top-width: 3px;
    border-left-width: 3px;
  }

  .yard-icon span {
    right: 3px;
    bottom: 8px;
    width: 7px;
    height: 22px;
  }

  .yard-icon span::before {
    top: -10px;
    left: -6px;
    width: 18px;
    height: 18px;
  }

  .step-card h3 {
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .step-card p {
    max-width: none;
    margin: 5px 0 0;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .step-card p:not(.mobile-step-copy) {
    display: none;
  }

  .mobile-step-copy {
    display: block;
  }

  .step-arrow {
    align-self: center;
    justify-self: center;
    font-size: 1.45rem;
    line-height: 1;
    transform: none;
  }

  .pricing {
    padding: 12px 0 50px;
  }

  .pricing h2 {
    max-width: 11ch;
    margin: 0 auto 18px;
    font-size: 1.9rem;
    line-height: 1.05;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 390px;
  }

  .price-card-body {
    padding: 24px 24px 26px;
  }

  .price-card {
    border-radius: 14px;
  }

  .popular-badge {
    top: 0;
    padding: 5px 14px;
    font-size: 0.68rem;
    line-height: 1;
    border-radius: 0 0 7px 7px;
    letter-spacing: 0.03em;
  }

  .price-card-header {
    padding: 34px 20px 16px;
  }

  .price-card-header h3 {
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .price-card-header p {
    margin-top: 4px;
    font-size: 1rem;
  }

  .price {
    margin-bottom: 18px;
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .price-card ul {
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.28;
  }

  .price-card li {
    padding-left: 24px;
  }

  .price-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .price-calendar-svg-icon::before {
    width: 64px;
    height: 64px;
  }

  .pricing-note {
    display: block;
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .why-choose {
    padding-bottom: 54px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .benefit-card {
    min-height: 0;
    padding: 18px 12px 16px;
    border-radius: 10px;
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 220px);
    justify-self: center;
  }

  .why-choose h2 {
    margin-bottom: 14px;
    font-size: 1.5rem;
  }

  .benefit-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
  }

  .pets-svg-icon::before {
    width: 46px;
    height: 46px;
  }

  .benefit-card h3 {
    font-size: 0.9rem;
    line-height: 1.15;
  }

  .benefit-card p {
    max-width: none;
    margin-top: 7px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .shield-paw-icon span,
  .heart-paw-icon span {
    left: 15px;
    bottom: 10px;
    width: 9px;
    height: 8px;
  }

  .shield-paw-icon span::before,
  .heart-paw-icon span::before {
    top: -8px;
    left: -6px;
    width: 5px;
    height: 5px;
    box-shadow:
      7px -3px 0 var(--white),
      14px 0 0 var(--white);
  }

  .spray-icon::before {
    top: 9px;
    left: 11px;
    width: 19px;
    height: 23px;
  }

  .spray-icon::after {
    top: 3px;
    left: 14px;
    width: 19px;
    height: 9px;
  }

  .spray-icon span {
    top: 4px;
    left: 0;
    width: 11px;
    height: 3px;
    box-shadow:
      1px 6px 0 var(--text),
      2px 12px 0 var(--text);
  }

  .spray-svg-icon::before {
    width: 46px;
    height: 46px;
  }

  .clock-icon {
    border-width: 3px;
  }

  .clock-icon::before,
  .clock-icon::after {
    top: 21px;
    left: 21px;
    width: 3px;
  }

  .clock-icon::before {
    height: 14px;
  }

  .clock-icon::after {
    height: 12px;
  }

  .heart-paw-icon::before,
  .heart-paw-icon::after {
    top: 6px;
    width: 22px;
    height: 31px;
  }

  .heart-paw-icon::before {
    left: 18px;
  }

  .heart-paw-icon::after {
    left: -2px;
  }

  .dog-svg-icon::before {
    width: 46px;
    height: 46px;
  }

  .pin-icon span {
    top: 11px;
    left: 11px;
    width: 17px;
    height: 17px;
  }

  .location-svg-icon::before {
    width: 46px;
    height: 46px;
  }

  .final-cta {
    padding-bottom: 54px;
  }

  .final-cta-panel {
    border-radius: 12px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .site-footer {
    padding: 30px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .footer-note {
    max-width: 300px;
    text-align: center;
    font-size: 0.86rem;
  }

  .quote-page {
    padding: 34px 0 54px;
  }

  .quote-intro h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .quote-card {
    border-radius: 12px;
  }

  .calculator-placeholder {
    min-height: 340px;
    padding: 24px;
  }
}
