.page-home {
  padding: 60px 0;
}
.page-home .hero {
  text-align: center;
  margin-bottom: 60px;
}
.page-home .hero h1 {
  color: #333333;
  margin-bottom: 16px;
}
.page-home .hero h1 span {
  color: #F18F34;
}
.page-home .hero .subtitle {
  font-size: 20px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}
.page-home .benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page-home .benefits {
    grid-template-columns: 1fr;
  }
}
.page-home .benefits .benefit-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.page-home .benefits .benefit-card .benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.page-home .benefits .benefit-card h3 {
  color: #333333;
  margin-bottom: 8px;
}
.page-home .benefits .benefit-card p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 0;
}
.page-home .contact-section {
  max-width: 500px;
  margin: 0 auto 60px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 40px;
}
.page-home .contact-section h2 {
  text-align: center;
  margin-bottom: 24px;
}
.page-home .contact-section .form-description {
  text-align: center;
  color: #666666;
  margin-bottom: 24px;
}
.page-home .contact-form .form-group {
  margin-bottom: 16px;
}
.page-home .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333333;
}
.page-home .contact-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  transition: border-color 0.2s ease;
}
.page-home .contact-form .form-group input:focus {
  outline: none;
  border-color: #F18F34;
}
.page-home .contact-form .form-group input::placeholder {
  color: #999999;
}
.page-home .contact-form .btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(to right, #ffef24, #fcc800, #F18F34);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 16px;
}
.page-home .contact-form .btn-submit:hover {
  opacity: 0.9;
}
.page-home .ai-instructions {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 12px;
  color: #999999;
}
.page-home .ai-instructions h4 {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}
.page-home .ai-instructions p {
  margin-bottom: 8px;
  line-height: 1.6;
}
.page-home .ai-instructions code {
  display: block;
  background: #F7F7F7;
  padding: 16px;
  border-radius: 4px;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 12px;
  margin: 16px 0;
  word-break: break-all;
}
.page-home .ai-instructions .endpoint-info {
  margin-top: 16px;
}
.page-home .ai-instructions .endpoint-info strong {
  color: #666666;
}
