/* ═══════════════════════════════════════════════════════════
   Грузчик 72 — дизайн-система посадочных страниц
   Палитра B · Steel + Amber · стиль B+Bento (Swiss × Bento)
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0F172A;
  color: #fff;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

:root {
  --bg-hero: 222 47% 11%;
  --text-hero-muted: 215 14% 80%;
  --accent: 38 92% 50%;
  --accent-hover: 32 95% 44%;
  --success: 142 76% 45%;
}

/* === Top nav (fixed pill) === */
.nav {
  position: fixed;
  top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  display: flex; align-items: center; gap: 24px;
  padding: 8px 8px 8px 24px;
  background: hsl(var(--bg-hero) / 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid hsl(0 0% 100% / 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.18), 0 10px 32px hsl(0 0% 0% / 0.35);
  max-width: calc(100vw - 24px);
}
.nav .logo { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.01em; color: #fff; text-decoration: none; white-space: nowrap; }
.nav .logo span { color: hsl(var(--accent)); font-weight: 800; }
.nav-links { display: flex; gap: 24px; font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--text-hero-muted)); }
.nav-links a { color: inherit; text-decoration: none; transition: color 200ms; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: hsl(var(--accent)); color: hsl(var(--bg-hero));
  border-radius: 999px; font-weight: 600; font-size: 0.875rem;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  white-space: nowrap;
}
.nav-cta:hover { background: hsl(var(--accent-hover)); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 8px 8px 8px 16px; gap: 12px; }
  .nav .logo { font-size: 0.95rem; }
  .nav-cta { padding: 8px 14px; font-size: 0.8125rem; }
}

/* === Hero (компактный, на постере) === */
.lp-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 16px 56px;
  background: hsl(var(--bg-hero)) url('/img/sequence/poster-desktop.jpg') center / cover no-repeat;
}
.lp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, hsl(var(--bg-hero) / 0.55) 0%, hsl(var(--bg-hero) / 0.25) 40%, hsl(var(--bg-hero) / 0.85) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .lp-hero {
    background-image: url('/img/sequence/poster-mobile.jpg');
    min-height: auto;
    padding: 96px 12px 40px;
  }
}

/* Панель-«дверь» */
.door-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding: 46px 32px 32px;
  background: linear-gradient(160deg,
    hsl(222 35% 18% / 0.72) 0%,
    hsl(222 47% 11% / 0.78) 100%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid hsl(0 0% 100% / 0.18);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.2),
    0 24px 60px hsl(0 0% 0% / 0.5);
  text-align: center;
  animation: card-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.door-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent)) 20%, hsl(var(--accent)) 80%, transparent);
}
.door-panel .sku {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: hsl(var(--accent));
  text-transform: uppercase;
  white-space: nowrap;
}
.door-panel .bolt {
  position: absolute;
  width: 12px; height: 12px;
  background: hsl(0 0% 30%);
  border: 1px solid hsl(0 0% 100% / 0.18);
  border-radius: 50%;
  box-shadow: inset 0 1px 2px hsl(0 0% 0% / 0.6);
}
.door-panel .bolt--tl { top: 10px; left: 10px; }
.door-panel .bolt--tr { top: 10px; right: 10px; }
.door-panel .bolt--bl { bottom: 10px; left: 10px; }
.door-panel .bolt--br { bottom: 10px; right: 10px; }

.door-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 10px;
  border: 1px solid hsl(var(--accent) / 0.5);
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  margin: 0 auto 18px;
}
.door-status .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: hsl(142 76% 50%);
  box-shadow: 0 0 8px hsl(142 76% 50% / 0.7);
}
.door-status .live { color: #fff; font-family: 'Outfit', sans-serif; letter-spacing: 0.12em; }
.door-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.door-lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(var(--text-hero-muted));
  max-width: 480px;
  margin: 0 auto 20px;
}
.door-price {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  background: hsl(0 0% 0% / 0.45);
  border: 1px solid hsl(var(--accent) / 0.45);
  color: hsl(var(--accent));
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 4px;
  display: inline-block;
  margin: 0 auto 20px;
}
.door-price strong { color: #fff; font-weight: 700; font-size: 1.2em; }
.door-cta-stack {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.door-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 220ms;
  border: none;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-height: 48px;
}
.door-btn svg { width: 16px; height: 16px; }
.door-btn-primary {
  background: hsl(var(--accent));
  color: hsl(var(--bg-hero));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.3);
}
.door-btn-primary:hover {
  background: hsl(var(--accent-hover));
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.3), 0 12px 32px hsl(var(--accent) / 0.4);
}
.door-btn-glass {
  background: transparent;
  color: #fff;
  border: 1px solid hsl(0 0% 100% / 0.28);
}
.door-btn-glass:hover {
  background: hsl(0 0% 100% / 0.08);
  border-color: hsl(0 0% 100% / 0.45);
}

