:root {
  --green-900: #102f1a;
  --green-700: #2d7044;
  --green-500: #3f8d57;
  --green-200: #b7e0b2;
  --line: #d9e8da;
  --ink: #163223;
  --ink-soft: #4f6a5a;
  --bg: #f7fcf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, #ebf7ec 0, transparent 35%),
    radial-gradient(circle at 85% 25%, #eef9f1 0, transparent 40%),
    var(--bg);
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px 12px;
}

.service-layout {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
}

.service-arrow-slot {
  display: flex;
  justify-content: center;
}

.card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 47, 26, 0.12);
}

.hero-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.content {
  padding: clamp(20px, 4vw, 32px);
}

.badge {
  display: inline-flex;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2f6640;
  background: #e8f5ea;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.2;
}

p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #cfe3d1;
  background: #ffffffdd;
  color: #245237;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.service-arrow:hover {
  transform: scale(1.05);
  background: #fff;
}

.service-arrow-icon {
  width: 20px;
  height: 20px;
  display: block;
  transform: translateY(-1.5px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #c7ddcc;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button-primary {
  background: linear-gradient(130deg, var(--green-700), var(--green-500));
  border-color: transparent;
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: #315f42;
}

@media (max-width: 700px) {
  .service-layout {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .service-arrow-slot {
    display: none;
  }

  .hero-image {
    height: 210px;
  }

  .service-mobile-nav {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-mobile-link {
    border: 1px solid #cfe3d1;
    border-radius: 12px;
    background: #ffffffd9;
    color: #245237;
    text-decoration: none;
    padding: 10px 12px;
    display: grid;
    gap: 2px;
  }

  .service-mobile-meta {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #507a5f;
    font-weight: 700;
  }

  .service-mobile-name {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.28;
  }
}
