:root {
  --accent: #0f6b58;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  line-height: 1.6;
  margin: 0;
  background: var(--bg);
  color: #0f172a;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
header {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
}
.logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #0fb07b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
h1 {
  margin: 0;
  font-size: 24px;
}
p.lead {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
  margin-top: 18px;
}
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.9)
  );
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}
.hero .media {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.badge {
  background: var(--card);
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  flex: 1;
  min-width: 120px;
}
.badge i {
  font-size: 18px;
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.services li {
  margin: 10px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.services li i {
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.btn {
  background: var(--accent);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}
.btn-outline {
  border: 1px solid rgba(15, 107, 88, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: var(--accent);
  text-decoration: none;
  flex: 1;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}

footer {
  margin-top: 34px;
  padding: 22px 0;
  color: var(--muted);
}

/* responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 20px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 10px;
  }
  h1 {
    font-size: 18px;
  }
  .logo {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .hero-card {
    padding: 15px;
  }
  .services li {
    font-size: 15px;
  }
  .badge {
    flex: 1 1 100%;
  }
  .cta {
    flex-direction: column;
  }
  .btn,
  .btn-outline {
    width: 100%;
  }
}
