* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #17211b;
  background: #ffffff;
  line-height: 1.6;
}

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

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

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-button,
.primary-button,
.secondary-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
}

.nav-button,
.primary-button {
  background: #17211b;
  color: #ffffff;
}

.secondary-button {
  color: #17211b;
  border: 1px solid #cbd8cc;
}

.hero {
  padding: 7rem 0 6rem;
  background:
    radial-gradient(circle at top right, #d9f3dc 0, transparent 36%),
    linear-gradient(135deg, #f6fbf7 0%, #ffffff 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #47734b;
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.22rem;
  margin: 1.3rem 0 1.8rem;
  color: #4b5c50;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-card {
  background: #17211b;
  color: #ffffff;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(23, 33, 27, 0.18);
}

.card-label {
  margin: 0;
  color: #b9d6bd;
  font-weight: 700;
}

.price {
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  margin: 0.3rem 0 1rem;
  letter-spacing: -0.06em;
}

.section {
  padding: 5.5rem 0;
}

.light {
  background: #f6fbf7;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step,
.price-card {
  background: #ffffff;
  border: 1px solid #e3ece4;
  border-radius: 24px;
  padding: 1.5rem;
}

.step span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d9f3dc;
  color: #17211b;
  font-weight: 900;
  margin-bottom: 1rem;
}

.step p,
.price-card p,
.split p,
.cta-box p,
.footer p {
  color: #4b5c50;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.price-card {
  position: relative;
  padding: 2rem;
}

.price-card.featured {
  border: 2px solid #17211b;
  box-shadow: 0 24px 60px rgba(23, 33, 27, 0.12);
}

.popular {
  display: inline-block;
  background: #d9f3dc;
  color: #17211b !important;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin: 0 0 1rem;
  font-size: 0.85rem;
}

.service-price {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: #17211b !important;
  margin: 1rem 0;
  letter-spacing: -0.05em;
}

ul {
  padding-left: 1.1rem;
  margin: 1.2rem 0 0;
}

li {
  margin: 0.45rem 0;
}

.note {
  margin: 1.4rem 0 0;
  color: #4b5c50;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.split p {
  font-size: 1.15rem;
  margin-top: 0;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  background: #17211b;
  color: #ffffff;
  padding: 3rem;
  border-radius: 32px;
  text-align: center;
}

.cta-box p {
  max-width: 640px;
  margin: 1rem auto 1.6rem;
  color: #c7d6ca;
}

.cta-box .eyebrow {
  color: #b9d6bd;
}

.cta-box .primary-button {
  background: #ffffff;
  color: #17211b;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid #e8eee8;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .hero {
    padding: 4.5rem 0;
  }

  .hero-grid,
  .pricing-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    height: 64px;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .nav-button {
    text-align: center;
  }

  .cta-box {
    padding: 2rem;
  }
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.light-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.payment-box {
  max-width: 620px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-box h3 {
  color: #ffffff;
  margin-bottom: 0.7rem;
}


.small-note {
  font-size: 0.86rem;
  opacity: 0.82;
  margin-bottom: 0 !important;
}
