/* ═══════════════════════════════════════════════════════════
   ORDObim — чертёжная система
   Бумага / тушь / линия / инженерный синий / сигнальный оранжевый
   ═══════════════════════════════════════════════════════════ */

:root {
  --paper: #F5F6F3;
  --paper-deep: #ECEEE9;
  --ink: #181B1F;
  --ink-soft: #4A5058;
  --line: #CBD2D6;
  --line-soft: #DDE2E4;
  --blue: #1D49A6;
  --accent: #E04E1A;
  --accent-dark: #C43F10;

  --font-display: "Unbounded", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --frame-w: 1180px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* ── Каркас ── */
.frame {
  max-width: var(--frame-w);
  margin: 0 auto;
  padding: 0 32px;
}
.frame-narrow { max-width: 820px; }

::selection { background: var(--blue); color: #fff; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

/* ── Кнопки ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-wide { width: 100%; }

/* ── Айбро с засечкой ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.tick {
  width: 28px;
  height: 1.5px;
  background: var(--blue);
  position: relative;
  flex: none;
}
.tick::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 1.5px; height: 8px;
  background: var(--blue);
}

/* ═══ Шапка ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--ink);
}
.site-header .frame {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo-mark { font-weight: 600; }
.logo-tail { font-weight: 400; color: var(--blue); }

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--ink); }

.header-cta { padding: 9px 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
}

/* ═══ Хиро (светлый, иллюстрация-разрез с MEP) ═══ */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--ink);
  /* точный фон присланной картинки — чтобы её прямоугольник не давал шва */
  background: #F6F5F5;
}
/* чертёжные оси и штамп мешают выноскам — прячем в этом хиро */
.hero-axes,
.hero .stamp { display: none; }

.hero-sheet {
  position: relative;
  padding-top: 96px;
  padding-bottom: 40px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

/* Оси */
.hero-axes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.axis { position: absolute; }
.axis i {
  position: absolute;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--ink-soft);
  width: 26px; height: 26px;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.axis-v {
  left: var(--pos);
  top: 0; bottom: 0;
  border-left: 1px dashed var(--line);
}
.axis-v i { top: 12px; left: -13px; }
.axis-h {
  top: var(--pos);
  left: 0; right: 0;
  border-top: 1px dashed var(--line);
}
.axis-h i { left: 4px; top: -13px; }

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Аксонометрия в хиро */
.hero-art {
  position: relative;
  margin: 40px auto 0;
  max-width: 460px;
  width: 100%;
}
.hero-art svg { display: block; width: 100%; height: auto; }
.hero-art img { display: block; width: 100%; height: auto; }

/* Иллюстрация: подписи-выноски перенабраны шрифтом сайта поверх вшитых */
.hero-illust { position: relative; container-type: inline-size; }
.io-cap {
  position: absolute;
  background: #F6F5F5;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 2.0cqw;
  line-height: 1.27;
  color: #37434F;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.io-tl { left: 8.8%;  top: 2.2%;  width: 21%; height: 10.2%; }
.io-tr { left: 74.6%; top: 2.8%;  width: 20%; height: 10.2%; }
.io-bl { left: 8.8%;  top: 79.8%; width: 23%; height: 11.4%; }
.io-br { left: 77.4%; top: 79.8%; width: 21%; height: 14.0%; }

@media (min-width: 1000px) {
  .hero-sheet { justify-content: center; min-height: 620px; }
  .hero-content { max-width: 38%; }
  .hero h1 { font-size: clamp(34px, 3.4vw, 44px); }
  .hero-art {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 54%;
    max-width: 620px;
    margin: 0;
  }
}

/* Штамп ГОСТ */
.stamp {
  position: relative;
  margin-top: auto;
  margin-left: auto;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--paper);
}
.stamp td {
  border: 1px solid var(--ink);
  padding: 4px 12px;
  white-space: nowrap;
}
.stamp-label { color: var(--ink-soft); font-size: 10px; }
.stamp-title { font-weight: 600; }

/* Техническая строка */
.ticker {
  border-top: 1px solid var(--line);
  padding: 12px 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.ticker i { color: var(--line); font-style: normal; }

/* ═══ Секции ═══ */
.section { padding: 96px 0; }
.section-alt {
  background: var(--paper-deep);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.section-alt + .section { border-top: none; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 16px;
}
.section-sub { color: var(--ink-soft); font-size: 17px; }

/* ═══ Карточки-листы ═══ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ═══ Панели (как в ленте Revit) ═══ */
.plugin-groups { display: flex; flex-direction: column; }

.pgroup {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1.5px solid var(--ink);
}
.pgroup:first-child { padding-top: 8px; }

.pgroup-head { position: relative; }
.pgroup-idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.pgroup-head h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.pgroup-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 20px;
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: 4px;
}
.pgroup-tag.tag-dev { color: var(--accent); border-color: var(--accent); }
.pgroup-head p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 220px;
}

.pgroup-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.pgroup-cards .card { flex: 0 1 316px; }

/* Кнопки блока (пробная версия / купить) */
.pgroup-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  max-width: 220px;
}
.pgroup-actions .btn { width: 100%; padding: 11px 16px; font-size: 14px; }

