:root {
  --bg-main: #f7fbf8;
  --bg-soft: #eaf4ec;
  --surface: #ffffff;
  --text: #1f2b24;
  --muted: #5b695f;
  --line: #d7e5da;
  --green-900: #173623;
  --green-700: #1f4b2f;
  --green-600: #2d6a3b;
  --green-500: #3d7c4b;
  --radius: 14px;
  --shadow-sm: 0 8px 24px rgba(23, 54, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(23, 54, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(61, 124, 75, 0.12), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(31, 75, 47, 0.08), transparent 30%),
    var(--bg-main);
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--green-700);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

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

.section-header {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(23, 54, 35, 0.1);
  background: rgba(247, 251, 248, 0.95);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  flex-shrink: 0;
}

.logo {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-700);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.hero {
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff0e3;
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.92rem;
}

.subtitle {
  margin-bottom: 14px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--green-700);
  font-weight: 600;
}

.intro {
  max-width: 64ch;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: #fff;
}

.btn-whatsapp {
  margin-top: 8px;
  background: #208a46;
  color: #fff;
}

.hero-card,
.service-card,
.price-card,
.pricing-note-box,
.about-card,
.contact-form,
.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-card {
  padding: 20px;
}

.hero-card-title {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
}

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

.service-card {
  padding: 18px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.price-card {
  padding: 20px;
}

.price-label {
  margin-bottom: 6px;
  color: var(--muted);
}

.price-value {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--green-700);
  font-weight: 800;
}

.price-meta {
  margin-bottom: 0;
}

.pricing-note-box {
  padding: 16px 18px;
}

.pricing-note-box p {
  margin: 0;
}

.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.about-grid > div:first-child p {
  max-width: 62ch;
  color: var(--muted);
}

.about-card {
  padding: 20px;
}

.about-card h3 {
  margin-bottom: 10px;
}

.about-card ul {
  margin: 0;
  padding-left: 18px;
}

.about-card li + li {
  margin-top: 6px;
}

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

.work-card {
  margin: 0;
  overflow: hidden;
}

.work-card figcaption {
  padding: 10px 12px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-info p {
  color: var(--muted);
}

.contact-form {
  padding: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #c7d9ca;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #9bc6a5;
  outline-offset: 1px;
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 80px;
    width: min(260px, 92vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open {
    display: flex;
  }

  .pricing-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .section {
    padding: 58px 0;
  }

  .logo {
    width: 170px;
  }

  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
}
