:root {
  --page-bg: #f5f5f7;
  --surface: #ffffff;
  --text: #616161;
  --text-strong: #4f4f4f;
  --muted: #707070;
  --green: #95c11f;
  --green-hover: #a3d322;
  --line: #e4e4e4;
  --line-strong: #c2c2c2;
  --shadow: 0 10px 16px rgba(163, 163, 163, 0.24);
  --maxw: 1040px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, #ffffff 0%, transparent 30%),
    var(--page-bg);
  color: var(--text);
  font-family: "DIN 2014", "DIN2014", "Segoe UI", sans-serif;
  line-height: 1.45;
}

.page {
  width: min(100% - 2rem, var(--maxw));
  margin: 0 auto;
  padding: var(--space-5) 0 3rem;
}

.hero,
.benefits,
.steps,
.contact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
}

.hero-banner,
.steps-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.hero-offer {
  margin-top: var(--space-3);
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbeb 100%);
  padding: 1.35rem 1.4rem 1.25rem;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(149, 193, 31, 0.14);
  color: #5f7d16;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.72rem;
}

h1,
h2 {
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

h1 {
  margin: var(--space-3) 0 var(--space-3);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.05;
}

h2 {
  margin: 0 0 var(--space-3);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.15;
}

.intro {
  margin: 0 0 1.1rem;
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--muted);
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: var(--space-3);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.product-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(149, 193, 31, 0.4);
  background: #ffffff;
  color: var(--text-strong);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
}

.gift-note {
  margin: 0 auto;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  background: rgba(149, 193, 31, 0.12);
  border: 1px solid rgba(149, 193, 31, 0.3);
  color: #6f9417;
  font-size: 1rem;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  grid-template-columns: minmax(260px, 43%) 1fr;
  gap: 1.3rem 1.8rem;
  align-items: start;
}

.benefit-col {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7eaed;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.benefit-col-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  width: 100%;
  padding: 0.35rem 1rem;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.2;
}

.benefit-grid img {
  width: 100%;
  max-width: 410px;
  justify-self: center;
  margin: 0.85rem auto 0;
}

.benefit-grid ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.benefit-grid li {
  position: relative;
  margin-bottom: 0.65rem;
  padding: 0.7rem 0.9rem 0.7rem 2.35rem;
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1.06rem;
  border: 1px solid #e8edf1;
  border-radius: 10px;
  background: #fdfefe;
}

.benefit-grid li:last-child {
  margin-bottom: 0;
}

.benefit-grid li::before {
  content: "\2713";
  position: absolute;
  left: 0.78rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 9999px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-list {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.step-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fcfcfd;
  padding: 1rem;
}

.step-num {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 9999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.step-item strong {
  display: block;
  color: var(--green);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact h2 {
  margin-bottom: 1.05rem;
}

.lead-form {
  margin-top: 0.75rem;
}

.form-disabled {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
}

.field-with-action {
  gap: 0.42rem;
}

.field-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.lead-form input:not([type="checkbox"]) {
  width: 100%;
  height: 2.65rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--text-strong);
  padding: 0.45rem 0.75rem;
  font: inherit;
}

.lead-form input:not([type="checkbox"])::placeholder {
  color: #919191;
}

.lead-form input:not([type="checkbox"]):focus-visible {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.2);
}

.lead-form input:not([type="checkbox"]):invalid:focus {
  border-color: #d25f5f;
  box-shadow: 0 0 0 3px rgba(210, 95, 95, 0.14);
}

.lead-form[aria-disabled="true"] input,
.lead-form[aria-disabled="true"] button {
  cursor: not-allowed;
}

.lead-form[aria-disabled="true"] input:not([type="checkbox"]),
.lead-form[aria-disabled="true"] .field-action-btn,
.lead-form[aria-disabled="true"] .cta {
  opacity: 0.72;
}

.field-action-btn {
  height: 2.65rem;
  border: 1px solid #aac85f;
  border-radius: 10px;
  background: #f4f9e6;
  color: #45610d;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.field-action-btn:hover,
.field-action-btn:focus-visible {
  background: #e8f2ce;
  border-color: #95c11f;
  transform: translateY(-1px);
}

.field-action-btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.field-status {
  min-height: 1.1rem;
  color: #6f7780;
  font-size: 0.84rem;
  font-weight: 500;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.lead-form label.consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.15rem;
  border: 1px solid #e7ebd8;
  border-radius: 10px;
  background: #fafdf2;
  padding: 0.85rem 0.95rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.lead-form label.consent + label.consent {
  margin-top: 0.7rem;
}

.lead-form label.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  border-radius: 3px;
  border: 1px solid #98b650;
  background: #fff;
  accent-color: var(--green);
  flex-shrink: 0;
}

.consent-copy {
  display: block;
  line-height: 1.42;
}

.consent-copy a {
  color: #d74242;
  font-weight: 600;
  text-decoration: underline;
}

.consent-terms {
  background: #fffaf9;
}

.consent-meta {
  margin: 0.7rem 0 0;
  color: #6f7780;
  font-size: 0.86rem;
  line-height: 1.45;
}

.consent-meta a {
  color: #5f7d16;
  font-weight: 600;
  text-decoration: underline;
}

.lead-form[aria-disabled="true"] .consent-meta {
  opacity: 0.9;
}

.cta {
  align-items: center;
  justify-content: center;
  display: flex;
  width: fit-content;
  min-height: 3rem;
  border: 0;
  border-radius: 9999px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 2rem;
  margin: 1.2rem auto 0;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--green-hover);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 1.25rem, var(--maxw));
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid img {
    max-width: 340px;
  }

  .benefit-grid ul {
    margin-top: 0;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .row-2 {
    grid-template-columns: 1fr;
  }

  .field-action-row {
    grid-template-columns: 1fr;
  }

  .field-action-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 1rem, var(--maxw));
    padding-top: var(--space-3);
  }

  .hero,
  .benefits,
  .steps,
  .contact {
    border-radius: 14px;
    padding: var(--space-3);
  }

  h1 {
    font-size: clamp(1.65rem, 9vw, 2.05rem);
  }

  h2 {
    font-size: clamp(1.38rem, 7.2vw, 1.8rem);
  }

  .intro,
  .benefit-grid li,
  .step-item p {
    font-size: 1rem;
  }

  .benefit-col-title {
    font-size: 0.98rem;
  }

  .offer-kicker {
    font-size: 0.8rem;
  }

  .product-pills span {
    font-size: 0.9rem;
  }

  .step-item strong {
    font-size: 1.15rem;
  }

  .cta {
    width: 100%;
    font-size: 1.1rem;
  }
}
