.page-index {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  padding-top: 10px;
  overflow-x: hidden;
}

.page-index__main-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.page-index__article-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.page-index__hero-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
  box-shadow: 0 8px 24px rgba(17, 168, 78, 0.15);
}

.page-index__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-index__hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.page-index__article-title {
  font-weight: 700;
  line-height: 1.3;
  color: #F2FFF6;
  margin: 0;
  letter-spacing: -0.5px;
  max-width: 100%;
}

.page-index__article-intro {
  color: #A7D9B8;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-index__hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.page-index__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}

.page-index__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  box-shadow: 0 4px 14px rgba(34, 199, 104, 0.35);
}

.page-index__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.5);
}

.page-index__btn--secondary {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-index__btn--secondary:hover {
  background-color: #0A4B2C;
  border-color: #57E38D;
}

.page-index__btn--outline {
  background-color: transparent;
  color: #F2C14E;
  border: 1px solid #F2C14E;
}

.page-index__btn--outline:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-index__article-content {
  display: block;
}

.page-index__article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 1.2em;
  color: #F2FFF6;
}

.page-index__article-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #57E38D;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #2E7A4E;
  line-height: 1.35;
  position: relative;
}

.page-index__article-subtitle::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #F2C14E;
}

.page-index__article-sub-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F2FFF6;
  margin: 32px 0 14px;
  padding-left: 16px;
  border-left: 4px solid #22C768;
  line-height: 1.4;
}

.page-index__article-list {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}

.page-index__article-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  margin-bottom: 12px;
  background-color: #11271B;
  border: 1px solid #1E3A2A;
  border-radius: 8px;
  line-height: 1.7;
  color: #F2FFF6;
}

.page-index__article-list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 14px;
  color: #57E38D;
  font-weight: bold;
  font-size: 1rem;
}

.page-index__article-list li strong {
  color: #F2C14E;
}

.page-index__article-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 0 0 1.5em;
  padding: 0;
}

.page-index__article-steps li {
  position: relative;
  counter-increment: step-counter;
  padding: 16px 20px 16px 64px;
  margin-bottom: 14px;
  background-color: #11271B;
  border-left: 3px solid #22C768;
  border-radius: 0 8px 8px 0;
  line-height: 1.7;
  color: #F2FFF6;
}

.page-index__article-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.page-index__article-figure {
  margin: 32px 0;
  text-align: center;
  max-width: 100%;
}

.page-index__article-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.page-index__article-figure figcaption {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-top: 12px;
  text-align: center;
  font-style: italic;
}

.page-index__cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 40px 0 20px;
  padding: 32px 20px;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(17, 168, 78, 0.12);
}

@media (max-width: 1024px) {
  .page-index__article-title {
    font-size: 1.9rem;
  }

  .page-index__article-subtitle {
    font-size: 1.55rem;
  }

  .page-index__article-sub-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-index {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-index__main-article {
    padding: 12px 15px 40px;
    margin: 0 auto;
  }

  .page-index__article-hero {
    gap: 18px;
    margin-bottom: 28px;
  }

  .page-index__article-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .page-index__article-intro {
    font-size: 0.98rem;
  }

  .page-index__hero-cta {
    width: 100%;
    flex-direction: column;
  }

  .page-index__btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 20px;
    white-space: normal;
  }

  .page-index__article-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .page-index__article-subtitle {
    font-size: 1.3rem;
    margin: 32px 0 16px;
    padding-bottom: 10px;
  }

  .page-index__article-sub-subtitle {
    font-size: 1.1rem;
    margin: 24px 0 12px;
    padding-left: 12px;
  }

  .page-index__article-list li {
    padding: 12px 14px 12px 38px;
    font-size: 0.98rem;
  }

  .page-index__article-list li::before {
    left: 14px;
    top: 12px;
  }

  .page-index__article-steps li {
    padding: 14px 16px 14px 54px;
    font-size: 0.98rem;
  }

  .page-index__article-steps li::before {
    left: 12px;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .page-index__article-figure {
    margin: 22px 0;
  }

  .page-index__cta-block {
    flex-direction: column;
    padding: 22px 16px;
    margin: 28px 0 12px;
  }

  .page-index__cta-block .page-index__btn {
    width: 100%;
  }

  .page-index img {
    max-width: 100% !important;
    height: auto !important;
  }
}