/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ─── Page ─── */
body {
  background: #f0f1f4;
  color: #111;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* ─── Landing shell ─── */
.landing {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 52px 56px 80px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}

/* ─── Meta ─── */
.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}
.meta__logo {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0035F2;
}
.meta__dot { color: #ddd; }

/* ─── Hero ─── */
.hero-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 36px;
}

/* ─── H1 ─── */
h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #0a0a0a;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

/* ─── Lead ─── */
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  border-left: 3px solid #0035F2;
  padding-left: 18px;
  margin-bottom: 36px;
}

/* ─── Paragraphs ─── */
p { margin-bottom: 20px; color: #1a1a1a; }

/* ─── Section headings ─── */
h2 {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-top: 44px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0035F2;
  display: inline-block;
}
h2 + p { margin-top: 4px; }

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-top: 28px;
  margin-bottom: 12px;
}

/* ─── Blockquotes ─── */
blockquote {
  border-left: 3px solid #0035F2;
  padding: 14px 0 14px 20px;
  margin: 24px 0;
  font-style: italic;
  color: #444;
  font-size: 16px;
  line-height: 1.65;
}

/* ─── HR ─── */
hr {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 36px 0;
}

/* ─── Lists ─── */
ul, ol {
  margin: 16px 0 20px 24px;
  color: #1a1a1a;
}
li { margin-bottom: 8px; }

/* ─── Highlight box ─── */
.highlight-box {
  background: #f8f9ff;
  border: 1px solid #e4e8fa;
  border-radius: 14px;
  padding: 28px 30px;
  margin: 32px 0;
}
.highlight-box h3 {
  margin-top: 0;
  color: #0035F2;
  font-size: 16px;
}

/* ─── Roles grid ─── */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.role-card {
  background: #f8f9ff;
  border: 1px solid #e4e8fa;
  border-radius: 12px;
  padding: 20px;
}
.role-card__icon { font-size: 28px; margin-bottom: 8px; }
.role-card__title { font-weight: 700; font-size: 15px; margin-bottom: 6px; color: #111; }
.role-card__desc { font-size: 14px; color: #555; line-height: 1.5; }

/* ─── Steps ─── */
.steps {
  counter-reset: step;
  margin: 24px 0;
}
.step {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 24px;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 32px;
  background: #0035F2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.step__title { font-weight: 700; margin-bottom: 4px; }
.step__desc { font-size: 15px; color: #555; }

/* ─── CTA / Offer block ─── */
.offer-block {
  background: #0d0d1a;
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px 0;
  color: #fff;
}
.offer-block h2 {
  color: #fff;
  border-bottom-color: #25D366;
  margin-top: 0;
}
.offer-block p { color: rgba(255,255,255,0.8); }
.offer-price {
  font-size: 32px;
  font-weight: 700;
  color: #25D366;
  margin: 16px 0 4px;
}
.offer-price-old {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 20px;
}
.offer-bonus {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.offer-bonus strong { color: #25D366; }

/* ─── Form ─── */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.lead-form input {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form input:focus { border-color: #25D366; }
.lead-form button {
  padding: 16px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, transform 0.12s;
}
.lead-form button:hover { background: #1da851; transform: translateY(-1px); }

/* ─── CTA inline ─── */
.cta {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #eef4ff;
  border: 1px solid rgba(0,53,242,0.13);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 36px 0;
}
.cta__icon { flex-shrink: 0; width: 40px; height: 40px; }
.cta__body { flex: 1; }
.cta__title { font-size: 15px; font-weight: 700; color: #0a0a0a; margin-bottom: 4px; }
.cta__sub { font-size: 13px; color: #666; line-height: 1.45; }
.cta__btn {
  flex-shrink: 0;
  background: #0035F2; color: #fff;
  text-decoration: none; padding: 11px 22px;
  border-radius: 9px;
  font-size: 14px; font-weight: 600;
  white-space: nowrap; display: inline-block;
  transition: background .18s, transform .12s;
}
.cta__btn:hover { background: #0029c9; transform: translateY(-1px); }

/* ─── WA Button ─── */
.wa-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: #25D366;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.18s, transform 0.12s;
  font-family: inherit;
}
.wa-btn:hover { background: #1da851; transform: translateY(-1px); }

/* ─── Footer ─── */
.footer-note {
  font-size: 12px; color: #aaa; line-height: 1.5;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid #ebebeb;
}

/* ─── Mobile ─── */
@media (max-width: 680px) {
  .landing { padding: 32px 20px 60px; border-radius: 0; }
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  .roles-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px; }
  .cta__btn { width: 100%; text-align: center; padding: 12px; }
  .offer-block { padding: 28px 20px; }
  .offer-price { font-size: 26px; }
}
