:root {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --text: #171717;
  --muted: #5f666a;
  --green: #1c6f50;
  --green-2: #0f5a3d;
  --gold: #b88b2f;
  --border: #d8d8d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 52px 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(32px, 4.3vw, 50px);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  margin-bottom: 26px;
  text-transform: uppercase;
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: 0.03em;
}

.section-kicker {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(8px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.logo img {
  width: 210px;
  height: auto;
}

.menu {
  display: flex;
  gap: 18px;
}

.menu a {
  color: #2f2f2f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
}

.hero {
  background:
    linear-gradient(to right, rgba(243, 243, 243, 0.97), rgba(243, 243, 243, 0.72)),
    url("./assets/photo.svg") center / cover no-repeat;
  padding-top: 64px;
  padding-bottom: 68px;
}

.hero-content {
  max-width: 100%;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 22px;
}

.hero-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.hero-note {
  max-width: 530px;
  background: #1f2743;
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  padding: 12px 24px;
}

.btn:hover {
  background: var(--green-2);
}

.btn-gold {
  background: var(--gold);
}

.btn-small {
  font-size: 12px;
  padding: 8px 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 18px 14px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f4ef;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.feature-text {
  font-weight: 600;
  font-size: 14px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.check-card {
  background: var(--surface);
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.check-card-image {
  height: 132px;
  background-size: cover;
  background-position: center;
}

.image-1 { background-image: url("./assets/unsplash-1.jpg"); }
.image-2 { background-image: url("./assets/unsplash-2.jpg"); }
.image-3 { background-image: url("./assets/unsplash-3.jpg"); }
.image-4 { background-image: url("./assets/unsplash-4.jpg"); }
.image-5 { background-image: url("./assets/unsplash-5.jpg"); }
.image-6 { background-image: url("./assets/unsplash-6.jpg"); }

.check-card-body {
  padding: 12px;
  background: var(--green);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.check-card-body h3 {
  font-size: 14px;
  margin: 0;
}

.check-card-body .btn {
  background: #fff;
  color: var(--green);
  margin-top: auto;
}

.check-card-body .btn:hover {
  background: #f0f4f2;
}

.section-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #cfe3da;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fcfa 0%, #eef6f2 100%);
  color: #1f3b30;
  font-size: 15px;
}

.section-note::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.section-note-label {
  font-weight: 700;
}

.section-muted {
  background: #efefef;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tariff-card {
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 18px 18px 20px;
  border-radius: 9px;
  position: relative;
  overflow: hidden;
}

.tariff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #9f7723, #d9b466, #a47821);
}

.tariff-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  background: #e9f4ef;
}

.tariff-card h3 {
  margin-bottom: 8px;
}

.tariff-card .price {
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}

.tariff-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.tariff-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tariff-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #3d4449;
}

.tariff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 15%, #1c6f50 16%);
}

.tariff-card.featured {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.chip {
  background: var(--green);
  color: #fff;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
}

.section-steps {
  background:
    linear-gradient(to right, rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.85)),
    url("./assets/photo.svg") center / cover no-repeat;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid #dde7e2;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.step-text {
  color: #233129;
}

.site-footer {
  background: #101010;
  color: #d8d8d8;
  padding: 26px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: 7px;
    padding: 9px 12px;
    font-weight: 700;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 14px 4%;
    display: none;
    flex-direction: column;
  }

  .menu.open {
    display: flex;
  }

  .feature-grid,
  .check-grid,
  .tariff-grid,
  .chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 40px 0;
  }

  .logo img {
    width: 174px;
  }

  .feature-grid,
  .check-grid,
  .tariff-grid,
  .chips {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