/* Хлебные крошки */
.crumbs {
  position: relative;
  z-index: 5;
  font-size: 0.78rem;
  color: hsl(var(--text-hero-muted));
  padding: 14px 0 0;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.crumbs .here { color: hsl(var(--accent)); }

/* === Body sections === */
.body-sections {
  position: relative;
  z-index: 5;
  color: #fff;
  background: linear-gradient(180deg, hsl(var(--bg-hero)) 0%, hsl(222 42% 13%) 100%);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; background: transparent; position: relative; }

.swiss-head {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 9fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid hsl(0 0% 100% / 0.18);
  margin-bottom: 36px;
}
.swiss-no {
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: hsl(var(--accent));
  text-transform: uppercase;
}
.swiss-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  line-height: 1.05;
}
.swiss-title .sub {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: hsl(var(--text-hero-muted));
  max-width: 580px;
  line-height: 1.5;
}

/* === Bento grid === */
.hyb-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.hyb-cell {
  position: relative;
  padding: 22px;
  background: linear-gradient(160deg,
    hsl(222 35% 18% / 0.72) 0%,
    hsl(222 47% 11% / 0.78) 100%);
  border: 1px solid hsl(0 0% 100% / 0.18);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.2),
    0 16px 40px hsl(0 0% 0% / 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms, box-shadow 220ms;
}
.hyb-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent) / 0.7) 20%, hsl(var(--accent) / 0.7) 80%, transparent);
  opacity: 0.6;
  transition: opacity 220ms;
}
.hyb-cell:hover::before { opacity: 1; }
.hyb-cell:hover {
  transform: translateY(-2px);
  border-color: hsl(0 0% 100% / 0.28);
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.25),
    0 20px 50px hsl(0 0% 0% / 0.45);
}
.hyb--hero    { grid-column: span 6; padding: 28px; }
.hyb--span-3  { grid-column: span 3; }
.hyb--span-4  { grid-column: span 4; }
.hyb--span-6  { grid-column: span 6; }
.hyb--span-12 { grid-column: span 12; }
.hyb--accent {
  background: linear-gradient(160deg,
    hsl(var(--accent) / 0.22) 0%,
    hsl(var(--accent) / 0.14) 100%);
  border-color: hsl(var(--accent) / 0.5);
}
.hyb--accent::before {
  background: linear-gradient(90deg, transparent, hsl(var(--accent)) 20%, hsl(var(--accent)) 80%, transparent);
  opacity: 1;
  height: 3px;
}
.hyb--accent:hover {
  background: linear-gradient(160deg,
    hsl(var(--accent) / 0.28) 0%,
    hsl(var(--accent) / 0.18) 100%);
  border-color: hsl(var(--accent) / 0.7);
}
.hyb-label {
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--text-hero-muted));
  margin: 0 0 8px;
}
.hyb--accent .hyb-label { color: hsl(var(--accent)); }
.hyb-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.25;
}
.hyb-sub {
  font-size: 0.85rem;
  color: hsl(var(--text-hero-muted));
  margin: 0;
  line-height: 1.5;
}
.hyb-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
}
.hyb-num .unit { font-size: 0.42em; font-weight: 500; color: hsl(var(--text-hero-muted)); margin-left: 2px; }
.hyb-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--accent) / 0.18);
  color: hsl(var(--accent));
  border-radius: 8px;
  flex-shrink: 0;
}
.hyb-icon svg { width: 18px; height: 18px; }
.hyb-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.hyb-feats {
  list-style: none; padding: 0; margin: 8px 0 0;
  font-size: 0.82rem;
  color: hsl(var(--text-hero-muted));
}
.hyb-feats li { padding-left: 16px; position: relative; margin-bottom: 4px; line-height: 1.4; }
.hyb-feats li::before {
  content: '·';
  position: absolute; left: 4px; top: -1px;
  color: hsl(var(--accent));
  font-weight: 700;
}

