body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f7f9f5;
  color: #13201a;
}

.page {
  min-height: 100vh;
  padding: 56px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 8px 12px;
  background: #ffffff;
  color: #25563e;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #dbe8df;
}

.badge img {
  width: 22px;
  height: 22px;
}

.hero h1 {
  margin: 22px 0 16px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 820px;
}

.lede {
  margin: 0;
  max-width: 670px;
  font-size: 19px;
  line-height: 1.7;
  color: #405048;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.primary-action {
  background: #184c34;
  color: #fff;
  box-shadow: 0 16px 26px rgba(24, 76, 52, 0.18);
}

.secondary-action {
  background: #ffffff;
  color: #184c34;
  border: 1px solid #c9d8ce;
}

.limit-note {
  max-width: 660px;
  margin: 18px 0 0;
  color: #66746d;
  font-size: 14px;
  line-height: 1.6;
}

.product-visual {
  background: #ffffff;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(28, 43, 35, 0.12);
  padding: 22px;
}

.visual-header,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.visual-header {
  color: #6a7770;
  font-size: 14px;
}

.visual-header strong {
  color: #184c34;
}

.search-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: #f2f6f4;
  border: 1px solid #dce6e1;
  color: #1b2f26;
  font-weight: 800;
}

.metric-row {
  margin: 18px 0;
}

.metric-row span {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #fbfaf4;
  color: #5e6a63;
  font-size: 13px;
}

.metric-row strong {
  color: #14251d;
  font-size: 15px;
}

.rule-list {
  display: grid;
  gap: 10px;
}

.rule-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e1e8e4;
  color: #30443a;
}

.rule-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.green {
  background: #2f7d4c;
}

.blue {
  background: #2f5f9f;
}

.amber {
  background: #b7791f;
}

.section-grid,
.pricing {
  width: 100%;
  max-width: 1180px;
  margin: 56px auto 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  color: #2f5f9f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2,
h3 {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: #13201a;
  font-size: 30px;
  line-height: 1.2;
}

.point-grid,
.pricing-grid {
  display: grid;
  gap: 12px;
}

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

.point,
.plan {
  background: #ffffff;
  border: 1px solid #dbe5df;
  border-radius: 8px;
}

.point {
  padding: 18px;
  color: #30443a;
  line-height: 1.55;
}

.pricing-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.plan h3,
.plan p {
  margin: 0;
}

.plan p,
.plan span {
  color: #5c6b63;
  line-height: 1.55;
}

.plan strong {
  color: #184c34;
  font-size: 34px;
}

@media (max-width: 860px) {
  .page {
    padding: 32px 18px;
  }

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

  .hero {
    gap: 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .product-visual {
    padding: 18px;
  }

  .pricing-heading {
    display: block;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 34px;
  }

  .actions a,
  .metric-row span {
    width: 100%;
  }

  .metric-row {
    display: grid;
  }
}
