:root {
  --bg: #ffffff;
  --bg-muted: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #f2f2ef;
  --line: #e5e5de;
  --line-strong: #d4d4cb;
  --text: #141414;
  --muted: #707070;
  --primary: #0f6a36;
  --primary-dark: #0b4f28;
  --danger: #c62828;
  --danger-dark: #981d1d;
  --container: 1140px;
  --radius: 16px;
  --shadow: none;
  --font-ui: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --font-accent: "Zen Kurenaido", "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
}

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

button,
input,
textarea,
select {
  font: inherit;
  
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #0f6a36;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  line-height: 1.05;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button--primary {
  background: var(--primary);
  color: #fff;
}

.button--primary:hover {
  background: var(--primary-dark);
}

.button--secondary {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--text);
}

.button--secondary:hover {
  background: var(--surface-soft);
}

.button--danger {
  background: var(--danger);
  color: #fff;
}

.button--danger:hover {
  background: var(--danger-dark);
}

.section {
  padding: 56px 0;
}

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

.section-tag {
  margin: 0 0 12px;
  color: #4d4d4d;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-head > * + * {
  margin-top: 14px;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.section-lead {
  max-width: 760px;
  font-size: 1.03rem;
}

.section-lead--wide {
  max-width: 920px;
}

.section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head--row p:last-child {
  max-width: 460px;
}

.section-head--wide {
  margin-bottom: 32px;
}

.hero {
  padding: 48px 0 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.hero__content,
.hero__panel {
  min-width: 0;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(2.7rem, 5vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.hero__lead {
  margin: 0 0 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.38;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.feature-chip,
.stat-card,
.country-card,
.step-card,
.contact-panel,
.hero-card,
.inventory-card,
.editor-card,
.admin-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-chip,
.stat-card,
.country-card,
.step-card {
  padding: 18px;
}

.feature-chip strong,
.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-chip span,
.stat-card p,
.country-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-chip {
  background: transparent;
  box-shadow: none;
  border-color: var(--line);
}

.hero-card {
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.hero-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 0 10px;
  border-bottom: 0;
}

.hero-card__head strong {
  font-size: 1rem;
  color: var(--danger);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef3fb;
  color: #3f6ba5;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card__media {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  background: #efefed;
  border-radius: 4px 4px 0 0;
}

.hero-card__arrow {
  height: 100%;
  border: 0;
  background: transparent;
  color: #5c5c5c;
  font-size: 2rem;
  cursor: pointer;
}

.hero-card__image {
  height: 170px;
  background-color: #efefed;
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid var(--line);
}

.hero-card__image--harrier {
  background-image: url("https://images.unsplash.com/photo-1549399542-7e8d21d58f07?auto=format&fit=crop&w=1200&q=80");
}

.hero-card__body {
  padding: 14px 8px 14px 8px;
  border: 3px solid var(--primary);
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.hero-card__body h2 {
  margin: 0 0 6px;
  font-size: 1.85rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: "Courier New", monospace;
  font-weight: 500;
}

.hero-card__body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.92rem;
}

.meta-list,
.inventory-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-list span,
.inventory-card__meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #6d7580;
  font-size: 0.8rem;
  font-weight: 600;
}

.country-grid,
.stats-grid,
.steps-grid,
.inventory-grid {
  display: grid;
  gap: 16px;
}

.country-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid,
.inventory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.country-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.step-card__num {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 24px;
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-list div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.contact-list strong {
  display: block;
  margin-bottom: 6px;
}

.contact-list span {
  color: var(--muted);
}

.site-footer {
  padding: 24px 0 36px;
}

.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.inventory-card {
  overflow: hidden;
}

.inventory-card__image {
  aspect-ratio: 16 / 10;
  background-color: #e5e9ef;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.inventory-card__body {
  padding: 18px;
}

.inventory-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.inventory-card__top h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.inventory-card__price {
  color: var(--danger);
  font-weight: 800;
  white-space: nowrap;
}

.inventory-card__country {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.inventory-card__body p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.inventory-empty {
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

#catalog .container {
  width: min(calc(100% - 32px), 1280px);
}

#catalog .inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 20px;
}

.editor-card {
  padding: 22px;
}

.editor-card__head {
  margin-bottom: 20px;
}

.editor-card__head h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.editor-card__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field small {
  color: var(--muted);
  line-height: 1.5;
}

.form-field--checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
}

.form-field--checkbox input {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  inline-size: 18px;
  block-size: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.form-field--checkbox span {
  max-width: none;
  white-space: nowrap;
  text-align: left;
  line-height: 1.25;
}

.form-field--publish {
  margin: 0 0 0 6px;
  align-self: center;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.telegram-status {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.telegram-status__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d8ddd3;
  border-radius: 999px;
  background: #f7f8f5;
  color: #4f5b4d;
  font-size: 0.88rem;
  font-weight: 600;
}

.telegram-status__badge--published {
  border-color: #b7d8c1;
  background: rgba(15, 106, 54, 0.09);
  color: #0f6a36;
}

.telegram-status__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin: 16px 0 0;
  color: var(--danger);
  line-height: 1.5;
}

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

.image-list__empty {
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  color: var(--muted);
  background: var(--surface-soft);
}

.image-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.image-card--cover {
  border-color: #0f6a36;
  box-shadow: inset 0 0 0 1px rgba(15, 106, 54, 0.15);
}

.image-card__thumb {
  min-height: 72px;
  border-radius: 10px;
  background-color: #eef1f5;
  background-size: cover;
  background-position: center;
}

.image-card__body {
  min-width: 0;
}

.image-card__body strong,
.image-card__body span,
.image-card__body button {
  display: inline-flex;
}

.image-card__body strong {
  margin-bottom: 6px;
}

.image-card__body span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-card__body button {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 700;
  cursor: pointer;
}

.image-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.image-card__actions button:first-child {
  color: var(--primary);
}

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

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

.admin-login {
  display: grid;
  place-items: center;
  min-height: 70vh;
}

.admin-login .editor-card {
  width: min(100%, 520px);
}

.admin-row {
  padding: 16px;
}

.admin-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.admin-row span,
.admin-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.admin-row__meta {
  margin-top: 8px;
}

.admin-row__meta--published {
  color: #0f6a36;
  font-weight: 600;
}

.admin-row__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.admin-row__actions button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.admin-row__actions .edit {
  background: var(--surface-soft);
  border-color: var(--line-strong);
  color: var(--text);
}

.admin-row__actions .remove {
  background: #fff2f2;
  border-color: #f1c3c3;
  color: var(--danger);
}

@media (max-width: 1100px) {
  .hero__grid,
  .contact-panel,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #catalog .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header__row,
  .section-head--row,
  .site-footer__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero__features,
  .country-grid,
  .stats-grid,
  .form-grid,
  .steps-grid,
  .inventory-grid {
    grid-template-columns: 1fr;
  }

  #catalog .inventory-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page="home"] {
  background: #fff;
  color: #111;
}

body[data-page="home"] .container {
  width: min(calc(100% - 64px), 1260px);
}

body[data-page="home"] .site-header,
body[data-page="home"] .section,
body[data-page="home"] .section--muted,
body[data-page="home"] .site-footer {
  display: none;
}

.mock-header {
  padding: 28px 0 0;
}

.mock-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mock-header__brand-column {
  display: contents;
}

.mock-header__regions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
  font-family: var(--font-accent);
  color: #444;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mock-header__regions a {
  color: #444;
}

.mock-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 0;
  gap: 14px;
}

.mock-nav {
  display: none;
}

.mock-burger {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d8ddd3;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  box-shadow: none;
}

.mock-login {
  order: 1;
  font-size: 0;
  position: relative;
}

.mock-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(17, 17, 17, 0.28);
}

body.is-menu-open {
  overflow: hidden;
}

.mock-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  width: min(360px, calc(100vw - 24px));
  padding: 28px 24px;
  background: #fff;
  border-left: 1px solid #e5e5de;
  box-shadow: -18px 0 40px rgba(17, 17, 17, 0.12);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.mock-side-menu.is-open {
  transform: translateX(0);
}

.mock-side-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--font-accent);
  font-size: 24px;
}

