:root {
  --primary: #1f8f4c;
  --primary-dark: #166739;
  --accent: #f2b84b;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f7faf9;
  --surface: #ffffff;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  margin-bottom: 1rem;
}

.hero__text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 660px;
}

.hero__actions,
.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 25px rgba(31, 143, 76, 0.18);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero__highlights li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(31, 143, 76, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
}

.hero__card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.phone {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0.5rem 0 0.5rem;
}

.section {
  padding: 4.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section--light {
  background: white;
  border-radius: 24px;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.section__header {
  margin-bottom: 2rem;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.card,
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem;
}

.card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(31, 143, 76, 0.12), transparent 70%);
  border-radius: 50%;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: rotate(-6deg);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge--gold {
  background: linear-gradient(135deg, #f9d98f 0%, #f2b84b 45%, #ea8f3b 100%);
}

.icon-badge--green {
  background: linear-gradient(135deg, #68df90 0%, #1f8f4c 60%, #166739 100%);
}

.icon-badge--blue {
  background: linear-gradient(135deg, #7bd4ff 0%, #2f7bff 55%, #2554c7 100%);
}

.icon-badge--purple {
  background: linear-gradient(135deg, #b79aff 0%, #7b5cff 55%, #5636c2 100%);
}

.card h3,
.step h3,
.services__list h3 {
  margin-bottom: 0.5rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.services__list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
}

.services__list ul,
.faq-list {
  padding-left: 1rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  background: linear-gradient(135deg, #0f2c1f, #163d28);
  color: white;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.disclaimer {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero,
  .feature-grid,
  .steps,
  .services {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .feature-grid,
  .steps,
  .services {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__card {
    order: -1;
  }

  .hero__highlights {
    flex-direction: column;
  }
}
