/* ============================================================
   pricing.css — стили для модуля честного ценообразования
   Проект: МедРуководитель
   ============================================================ */

/* ===== Виджет в шапке ===== */
.clinic-widget {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A202C;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.clinic-widget:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: #C9A84C;
  transform: translateY(-1px);
}
.clinic-widget-pin { font-size: 1rem; }
.clinic-widget-city { color: #A8893A; }
.clinic-widget-edit {
  font-size: 0.75rem;
  color: #718096;
  font-weight: 500;
  border-bottom: 1px dashed #A0AEC0;
}

/* ===== Модальное окно ===== */
.clinic-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  padding: 20px;
  overflow-y: auto;
}
.clinic-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clinic-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  max-height: 90vh;
  overflow-y: auto;
}
.clinic-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #A0AEC0;
  transition: color 0.2s;
  line-height: 1;
}
.clinic-modal-close:hover { color: #0D1117; }
.clinic-modal-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 8px;
}
.clinic-modal h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  color: #0D1117;
  margin-bottom: 6px;
  text-align: center;
}
.clinic-modal-sub {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

/* Поле ввода */
.clinic-modal-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #F7F9FC;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 0 14px;
  transition: all 0.2s;
  margin-bottom: 8px;
}
.clinic-modal-field:focus-within {
  border-color: #C9A84C;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.clinic-modal-field-icon {
  font-size: 1.1rem;
  margin-right: 8px;
  flex-shrink: 0;
}
.clinic-modal-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: #1A202C;
  min-width: 0;
}
.clinic-modal-spinner {
  font-size: 1rem;
  color: #A8893A;
  margin-left: 8px;
  flex-shrink: 0;
}

/* Подсказки */
.clinic-modal-suggestions {
  margin-bottom: 12px;
  max-height: 320px;
  overflow-y: auto;
  border-radius: 12px;
}
.clinic-modal-suggestions:empty { display: none; }