/* Тарифные плитки */
.tariff-amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 4px;
}
.tariff-amount .unit { font-size: 0.36em; font-weight: 500; color: hsl(var(--text-hero-muted)); margin-left: 2px; }
.tariff-feats {
  list-style: none; padding: 0; margin: 12px 0 16px;
  font-size: 0.85rem;
  color: hsl(var(--text-hero-muted));
}
.tariff-feats li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid hsl(0 0% 100% / 0.06);
  line-height: 1.4;
}
.tariff-feats li:last-child { border-bottom: none; }
.tariff-feats li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 14px; height: 14px;
  background: hsl(var(--accent));
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5 9-11' stroke='black' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5 9-11' stroke='black' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tariff-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  transition: all 200ms;
  border: 1px solid hsl(0 0% 100% / 0.18);
  background: hsl(0 0% 100% / 0.05);
  color: #fff;
  margin-top: auto;
}
.tariff-btn:hover { background: hsl(0 0% 100% / 0.12); border-color: hsl(0 0% 100% / 0.3); }
.hyb--accent .tariff-btn {
  background: hsl(var(--accent));
  color: hsl(var(--bg-hero));
  border-color: hsl(var(--accent));
}
.hyb--accent .tariff-btn:hover { background: hsl(var(--accent-hover)); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  position: relative;
  background: linear-gradient(160deg,
    hsl(222 35% 18% / 0.72) 0%,
    hsl(222 47% 11% / 0.78) 100%);
  border: 1px solid hsl(0 0% 100% / 0.18);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.18);
  overflow: hidden;
  transition: border-color 220ms;
}
.faq-item:hover { border-color: hsl(0 0% 100% / 0.28); }
.faq-item.open { border-color: hsl(var(--accent) / 0.5); }
.faq-item.open::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent)) 20%, hsl(var(--accent)) 80%, transparent);
}
.faq-q {
  width: 100%;
  background: none; border: none;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #fff;
}
.faq-q .q-num {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: hsl(var(--accent));
  flex-shrink: 0;
  min-width: 36px;
}
.faq-q .q-text {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.faq-q .chev {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  color: hsl(var(--text-hero-muted));
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: hsl(var(--accent)); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 20px 18px 72px;
  color: hsl(var(--text-hero-muted));
  line-height: 1.6;
  font-size: 0.92rem;
  margin: 0;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* === Контакты и форма === */
.contact-tile { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.contact-tile .ic {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--accent) / 0.18);
  color: hsl(var(--accent));
  border-radius: 8px;
}
.contact-tile .ic svg { width: 18px; height: 18px; }
.contact-tile .label {
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--text-hero-muted));
  margin-bottom: 4px;
}
.contact-tile .val {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: span 2; }
.field label {
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(var(--text-hero-muted));
}
.field input, .field textarea {
  width: 100%;
  padding: 11px 14px;
  background: hsl(0 0% 100% / 0.05);
  border: 1px solid hsl(0 0% 100% / 0.12);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 200ms, background 200ms;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: hsl(var(--accent));
  background: hsl(0 0% 100% / 0.08);
}
.field textarea { resize: vertical; min-height: 72px; }
.submit-btn {
  grid-column: span 2;
  padding: 13px;
  background: hsl(var(--accent));
  color: hsl(var(--bg-hero));
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 200ms;
}
.submit-btn:hover {
  background: hsl(var(--accent-hover));
  transform: translateY(-1px);
  box-shadow: 0 12px 28px hsl(var(--accent) / 0.4);
}
.submit-btn:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }
.form-status {
  grid-column: span 2;
  font-size: 0.85rem;
  margin: 0;
  min-height: 1.2em;
  color: hsl(var(--text-hero-muted));
}
.form-status[data-ok="true"] { color: hsl(var(--success)); }
.form-status[data-ok="false"] { color: hsl(0 84% 65%); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* === Перелинковка направлений === */
.dir-link { text-decoration: none; }
.dir-link .arr {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--accent));
  margin-top: 4px;
}
.dir-link .arr svg { width: 14px; height: 14px; transition: transform 200ms; }
.dir-link:hover .arr svg { transform: translateX(3px); }

/* === Footer === */
.footer {
  position: relative;
  z-index: 5;
  background: hsl(var(--bg-hero));
  color: hsl(var(--text-hero-muted));
  padding: 40px 0 96px;
  border-top: 1px solid hsl(0 0% 100% / 0.08);
  font-size: 0.875rem;
}
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer .logo { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; }
.footer .logo span { color: hsl(var(--accent)); }
.footer a { color: inherit; text-decoration: none; transition: color 200ms; }
.footer a:hover { color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.footer-col .head {
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  margin-bottom: 2px;
}
@media (min-width: 761px) { .footer { padding-bottom: 40px; } }

/* === Float CTA (desktop) === */
.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 18px;
  background: hsl(var(--accent));
  color: hsl(var(--bg-hero));
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px hsl(var(--accent) / 0.4), 0 0 0 1px hsl(0 0% 100% / 0.08);
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity 320ms, transform 320ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms;
}
.float-cta.show { opacity: 1; transform: translateY(0) scale(1); }
.float-cta:hover { background: hsl(var(--accent-hover)); }
.float-cta svg { width: 18px; height: 18px; }