.mock-side-menu__close {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mock-side-menu__nav {
  display: grid;
  gap: 18px;
}

.mock-side-menu__nav a {
  color: #222;
  font-family: var(--font-accent);
  font-size: 30px;
  line-height: 1.02;
}

.mock-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #0f6a36;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  cursor: pointer;
  box-shadow: none;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.mock-header__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.mock-login::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../images/icons/person-white.svg") center / contain no-repeat;
}

.mock-hero {
  padding: 76px 0 128px;
  padding-bottom: 48px;
}

.mock-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 72px;
  align-items: start;
}

.mock-hero__copy {
  display: contents;
}

.mock-hero__showcase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-top: 0;
  margin-top: 0;
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
}

.mock-hero__copy h1 {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0 0 22px;
  color: #111;
  font-size: 48px;
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 500;
  text-align: center;
}

.mock-hero__title-accent {
  color: #0f6a36;
  font-weight: 700;
}

.mock-hero__copy p {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  max-width: 680px;
  margin: 0;
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.28;
}

.mock-hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: flex-start;
  margin-top: 0;
  padding: 16px 18px;
  border: 1px solid #e3e7de;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcfa 0%, #f6f8f4 100%);
}

.mock-hero__detail-title {
  display: block;
  width: 100%;
  margin-top: 4px;
  color: #0f6a36;
  font-family: var(--font-accent);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1;
}

