:root {
  --green: #9fc965;
  --green-deep: #527a2e;
  --charcoal: #2f3135;
  --slate: #5b5a60;
  --ink: #17191b;
  --paper: #f7f8f3;
  --white: #ffffff;
  --line: rgba(23, 25, 27, 0.12);
  --shadow: 0 24px 70px rgba(23, 25, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(247, 248, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 188px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.header-cta,
.primary-button,
.secondary-button,
.whatsapp-contact,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta,
.primary-button,
.whatsapp-contact,
.contact-form button {
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid var(--green-deep);
}

.secondary-button {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(23, 25, 27, 0.84), rgba(47, 49, 53, 0.72)),
    radial-gradient(circle at 18% 24%, rgba(159, 201, 101, 0.4), transparent 36%),
    var(--charcoal);
}

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

.hero-media {
  min-height: 360px;
  align-self: stretch;
  background: var(--slate);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 100px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.intro-section,
.coverage {
  background: var(--white);
}

.intro-grid,
.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.intro-grid p,
.coverage-content p,
.section-heading p,
.contact-copy p {
  color: #555b52;
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

.services {
  background: #eef2e8;
}

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

.service-card,
.review-card {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(47, 49, 53, 0.06);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--green-deep);
  font-weight: 800;
}

.service-card p,
.review-card p {
  color: #596051;
  line-height: 1.65;
}

.safety-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 4vw, 64px);
  color: var(--white);
  background: var(--charcoal);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.08);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

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

.coverage-list span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f5ee;
  font-weight: 800;
}

.reviews {
  background: #eef2e8;
}

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

.review-card {
  min-height: 230px;
}

.stars {
  margin-bottom: 18px;
  color: #e2a92f;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-card strong {
  color: var(--green-deep);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 92px);
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 64px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 25, 27, 0.92), rgba(82, 122, 46, 0.82)),
    var(--charcoal);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-contact {
  width: fit-content;
  margin-top: 20px;
  background: #25d366;
  border-color: #25d366;
  color: #102015;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 25, 27, 0.18);
  border-radius: 6px;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfcf8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(159, 201, 101, 0.35);
  border-color: var(--green-deep);
}

.contact-form button {
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.form-note {
  margin: 0;
  color: #686d63;
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #1d1f21;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 132px;
  height: 42px;
  object-fit: cover;
  border-radius: 5px;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #102015;
  background: #25d366;
  border: 1px solid rgba(16, 32, 21, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(23, 25, 27, 0.22);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

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

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
  }

  .hero,
  .intro-grid,
  .safety-band,
  .coverage,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 260px;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 154px;
    height: 46px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .site-nav a {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero-content {
    padding: 36px 18px 52px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .service-grid,
  .review-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .review-card {
    min-height: auto;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}
