/* ==========================================================================
   METALL-VIZITKI.RU — стили
   Тёмная премиальная тема. Mobile-first.
   ========================================================================== */

:root {
  /* Светлая тема — фон по умолчанию для всех контентных секций */
  --bg: #faf8f4;
  --bg-alt: #f1ede4;
  --surface: #ffffff;
  --surface-2: #f3f0e9;
  --border: #e6e1d5;
  --border-light: #d8d2c1;

  --text: #201f1c;
  --text-muted: #57534a;
  --text-faint: #857f70;

  --gold: #cba135;
  --gold-light: #e8c766;
  --gold-dark: #8a6b1f;

  --success: #4caf7d;
  --success-bg: rgba(76, 175, 125, 0.12);
  --danger: #c9575f;

  --card-gold: linear-gradient(135deg, #b8912b, #e8c766);
  --card-black: linear-gradient(135deg, #17171a, #3c3c40);
  --card-green: linear-gradient(135deg, #16452c, #3f8f5c);
  --card-red: linear-gradient(135deg, #711b26, #c65560);
  --card-grey: linear-gradient(135deg, #4c4e53, #8d9096);
  --card-blue: linear-gradient(135deg, #14304f, #3f6fa8);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 4px 18px -8px rgba(32, 31, 28, 0.14);
  --shadow-gold: 0 8px 24px -8px rgba(203, 161, 53, 0.45);

  --container: 1180px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Тёмные зоны — hero, калькулятор, финальный CTA, шапка.
   Локально переопределяют переменные темы обратно на тёмную палитру. */
.dark-zone {
  --bg: #0b0b0d;
  --bg-alt: #131315;
  --surface: #1a1a1d;
  --surface-2: #202023;
  --border: #2b2b2f;
  --border-light: #38383d;

  --text: #f3f1ea;
  --text-muted: #a3a3a8;
  --text-faint: #6f6f75;

  --shadow-soft: var(--shadow-card);

  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-x: hidden;
}

h1,
h2,
h3,
.section-title {
  text-wrap: balance;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 0 40px;
}

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #16130a;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px -8px rgba(203, 161, 53, 0.6);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-whatsapp,
.btn-telegram,
.btn-max,
.btn-mail {
  background: var(--surface-2);
  border-color: var(--border-light);
  color: var(--text);
}

.btn-whatsapp:hover,
.btn-telegram:hover,
.btn-max:hover,
.btn-mail:hover {
  border-color: var(--gold);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.logo {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--gold);
}

.main-nav {
  display: none;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  gap: 18px;
}

.main-nav a {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-calc-btn {
  display: none;
}

.header-calc-btn-full {
  display: none;
}

@media (min-width: 1280px) {
  .header-calc-btn-short {
    display: none;
  }
  .header-calc-btn-full {
    display: inline;
  }
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 16px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15px;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (min-width: 1150px) {
  .main-nav {
    display: block;
  }
  .header-calc-btn {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 85% -10%, rgba(203, 161, 53, 0.16), transparent 55%),
    var(--bg);
}

.hero .container {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-badges {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
}

.hero-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}

.hero-badge .icon {
  color: var(--gold);
  margin-top: 1px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-cta-note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-faint);
}

.hero-timing-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(203, 161, 53, 0.5);
  color: var(--gold-light);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-media {
  position: relative;
}

.hero-media-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-placeholder {
  padding: 24px;
  color: var(--text-faint);
  font-size: 14px;
}

.hero-media-placeholder strong {
  display: block;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 6px;
}

@media (min-width: 960px) {
  .hero .container {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

/* ==========================================================================
   Почему металлическая визитка
   ========================================================================== */

.why-metal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-metal-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}

.why-metal-card .icon {
  color: var(--gold);
  margin-bottom: 12px;
}

.why-metal-title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 6px;
}

.why-metal-text {
  font-size: 13.5px;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .why-metal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

.calculator-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calc-grid {
  display: grid;
  gap: 24px;
}

.calc-panel {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calc-field {
  margin-bottom: 28px;
}

.calc-field:last-child {
  margin-bottom: 0;
}

.calc-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.calc-field-label small {
  font-weight: 500;
  color: var(--text-faint);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-row input[type="range"] {
  flex: 1;
  accent-color: var(--gold);
  height: 4px;
}

.qty-number {
  width: 84px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-align: center;
  font-weight: 700;
}

.qty-number:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.toggle-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.toggle-option {
  position: relative;
}

.toggle-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.toggle-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--surface-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.15s ease;
  min-height: 48px;
}

.toggle-option input:checked + label {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(203, 161, 53, 0.1);
}

.toggle-option input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.color-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.color-preview {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.color-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.color-preview img.is-switching {
  opacity: 0;
  transform: scale(0.96);
}

.color-picker .color-swatches {
  flex: 1;
  min-width: 0;
}

@media (min-width: 640px) {
  .color-picker {
    flex-direction: row;
    align-items: center;
  }
  .color-preview {
    max-width: 170px;
    flex-shrink: 0;
    margin: 0;
  }
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.swatch-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.swatch-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.swatch-chip {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.swatch-option input:checked ~ label .swatch-chip {
  border-color: var(--gold-light);
  transform: scale(1.04);
  box-shadow: 0 0 0 3px rgba(203, 161, 53, 0.2);
}

.swatch-option input:focus-visible ~ label .swatch-chip {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.swatch-label {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.swatch-gold { background: var(--card-gold); }
.swatch-black { background: var(--card-black); }
.swatch-green { background: var(--card-green); }
.swatch-red { background: var(--card-red); }
.swatch-grey { background: var(--card-grey); }
.swatch-blue { background: var(--card-blue); }

.calc-color-note {
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 10px 0 0;
}

.design-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 10px;
}

.design-price .old-price {
  text-decoration: line-through;
  color: var(--text-faint);
}

.design-free-badge {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(76, 175, 125, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 10px;
}

.design-free-badge.is-visible {
  display: inline-flex;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.checkbox-row input {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.checkbox-row label {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.checkbox-row.is-disabled {
  opacity: 0.5;
}

.checkbox-row.is-disabled label,
.checkbox-row.is-disabled input {
  cursor: not-allowed;
}

/* ---------- Памятка "проверьте макет" ---------- */

.layout-reminder {
  display: none;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.layout-reminder.is-open {
  display: block;
  animation: fadeSlide 0.3s ease;
}

.layout-reminder-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.layout-reminder-list {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.layout-reminder-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.layout-reminder-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.layout-reminder-footer {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.5;
}

.layout-reminder-footer a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ---------- Итог калькулятора ---------- */

.calc-summary {
  position: sticky;
  top: 84px;
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  align-self: start;
}

.calc-summary-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.calc-total {
  font-size: clamp(34px, 6vw, 44px);
  font-weight: 800;
  color: var(--gold-light);
  transition: transform 0.2s ease;
  margin-bottom: 6px;
}

.calc-total.is-pulsing {
  transform: scale(1.04);
}

.calc-breakdown {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  min-height: 20px;
}

.calc-timing {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}

.calc-discount-badge {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--success-bg);
  border: 1px solid rgba(76, 175, 125, 0.35);
  color: var(--success);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.calc-discount-badge.is-visible {
  display: flex;
  animation: badgePop 0.4s ease;
}

@keyframes badgePop {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.calc-upsell {
  display: none;
  font-size: 13px;
  color: var(--gold-light);
  background: rgba(203, 161, 53, 0.08);
  border: 1px dashed rgba(203, 161, 53, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.calc-upsell.is-visible {
  display: block;
}

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

.order-form-wrap {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.order-form-wrap.is-open {
  display: block;
  animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
}

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

.form-consent {
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 14px 0 16px;
  line-height: 1.5;
}

.form-consent a {
  color: var(--gold-light);
  text-decoration: underline;
}

.form-response-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
}

.form-status {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: var(--success-bg);
  border: 1px solid rgba(76, 175, 125, 0.35);
  color: var(--success);
}

.form-status.is-error {
  background: rgba(201, 87, 95, 0.12);
  border: 1px solid rgba(201, 87, 95, 0.35);
  color: var(--danger);
}

.form-success-note {
  display: none;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.form-success-note.is-visible {
  display: block;
}

.form-success-actions {
  display: none;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.form-success-actions.is-visible {
  display: flex;
}

@media (min-width: 900px) {
  .calc-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* ==========================================================================
   Не только визитки
   ========================================================================== */

.other-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.other-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.other-card .icon {
  color: var(--gold);
  flex-shrink: 0;
}

.other-card-title {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 2px;
}

.other-card-text {
  font-size: 12.5px;
  color: var(--text-muted);
}

.other-cards-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .other-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .other-cards-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Наши работы
   ========================================================================== */

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .works-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Отзывы
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.review-text {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.review-author {
  font-weight: 700;
  font-size: 14px;
}

.review-business {
  font-size: 13px;
  color: var(--text-faint);
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Как заказать — степпер
   ========================================================================== */

.stepper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.stepper-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #16130a;
  font-weight: 800;
  font-size: 17px;
}

.stepper-text {
  font-size: 14.5px;
  color: var(--text-muted);
}

.stepper-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  padding: 4px 0;
}

.stepper-arrow .icon {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

@media (min-width: 900px) {
  .stepper {
    flex-direction: row;
    align-items: stretch;
  }
  .stepper-step {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }
  .stepper-arrow .icon {
    transform: none;
  }
}

/* ==========================================================================
   Требования к макету
   ========================================================================== */

.requirements-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.requirement-item {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.requirement-item .icon {
  color: var(--gold);
  margin-top: 2px;
}

.requirement-item > div {
  min-width: 0;
}

.requirement-title {
  font-weight: 700;
  font-size: 14.5px;
  margin: 0 0 4px;
}

.requirement-text {
  font-size: 13.5px;
  color: var(--text-muted);
}

.requirements-note {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(203, 161, 53, 0.08);
  border: 1px dashed rgba(203, 161, 53, 0.4);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.requirements-note-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gold-light);
}

.requirements-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 720px) {
  .requirements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Доставка и оплата
   ========================================================================== */

.subsection-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin: 32px 0 16px;
}

.subsection-title:first-of-type {
  margin-top: 0;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.info-card .icon {
  color: var(--gold);
  margin-bottom: 12px;
}

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

.info-card-text {
  font-size: 13.5px;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .info-cards-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .info-cards-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.faq-question .icon {
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Финальный CTA
   ========================================================================== */

.final-cta {
  background: radial-gradient(circle at 50% 0%, rgba(203, 161, 53, 0.14), transparent 60%), var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.final-cta .section-title {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: 36px;
  text-align: left;
}

.contact-split-left,
.contact-split-right {
  text-align: left;
}

.contact-split-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-split-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-split-right {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.question-form-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

@media (min-width: 860px) {
  .contact-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-faint);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin: 0 0 14px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-actions {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-faint);
}

.footer-disclaimer {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--text-faint);
  opacity: 0.8;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Простая страница (privacy)
   ========================================================================== */

.simple-page {
  padding: 56px 0 80px;
}

.simple-page h1 {
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: 22px;
}

.simple-page h2 {
  font-size: 19px;
  margin: 32px 0 12px;
}

.simple-page p,
.simple-page li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.simple-page ul {
  padding-left: 20px;
  list-style: disc;
}

.simple-page a {
  color: var(--gold-light);
  text-decoration: underline;
}
