/* ============================================================
   EGRN Landing — Mobile-First CSS
   Дизайн-система: узкая мобильная колонка (как hub.html)
   Основной цвет: #1a73e8  (синий)
   Вторичный:    #34a853  (зелёный)
   Фон:          #fff / #f8f9fa
   ============================================================ */

/* ============================================================
   CSS Custom Properties (токены)
   ============================================================ */

:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Цвета текста */
  --text-primary:   #202124;
  --text-secondary: #5f6368;
  --text-caption:   #80868b;

  /* Цвета бренда */
  --blue:           #1a73e8;
  --blue-dark:      #1557b0;
  --blue-deeper:    #0d47a1;
  --blue-light:     #e8f0fe;
  --blue-border:    #aecbfa;

  --green:          #34a853;
  --green-dark:     #137333;
  --green-light:    #e6f4ea;

  --error:          #d93025;
  --error-light:    #fce8e6;

  /* Фоны и границы */
  --bg:             #fff;
  --bg-secondary:   #f8f9fa;
  --border:         #e8eaed;
  --border-input:   #dadce0;

  /* Радиусы */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;

  /* Тени */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.10);
  --shadow-md:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 4px 20px rgba(0,0,0,0.12);
}

/* ============================================================
   1. Reset + Base
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   2. Главный контейнер (как hub.html)
   ============================================================ */

main {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

/* ============================================================
   3. Утилиты
   ============================================================ */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-secondary);
}

/* ============================================================
   4. Типографика
   ============================================================ */

.logo {
  text-align: center;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 32px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.35;
  margin-top: 40px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* ============================================================
   5. Кнопки
   ============================================================ */

/* Base shared */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Primary */
.btn-primary {
  height: 56px;
  padding: 0 28px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.btn-primary:hover {
  filter: brightness(0.9);
  text-decoration: none;
  color: #fff;
}

.btn-primary:active {
  filter: brightness(0.85);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Secondary */
.btn-secondary {
  height: 56px;
  padding: 0 28px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-size: 17px;
}

.btn-secondary:hover {
  background: rgba(26,115,232,0.07);
  text-decoration: none;
  color: var(--blue);
}

/* Large modifier */
.btn-large {
  height: 60px;
  padding: 0 36px;
  font-size: 18px;
  border-radius: 14px;
}

/* Small modifier */
.btn-small {
  height: auto;
  padding: 7px 16px;
  font-size: 14px;
  border-radius: var(--r-sm);
}

/* Add address (dashed) */
.btn-add-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border: 2px dashed var(--border-input);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-top: 8px;
}

.btn-add-address:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26,115,232,0.04);
}

/* ============================================================
   6. Hero CTA
   ============================================================ */

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

/* ============================================================
   7. Преимущества
   ============================================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.benefit-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
  border-color: #d2e3fc;
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.35;
}

.benefit-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   8. Калькулятор
   ============================================================ */

.calculator-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

/* Карточка адреса в калькуляторе */
.calc-house-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
}

.calc-house-card-icon {
  font-size: 18px;
  flex-shrink: 0;
  color: var(--blue);
}

.calc-house-card-info {
  flex: 1;
  min-width: 0;
}

.calc-house-card-addr {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-house-card-count {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* СНИЛС-переключатель */
.snils-toggle {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.toggle-segment {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.toggle-segment.active {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
}

.toggle-segment:not(.active):hover {
  background: rgba(26,115,232,0.07);
  color: var(--blue);
}

/* Результат калькулятора */
.calc-result {
  background: var(--blue-light);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-top: 20px;
}

/* Скидочные бейджи */
.discount-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  cursor: default;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.discount-badge.active {
  background: var(--green-light);
  border-color: #a5d6a7;
  color: var(--green-dark);
}

/* Сворачиваемая таблица цен */
.price-table-collapsible {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.price-table-collapsible summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent;
}

.price-table-collapsible summary::-webkit-details-marker {
  display: none;
}

.price-table-collapsible summary::before {
  content: "▸ ";
}

.price-table-collapsible[open] > summary::before {
  content: "▾ ";
}

.price-table-collapsible table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table-collapsible th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
}

.price-table-collapsible th:last-child {
  text-align: right;
}

.price-table-collapsible td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.price-table-collapsible td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--blue);
}

.price-table-collapsible tr:last-child td {
  border-bottom: none;
}

.price-table-collapsible tr:nth-child(even) td {
  background: var(--bg-secondary);
}

/* ============================================================
   9. Пример реестра
   ============================================================ */

.example-images {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.example-images::-webkit-scrollbar {
  height: 4px;
}

.example-images::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 2px;
}

.example-images::-webkit-scrollbar-thumb {
  background: #bdc1c6;
  border-radius: 2px;
}

.example-image-wrap {
  flex: 0 0 85%;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg);
}

.example-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.example-caption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ============================================================
   10. Юр. аргументы
   ============================================================ */

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.legal-item--accent {
  background: var(--blue-light);
  border-color: var(--blue-border);
}

.legal-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.35;
}

.legal-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   11. Доверие
   ============================================================ */

