/* /founder-competitors — Стиль 3: нейтральный профессиональный (по мотивам конкурентов)
   Палитра: фон #ffffff, текст #1a1a1a, accent #2563eb (синий)
   Шрифты: Manrope (sans, заголовки), Inter (sans, body)
   Симметричный grid, профессиональный, плотный
   Без ИИ-штампов (правила 0.7.88, 0.7.91, 0.7.123, 0.7.124)
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}

.section__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.15;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 90px 0 80px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.hero__name {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------------- REVIEWS ---------------- */

.reviews {
  padding: 72px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.reviews__placeholder {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  font-style: italic;
  padding: 28px;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  text-align: center;
}

/* ---------------- PROCESS ---------------- */

.process {
  padding: 72px 0;
  border-bottom: 1px solid #e5e7eb;
}

.process__list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0;
}

.process__step {
  counter-increment: step;
  padding: 28px 28px 28px 76px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  transition: background 0.2s ease;
}

.process__step:hover {
  background: #f8fafc;
}

.process__step:last-child {
  border-bottom: none;
}

.process__step::before {
  content: counter(step);
  position: absolute;
  left: 28px;
  top: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2563eb;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 50%;
}

.process__step h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #1a1a1a;
}

.process__step p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* ---------------- PRODUCTS ---------------- */

.products {
  padding: 72px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.products__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.product h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #1a1a1a;
}

.product p {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

/* ---------------- SPEAKING ---------------- */

.speaking {
  padding: 72px 0;
  border-bottom: 1px solid #e5e7eb;
}

.speaking__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.speaking__item {
  padding: 24px 0;
  border-top: 2px solid #1a1a1a;
}

.speaking__item:nth-last-child(-n+2) {
  border-bottom: 2px solid #1a1a1a;
}

.speaking__item h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #1a1a1a;
}

.speaking__item p {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

/* ---------------- FINAL CTA ---------------- */

.final-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.final-cta__container {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.final-cta__text {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 32px;
  font-weight: 400;
}

/* ---------------- CTA BUTTON ---------------- */

.cta {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}

.cta--primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
}

.cta--primary:hover {
  background: #1d4ed8;
  opacity: 1;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 32px 0;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
}

.site-footer p {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.site-footer a {
  color: #2563eb;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 720px) {
  .container,
  .hero__container {
    padding: 0 20px;
  }

  .hero {
    padding: 56px 0 56px;
  }

  .hero__name {
    font-size: clamp(36px, 10vw, 48px);
  }

  .section__title {
    margin-bottom: 28px;
  }

  .process,
  .products,
  .speaking,
  .reviews,
  .final-cta {
    padding: 48px 0;
  }

  .process__step {
    padding: 24px 24px 24px 64px;
  }

  .process__step::before {
    left: 20px;
    top: 24px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .products__list,
  .speaking__list {
    grid-template-columns: 1fr;
  }

  .speaking__item:nth-last-child(2) {
    border-bottom: 2px solid #1a1a1a;
  }

  .speaking__item:last-child {
    border-bottom: none;
  }
}