/* Компактные карточки-функции */
.fcards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}
.fcard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color .15s, transform .15s;
}
.fcard:hover { border-color: var(--ink); transform: translateY(-2px); }
.fico { flex: none; width: 40px; height: 40px; }
.fcard-body h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.fcard-body p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Комплект — акцентная панель */
.pgroup-bundle { border-top-color: var(--accent); }
.pgroup-bundle .pgroup-idx { color: var(--accent); }
.fcard-bundle {
  background: var(--ink);
  border-color: var(--ink);
  grid-column: 1 / -1;
}
.fcard-bundle h4 { color: var(--paper); }
.fcard-bundle p { color: #AEB6BF; }

.card {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--line);
}

.card-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
}
.card-code {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.chip-navis { border-color: var(--blue); color: var(--blue); }
.chip-bundle { border-color: var(--accent); color: var(--accent); }

/* Мини-схема на миллиметровке */
.card-art {
  border-bottom: 1px solid var(--line);
  padding: 12px 16px 8px;
  background-color: #FCFDFC;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 16px 16px;
}
.card-art svg { display: block; width: 100%; height: auto; }

.card-bundle .card-art {
  background-color: #14161A;
  background-image:
    linear-gradient(#23272D 1px, transparent 1px),
    linear-gradient(90deg, #23272D 1px, transparent 1px);
  border-color: #3A4048;
}

.card h3 {
  font-size: 20px;
  padding: 20px 20px 2px;
}
.card-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  padding: 0 20px 12px;
}
.card-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 0 20px 16px;
}
.card-feats {
  list-style: none;
  padding: 0 20px 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.card-feats li {
  padding: 6px 0 6px 20px;
  position: relative;
  border-top: 1px dashed var(--line-soft);
}
.card-feats li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.card-foot {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price {
  font-family: var(--font-mono);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.price b { font-size: 17px; color: var(--accent); font-weight: 600; }
.price s { font-size: 12px; color: var(--ink-soft); }
.price small { font-size: 11px; color: var(--ink-soft); }
.card-foot .btn { padding: 10px 18px; font-size: 14px; flex: none; }

.card-bundle {
  background: var(--ink);
  color: var(--paper);
}
.card-bundle .card-strip { border-color: #3A4048; }
.card-bundle .card-code { color: #8FB0F0; }
.card-bundle .card-tagline { color: #8FB0F0; }
.card-bundle .card-desc,
.card-bundle .card-feats { color: #AEB6BF; }
.card-bundle .card-feats li { border-color: #33393F; }
.card-bundle .card-foot { border-color: #3A4048; }
.card-bundle .price b { color: #FF7A45; }
.card-bundle:hover { box-shadow: 6px 6px 0 #B9C2C8; }

/* ═══ Шаги ═══ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

.license-note {
  margin-top: 24px;
  border: 1px dashed var(--blue);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--blue) 4%, transparent);
}
.license-note b { color: var(--ink); }

/* ═══ Раздел с иллюстрацией ═══ */
.why-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
}
.why-art svg { display: block; width: 100%; height: auto; }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-art { max-width: 480px; margin: 0 auto; }
}

/* ═══ Спецификация ═══ */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  background: #fff;
}
.spec {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec:nth-child(2n) { border-right: none; }
.spec:nth-child(n+3) { border-bottom: none; }
.spec-key {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.spec p { font-size: 15px; color: var(--ink-soft); }

/* ═══ FAQ ═══ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--blue);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] { border-color: var(--ink); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ═══ Форма ═══ */
.contact-form {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form label,
.modal label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.modal input,
.modal select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.modal input:focus,
.modal select:focus {
  outline: 2px solid var(--blue);
  outline-offset: -1px;
  border-color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-status { font-size: 14px; color: var(--blue); font-weight: 500; }
.form-status.ok { color: #1B7A3D; }

/* ═══ Подвал ═══ */
.site-footer {
  border-top: 1.5px solid var(--ink);
  background: var(--ink);
  color: #AEB6BF;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 40px;
}
.site-footer .logo { color: var(--paper); }
.site-footer .logo-tail { color: #8FB0F0; }
.footer-note { font-size: 13.5px; margin-top: 10px; line-height: 1.7; }
.footer-key {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B727B;
  margin-bottom: 12px;
}
.site-footer a {
  display: block;
  color: #D5DAE0;
  font-size: 14.5px;
  margin-bottom: 8px;
}
.site-footer a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid #33393F;
  font-size: 13px;
}
.footer-sheet { font-family: var(--font-mono); font-size: 12px; }

/* ═══ Модальное окно ═══ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(24, 27, 31, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }

.modal {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 10px 10px 0 rgba(24, 27, 31, 0.25);
}
.modal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
}
.modal-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 2px 6px;
}
.modal-close:hover { color: var(--ink); }
.modal h3 {
  font-size: 20px;
  padding: 20px 24px 4px;
}
.modal form { padding: 16px 24px 24px; }

.check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.check input { width: auto !important; margin: 0 !important; }
.check span { font-weight: 500; }

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 14px 0;
  margin-bottom: 20px;
  font-size: 15px;
}
.order-total b {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

/* ═══ Временное скрытие цен ═══
   Чтобы вернуть цены: убрать класс prices-hidden с <body> в index.html */
body.prices-hidden .price { display: none; }
body.prices-hidden .card-foot { justify-content: flex-end; }
body.prices-hidden .card-foot .btn { flex: 1; }
body.prices-hidden .order-total { display: none; }

/* ═══ Появление при прокрутке ═══ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in { opacity: 1; transform: none; }

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

/* ═══ Фокус с клавиатуры ═══ */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ═══ Адаптив ═══ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .frame { padding: 0 20px; }
  .section { padding: 64px 0; }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1.5px solid var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .site-header .frame { gap: 16px; }

  .hero-sheet { padding-top: 64px; min-height: auto; }
  .hero h1 { font-size: clamp(29px, 7.7vw, 44px); }
  .hero-art { margin-top: 20px; max-width: 520px; }
  .stamp { margin-top: 48px; margin-left: 0; }
  .axis-h { display: none; }

  .cards { grid-template-columns: 1fr; }
  .pgroup { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .pgroup-head p { max-width: none; }
  .pgroup-actions { max-width: none; flex-direction: row; }
  .pgroup-actions .btn { flex: 1; }
  .pgroup-cards .card { flex: 1 1 100%; }
  .fcards { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .spec { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .spec:last-child { border-bottom: none !important; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { padding: 22px 18px; }
}
