/* HERO */
.hero {
  background: var(--color-bg-white);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.hero__content { max-width: 580px; }

.hero__sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.7;
}

.hero__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0;
}

.hero__checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--color-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1 5.1-5.1L13 5z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  align-items: center;
}

.hero__hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.hero__hint svg { flex-shrink: 0; }

.hero__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

/* WHY BLOCK */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.why-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--color-teal);
}

.why-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.why-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* REASONS */
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.reason-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}

.reason-card:hover { box-shadow: var(--shadow-card-hover); }

.reason-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.reason-card__header img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.reason-card__header h4 {
  margin: 0;
  font-size: 1rem;
}

.reason-card p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* PRICES */
.prices__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.price-item--free { background: var(--color-bg-section); }
.price-item__info { flex: 1; }
.price-item__info h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.price-item__info p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.price-item__time {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.price-item__cost {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
  padding-top: 2px;
  letter-spacing: -0.02em;
}

.price-item__cost span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.prices__note {
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-align: center;
  letter-spacing: 0.02em;
}

/* STEPS — horizontal roadmap */
.steps {
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
  padding: 0 0.75rem 0 0;
}

.step:last-child { padding-right: 0; }

.step__connector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__arrow {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  position: relative;
}

.step__arrow::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--color-border);
}

.step:last-child .step__arrow { display: none; }

.step__body h4 { margin-bottom: 0.35rem; font-size: 0.95rem; }
.step__body p { font-size: 0.85rem; margin: 0; line-height: 1.65; }

/* ARTICLES */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.article-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-decoration: none;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
  display: block;
}

.article-card:hover {
  box-shadow: var(--shadow-card-hover);
  text-decoration: none;
}

.article-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.65rem;
}

.article-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.5;
}

.article-card p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--color-text-light);
}

/* CTA SECTION */
.cta-section {
  background: var(--color-accent);
}

.cta-section__inner { text-align: center; }

.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); }

.cta-section .btn {
  background: var(--color-teal);
  border-color: var(--color-teal);
}
.cta-section .btn:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
}

.cta-section .btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.cta-section .btn--outline:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 720px) {
  .steps {
    flex-direction: column;
    gap: 0;
  }
  .step {
    display: flex;
    gap: 1rem;
    padding: 0 0 1.5rem 0;
    border-left: 2px solid var(--color-border);
    margin-left: 19px;
  }
  .step:last-child { border-left-color: transparent; }
  .step__connector { flex-direction: column; align-items: flex-start; gap: 0; }
  .step__num {
    width: 40px;
    height: 40px;
    margin-left: -21px;
    margin-bottom: 0;
  }
  .step__arrow { display: none; }
  .step__body { padding-left: 0.5rem; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .price-item { flex-direction: column; gap: 0.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
