:root {
  --green: #1f7a3f;
  --dark-green: #0f3d24;
  --light-green: #e8f5ec;
  --white: #ffffff;
  --gray: #5f6f65;
  --shadow: 0 20px 60px rgba(15, 61, 36, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(15, 61, 36, 0.78), rgba(15, 61, 36, 0.78)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero {
  padding: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 26px;
  font-weight: 700;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
}

.badge span {
  width: 11px;
  height: 11px;
  background: #8ee59f;
  border-radius: 50%;
  box-shadow: 0 0 18px #8ee59f;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

h1 strong {
  color: #9cffae;
  display: block;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.service {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark-green);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--light-green);
  border-radius: 50%;
  top: -80px;
  right: -70px;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.logo-mark {
  width: 74px;
  height: 74px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(31, 122, 63, 0.32);
}

.card h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 26px;
}

.progress-wrap {
  margin-bottom: 28px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark-green);
}

.progress-bar {
  height: 12px;
  background: var(--light-green);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #62bf76);
  border-radius: 999px;
  animation: load 1.6s ease-out forwards;
}

@keyframes load {
  from {
    width: 0;
  }

  to {
    width: 75%;
  }
}

.contact-box {
  background: var(--light-green);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 24px;
}

.contact-box h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.contact-item {
  color: var(--dark-green);
  margin: 8px 0;
  font-weight: 700;
  word-break: break-word;
}

.notify-form {
  display: flex;
  gap: 10px;
}

.notify-form input {
  flex: 1;
  border: 2px solid #d8eadf;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
}

.notify-form input:focus {
  border-color: var(--green);
}

.notify-form button {
  border: none;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  padding: 14px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.notify-form button:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
  display: none;
}

footer {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

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

  .hero {
    padding: 0;
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .services {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  body {
    padding: 16px;
  }

  .card {
    padding: 28px 22px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
  }
}
