body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f7f7fb;
  color: #111;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  padding: 100px 20px 105px;
  text-align: center;
  color: #111;
  border-bottom-left-radius: 50% 10%;
  border-bottom-right-radius: 50% 10%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.11);
}

.hero::before {
  content: "🐾  🐾     🐾   🐾      🐾";
  position: absolute;
  left: -20px;
  top: 58px;
  width: 120%;
  font-size: 2.3rem;
  opacity: 0.22;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero::after {
  content: "🐾     🐾   🐾      🐾";
  position: absolute;
  right: -40px;
  bottom: 38px;
  width: 80%;
  font-size: 2rem;
  opacity: 0.2;
  transform: rotate(10deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Patrick Hand', cursive;
  font-size: 5.1rem;
  margin: 0 0 12px;
  color: #203015;
}

.tagline {
  font-size: 1.35rem;
  margin-bottom: 26px;
}

.btn-primary {
  background: #203015;
  color: white;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(0,0,0,0.18);
}

/* SECTIONS */

.section {
  padding: 28px 20px;
  max-width: 1180px;
  margin: auto;
  box-sizing: border-box;
}

.section h2 {
  font-family: 'Patrick Hand', cursive;
  font-size: 3rem;
  color: #203015;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.section h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: #ffb347;
  border-radius: 999px;
  margin: 14px auto 0;
}

/* ABOUT */

.about-background {
  max-width: 1120px;
  min-height: 430px;
  margin: 30px auto 10px;
  padding: 28px 42px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      rgba(255,255,255,0.48),
      rgba(255,255,255,0.48)
    ),
    url("backgrounds.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.about-layout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.about-content {
  max-width: 520px;
}

.about-content h2 {
  text-align: left;
  font-size: 3.9rem;
  line-height: 1;
  margin: 0 0 20px;
}

.about-content h2::after {
  margin-left: 0;
}

.about-content p {
  font-size: 1.08rem;
  line-height: 1.58;
  color: #111;
  max-width: 580px;
}

.about-dog-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.about-dog-image img {
  max-width: 680px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translate(-70px, 48px);
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

/* CARDS */

.card {
  background: white;
  color: #222;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.075);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-top: 0;
}

.card p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.105);
}

.card ul {
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* WHY CHOOSE */

.why-section {
  text-align: center;
}

.why-section .grid {
  gap: 24px;
}

.why-section .card {
  background: #fffdf7;
  border: 1px solid rgba(255,179,71,0.45);
  padding: 34px 28px;
}

.why-section .card h3 {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.95rem;
  color: #203015;
}

.why-section .card p {
  font-size: 0.98rem;
}

/* HOW IT WORKS */

.section.alt {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.step-card {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffb347;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.05rem;
}

.step-card h3 {
  margin: 0 0 5px;
  font-family: 'Patrick Hand', cursive;
  font-size: 1.8rem;
  color: #203015;
}

.step-card p {
  margin: 0;
  font-size: 0.96rem;
}

/* SERVICE AREA */

.service-area {
  max-width: 760px;
  padding-top: 10px;
  padding-bottom: 28px;
}

.service-card {
  background: #fffdf7;
  border: 1px solid rgba(255,179,71,0.45);
  border-radius: 24px;
  padding: 42px 36px;
  text-align: center;
  box-shadow: 0 13px 32px rgba(0,0,0,0.075);
}

.service-card h2 {
  margin-top: 0;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.58;
  max-width: 620px;
  margin: 9px auto;
}

/* PRICING */

#pricing {
  max-width: 1180px;
}

.pricing {
  display: flex;
  flex-direction: column;
}

.pricing h3 {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.95rem;
  color: #203015;
}

.pricing-note {
  min-height: 62px;
}

.featured {
  border: 2px solid #ffb347;
}

.pricing-extra {
  margin-top: 24px;
  padding: 38px 32px;
  background: #fffdf7;
  border-radius: 26px;
  border: 1px solid rgba(255,179,71,0.45);
  box-shadow: 0 13px 32px rgba(0,0,0,0.075);
  text-align: center;
}

.pricing-extra h2 {
  margin-top: 0;
}

.pricing-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.pricing-type {
  background: white;
  border: 1px solid rgba(32,48,21,0.12);
  text-align: center;
}

.pricing-type h3 {
  font-family: 'Patrick Hand', cursive;
  font-size: 2rem;
  color: #203015;
  margin-bottom: 10px;
}

.price-big {
  font-size: 2.8rem;
  font-weight: 800;
  color: #203015;
  margin-top: 14px;
  line-height: 1;
}

.price-sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: #777;
  margin: 5px 0 16px;
}

.pricing-type ul {
  text-align: left;
  display: inline-block;
  margin-top: 8px;
}

.pricing-footer {
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.55;
}

/* BUTTONS */

.btn-primary:hover,
.whatsapp-button:hover {
  opacity: 0.9;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 9px 22px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
}

/* CTA */

.cta {
  background: #203015;
  color: white;
  text-align: center;
  padding: 62px 20px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "🐾   🐾      🐾";
  position: absolute;
  left: 30px;
  bottom: 20px;
  opacity: 0.2;
  font-size: 1.8rem;
  transform: rotate(-12deg);
}

.cta h2 {
  font-family: 'Patrick Hand', cursive;
  font-size: 3rem;
  margin-bottom: 12px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 18px;
  font-size: 0.85rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero {
    padding: 82px 20px 78px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero::before,
  .hero::after {
    font-size: 1.45rem;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .section {
    padding: 38px 16px;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .about-background {
    min-height: auto;
    padding: 38px 22px;
    margin-top: 30px;
    background-image: linear-gradient(
        rgba(255,255,255,0.78),
        rgba(255,255,255,0.78)
      ),
      url("backgrounds.png");
  }

  .about-layout {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 2.8rem;
    text-align: center;
  }

  .about-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-content p {
    font-size: 1.02rem;
    text-align: center;
  }

  .about-dog-image {
    justify-content: center;
  }

  .about-dog-image img {
    max-width: 280px;
    transform: none;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
  }

  .pricing-extra {
    padding: 32px 20px;
    margin-top: 24px;
  }

  .pricing-extra-grid {
    grid-template-columns: 1fr;
  }

  .price-big {
    font-size: 2.6rem;
  }
}