.trust-card {
  display: flex;
  flex-direction: row;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 24px;
}

.trust-stat {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
}

.trust-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  display: block;
}

.trust-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================================
   12. FAQ
   ============================================================ */

.faq {
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "▸ ";
}

.faq details[open] > summary::before {
  content: "▾ ";
}

.faq details p {
  padding: 0 0 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   13. Форма заказа
   ============================================================ */

/* Секция формы (fieldset-замена) */
.form-section {
  border: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.form-section:last-of-type {
  margin-bottom: 0;
}

.form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Метка поля */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.required {
  color: var(--error);
  margin-left: 2px;
}

/* Поля ввода */
.form-input,
.form-textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-input);
  border-radius: var(--r-sm);
  font-size: 16px; /* 16px — iOS не зумит */
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.5;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9aa0a6;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.14);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-caption);
  margin-top: 4px;
  line-height: 1.4;
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  line-height: 1.4;
}

/* Всегда однаколоночный layout при max-width 480px */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Кнопка отправки */
.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* Правовой дисклеймер под формой */
.form-legal {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-caption);
  text-align: center;
  line-height: 1.5;
}

.form-legal a {
  color: var(--blue);
  text-decoration: underline;
}

/* ============================================================
   14. Предварительный расчёт
   ============================================================ */

.price-summary {
  background: var(--blue-light);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-top: 20px;
}

.price-summary-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #3c4043;
  padding: 3px 0;
}

.price-row-label {
  flex: 1;
}

.price-row-value {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.price-divider {
  height: 1px;
  background: var(--blue-border);
  margin: 8px 0;
}

.price-total {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}

.price-discount {
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   15. Success screen
   ============================================================ */

.order-success {
  text-align: center;
  padding: 40px 16px;
  max-width: 440px;
  margin: 0 auto;
}

.success-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 18px;
}

.success-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.success-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================================
   16. Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 24px 0 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-caption);
  margin-top: 8px;
}

/* ============================================================
   17. Загрузка
   ============================================================ */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Skeleton placeholder */
.skeleton {
  background: linear-gradient(90deg, #f1f3f4 25%, #e8eaed 50%, #f1f3f4 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   18. Suggestions dropdown
   ============================================================ */

.input-with-suggestions {
  position: relative;
}

.suggestions-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border-input);
  border-radius: var(--r-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  z-index: 300;
  max-height: 240px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.suggestions-dropdown::-webkit-scrollbar {
  width: 4px;
}

.suggestions-dropdown::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

.suggestions-dropdown::-webkit-scrollbar-thumb {
  background: #bdc1c6;
  border-radius: 2px;
}

.suggestion-item {
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  border-bottom: 1px solid #f1f3f4;
  line-height: 1.4;
  transition: background 0.12s;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: var(--blue-light);
  color: var(--blue);
}

/* ============================================================
   19. Addresses list
   ============================================================ */

.address-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
}

.address-card:last-child {
  margin-bottom: 0;
}

.address-card-icon {
  font-size: 17px;
  flex-shrink: 0;
  color: var(--blue);
}

.address-card-info {
  flex: 1;
  min-width: 0;
}

.address-card-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.address-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.address-card-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  color: #9aa0a6;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 16px;
  transition: color 0.18s, background 0.18s;
}

.address-card-remove:hover {
  color: var(--error);
  background: rgba(217,48,37,0.08);
}

/* ============================================================
   20. Company info
   ============================================================ */

.company-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.company-info-card p {
  margin-bottom: 3px;
}

.company-info-card p:last-child {
  margin-bottom: 0;
}

.company-info-card strong {
  color: #3c4043;
}

/* ============================================================
   21. Дополнительные утилитарные классы
   ============================================================ */

/* Результат калькулятора — внутренний контейнер */
.calc-result-inner {
  text-align: center;
}

.calc-result-label {
  font-size: 13px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
}

.calc-result-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.calc-discount-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: block;
  margin-top: 4px;
}

/* Примечание под скидочными бейджами */
.discount-note {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 8px;
}

/* Секция примера — кнопка скачивания */
.example-download {
  text-align: center;
  margin-top: 20px;
}

/* Текст доверия */
.trust-text {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Inline ссылка */
.link-inline {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.link-inline:hover {
  text-decoration: underline;
}

/* Кнопка отправки формы */
.btn-submit {
  width: 100%;
}

/* Примечание к цене */
.price-note {
  font-size: 12px;
  color: var(--text-caption);
  margin-top: 8px;
  line-height: 1.5;
}

/* Группа поля формы */
.form-group {
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

/* Скрытый для зрячих, но доступный для скринридеров */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ошибки валидации полей */
.field-error {
  border-color: var(--error) !important;
}

.field-error-message {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
}

/* ============================================================
   22. Print styles
   ============================================================ */

@media print {
  .hero-cta,
  .btn-primary,
  .btn-secondary,
  #orderForm {
    display: none !important;
  }

  body {
    font-size: 11pt;
    color: #000;
    background: #fff;
  }

  main {
    max-width: 100%;
    padding: 0;
  }
}
