/* === AI Agents Page Styles === */

.hero-ai-agents {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #0a0a0f 0%, #111114 100%);
}

.hero-content {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 24px 0 20px;
}

.hero-subtitle {
  font-size: 21px;
  color: var(--text-tertiary);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Проблемы */
.problem-card {
  background: var(--background-panel);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

/* Карточки агентов */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.agent-card {
  background: var(--background-panel);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.2s ease;
}

.agent-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.agent-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.agent-icon {
  font-size: 36px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 106, 210, 0.1);
  border-radius: 12px;
}

.agent-price {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

.agent-desc {
  color: var(--text-tertiary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.agent-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.agent-features li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
}

.agent-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.agent-roi {
  font-size: 13px;
  color: #22c55e;
  font-weight: 500;
}

/* Процесс */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  background: var(--background-panel);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
}

.step-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Калькулятор */
.calculator-wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.calculator-wrapper h2 {
  margin-bottom: 12px;
}

.calc-subtitle {
  color: var(--text-tertiary);
  margin-bottom: 40px;
}

.calculator {
  background: var(--background-panel);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: left;
}

.calc-question {
  margin-bottom: 24px;
}

.calc-question label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.calc-question select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  font-size: 16px;
}

.calc-result {
  margin-top: 32px;
  padding: 24px;
  background: rgba(94, 106, 210, 0.08);
  border-radius: 12px;
  text-align: center;
}

.result-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-standard);
  padding: 20px 0;
}

.faq-question {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
}

.faq-answer {
  margin-top: 10px;
  color: var(--text-tertiary);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA */
.cta-section {
  background: linear-gradient(180deg, #111114 0%, #0a0a0f 100%);
}

.cta-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 40px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  margin-bottom: 16px;
  font-size: 16px;
}

.contact-form textarea {
  height: 110px;
  resize: vertical;
}