/* === Мобильная нижняя панель действий === */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: hsl(var(--bg-hero) / 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid hsl(0 0% 100% / 0.14);
}
.mob-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.mob-bar svg { width: 17px; height: 17px; }
.mob-bar .mob-call { background: hsl(var(--accent)); color: hsl(var(--bg-hero)); }
.mob-bar .mob-order { background: hsl(0 0% 100% / 0.08); color: #fff; border: 1px solid hsl(0 0% 100% / 0.22); }
@media (max-width: 760px) {
  .mob-bar { display: flex; }
  .float-cta { display: none !important; }
}

/* === Animations === */
@keyframes card-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Mobile overrides === */
@media (max-width: 900px) {
  .swiss-head { grid-template-columns: 1fr; gap: 6px; }
  .hyb--hero, .hyb--span-6 { grid-column: span 12; }
  .hyb--span-3, .hyb--span-4 { grid-column: span 6; }
}
@media (max-width: 760px) {
  *, *::before, *::after { touch-action: manipulation; }
  body { overscroll-behavior-y: contain; }

  .door-panel { padding: 34px 20px 24px; border-radius: 6px; }
  .door-panel .bolt { display: none; }
  .door-panel .sku { font-size: 0.56rem; letter-spacing: 0.14em; top: 10px; }
  .door-title { font-size: 1.6rem; }
  .door-lead { font-size: 0.85rem; }
  .door-price { font-size: 1rem; padding: 9px 14px; }
  .door-btn { padding: 13px 16px; font-size: 0.9rem; width: 100%; }
  .door-cta-stack { flex-direction: column; }

  section { padding: 22px 0; }
  .container { padding: 0 12px; }
  .swiss-head { gap: 2px; margin-bottom: 12px; padding-bottom: 6px; }
  .swiss-no { font-size: 0.54rem; letter-spacing: 0.14em; }
  .swiss-title { font-size: 1.15rem; line-height: 1.1; }
  .swiss-title .sub { font-size: 0.78rem; margin-top: 3px; line-height: 1.4; }

  .hyb-grid { gap: 6px; }
  .hyb-cell { padding: 11px 12px; gap: 6px; border-radius: 6px; }
  .hyb--span-3, .hyb--span-4 { grid-column: span 6; }
  .hyb--hero, .hyb--span-6, .hyb--span-12 { grid-column: span 12; }
  .hyb-name { font-size: 0.85rem; }
  .hyb-sub { font-size: 0.7rem; line-height: 1.35; }
  .hyb-num { font-size: 1rem; }
  .hyb-label { font-size: 0.5rem; letter-spacing: 0.12em; margin-bottom: 4px; }
  .hyb-icon { width: 28px; height: 28px; border-radius: 6px; }
  .hyb-icon svg { width: 14px; height: 14px; }
  .hyb-feats { display: none; }

  .tariff-amount { font-size: 1.3rem; margin-bottom: 2px; }
  .tariff-feats { font-size: 0.72rem; margin: 6px 0 8px; }
  .tariff-feats li { padding: 3px 0 3px 18px; }
  .tariff-feats li::before { top: 7px; width: 12px; height: 12px; }
  .tariff-btn { padding: 9px 12px; font-size: 0.78rem; min-height: 40px; }

  .faq-list { gap: 4px; }
  .faq-q { padding: 10px 12px; gap: 10px; min-height: 44px; align-items: center; }
  .faq-q .q-num { font-size: 0.56rem; min-width: 24px; }
  .faq-q .q-text { font-size: 0.85rem; line-height: 1.3; }
  .faq-q .chev { width: 18px; height: 18px; }
  .faq-a p { padding: 0 12px 12px 46px; font-size: 0.8rem; line-height: 1.5; }

  .contact-tile { gap: 8px; }
  .contact-tile .ic { width: 28px; height: 28px; }
  .contact-tile .ic svg { width: 13px; height: 13px; }
  .contact-tile .label { font-size: 0.5rem; letter-spacing: 0.12em; margin-bottom: 1px; }
  .contact-tile .val { font-size: 0.78rem; line-height: 1.2; }

  .contact-form { grid-template-columns: 1fr; gap: 6px; }
  .field--full, .submit-btn, .form-status { grid-column: span 1; }
  .field label { font-size: 0.56rem; }
  .field input, .field textarea { font-size: 16px; padding: 9px 12px; min-height: 40px; }
  .field textarea { min-height: 60px; }
  .submit-btn { padding: 11px; font-size: 0.92rem; min-height: 44px; margin-top: 2px; }

  .footer { padding: 24px 0 96px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}
@media (max-width: 380px) {
  .door-title { font-size: 1.4rem; }
  .swiss-title { font-size: 1.05rem; }
  .hyb-cell { padding: 9px 10px; }
  .nav .logo { font-size: 0.88rem; }
  .nav-cta { padding: 6px 11px; font-size: 0.74rem; }
}
