/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 18px 26px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}
.hero-badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: #ffffff;
  border: 1px solid rgba(119, 178, 84, 0.22);
  color: #2e5b1f;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* ===== FILTER BAR ===== */
.filters {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  color: #222;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.filter:hover {
  transform: translateY(-1px);
  border-color: rgba(119, 178, 84, 0.35);
  background: rgba(119, 178, 84, 0.08);
}
.filter.active {
  background: #77b254;
  color: #fff;
  border-color: #77b254;
}

/* ===== GRID ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px 70px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ===== CARD ===== */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
}

.shot {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e9eceb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

.shot span {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 16px 16px 18px;
  text-align: left;
}
.card-body h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
  color: #111;
}
.desc {
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 6px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}
.tag {
  background: #ecf9f0;
  border: 1px solid rgba(119, 178, 84, 0.22);
  color: #2e5b1f;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

/* ===== CTA ===== */
.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 70px;
}
.cta-box {
  background: #ffffff;
  border: 1px solid rgba(119, 178, 84, 0.22);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-box h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}
.cta-box p {
  color: #555;
  line-height: 1.5;
  max-width: 650px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: #77b254;
  color: #fff;
  font-weight: 900;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(119, 178, 84, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(119, 178, 84, 0.34);
}

/* ===== FOOTER ===== */
footer {
  background: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 26px 18px;
  font-size: 0.9rem;
}
footer strong {
  color: #77b254;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .brand img {
    width: 150px;
  }
}
