* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #fffdf8;
  color: #20322c;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #ded8cd;
}
.navlinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.mark {
  font-size: 26px;
  color: #315b49;
}
.hero {
  padding: 64px 0;
  background: #fbf8f1;
}
.grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 0 0 22px;
}
h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.12;
}
h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.lead {
  font-size: 19px;
  color: #56635d;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  color: #315b49;
}
.image {
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
}
.image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.section {
  padding: 70px 0;
}
.section.compact,
.seo-detail {
  padding: 44px 0;
}
.soft {
  background: #fbf8f1;
}
.cards,
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid #ded8cd;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 20px;
}
.box,
.topic-card {
  border: 1px solid #ded8cd;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.btn {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: #244538;
  color: #fff;
  font-weight: 750;
}
.btn.whatsapp,
.whatsapp-static {
  background: #25d366;
  color: #10261a;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.muted {
  color: #66716c;
}
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #66716c;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.pill-list li {
  border: 1px solid #ded8cd;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
}
.whatsapp-static {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(16, 38, 26, .22);
}
.footer {
  background: #1f302a;
  color: #fff;
  padding: 44px 0;
  margin-top: 60px;
}
.footer a {
  color: #d9e0dc;
}
@media (max-width: 800px) {
  .grid,
  .two,
  .cards,
  .links-grid {
    grid-template-columns: 1fr;
  }
  .navlinks {
    display: none;
  }
  .hero {
    padding: 46px 0;
  }
  .section {
    padding: 52px 0;
  }
  .whatsapp-static {
    right: 14px;
    bottom: 14px;
  }
}