.mock-hero__detail-title:first-child {
  margin-top: 0;
}

.mock-hero__detail-label {
  display: block;
  width: 100%;
  margin-top: 2px;
  color: #303030;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.mock-hero__detail-item {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbe3d6;
  color: #5f665e;
  font-size: 0.9rem;
  line-height: 1.15;
}

.mock-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  margin-top: 0;
  justify-content: flex-start;
  align-self: start;
}

.mock-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.mock-cta--primary {
  background: #0f6a36;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 106, 54, 0.16);
}

.mock-cta--primary:hover {
  background: #0b4f28;
}

.mock-cta--secondary {
  background: #fff;
  border-color: #d8ddd3;
  color: #1d1d1d;
}

.mock-cta--secondary:hover {
  background: #f7f8f5;
}

.mock-hero-card {
  width: 100%;
  position: relative;
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mock-hero-card__top {
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  z-index: 2;
}

.mock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 106, 54, 0.12);
  color: #0f6a36;
  font-size: 0.82rem;
  font-weight: 700;
}

.mock-hero-card__top strong {
  color: #dc3128;
  font-size: 1rem;
  font-weight: 700;
}

.mock-hero-card__media {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  background: #efefee;
  border: 3px solid #0f6a36;
  border-bottom: 0;
}

.mock-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.mock-arrow:hover {
  color: #111;
  background: rgba(0, 0, 0, 0.03);
}

.mock-hero-card__image {
  height: 270px;
  background: #efefee center center / contain no-repeat;
}

.mock-hero-card__body {
  border: 3px solid #0f6a36;
  border-top: 0;
  padding: 12px 10px 14px;
}

.mock-hero-card.is-changing {
  opacity: 0.18;
  transform: translateY(6px);
}

.mock-hero-card__body h2 {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 1.86rem;
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.mock-hero-card__body p {
  margin: 0 0 12px;
  color: #6a6a6a;
  font-size: 0.88rem;
  line-height: 1.25;
}

.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mock-tags span {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #7a7f87;
  font-size: 0.72rem;
  font-weight: 700;
}

.mock-section {
  padding: 78px 0;
  border-top: 1px solid #f0f0eb;
}

.mock-section--soft {
  background: #fafaf8;
}

.mock-section--last {
  padding-bottom: 96px;
}

.mock-section__head {
  margin-bottom: 28px;
}

.mock-section__head span {
  display: inline-block;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.94rem;
  font-weight: 500;
}

.mock-section__head h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 2.6rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.mock-section__head p {
  max-width: 760px;
  margin: 0;
  color: #6d6d6d;
  font-size: 1.05rem;
  line-height: 1.45;
}

.mock-about__quote {
  max-width: 920px !important;
  margin: 28px auto 0 !important;
  position: relative;
  padding: 28px 24px 20px;
  border: 1px solid #dfe5da;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfa 0%, #f5f8f2 100%);
  color: #5f665e !important;
  text-align: center;
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mock-about__quote::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 32px;
  height: 24px;
  background: url("../images/icons/quote-mark.svg") center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.mock-about__accent {
  color: #0f6a36;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(15, 106, 54, 0.08);
}

.mock-section#about .mock-section__head h2 {
  max-width: none;
}

.mock-about__countries {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  width: min(100%, 920px);
  margin: 24px auto 0;
}

.mock-about__country {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.mock-about__country img {
  width: 100%;
  max-width: 132px;
  height: 88px;
  object-fit: contain;
  display: block;
}

.mock-about__country span {
  color: #0f6a36;
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.1;
}

.mock-section__head--wide h2,
.mock-section__head--wide p {
  max-width: none;
}

.mock-columns,
.mock-process,
.mock-catalog,
.mock-contact {
  display: grid;
  gap: 16px;
}

.mock-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mock-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mock-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mock-catalog-section {
  display: grid;
  gap: 18px;
}

.mock-catalog-section__head h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mock-catalog-section__head p {
  margin: 0;
  color: #6d6d6d;
  line-height: 1.45;
}

.mock-info-card,
.mock-step,
.mock-catalog-card,
.mock-contact__list div {
  border: 1px solid #e7e7e0;
  background: #fff;
}

.mock-catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mock-info-card,
.mock-step {
  padding: 22px 20px;
}

.mock-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 28, 18, 0.04);
}

