body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: #0f172a;
  background-color: #f5f5f7;
}

/* Контейнер */
.expert-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Заголовки */
.expert-title-main {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: #020617;
  margin-bottom: 16px;
}

.expert-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 640px;
}

/* Премиум-кнопка */
.expert-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #c9a15b;
  color: #0f172a;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.expert-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  background: #d6b26f;
}

/* Доп.кнопка */
.expert-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.16);
  background: #ffffff;
  color: #0f172a;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.expert-btn-ghost:hover {
  background: #f9fafb;
  border-color: rgba(15,23,42,0.3);
}

/* Герой-секция */
.expert-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .expert-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Маленький бейдж */
.expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201,161,91,0.12);
  color: #78350f;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Блок преимуществ */
.expert-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 960px) {
  .expert-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .expert-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.expert-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 14px 35px rgba(15,23,42,0.06);
  border: 1px solid rgba(148,163,184,0.22);
}

.expert-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.expert-card-text {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}

/* Маленькие подписи */
.expert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 13px;
  color: #6b7280;
}

/* Блок цен */
.expert-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .expert-pricing {
    grid-template-columns: minmax(0, 1fr);
  }
}

.expert-price-card {
  background:#020617;
  color:#f9fafb;
  border-radius: 22px;
  padding: 26px 24px 28px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.42);
}

.expert-price-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.expert-price-value {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.expert-price-note {
  font-size: 13px;
  color: #e5e7eb;
}

/* Заголовки секций */
.expert-section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #020617;
}

.expert-section-sub {
  font-size: 15px;
  color: #6b7280;
  max-width: 520px;
}

/* Список услуг */
.expert-services-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .expert-services-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

.expert-service-item {
  background:#ffffff;
  border-radius:18px;
  padding:16px 18px 18px;
  border:1px solid rgba(148,163,184,0.25);
}

.expert-service-name {
  font-size:15px;
  font-weight:600;
  margin-bottom:4px;
}

.expert-service-desc {
  font-size:13px;
  color:#6b7280;
}

/* Контакты */
.expert-contacts {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:20px;
  font-size:14px;
}

.expert-contact-item span {
  display:block;
  font-size:12px;
  color:#9ca3af;
  margin-bottom:2px;
}