/* ============================================================
   РАЗДЕЛИТЕЛЬ «ИЛИ» МЕЖДУ ПОИСКОМ ОРГАНИЗАЦИИ И АДРЕСА
============================================================ */
.clinic-modal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #A0AEC0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.clinic-modal-divider::before,
.clinic-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E2E8F0, transparent);
}
.clinic-modal-divider span {
    font-weight: 700;
    color: #718096;
}
.clinic-suggestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  margin-bottom: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1A202C;
  text-align: left;
  transition: all 0.2s;
}
.clinic-suggestion:hover {
  background: #FFF8E7;
  border-color: #C9A84C;
  transform: translateX(2px);
}
.clinic-suggestion-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.clinic-suggestion-value {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.clinic-suggestion-meta {
  font-size: 0.75rem;
  color: #718096;
}
.clinic-suggestion-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #A8893A;
  background: rgba(201, 168, 76, 0.12);
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.clinic-modal-empty {
  padding: 16px;
  text-align: center;
  color: #A0AEC0;
  font-size: 0.9rem;
}

/* Блок результата */
.clinic-result {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 24px 22px;
  margin-top: 16px;
}
.clinic-result-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0D1117;
  margin-bottom: 4px;
}
.clinic-result-address {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 16px;
}
.clinic-coef-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(201, 168, 76, 0.2);
  font-size: 0.9rem;
}
.clinic-coef-row:last-of-type { border-bottom: none; }
.clinic-coef-label { color: #4A5568; flex: 1; }
.clinic-coef-value {
  color: #A8893A;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
  margin-left: 12px;
}
.clinic-coef-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid rgba(201, 168, 76, 0.3);
}
.clinic-coef-total-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #0D1117;
}
.clinic-coef-total-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #A8893A;
}
.clinic-prices-list {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.clinic-price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.clinic-price-item:last-child { border-bottom: none; }
.clinic-price-name { color: #4A5568; }
.clinic-price-value {
  font-weight: 700;
  color: #0D1117;
  font-family: 'Manrope', sans-serif;
}
.clinic-result-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.clinic-result-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.clinic-btn-primary {
  background: linear-gradient(135deg, #C9A84C, #A8893A);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.clinic-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}
.clinic-btn-secondary {
  background: #EDF2F7;
  color: #2D3748;
}
.clinic-btn-secondary:hover { background: #E2E8F0; }

/* Адаптив */
@media (max-width: 600px) {
  .clinic-modal { padding: 28px 18px; }
  .clinic-modal h3 { font-size: 1.15rem; }
  .clinic-widget { padding: 6px 10px; font-size: 0.8rem; }
  .clinic-widget-edit { display: none; }
  .clinic-result-actions { flex-direction: column; }
}

/* ============================================================
   Стили для секций legal.html и manage.html
   ============================================================ */

/* ===== Общие заголовки секций ===== */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  color: #0D1117;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #4A5568;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #F0D080);
  margin: 16px auto 20px;
  border-radius: 2px;
}

/* ===== СЕКЦИЯ УСЛУГ ===== */
.services {
  padding: 80px 0;
  background: #FFFFFF;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}
.service-card.popular {
  border: 2px solid #C9A84C;
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.12);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A84C, #A8893A);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  color: #0D1117;
  margin-bottom: 10px;
}
.service-desc {
  color: #4A5568;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.service-meta {
  font-size: 0.8rem;
  color: #A8893A;
  font-weight: 600;
  background: rgba(201, 168, 76, 0.08);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  align-self: flex-start;
  margin-bottom: 16px;
}
.service-price {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0D1117;
  margin-bottom: 20px;
  line-height: 1;
}
.service-price .currency {
  font-size: 1rem;
  color: #718096;
  font-weight: 500;
}
.service-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #EDF2F7;
  color: #2D3748;
  border: none;
}
.service-btn:hover {
  background: #E2E8F0;
  transform: translateY(-2px);
}
.service-card.popular .service-btn {
  background: linear-gradient(135deg, #C9A84C, #A8893A);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
}
.service-card.popular .service-btn:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}
.services-note {
  background: #FFF8E7;
  border-left: 4px solid #C9A84C;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 40px auto 0;
  max-width: 900px;
  font-size: 0.95rem;
  color: #744210;
  line-height: 1.7;
}
.services-note strong { color: #A8893A; }
.services-note a {
  color: #A8893A;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== СЕКЦИЯ КЕЙСОВ ===== */
.cases {
  padding: 80px 0;
  background: #F7F9FC;
}
.case {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  border-left: 4px solid #C9A84C;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.case:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C9A84C;
  font-weight: 600;
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.case h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  color: #0D1117;
  margin-bottom: 10px;
}
.case p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.case-result {
  padding: 14px 18px;
  background: #F7F9FC;
  border-radius: 10px;
  border-left: 3px solid #C9A84C;
  font-size: 0.9rem;
  color: #4A5568;
}
.case-result strong { color: #0D1117; }

/* ===== СЕКЦИЯ FAQ ===== */
.faq {
  padding: 80px 0;
  background: #FFFFFF;
}
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 8px 0;
  font-family: 'Manrope', sans-serif;
  color: #0D1117;
  transition: color 0.3s ease;
  gap: 12px;
}
.faq-question:hover { color: #C9A84C; }
.faq-question .icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  color: #C9A84C;
  flex-shrink: 0;
  line-height: 1;
}
.faq-question.active .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 800px;
  padding-top: 12px;
}

/* ===== СЕКЦИЯ ФОРМЫ ===== */
.contact {
  padding: 80px 0;
  background: linear-gradient(165deg, #FFFFFF 0%, #F7F9FC 100%);
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 12px 48px rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
}
.contact-form { margin-top: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2D3748;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  background: #FFFFFF;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #C9A84C;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-hint {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.radio-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #4A5568;
}
.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #C9A84C;
  cursor: pointer;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  padding: 16px 20px;
  background: #F7F9FC;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.checkbox-group input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: #C9A84C;
  cursor: pointer;
}
.checkbox-group label {
  font-size: 0.85rem;
  color: #4A5568;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox-group label a {
  color: #C9A84C;
  text-decoration: underline;
  font-weight: 600;
}
.btn-block { display: block; width: 100%; }
.contact-note {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  margin-top: 16px;
}
.contact-note a {
  color: #C9A84C;
  font-weight: 600;
}

/* ===== SUCCESS BLOCK ===== */
.success-block {
  text-align: center;
  padding: 40px 20px;
}
.success-block .success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: success-pop 0.5s ease;
}
@keyframes success-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success-block h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  color: #0D1117;
  margin-bottom: 12px;
}
.success-block p {
  color: #4A5568;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.success-block .success-note {
  background: #FFF8E7;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: #744210;
}
.success-block .success-note a {
  color: #A8893A;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== Блок про командировочные расходы ===== */
.travel-note {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 4px solid #C9A84C;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 40px auto 0;
  max-width: 900px;
}
.travel-note h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  color: #A8893A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.travel-note p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.travel-note p:last-child { margin-bottom: 0; }
.travel-note strong { color: #A8893A; }

/* ===== Адаптив ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .section-title { font-size: 1.7rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-inner { padding: 32px 24px; }
  .radio-group { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .services { padding: 50px 0; }
  .cases { padding: 50px 0; }
  .faq { padding: 50px 0; }
  .contact { padding: 50px 0; }
  .case { padding: 20px 22px; }
  .section-title { font-size: 1.4rem; }
}

/* ============================================================
   Калькулятор командировок
   ============================================================ */

.travel-calc {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), rgba(201, 168, 76, 0.01));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 36px 32px;
  margin: 40px auto 0;
  max-width: 900px;
}

.travel-calc h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  color: #0D1117;
  text-align: center;
  margin-bottom: 8px;
}

.travel-calc .calc-sub {
  text-align: center;
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4A5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-field input,
.calc-field select {
  padding: 12px 14px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
  transition: all 0.2s;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: #C9A84C;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.calc-result-item {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-result-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.calc-result-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0D1117;
}

.calc-result-meta {
  font-size: 0.8rem;
  color: #A8893A;
  font-weight: 600;
}

.calc-result-price {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0D1117;
  margin-top: 4px;
  line-height: 1;
}

.calc-result-details {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.6;
  margin-top: 6px;
}

.calc-result-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(201, 168, 76, 0.1);
  color: #A8893A;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  align-self: flex-start;
}

.calc-result-link:hover {
  background: rgba(201, 168, 76, 0.2);
  transform: translateX(2px);
}

.calc-total {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #C9A84C, #A8893A);
  color: #fff;
  border: none;
  padding: 24px 28px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-total .calc-result-title {
  color: #fff;
  font-size: 1.1rem;
}

.calc-total .calc-result-price {
  color: #fff;
  font-size: 2rem;
}

.calc-total .calc-result-details {
  color: rgba(255, 255, 255, 0.8);
}

.calc-total-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.calc-empty {
  text-align: center;
  padding: 40px 20px;
  color: #A0AEC0;
  font-size: 0.95rem;
}

/* Адаптив */
@media (max-width: 768px) {
  .travel-calc { padding: 24px 18px; }
  .calc-controls { grid-template-columns: 1fr 1fr; }
  .calc-results { grid-template-columns: 1fr; }
  .calc-total { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .travel-calc h3 { font-size: 1.15rem; }
  .calc-controls { grid-template-columns: 1fr; }
  .calc-result-price { font-size: 1.3rem; }
  .calc-total .calc-result-price { font-size: 1.5rem; }
}