.mock-info-card--accent {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #fcfdfb 0%, #f7faf5 100%);
  border-color: #dbe5d8;
}

.mock-info-card--accent::before {
  content: "";
  position: absolute;
  inset: 18px;
  background: url("../images/world-map.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.mock-info-card--accent > * {
  position: relative;
  z-index: 1;
}

.mock-info-card h3,
.mock-step h3 {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8eee6;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

.mock-info-card p,
.mock-step p {
  margin: 0;
  color: #717171;
  line-height: 1.5;
}

.mock-info-card__lead {
  font-size: 0.98rem;
  color: #616d62;
}

.mock-info-card__note {
  margin-top: 10px;
  padding-top: 2px;
}

.mock-info-card__list {
  margin: 0;
  padding-left: 20px;
  color: #5f665e;
  display: grid;
  gap: 10px;
  line-height: 1.45;
}

.mock-info-card__list li::marker {
  color: #0f6a36;
}

.mock-about-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.mock-about-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d7e2d3;
  color: #0f6a36;
  font-size: 0.84rem;
  font-weight: 700;
}

.mock-step strong {
  display: inline-block;
  margin-bottom: 12px;
  color: #0f6a36;
  font-size: 0.96rem;
}

.mock-catalog-card__image {
  aspect-ratio: 16 / 10;
  background-color: #efefee;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.mock-catalog-card__media {
  position: relative;
  display: block;
  background: #efefee;
  overflow: hidden;
  border-bottom: 1px solid #e7e7e0;
}

.mock-card-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.mock-card-arrow[data-card-prev] {
  left: 0;
}

.mock-card-arrow[data-card-next] {
  right: 0;
}

.mock-card-arrow:hover {
  color: #111;
  background: transparent;
}

.mock-card-arrow.is-hidden,
.mock-card-counter.is-hidden {
  visibility: hidden;
}

.mock-card-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.74);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.mock-catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.mock-catalog-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mock-catalog-card__top h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 500;
}

.mock-catalog-card__country {
  margin: 4px 0 0;
  color: #777;
  font-size: 0.9rem;
}

.mock-catalog-card__price {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 106, 54, 0.12);
  color: #0f6a36;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.mock-catalog-card__description {
  margin: 12px 0 0;
  color: #6d6d6d;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.mock-catalog-card__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 16px;
}

.mock-catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #0f6a36;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.mock-catalog-link:hover {
  background: #0b4f28;
}

.car-page {
  display: grid;
  gap: 28px;
}

.car-page__head h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.car-page__head p,
.car-page__back {
  color: var(--muted);
}

.car-page__back {
  display: inline-flex;
  margin-bottom: 10px;
}

.car-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.car-gallery,
.car-summary {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.car-gallery {
  overflow: hidden;
}

.car-gallery__main {
  position: relative;
  background: #efefee;
  overflow: hidden;
}

.car-gallery__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #efefee;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.car-gallery__main .mock-card-arrow {
  top: 0;
  bottom: 0;
  width: 52px;
  font-size: 2rem;
}

.car-gallery__main .mock-card-arrow[data-card-prev],
.car-gallery__main #carPrev {
  left: 0;
}

.car-gallery__main .mock-card-arrow[data-card-next],
.car-gallery__main #carNext {
  right: 0;
}

.car-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.car-gallery__description {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}

.car-gallery__description h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.car-gallery__description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.car-thumb {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 10px;
  background-color: #efefee;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.car-thumb.is-active {
  border-color: #0f6a36;
  box-shadow: inset 0 0 0 1px rgba(15, 106, 54, 0.18);
}

.car-summary {
  padding: 20px;
}

.car-summary__price {
  margin-bottom: 16px;
  color: #dc3128;
  font-size: 1.6rem;
  font-weight: 800;
}

.car-summary__actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.car-summary__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.car-summary__button--primary {
  background: #0f6a36;
  color: #fff;
}

.car-summary__button--primary:hover {
  background: #0b4f28;
}

.car-summary__button--secondary {
  background: #fff;
  border-color: #d8ddd3;
  color: #161616;
}

.car-summary__button--secondary:hover {
  background: #f7f8f5;
}

.mock-contact {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 36px;
}

.mock-contact__panel {
  display: grid;
  gap: 16px;
}

.mock-contact__list {
  display: grid;
  gap: 12px;
}

.mock-contact__list div {
  padding: 14px 16px;
}

.mock-contact__list strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.mock-contact__list span {
  color: #6b6b6b;
}

.mock-empty {
  padding: 22px;
  border: 1px dashed #d8d8ce;
  color: #767676;
  text-align: center;
}

.lead-form {
  border: 1px solid #e7e7e0;
  background: #fff;
  padding: 18px;
}

.lead-form--compact {
  margin-top: 20px;
  border-radius: 16px;
  background: #fafaf8;
}

.lead-form__head {
  margin-bottom: 14px;
}

.lead-form__head h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
}

.lead-form__head p {
  margin: 0;
  color: #6d6d6d;
  line-height: 1.5;
}

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

.lead-form__field {
  display: grid;
  gap: 8px;
}

.lead-form__field--full {
  grid-column: 1 / -1;
}

.lead-form__field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.lead-form__field input,
.lead-form__field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d4d4cb;
  border-radius: 12px;
  background: #fff;
  color: #141414;
}

.lead-form__field textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.lead-form__status {
  margin: 0;
  color: #6d6d6d;
  line-height: 1.45;
}

.lead-form__status.is-pending {
  color: #6d6d6d;
}

.lead-form__status.is-success {
  color: #0f6a36;
}

.lead-form__status.is-error {
  color: #c62828;
}

@media (max-width: 980px) {
  body[data-page="home"] .container {
    width: min(calc(100% - 32px), 1120px);
  }

  .mock-header__row,
  .mock-hero__grid,
  .mock-contact,
  .car-page__grid {
    grid-template-columns: 1fr;
  }

  .mock-header__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px 20px;
  }

  .mock-header__nav-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .mock-header__brand-column {
    display: grid;
    gap: 10px;
    min-width: 0;
  }

  .mock-header__regions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .mock-hero__copy h1,
  .mock-hero__copy p,
  .mock-hero__showcase {
    grid-column: auto;
    grid-row: auto;
  }

  .mock-hero__copy p {
    max-width: none;
  }

  .mock-hero__showcase {
    align-self: start;
  }

  .mock-columns,
  .mock-process,
  .mock-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-catalog-filters {
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .mock-header {
    padding-top: 20px;
  }

  .mock-header__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
    align-items: start;
  }

  .mock-header__brand-column {
    display: grid;
    gap: 14px;
    min-width: 0;
  }

  .brand {
    justify-self: start;
  }

  .mock-header__nav-wrap {
    justify-content: flex-end;
    align-self: start;
    gap: 10px;
  }

  .mock-header__regions {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 10px 18px;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
  }

  .mock-hero {
    padding: 40px 0 56px;
  }

  .mock-hero__copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    line-height: 0.94;
  }

  .mock-hero__grid {
    gap: 28px;
  }

  .mock-hero__details {
    padding: 14px;
    gap: 8px;
  }

  .mock-hero__detail-title {
    font-size: 1.02rem;
  }

  .mock-hero__detail-item,
  .mock-hero__detail-label {
    font-size: 0.88rem;
  }

  .mock-hero__showcase {
    width: 100%;
    padding-top: 42px;
  }

  .mock-hero-card__image {
    height: 220px;
  }

  .mock-hero-card__body h2 {
    font-size: 1.5rem;
    line-height: 1.02;
  }

  .mock-hero-card__body p {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .mock-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mock-hero__actions .mock-cta {
    width: 100%;
  }

  .mock-catalog-filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mock-columns,
  .mock-process,
  .mock-catalog,
  .lead-form__grid {
    grid-template-columns: 1fr;
  }
}
