/* ═══════════════════════════════════════════════════════
   7Art Design System v151
   Чистая система. Нет legacy. Mobile-first.
   ═══════════════════════════════════════════════════════ */

/* ── Токены ─────────────────────────────────────────── */
:root {
  --bg:        #090b10;
  --bg1:       #0e1118;
  --bg2:       #141822;
  --card:      rgba(255,255,255,.04);
  --card-hov:  rgba(255,255,255,.07);
  --border:    rgba(255,255,255,.09);
  --border2:   rgba(255,255,255,.14);
  --text:      #f0ede8;
  --muted:     rgba(240,237,232,.58);
  --muted2:    rgba(240,237,232,.36);
  --gold:      #c9943a;
  --gold2:     #e8b85a;
  --gold-dim:  rgba(201,148,58,.14);
  --radius-s:  12px;
  --radius-m:  18px;
  --radius-l:  26px;
  --radius-xl: 36px;
  --gap:       16px;
  --max:       1260px;
  --topbar-h:  64px;
  --ease:      cubic-bezier(.22,.68,0,1.1);
  --trans:     .2s var(--ease);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Skip link ───────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 8px; z-index: 999;
  padding: 8px 16px; border-radius: 8px;
  background: var(--gold); color: #000; font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ── Layout ──────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (max-width: 480px) { .wrap { padding: 0 16px; } }

.section { padding: 48px 0; }
.section + .section { padding-top: 0; }
.section-sm { padding: 28px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Typography ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--gold-dim); border: 1px solid rgba(201,148,58,.22);
  color: var(--gold2); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(38px, 6vw, 80px);
  line-height: .93; letter-spacing: -.06em;
  font-weight: 950; color: var(--text);
}
h2 {
  font-size: clamp(26px, 4vw, 48px);
  line-height: .96; letter-spacing: -.05em;
  font-weight: 900; color: var(--text);
}
h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.1; letter-spacing: -.04em;
  font-weight: 850;
}
.lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5; color: var(--muted);
  max-width: 58ch;
}
p { color: var(--muted); line-height: 1.6; }
small { font-size: 12px; color: var(--muted2); font-weight: 700; }

/* ── Section header ──────────────────────────────────── */
.section-head { margin-bottom: 28px; }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 10px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 10px auto 0; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 22px;
  border-radius: var(--radius-m); border: 1px solid transparent;
  font-size: 14px; font-weight: 850; line-height: 1;
  cursor: pointer; transition: var(--trans);
  white-space: nowrap; text-decoration: none;
  min-height: 48px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0c0e14; border-color: rgba(232,184,90,.3);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border-color: var(--border2);
}
.btn-outline:hover { background: var(--card-hov); border-color: rgba(255,255,255,.22); }
.btn-ghost {
  background: var(--card); color: var(--muted);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--card-hov); color: var(--text); }
.btn-lg { min-height: 56px; padding: 16px 28px; font-size: 15px; border-radius: var(--radius-l); }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 24px;
  transition: border-color var(--trans), background var(--trans);
}
.card:hover { border-color: var(--border2); background: var(--card-hov); }
.card-link {
  display: block; text-decoration: none;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: 24px;
  transition: border-color var(--trans), transform var(--trans);
}
.card-link:hover { border-color: var(--border2); transform: translateY(-3px); }
.card-gold {
  background: linear-gradient(135deg, rgba(201,148,58,.1), rgba(201,148,58,.04));
  border-color: rgba(201,148,58,.2);
}

/* ── Tags ────────────────────────────────────────────── */
.tag {
  display: inline-flex; padding: 7px 12px;
  border-radius: 999px; background: var(--card);
  border: 1px solid var(--border); color: var(--muted);
  font-size: 13px; font-weight: 800;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 90;
  height: var(--topbar-h);
  background: rgba(9,11,16,.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.topbar-inner {
  display: flex; align-items: center; gap: 16px;
  height: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px;
}
.brand {
  display: flex; flex-direction: column; line-height: 1;
  text-decoration: none; flex-shrink: 0;
}
.brand strong { font-size: 20px; font-weight: 950; letter-spacing: -.05em; color: #fff; }
.brand small { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted2); margin-top: 2px; }

.topbar-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.topbar-nav a {
  padding: 8px 12px; border-radius: var(--radius-s);
  font-size: 13px; font-weight: 800; color: var(--muted);
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.topbar-nav a:hover, .topbar-nav a[aria-current="page"] { background: var(--card-hov); color: var(--text); }
.topbar-nav .nav-express { color: var(--gold); }
.topbar-nav .nav-express:hover { background: var(--gold-dim); color: var(--gold2); }

.topbar-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.topbar-phone { font-size: 13px; font-weight: 800; color: var(--muted); white-space: nowrap; }
@media (max-width: 1100px) { .topbar-phone { display: none; } }

/* ── Mobile nav button ───────────────────────────────── */
.btn-menu {
  display: none; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--radius-m);
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 13px; font-weight: 800;
}
@media (max-width: 860px) {
  .topbar-nav { display: none; }
  .btn-menu { display: flex; }
  .topbar-phone { display: none; }
}

/* ── Mobile drawer ───────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 96;
  width: min(340px, 92vw);
  background: var(--bg1); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.drawer-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 20px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
}
.drawer-nav { flex: 1; overflow-y: auto; padding: 12px; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-m);
  font-size: 15px; font-weight: 800; color: var(--muted);
  transition: background var(--trans), color var(--trans);
  margin-bottom: 2px;
}
.drawer-nav a:hover, .drawer-nav a.active { background: var(--card-hov); color: var(--text); }
.drawer-nav .nav-express { color: var(--gold); }
.drawer-nav .nav-express:hover { background: var(--gold-dim); color: var(--gold2); }
.drawer-nav .nav-sep { height: 1px; background: var(--border); margin: 8px 0; }
.drawer-actions {
  padding: 16px 20px 32px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-actions .btn { justify-content: center; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding: 40px 0 32px;
  background: radial-gradient(ellipse at 80% -10%, rgba(201,148,58,.12), transparent 40%),
              radial-gradient(ellipse at -10% 90%, rgba(60,90,160,.1), transparent 40%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; align-items: stretch;
}
@media (max-width: 860px) { .hero-layout { grid-template-columns: 1fr; } }

.hero-copy {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  display: flex; flex-direction: column; min-height: 640px;
}
@media (max-width: 860px) { .hero-copy { min-height: auto; padding: 24px; } }

.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-addr {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-size: 12px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy .lead { margin-bottom: 24px; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: auto; }
.hero-chips span {
  padding: 8px 13px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 12px; font-weight: 800; color: var(--muted);
}

.hero-dirs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
}
.hero-dir {
  padding: 16px; border-radius: var(--radius-m);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  text-decoration: none; transition: var(--trans);
}
.hero-dir:hover { background: var(--card-hov); border-color: var(--border2); }
.hero-dir strong { display: block; font-size: 16px; font-weight: 850; letter-spacing: -.03em; margin-bottom: 4px; }
.hero-dir span { display: block; font-size: 12px; font-weight: 700; color: var(--muted); line-height: 1.35; }

/* Hero slider */
.hero-visual {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  min-height: 640px;
}
@media (max-width: 860px) { .hero-visual { min-height: 300px; } }

.hero-badge {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%); z-index: 4;
  padding: 10px 20px; border-radius: var(--radius-m);
  background: rgba(9,11,16,.85); border: 1px solid var(--border);
  font-size: 13px; font-weight: 900; letter-spacing: -.02em;
  white-space: nowrap; backdrop-filter: blur(12px);
}

.slider { position: relative; height: 100%; min-height: inherit; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s ease;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(9,11,16,.85) 100%);
}
.slide-cap {
  position: absolute; bottom: 116px; left: 20px; right: 20px; z-index: 3;
  padding: 14px 18px; border-radius: var(--radius-m);
  background: rgba(9,11,16,.72); border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.slide-cap strong { display: block; font-size: 16px; font-weight: 900; letter-spacing: -.03em; }
.slide-cap span { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }

.slider-dots {
  position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; gap: 6px;
}
.slider-dots button {
  width: 7px; height: 7px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.28); transition: all .22s; padding: 0;
}
.slider-dots button.active { width: 22px; border-radius: 4px; background: var(--gold); }

.slide-links {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 5;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.slide-link {
  padding: 12px 14px; border-radius: var(--radius-m);
  background: rgba(9,11,16,.88); border: 1px solid var(--border);
  text-decoration: none; transition: var(--trans);
}
.slide-link:hover { border-color: var(--border2); background: rgba(20,24,34,.95); }
.slide-link strong { display: block; font-size: 14px; font-weight: 900; letter-spacing: -.03em; }
.slide-link span { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin-top: 3px; }

/* ── SERVICES GRID ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px; border-radius: var(--radius-l);
  background: var(--card); border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color var(--trans), transform var(--trans), background var(--trans);
}
.service-card:hover { border-color: var(--border2); transform: translateY(-3px); background: var(--card-hov); }
.service-card .icon { font-size: 28px; line-height: 1; }
.service-card h3 { margin-top: 4px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.service-card .price { font-size: 13px; font-weight: 850; color: var(--gold2); margin-top: auto; padding-top: 10px; }

/* ── ROUTE CARDS ─────────────────────────────────────── */
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .route-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .route-grid { grid-template-columns: 1fr; } }

.route-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px; border-radius: var(--radius-xl);
  background: var(--card); border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color var(--trans), transform var(--trans);
}
.route-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.route-card em { font-style: normal; font-size: 11px; font-weight: 900; color: var(--muted2); letter-spacing: .12em; text-transform: uppercase; }
.route-card h3 { font-size: clamp(20px, 2.5vw, 26px); letter-spacing: -.05em; }
.route-card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; margin-top: 4px; }
.route-card .arrow { font-size: 12px; font-weight: 900; color: var(--gold); margin-top: auto; padding-top: 12px; }
.route-card-accent { background: linear-gradient(135deg, rgba(201,148,58,.1), rgba(201,148,58,.04)); border-color: rgba(201,148,58,.2); }

/* ── STEPS ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 24px; border-radius: var(--radius-l);
  background: var(--card); border: 1px solid var(--border);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(201,148,58,.22);
  color: var(--gold2); font-size: 16px; font-weight: 950;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); }

/* ── STATS ───────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 22px; border-radius: var(--radius-l);
  background: var(--card); border: 1px solid var(--border); text-align: center;
}
.stat-num { font-size: clamp(32px, 4vw, 48px); font-weight: 950; letter-spacing: -.06em; color: var(--text); line-height: 1; }
.stat-label { font-size: 12px; font-weight: 800; color: var(--muted); margin-top: 6px; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
.review {
  padding: 22px; border-radius: var(--radius-l);
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--muted); flex: 1; }
.review-author { padding-top: 12px; border-top: 1px solid var(--border); }
.review-author strong { display: block; font-size: 13px; color: var(--text); }
.review-author span { font-size: 12px; color: var(--muted2); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border-radius: var(--radius-l); overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: 0; color: var(--text);
  font-size: 15px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background var(--trans);
}
.faq-q:hover { background: var(--card-hov); }
.faq-q .chev { flex-shrink: 0; font-size: 20px; color: var(--muted2); transition: transform .22s; line-height: 1; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--gold); }
.faq-a { padding: 0 22px 18px; font-size: 14px; line-height: 1.6; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }

/* ── FORM ────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 800; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px; border-radius: var(--radius-m);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; font-weight: 600;
  transition: border-color var(--trans), background var(--trans);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: rgba(201,148,58,.4); background: rgba(255,255,255,.07);
}
.form-field select option { background: var(--bg1); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 12px; font-weight: 700; color: var(--muted2); text-align: center; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-m); font-size: 14px; font-weight: 800; }
.form-msg.ok { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.22); color: #4ade80; }
.form-msg.err { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.22); color: #f87171; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── PROOF SECTION ───────────────────────────────────── */
.proof-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 720px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proof-imgs img { border-radius: var(--radius-l); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ── REQUEST SECTION ─────────────────────────────────── */
.request-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start;
}
@media (max-width: 760px) { .request-grid { grid-template-columns: 1fr; gap: 28px; } }
.request-copy h2 { margin-bottom: 12px; }
.request-copy ul { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.request-copy li { font-size: 14px; color: var(--muted); padding-left: 18px; position: relative; }
.request-copy li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.request-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ── ALT SECTION ─────────────────────────────────────── */
.alt-bg {
  background: var(--bg1);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  padding: 32px 0 24px; border-top: 1px solid var(--border);
  background: var(--bg1);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
}
.footer-brand strong { font-size: 18px; font-weight: 950; letter-spacing: -.04em; color: var(--text); }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 6px; max-width: 38ch; line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px 0; flex-direction: column; }
.footer-links a { font-size: 13px; font-weight: 800; color: var(--muted); padding: 4px 0; transition: color var(--trans); }
.footer-links a:hover { color: var(--text); }
.footer-cols { display: flex; gap: 40px; }
@media (max-width: 640px) { .footer-inner { flex-direction: column; gap: 24px; } .footer-cols { gap: 28px; } }
.footer-bottom {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted2); font-weight: 700;
}

/* ── MOBILE DOCK ─────────────────────────────────────── */
.mobile-dock {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 88;
  background: rgba(14,17,24,.94); border: 1px solid var(--border2);
  border-radius: var(--radius-xl); backdrop-filter: blur(16px);
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.mobile-dock-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.mobile-dock a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 10px 6px; border-radius: var(--radius-m);
  text-decoration: none; transition: background var(--trans);
  min-height: 56px;
}
.mobile-dock a:hover, .mobile-dock a.active { background: var(--card-hov); }
.mobile-dock strong { font-size: 12px; font-weight: 850; color: var(--text); line-height: 1; }
.mobile-dock span { font-size: 10px; font-weight: 700; color: var(--muted2); line-height: 1; }
.mobile-dock .dock-cta { background: var(--gold-dim); border: 1px solid rgba(201,148,58,.22); }
.mobile-dock .dock-cta strong { color: var(--gold2); }
@media (max-width: 860px) {
  .mobile-dock { display: block; }
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
}

/* ── FLOATING CTA ────────────────────────────────────── */
.floating-cta {
  position: fixed; right: 20px; bottom: 98px; z-index: 85;
  display: flex; flex-direction: column; gap: 10px;
}
.floating-cta a {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transition: transform var(--trans), box-shadow var(--trans);
}
.floating-cta a:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 12px 36px rgba(0,0,0,.5); }
.fc-tg { background: linear-gradient(135deg, #2ca5e0, #1a7abf); }
.fc-wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.floating-cta svg { width: 24px; height: 24px; fill: #fff; }
@media (max-width: 860px) {
  .floating-cta { right: 12px; bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .floating-cta a { width: 48px; height: 48px; }
  .floating-cta svg { width: 20px; height: 20px; }
}

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 14px 0; font-size: 13px; font-weight: 800; color: var(--muted2);
  border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--muted2); font-size: 11px; }

/* ── UTILITIES ───────────────────────────────────────── */
.mt-auto { margin-top: auto; }
.text-gold { color: var(--gold2); }
.text-muted { color: var(--muted); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ── REVEAL ANIMATION ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── DARK SECTION (alt) ──────────────────────────────── */
.section-dark {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── PRICING TABLE ───────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th {
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted2); border-bottom: 1px solid var(--border);
}
.price-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.05); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.price-table td:first-child { font-weight: 800; color: var(--text); }

/* ── CALCULATOR ──────────────────────────────────────── */
.calc-wrap { padding: 28px; border-radius: var(--radius-xl); background: var(--card); border: 1px solid var(--border); }
.calc-types { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-type {
  padding: 10px 18px; border-radius: var(--radius-m);
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 14px; font-weight: 800; cursor: pointer;
  transition: var(--trans);
}
.calc-type:hover { border-color: var(--border2); color: var(--text); }
.calc-type.active { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #0c0e14; border-color: transparent; }
.calc-params { margin-top: 20px; display: grid; gap: 16px; }
.calc-param-label { font-size: 13px; font-weight: 800; color: var(--muted); margin-bottom: 8px; }
.calc-opts { display: flex; flex-wrap: wrap; gap: 7px; }
.calc-opt {
  padding: 9px 15px; border-radius: var(--radius-m);
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 13px; font-weight: 800; cursor: pointer;
  transition: var(--trans);
}
.calc-opt:hover { border-color: var(--border2); color: var(--text); }
.calc-opt.active { background: rgba(201,148,58,.15); border-color: rgba(201,148,58,.3); color: var(--gold2); }
.calc-result {
  margin-top: 22px; padding: 20px; border-radius: var(--radius-l);
  background: var(--gold-dim); border: 1px solid rgba(201,148,58,.22);
}
.calc-result-price {
  font-size: clamp(36px, 5vw, 52px); font-weight: 950;
  letter-spacing: -.06em; color: var(--text); line-height: 1;
}
.calc-result-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.calc-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ── CONTACTS PAGE ───────────────────────────────────── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 28px; align-items: start; }
@media (max-width: 720px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: var(--radius-s);
  background: var(--gold-dim); border: 1px solid rgba(201,148,58,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-text label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--muted2); }
.contact-item-text p { font-size: 15px; font-weight: 800; color: var(--text); margin-top: 2px; }
.contact-item-text a { color: var(--text); text-decoration: none; }
.contact-item-text a:hover { color: var(--gold2); }

/* ── MAP ─────────────────────────────────────────────── */
.map-frame { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border); }
.map-frame iframe { display: block; width: 100%; border: 0; }

/* ── Base compatibility layer ──────────────────────────
   Маппинг старых классов на новую систему               */

/* Sections */
.v52-section, .v53-home-focus { padding: 48px 0; }
.v52-section + .v52-section { padding-top: 0; }
.v52-section-head { margin-bottom: 28px; }
.v52-section-head > span { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--gold-dim); border: 1px solid rgba(201,148,58,.22); color: var(--gold2); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.v52-section-head h2 { font-size: clamp(26px,4vw,48px); line-height:.96; letter-spacing:-.05em; font-weight:900; color:var(--text); margin-top: 10px; }
.v52-section-head p { color: var(--muted); margin-top: 8px; }
.v53-section-head-tight { margin-bottom: 18px; }

/* Route cards */
.v52-route-grid, .v53-route-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.v52-route-card, .v53-route-card { display:flex; flex-direction:column; gap:8px; padding:26px; border-radius:var(--radius-xl); background:var(--card); border:1px solid var(--border); text-decoration:none; transition: border-color var(--trans), transform var(--trans); }
.v52-route-card:hover { border-color:var(--border2); transform:translateY(-3px); }
.v52-route-card em { font-style:normal; font-size:11px; font-weight:900; color:var(--muted2); letter-spacing:.12em; text-transform:uppercase; }
.v52-route-card strong, .v52-route-card h3 { font-size:clamp(20px,2.5vw,26px); letter-spacing:-.05em; color:var(--text); }
.v52-route-card p { font-size:13px; color:var(--muted); line-height:1.5; flex:1; margin-top:4px; }
.v52-route-card > span { font-size:12px; font-weight:900; color:var(--gold); margin-top:auto; padding-top:12px; }
.v52-route-card-dark { background:linear-gradient(135deg,rgba(201,148,58,.1),rgba(201,148,58,.04)); border-color:rgba(201,148,58,.2); }

/* Services grid */
.v52-services-clear, .v53-services-clear { padding: 48px 0; }
.v52-services-grid, .v53-services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.v52-services-grid a { display:flex; flex-direction:column; gap:6px; padding:20px; border-radius:var(--radius-l); background:var(--card); border:1px solid var(--border); text-decoration:none; transition:var(--trans); }
.v52-services-grid a:hover { border-color:var(--border2); transform:translateY(-2px); }
.v52-services-grid strong { display:block; font-size:16px; font-weight:850; letter-spacing:-.03em; color:var(--text); }
.v52-services-grid span { font-size:13px; color:var(--muted); }

/* Process */
.v52-process, .v52-proof { padding: 48px 0; }
.v52-process-box { display:grid; grid-template-columns:1fr 1.4fr; gap:40px; align-items:start; padding:32px; border-radius:var(--radius-xl); background:var(--card); border:1px solid var(--border); }
.v52-steps { display:grid; gap:12px; }
.v52-steps article { padding:20px; border-radius:var(--radius-l); background:var(--bg1); border:1px solid var(--border); }
.v52-steps article b { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background:var(--gold-dim); border:1px solid rgba(201,148,58,.22); color:var(--gold2); font-size:15px; font-weight:950; margin-bottom:10px; }
.v52-steps article strong { display:block; font-size:16px; font-weight:850; color:var(--text); margin-bottom:6px; }
.v52-steps article p { font-size:13px; color:var(--muted); }

/* Proof */
.v52-proof-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; }
.v52-proof-copy h2 { font-size:clamp(24px,3vw,40px); letter-spacing:-.05em; margin-bottom:12px; }
.v52-proof-copy p { color:var(--muted); line-height:1.6; }
.v52-proof-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.v52-proof-tags span { padding:8px 13px; border-radius:999px; background:var(--card); border:1px solid var(--border); font-size:12px; font-weight:800; color:var(--muted); }
.v52-proof-images { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.v52-proof-images img { border-radius:var(--radius-l); aspect-ratio:4/3; object-fit:cover; width:100%; }

/* Request */
.v52-request-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:40px; align-items:start; }
.v52-request-copy h2 { font-size:clamp(24px,3vw,40px); letter-spacing:-.05em; margin-bottom:12px; }
.v52-request-copy p { color:var(--muted); margin-bottom:12px; }
.v52-request-copy ul { margin:12px 0; display:flex; flex-direction:column; gap:8px; }
.v52-request-copy li { font-size:14px; color:var(--muted); padding-left:18px; position:relative; }
.v52-request-copy li::before { content:'—'; position:absolute; left:0; color:var(--gold); }

/* Forms */
.v52-form { display:flex; flex-direction:column; gap:14px; }
.v52-form label { display:flex; flex-direction:column; gap:6px; font-size:13px; font-weight:800; color:var(--muted); }
.v52-form input, .v52-form select, .v52-form textarea { padding:13px 16px; border-radius:var(--radius-m); background:rgba(255,255,255,.05); border:1px solid var(--border); color:var(--text); font-size:14px; font-weight:600; transition:var(--trans); appearance:none; }
.v52-form input:focus, .v52-form select:focus, .v52-form textarea:focus { outline:none; border-color:rgba(201,148,58,.4); background:rgba(255,255,255,.07); }
.v52-form select option { background:var(--bg1); color:var(--text); }
.v52-form textarea { resize:vertical; min-height:96px; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-note { font-size:12px; font-weight:700; color:var(--muted2); text-align:center; }
.form-message { margin-top:8px; padding:12px 16px; border-radius:var(--radius-m); font-size:14px; font-weight:800; }

/* Kicker */
.v52-kicker { display:inline-flex; align-items:center; gap:8px; padding:7px 14px; border-radius:999px; background:var(--gold-dim); border:1px solid rgba(201,148,58,.22); color:var(--gold2); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }

/* Hero */
.v52-hero, .v53-hero, .v55-hero { padding: 80px 0 32px; }
.v55-hero-shell { display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:stretch; }
.v55-hero-copy { background:var(--card); border:1px solid var(--border); border-radius:var(--radius-xl); padding:32px; min-height:640px; display:flex; flex-direction:column; }
.v55-hero-visual { position:relative; background:var(--card); border:1px solid var(--border); border-radius:var(--radius-xl); overflow:hidden; min-height:640px; }
.v55-hero-copy h1 { font-size:clamp(38px,6vw,80px); line-height:.93; letter-spacing:-.06em; font-weight:950; margin-bottom:16px; }
.v55-hero-copy p { color:var(--muted); font-size:clamp(15px,1.8vw,19px); line-height:1.45; margin-bottom:22px; }
.v55-hero-actions { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px; }
.v55-hero-points { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:auto; }
.v55-hero-points span { padding:8px 13px; border-radius:999px; background:var(--card); border:1px solid var(--border); font-size:12px; font-weight:800; color:var(--muted); }
.v55-hero-quickgrid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:18px; padding-top:18px; border-top:1px solid var(--border); }
.v55-hero-quickgrid a { padding:16px; border-radius:var(--radius-m); background:rgba(255,255,255,.04); border:1px solid var(--border); text-decoration:none; transition:var(--trans); }
.v55-hero-quickgrid a:hover { background:var(--card-hov); border-color:var(--border2); }
.v55-hero-quickgrid strong { display:block; font-size:16px; font-weight:850; letter-spacing:-.03em; margin-bottom:4px; }
.v55-hero-quickgrid span { display:block; font-size:12px; font-weight:700; color:var(--muted); line-height:1.35; }
.v55-hero-brandline { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-bottom:18px; }
.v55-hero-address { display:inline-flex; align-items:center; gap:6px; padding:7px 12px; border-radius:999px; background:rgba(255,255,255,.05); border:1px solid var(--border); font-size:12px; font-weight:800; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }

/* Slider */
.v53-hero-slider, .v55-hero-slider { position:relative; height:100%; min-height:inherit; }
.v53-hero-slide { position:absolute; inset:0; opacity:0; transition:opacity .8s ease; }
.v53-hero-slide.is-active { opacity:1; }
.v53-hero-slide img { width:100%; height:100%; object-fit:cover; }
.v53-hero-slide::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent 40%,rgba(9,11,16,.85) 100%); }
.v53-hero-slide figcaption { position:absolute; bottom:116px; left:20px; right:20px; z-index:3; padding:14px 18px; border-radius:var(--radius-m); background:rgba(9,11,16,.72); border:1px solid var(--border); backdrop-filter:blur(10px); }
.v53-hero-slide figcaption strong { display:block; font-size:16px; font-weight:900; }
.v53-hero-slide figcaption span { display:block; font-size:13px; color:var(--muted); margin-top:3px; }
.v53-hero-dots, .v55-hero-dots { position:absolute; bottom:88px; left:50%; transform:translateX(-50%); z-index:5; display:flex; gap:6px; }
.v53-hero-dots button, .v55-hero-dots button { width:7px; height:7px; border-radius:50%; border:0; background:rgba(255,255,255,.28); transition:all .22s; padding:0; }
.v53-hero-dots button.is-active, .v55-hero-dots button.active { width:22px; border-radius:4px; background:var(--gold); }

/* Mini-cards */
.v55-hero-mini-cards { position:absolute; left:20px; right:20px; bottom:20px; z-index:5; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.v55-mini-card { padding:12px 14px; border-radius:var(--radius-m); background:rgba(9,11,16,.88); border:1px solid var(--border); text-decoration:none; transition:var(--trans); }
.v55-mini-card:hover { border-color:var(--border2); }
.v55-mini-card strong { display:block; font-size:14px; font-weight:900; }
.v55-mini-card span { display:block; font-size:11px; font-weight:700; color:var(--muted); margin-top:3px; }

/* Strap */
.v55-hero-strap { position:absolute; top:20px; left:50%; transform:translateX(-50%); z-index:4; padding:10px 20px; border-radius:var(--radius-m); background:rgba(9,11,16,.85); border:1px solid var(--border); font-size:13px; font-weight:900; white-space:nowrap; backdrop-filter:blur(12px); }

/* Footer compat */
.footer-inner { display:flex; justify-content:space-between; align-items:flex-start; gap:32px; flex-wrap:wrap; }
.footer-links { display:flex; flex-wrap:wrap; gap:4px 0; flex-direction:column; }
.footer-links a { font-size:13px; font-weight:800; color:var(--muted); padding:4px 0; transition:color var(--trans); }
.footer-links a:hover { color:var(--text); }
.footer-brand strong { font-size:18px; font-weight:950; letter-spacing:-.04em; color:var(--text); }
.footer-brand p { font-size:13px; color:var(--muted); margin-top:6px; max-width:38ch; line-height:1.5; }
.footer-bottom { margin-top:24px; padding-top:18px; border-top:1px solid var(--border); font-size:12px; color:var(--muted2); font-weight:700; }

/* Buttons compat */
.btn-primary { background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#0c0e14; border-color:rgba(232,184,90,.3); }
.btn-primary:hover { filter:brightness(1.08); transform:translateY(-1px); }
.btn-secondary { background:transparent; color:var(--text); border-color:var(--border2); }
.btn-secondary:hover { background:var(--card-hov); border-color:rgba(255,255,255,.22); }

/* Alt bg */
.v52-proof, .v52-process, .v52-request { background: var(--bg1); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

/* Mobile dock compat */
.mobile-conversion-dock { display:none; position:fixed; left:12px; right:12px; bottom:12px; z-index:88; background:rgba(14,17,24,.94); border:1px solid var(--border2); border-radius:var(--radius-xl); backdrop-filter:blur(16px); padding:8px; box-shadow:0 8px 32px rgba(0,0,0,.4); }
.mobile-conversion-dock > a { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; padding:10px 6px; border-radius:var(--radius-m); text-decoration:none; min-height:56px; }
.mobile-conversion-dock strong { font-size:12px; font-weight:850; color:var(--text); line-height:1; }
.mobile-conversion-dock span { font-size:10px; font-weight:700; color:var(--muted2); line-height:1; }

/* Responsive compat */
@media (max-width:900px) {
  .v52-route-grid,.v53-route-grid { grid-template-columns:1fr 1fr; }
  .v52-services-grid,.v53-services-grid { grid-template-columns:1fr 1fr; }
  .v52-process-box { grid-template-columns:1fr; }
  .v52-proof-grid { grid-template-columns:1fr; }
  .v52-request-grid { grid-template-columns:1fr; }
  .form-grid-2 { grid-template-columns:1fr; }
  .v55-hero-shell { grid-template-columns:1fr; }
  .v55-hero-copy,.v55-hero-visual { min-height:auto; }
  .v55-hero-visual { min-height:300px; }
}
@media (max-width:560px) {
  .v52-route-grid,.v53-route-grid,.v52-services-grid,.v53-services-grid { grid-template-columns:1fr; }
  .mobile-conversion-dock { display:flex; gap:0; }
  .mobile-conversion-dock > a { flex:1; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom,0px)); }
}
@media (max-width:860px) {
  .mobile-conversion-dock { display:flex; gap:0; }
  .mobile-conversion-dock > a { flex:1; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom,0px)); }
}

/* ═══════════════════════════════════════════════════════
   7Art production polish
   Base: V61 mobile direction. Goal: keep structure, fix legacy pages,
   improve desktop/mobile rhythm and catalog presentation.
   ═══════════════════════════════════════════════════════ */
:root{
  --surface: rgba(255,255,255,.055);
  --surface-2: rgba(255,255,255,.075);
  --hairline: rgba(255,255,255,.10);
  --hairline-2: rgba(255,255,255,.16);
  --shadow-soft: 0 18px 54px rgba(0,0,0,.28);
  --shadow-card: 0 10px 34px rgba(0,0,0,.20);
}
html,body{max-width:100%;overflow-x:hidden;}
body{
  background:
    radial-gradient(circle at 12% -8%, rgba(232,184,90,.10), transparent 24%),
    radial-gradient(circle at 96% 2%, rgba(82,116,186,.12), transparent 26%),
    linear-gradient(180deg,#080a10 0%, #0c1018 48%, #0a0d13 100%);
}
.container{max-width:var(--max);margin:0 auto;padding:0 20px;}
@media(max-width:480px){.container{padding:0 16px;}}
.nav{display:flex;align-items:center;gap:2px;margin:0 auto;}
.nav a{padding:8px 12px;border-radius:var(--radius-s);font-size:13px;font-weight:800;color:var(--muted);white-space:nowrap;transition:background var(--trans),color var(--trans);}
.nav a:hover,.nav a[aria-current="page"]{background:var(--card-hov);color:var(--text);}
.brand-text,.brand-copy{display:flex;flex-direction:column;line-height:1;}
.brand-copy strong{font-size:20px;font-weight:950;letter-spacing:-.05em;color:#fff;}
.brand-copy small{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--muted2);margin-top:2px;}
.btn-primary{background:linear-gradient(135deg,var(--gold),var(--gold2));color:#0c0e14!important;border-color:rgba(232,184,90,.30);}
.btn-secondary{background:transparent;color:var(--text)!important;border-color:var(--border2)!important;}
.btn-secondary:hover{background:var(--card-hov);border-color:rgba(255,255,255,.22)!important;}
.input,.select{width:100%;padding:13px 16px;border-radius:var(--radius-m);background:rgba(255,255,255,.055);border:1px solid var(--border);color:var(--text);font-size:14px;font-weight:650;transition:border-color var(--trans),background var(--trans),box-shadow var(--trans);}
.input:focus,.select:focus,input:focus,select:focus,textarea:focus,button:focus-visible,a:focus-visible{outline:2px solid rgba(232,184,90,.42);outline-offset:3px;}
.select option{background:#111620;color:var(--text);}
.alt-bg{background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.035));border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.card,.service-card,.route-card,.step,.review,.stat,.price-guide-card,.finish-card,.faq-mini-card{
  box-shadow:var(--shadow-card);
}
.service-card,.route-card,.hero-dir,.slide-link,.v54-route-card,.product-card,.mini-collection-card,.top-pick-card{
  will-change:transform;
}
.service-card:hover,.route-card:hover,.hero-dir:hover,.slide-link:hover,.v54-route-card:hover,.product-card:hover,.mini-collection-card:hover,.top-pick-card:hover{
  transform:translateY(-2px);
}
.topbar{box-shadow:0 8px 28px rgba(0,0,0,.18);}
.topbar .btn,.topbar-actions .btn{min-height:42px;padding:11px 16px;border-radius:16px;}
@media(max-width:860px){
  .topbar{height:62px;}
  .topbar-inner{padding:0 14px;gap:10px;}
  .nav,.topbar-nav{display:none!important;}
  .topbar-actions{margin-left:auto;}
  .topbar-actions>.btn:not(.btn-menu),.topbar-actions>.btn-gold,.topbar-actions>.btn-primary{display:none!important;}
  .btn-menu{display:flex!important;min-height:42px;border-radius:18px;padding:10px 16px;}
  .brand strong,.brand-copy strong{font-size:19px;letter-spacing:-.045em;}
  .brand small,.brand-copy small{font-size:9px;max-width:180px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
}

/* Hero: keep V61 logic, tune desktop and mobile spacing */
.hero{padding:34px 0 34px;}
.hero-layout{gap:18px;}
.hero-copy,.hero-visual{border-color:rgba(255,255,255,.105);box-shadow:var(--shadow-soft);}
.hero-copy{background:linear-gradient(180deg,rgba(255,255,255,.062),rgba(255,255,255,.032));}
.hero-visual{background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));}
.hero-copy h1{max-width:680px;text-wrap:balance;}
.hero-copy .lead{text-wrap:pretty;}
.hero-btns .btn{flex:1 1 150px;}
.hero-chips span{background:rgba(255,255,255,.045);}
.hero-badge{max-width:calc(100% - 32px);text-overflow:ellipsis;overflow:hidden;}
.slide-cap{box-shadow:0 14px 34px rgba(0,0,0,.22);}
@media(min-width:1200px){
  .hero-layout{grid-template-columns:minmax(0,.92fr) minmax(520px,1.08fr);}
  .hero-copy,.hero-visual{min-height:650px;}
}
@media(max-width:860px){
  .hero{padding:18px 0 26px;}
  .hero-layout{gap:14px;}
  .hero-copy{padding:20px;border-radius:28px;}
  .hero-copy h1{font-size:clamp(35px,10.8vw,48px);line-height:.95;letter-spacing:-.055em;margin-bottom:12px;}
  .hero-copy .lead{font-size:15.5px;line-height:1.48;margin-bottom:18px;}
  .hero-meta{gap:8px;margin-bottom:16px;}
  .eyebrow,.hero-addr{font-size:10px;letter-spacing:.055em;padding:7px 10px;}
  .hero-btns{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-bottom:16px;}
  .hero-btns .btn{width:100%;min-height:52px;padding:11px 8px;border-radius:18px;font-size:12px;white-space:normal;text-align:center;line-height:1.05;}
  .hero-chips{gap:7px;margin-bottom:0;}
  .hero-chips span{font-size:11px;padding:7px 10px;}
  .hero-dirs{grid-template-columns:1fr;gap:8px;margin-top:16px;padding-top:16px;}
  .hero-dir{padding:14px;border-radius:18px;}
  .hero-dir strong{font-size:15px;}
  .hero-visual{min-height:590px;border-radius:28px;}
  .hero-badge{top:14px;padding:9px 12px;border-radius:16px;font-size:12px;white-space:normal;text-align:center;line-height:1.15;}
  .slide-cap{left:12px;right:12px;bottom:104px;padding:12px 13px;border-radius:16px;}
  .slide-cap strong{font-size:15px;}
  .slide-cap span{font-size:12px;}
  .slider-dots{bottom:86px;}
  .slide-links{left:12px;right:12px;bottom:12px;gap:7px;}
  .slide-link{padding:11px 9px;border-radius:16px;min-height:70px;display:flex;flex-direction:column;justify-content:center;}
  .slide-link strong{font-size:13px;}
  .slide-link span{font-size:10px;line-height:1.2;}
}
@media(max-width:390px){
  .hero-copy{padding:18px;}
  .hero-copy h1{font-size:33px;}
  .hero-btns .btn{font-size:11.5px;padding-left:6px;padding-right:6px;}
  .hero-visual{min-height:560px;}
}

/* Mobile drawer and bottom dock */
.mobile-drawer{box-shadow:-18px 0 60px rgba(0,0,0,.42);}
.drawer-nav a.active{background:var(--card-hov);color:#fff;border-color:var(--border2);}
.mobile-dock{padding-bottom:calc(8px + env(safe-area-inset-bottom,0px));}
.mobile-dock-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(70px,1fr));gap:5px;}
.mobile-dock a{min-width:0;}
.mobile-dock strong,.mobile-dock span{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
@media(max-width:430px){
  .mobile-dock{left:10px;right:10px;bottom:10px;border-radius:24px;padding:7px;}
  .mobile-dock a{min-height:54px;padding:9px 5px;border-radius:16px;}
  .mobile-dock strong{font-size:11.5px;}
  .mobile-dock span{font-size:9.5px;}
}
.floating-cta{filter:drop-shadow(0 18px 28px rgba(0,0,0,.28));}
@media(max-width:860px){.floating-cta{bottom:calc(94px + env(safe-area-inset-bottom,0px));}}

/* Generic page hero / legacy compatibility */
.home-hero-pro,.page-hero{padding:52px 0 34px;background:radial-gradient(circle at 86% -8%,rgba(232,184,90,.10),transparent 34%);}
.home-hero-pro-shell{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.78fr);gap:18px;align-items:stretch;}
.home-hero-copy,.home-visual-card,.print-order-copy,.print-order-form,.competitor-compare-card{background:linear-gradient(180deg,rgba(255,255,255,.060),rgba(255,255,255,.030));border:1px solid var(--border);border-radius:var(--radius-xl);box-shadow:var(--shadow-card);}
.home-hero-copy{padding:30px;display:flex;flex-direction:column;justify-content:center;min-height:360px;}
.home-hero-copy h1{font-size:clamp(34px,5vw,64px);text-wrap:balance;margin:12px 0 14px;}
.home-hero-copy p{font-size:17px;max-width:62ch;}
.hero-eyebrow,.kicker{display:inline-flex;width:max-content;max-width:100%;align-items:center;gap:8px;padding:7px 14px;border-radius:999px;background:var(--gold-dim);border:1px solid rgba(201,148,58,.22);color:var(--gold2);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;}
.home-visual-card{padding:12px;overflow:hidden;height:100%;}
.home-visual-card img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:28px;}
.price-guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.price-guide-card{display:flex;flex-direction:column;gap:12px;min-height:250px;}
.price-guide-top{display:flex;justify-content:space-between;gap:10px;align-items:flex-start;}
.price-guide-top span{font-size:17px;font-weight:950;color:#fff;}
.price-guide-top em{font-style:normal;font-size:12px;color:var(--muted2);font-weight:800;text-align:right;}
.price-guide-card strong{font-size:21px;line-height:1.08;letter-spacing:-.035em;}
.direction-chips{display:flex;flex-wrap:wrap;gap:7px;margin-top:auto;}
.direction-chips em{font-style:normal;padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:11px;font-weight:800;color:var(--muted);}
.price-guide-card a{font-size:13px;font-weight:900;color:var(--gold2);}
.print-order-layout{display:grid;grid-template-columns:minmax(0,.85fr) minmax(420px,1.15fr);gap:18px;align-items:start;}
.print-order-copy,.print-order-form{padding:24px;}
.print-order-copy h2{margin:12px 0;}
.print-order-form label{display:flex;flex-direction:column;gap:6px;font-size:13px;font-weight:850;color:var(--muted);}
.print-order-form{display:flex;flex-direction:column;gap:14px;}
.print-order-form input,.print-order-form select,.print-order-form textarea{padding:13px 16px;border-radius:var(--radius-m);background:rgba(255,255,255,.055);border:1px solid var(--border);color:var(--text);}
.compare-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:18px;}
.compare-steps article{padding:18px;border-radius:var(--radius-m);background:rgba(255,255,255,.045);border:1px solid var(--border);}
.compare-steps strong{display:block;color:var(--gold2);font-size:24px;}
.compare-steps span{display:block;color:var(--muted);font-size:13px;font-weight:800;}
.contacts-grid{display:grid;grid-template-columns:minmax(0,.86fr) minmax(360px,1.14fr);gap:24px;align-items:stretch;}
.map-frame,.map-frame iframe{border-radius:var(--radius-xl);overflow:hidden;border:1px solid var(--border);background:var(--card);}
.contact-item{background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:18px;padding:14px;margin-bottom:10px;}
.contact-item-icon{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;border-radius:12px;background:var(--gold-dim);margin-right:10px;float:left;}
.contact-item-text label{display:block;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted2);font-weight:900;margin-bottom:3px;}
@media(max-width:900px){
  .home-hero-pro-shell,.print-order-layout,.contacts-grid{grid-template-columns:1fr;}
  .price-guide-grid{grid-template-columns:1fr 1fr;}
  .home-hero-pro{padding:28px 0 22px;}
  .home-hero-copy{min-height:0;padding:22px;border-radius:28px;}
}
@media(max-width:560px){
  .price-guide-grid,.compare-steps{grid-template-columns:1fr;}
  .home-visual-card img{min-height:260px;}
  .hero-actions{display:grid;grid-template-columns:1fr;}
}

/* V54 shop/catalog compatibility and visual polish */
.site-breadcrumbs{display:flex;align-items:center;gap:8px;padding:16px 20px 0;color:var(--muted2);font-size:13px;font-weight:800;}
.site-breadcrumbs a{color:var(--muted);}
.v54-shop-hero{padding:28px 0 26px;background:radial-gradient(circle at 88% 0,rgba(232,184,90,.10),transparent 32%);}
.v54-shop-hero-grid{display:grid;grid-template-columns:minmax(0,.86fr) minmax(420px,1.14fr);gap:18px;align-items:stretch;}
.v54-shop-hero-copy,.v54-shop-hero-visual,.v54-quick-panel,.v54-form-card,.sales-cta-card{background:linear-gradient(180deg,rgba(255,255,255,.060),rgba(255,255,255,.030));border:1px solid var(--border);border-radius:var(--radius-xl);box-shadow:var(--shadow-soft);}
.v54-shop-hero-copy{padding:30px;display:flex;flex-direction:column;justify-content:center;min-height:520px;}
.v54-kicker,.v54-section-head>span{display:inline-flex;width:max-content;max-width:100%;align-items:center;gap:8px;padding:7px 14px;border-radius:999px;background:var(--gold-dim);border:1px solid rgba(201,148,58,.22);color:var(--gold2);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;}
.v54-shop-hero-copy h1{font-size:clamp(36px,5.5vw,68px);line-height:.94;letter-spacing:-.06em;margin:18px 0 14px;text-wrap:balance;}
.v54-shop-hero-copy p{font-size:17px;max-width:62ch;}
.v54-shop-hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;}
.v54-shop-hero-actions .btn{flex:1 1 150px;}
.v54-shop-hero-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:22px;}
.v54-shop-hero-facts span{padding:13px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:12px;color:var(--muted);font-weight:800;}
.v54-shop-hero-facts strong{display:block;color:#fff;font-size:18px;line-height:1.05;margin-bottom:3px;}
.v54-shop-hero-visual{position:relative;min-height:520px;padding:12px;display:grid;grid-template-columns:1.1fr .9fr;grid-template-rows:1fr 1fr;gap:10px;overflow:hidden;}
.v54-hero-tile{position:relative;overflow:hidden;border-radius:24px;border:1px solid var(--border);background:var(--card);min-height:0;}
.v54-hero-tile img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.v54-hero-tile:hover img{transform:scale(1.035);}
.v54-hero-tile span{position:absolute;left:10px;right:10px;bottom:10px;padding:9px 10px;border-radius:14px;background:rgba(7,10,16,.74);border:1px solid rgba(255,255,255,.10);font-size:12px;font-weight:850;color:#fff;backdrop-filter:blur(10px);}
.v54-hero-tile-1{grid-row:span 2;}
.v54-visual-label{position:absolute;left:24px;right:24px;top:24px;display:grid;gap:2px;max-width:300px;padding:13px 15px;border-radius:18px;background:rgba(7,10,16,.72);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(12px);}
.v54-visual-label strong{font-size:17px;color:#fff;}
.v54-visual-label span{font-size:12px;color:var(--muted);font-weight:800;}
.v54-shop-section{padding:34px 0;}
.v54-section-head{margin-bottom:20px;max-width:880px;}
.v54-section-head h2{margin:12px 0 10px;font-size:clamp(28px,4vw,52px);text-wrap:balance;}
.v54-section-head p{font-size:16px;max-width:72ch;}
.v54-route-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.v54-route-card{display:flex;flex-direction:column;gap:12px;min-height:260px;padding:20px;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.030));border:1px solid var(--border);box-shadow:var(--shadow-card);}
.v54-route-card em{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:var(--gold-dim);border:1px solid rgba(201,148,58,.22);font-style:normal;color:var(--gold2);font-weight:950;}
.v54-route-card strong{font-size:22px;line-height:1.08;letter-spacing:-.04em;color:#fff;}
.v54-route-card p{font-size:14px;line-height:1.48;}
.v54-route-card>span{margin-top:auto;width:max-content;max-width:100%;padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.055);border:1px solid var(--border);font-size:12px;font-weight:900;color:#fff;}
.v54-route-card-dark{background:linear-gradient(135deg,rgba(201,148,58,.15),rgba(255,255,255,.035));border-color:rgba(201,148,58,.23);}
.v54-quick-panel{display:grid;grid-template-columns:minmax(0,.8fr) minmax(420px,1.2fr);gap:20px;align-items:center;padding:24px;}
.v54-quick-panel h2{margin:12px 0 8px;font-size:clamp(25px,3.8vw,44px);}
.v54-quick-actions,.v54-catalog-shortcuts{display:flex;flex-wrap:wrap;gap:8px;}
.v54-quick-actions button,.v54-quick-actions a,.v54-catalog-shortcuts button{padding:11px 14px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.055);color:var(--text);font-size:13px;font-weight:850;}
.v54-quick-actions button:hover,.v54-quick-actions a:hover,.v54-catalog-shortcuts button:hover{background:var(--card-hov);border-color:var(--border2);}
.v54-collection-strip{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;}
.mini-collection-card{display:flex;flex-direction:column;gap:8px;padding:12px;border-radius:22px;overflow:hidden;}
.mini-collection-card img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:16px;}
.mini-collection-card strong{font-size:14px;line-height:1.15;color:#fff;}
.mini-collection-card span{font-size:12px;color:var(--muted);font-weight:800;}
.v54-top-picks-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.top-pick-card{overflow:hidden;padding:0;border-radius:26px;background:var(--card);border:1px solid var(--border);}
.top-pick-image img{width:100%;aspect-ratio:4/5;object-fit:cover;}
.top-pick-copy{display:flex;flex-direction:column;gap:8px;padding:16px;}
.top-pick-copy>span{font-size:11px;color:var(--muted2);font-weight:900;text-transform:uppercase;letter-spacing:.05em;}
.top-pick-copy strong{font-size:18px;line-height:1.1;color:#fff;}
.top-pick-copy b{color:var(--gold2);}
.top-pick-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:6px;}
.top-pick-actions .btn{min-height:42px;padding:10px;font-size:12px;border-radius:14px;}
.v54-catalog-section{padding-top:34px;}
.v54-catalog-shortcuts{margin:0 0 14px;}
.v54-store-filters{display:flex;gap:8px;overflow-x:auto;padding:2px 0 12px;scrollbar-width:none;}
.v54-store-filters::-webkit-scrollbar{display:none;}
.store-filter{flex:0 0 auto;display:inline-flex;align-items:center;gap:8px;padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-size:13px;font-weight:850;}
.store-filter.is-active,.store-filter:hover{background:var(--gold-dim);border-color:rgba(201,148,58,.24);color:var(--gold2);}
.store-filter b{font-size:11px;min-width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:rgba(255,255,255,.075);color:#fff;}
.v54-store-tools{display:grid;grid-template-columns:minmax(0,1fr) 240px auto;gap:10px;align-items:end;margin:8px 0 14px;}
.store-search,.store-sort{display:flex;flex-direction:column;gap:6px;font-size:12px;color:var(--muted2);font-weight:850;text-transform:uppercase;letter-spacing:.06em;}
.store-result-counter{height:48px;display:flex;align-items:center;justify-content:center;padding:0 14px;border-radius:16px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:13px;font-weight:900;color:#fff;}
.v54-catalog-note{display:flex;gap:8px;align-items:center;padding:13px 15px;border-radius:18px;background:var(--gold-dim);border:1px solid rgba(201,148,58,.18);margin-bottom:16px;}
.v54-catalog-note strong{color:var(--gold2);}
.v54-catalog-note span{color:var(--muted);font-size:13px;font-weight:800;}
.v54-store-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.product-card{display:flex;flex-direction:column;overflow:hidden;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.030));border:1px solid var(--border);box-shadow:var(--shadow-card);}
.product-media{position:relative;display:block;overflow:hidden;background:#111722;}
.product-media img{width:100%;aspect-ratio:4/5;object-fit:cover;transition:transform .45s ease;}
.product-card:hover .product-media img{transform:scale(1.035);}
.product-badge,.product-badge-top,.product-media-chip,.product-hover-hint,.mobile-card-hint{position:absolute;z-index:2;padding:8px 10px;border-radius:999px;background:rgba(7,10,16,.76);border:1px solid rgba(255,255,255,.10);color:#fff;font-size:11px;font-weight:900;backdrop-filter:blur(10px);}
.product-badge{left:10px;bottom:10px;color:var(--gold2);}
.product-badge-top{left:10px;top:10px;background:var(--gold-dim);color:var(--gold2);border-color:rgba(201,148,58,.24);}
.product-media-chip{right:10px;top:10px;}
.product-hover-hint{right:10px;bottom:10px;opacity:0;transform:translateY(5px);transition:all .2s ease;}
.product-card:hover .product-hover-hint{opacity:1;transform:none;}
.mobile-card-hint{display:none;right:10px;bottom:10px;}
.product-body{display:flex;flex-direction:column;gap:10px;padding:16px;flex:1;}
.product-meta-row{display:flex;gap:6px;flex-wrap:wrap;}
.product-meta-row span,.product-tags span,.product-sizes span{padding:6px 9px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:10.5px;font-weight:850;color:var(--muted);}
.product-body h3{font-size:19px;line-height:1.08;color:#fff;}
.product-body p{font-size:13px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.product-card-value{display:grid;gap:5px;font-size:12px;font-weight:800;color:var(--muted2);}
.product-tags,.product-sizes{display:flex;gap:5px;flex-wrap:wrap;}
.product-card-bottom{display:grid;gap:10px;margin-top:auto;}
.product-card-price span{font-size:11px;color:var(--muted2);font-weight:900;text-transform:uppercase;}
.product-card-price strong{display:block;font-size:20px;color:var(--gold2);line-height:1;}
.product-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
.product-actions .btn{min-height:42px;padding:10px;font-size:12px;border-radius:14px;}
.store-load-more{text-align:center;margin-top:20px;}
.store-empty{display:grid;gap:6px;text-align:center;}
.v54-form-card{display:grid;grid-template-columns:minmax(0,.82fr) minmax(420px,1.18fr);gap:24px;padding:24px;align-items:start;}
.custom-copy h2,.brief-copy h2,.sales-cta-card h2{margin:12px 0 10px;font-size:clamp(26px,4vw,48px);}
.custom-note,.field-hint,.form-consent{font-size:12px;color:var(--muted2);font-weight:800;}
.lead-helper-strip,.brief-points,.modal-trust-mini{display:flex;flex-wrap:wrap;gap:7px;margin-top:14px;}
.lead-helper-strip span,.brief-points span,.modal-trust-mini span{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:11px;color:var(--muted);font-weight:850;}
.upload-panel,.brief-form-grid{display:grid;gap:12px;}
.upload-options,.brief-form-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.upload-options{display:grid;gap:10px;}
.upload-options label,.brief-form-grid label{display:flex;flex-direction:column;gap:6px;font-size:12px;color:var(--muted);font-weight:850;}
.upload-drop{position:relative;min-height:190px;display:flex!important;flex-direction:column;align-items:center;justify-content:center;text-align:center;border:1px dashed rgba(232,184,90,.34);border-radius:24px;background:var(--gold-dim);cursor:pointer;overflow:hidden;}
.upload-drop input{position:absolute;inset:0;opacity:0;cursor:pointer;}
.upload-plus{width:46px;height:46px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:rgba(232,184,90,.18);border:1px solid rgba(232,184,90,.30);color:var(--gold2);font-size:30px;font-weight:700;margin-bottom:8px;}
.upload-preview{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.lead-summary-mini{display:grid;gap:5px;padding:14px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:12px;color:var(--muted);font-weight:800;}
.lead-summary-mini strong{color:#fff;font-size:13px;}
.quick-comment-row{display:flex;flex-wrap:wrap;gap:7px;}
.quick-comment-row button{padding:8px 10px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.045);color:var(--muted);font-size:12px;font-weight:850;}
.brief-comment,.brief-consent{grid-column:1/-1;}
.v54-finish-grid,.v54-faq-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.finish-card,.faq-mini-card{min-height:170px;}
.finish-card strong,.faq-mini-card strong{display:block;color:#fff;font-size:18px;line-height:1.1;margin-bottom:8px;}
.finish-card span{display:inline-flex;margin-top:12px;color:var(--gold2);font-weight:950;}
.v54-bottom-cta{display:grid;grid-template-columns:minmax(0,1fr) minmax(380px,.9fr);gap:20px;align-items:center;padding:26px;}
.sales-cta-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.site-legal-footer{padding:34px 0 120px;border-top:1px solid var(--border);background:#080a10;}
.site-legal-inner{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:var(--muted2);font-size:13px;font-weight:800;}
.site-legal-inner nav{display:flex;flex-wrap:wrap;gap:12px;}
.product-modal{position:fixed;inset:0;z-index:120;background:rgba(0,0,0,.72);padding:18px;overflow:auto;}
.product-modal[hidden]{display:none;}
.product-modal-dialog{position:relative;max-width:1040px;margin:30px auto;background:#10141d;border:1px solid var(--border2);border-radius:30px;box-shadow:0 28px 80px rgba(0,0,0,.45);overflow:hidden;}
.product-modal-close{position:absolute;right:14px;top:14px;z-index:3;width:42px;height:42px;border-radius:999px;border:1px solid var(--border);background:rgba(8,10,16,.86);color:#fff;font-size:28px;line-height:1;}
.product-modal-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);gap:0;}
.product-modal-media img{width:100%;height:100%;min-height:620px;object-fit:cover;}
.product-modal-copy{padding:28px;display:flex;flex-direction:column;gap:14px;}
.product-modal-copy h2{font-size:clamp(26px,4vw,46px);}
.modal-field{display:grid;gap:7px;}
.modal-field>span{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted2);font-weight:900;}
.modal-size-row{display:flex;flex-wrap:wrap;gap:7px;}
.modal-size-row button{padding:9px 11px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-weight:850;font-size:12px;}
.modal-size-row button.is-active{background:var(--gold-dim);border-color:rgba(201,148,58,.24);color:var(--gold2);}
.modal-lead-summary,.modal-contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
.modal-lead-summary span{padding:11px;border-radius:16px;background:rgba(255,255,255,.045);border:1px solid var(--border);font-size:12px;color:var(--muted);font-weight:800;}
.product-price{font-size:28px;font-weight:950;color:var(--gold2);letter-spacing:-.04em;}
@media(max-width:1100px){
  .v54-store-grid,.v54-top-picks-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .v54-route-grid,.v54-collection-strip,.v54-finish-grid,.v54-faq-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:900px){
  .v54-shop-hero-grid,.v54-quick-panel,.v54-form-card,.v54-bottom-cta,.product-modal-grid{grid-template-columns:1fr;}
  .v54-shop-hero-copy{min-height:auto;padding:22px;border-radius:28px;}
  .v54-shop-hero-visual{min-height:520px;}
  .v54-store-grid,.v54-top-picks-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .v54-store-tools{grid-template-columns:1fr;}
  .upload-options,.brief-form-grid,.modal-contact-grid,.modal-lead-summary{grid-template-columns:1fr;}
  .product-modal-media img{min-height:360px;max-height:440px;}
  .product-modal-dialog{margin:0 auto;border-radius:26px;}
}
@media(max-width:560px){
  .v54-shop-hero{padding:18px 0 22px;}
  .site-breadcrumbs{padding-top:12px;font-size:12px;}
  .v54-shop-hero-copy h1{font-size:34px;}
  .v54-shop-hero-copy p{font-size:15px;}
  .v54-shop-hero-actions{display:grid;grid-template-columns:1fr;}
  .v54-shop-hero-facts{grid-template-columns:1fr;}
  .v54-shop-hero-visual{min-height:460px;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;padding:10px;border-radius:28px;}
  .v54-hero-tile{border-radius:18px;}
  .v54-hero-tile-1{grid-row:span 1;}
  .v54-hero-tile span{font-size:10px;padding:7px;}
  .v54-visual-label{left:18px;right:18px;top:18px;max-width:none;}
  .v54-route-grid,.v54-store-grid,.v54-top-picks-grid,.v54-collection-strip,.v54-finish-grid,.v54-faq-grid{grid-template-columns:1fr;}
  .v54-route-card{min-height:0;border-radius:22px;}
  .v54-section-head h2{font-size:31px;}
  .product-body{padding:14px;}
  .product-media img{aspect-ratio:1/1.1;}
  .product-hover-hint{display:none;}
  .mobile-card-hint{display:block;}
  .product-actions,.top-pick-actions,.sales-cta-actions{grid-template-columns:1fr;}
  .v54-form-card{padding:18px;border-radius:26px;}
  .product-modal{padding:8px;}
  .product-modal-copy{padding:18px;}
}
@media(max-width:560px){.v55-hero-strap{white-space:normal;max-width:calc(100% - 24px);text-align:center;line-height:1.2;}}

/* Product page V62 */
.product-page-grid{display:grid;grid-template-columns:minmax(360px,.88fr) minmax(0,1.12fr);gap:18px;align-items:start;}
.product-page-media,.product-page-copy{border-radius:var(--radius-xl);background:linear-gradient(180deg,rgba(255,255,255,.060),rgba(255,255,255,.030));border:1px solid var(--border);box-shadow:var(--shadow-card);}
.product-page-media{position:sticky;top:calc(var(--topbar-h) + 18px);display:grid;gap:14px;}
.product-visual-frame{position:relative;overflow:hidden;border-radius:24px;background:#101722;}
.product-visual-frame img{width:100%;aspect-ratio:4/5;object-fit:cover;}
.product-visual-badge,.product-visual-hit{position:absolute;z-index:2;padding:9px 12px;border-radius:999px;background:rgba(7,10,16,.76);border:1px solid rgba(255,255,255,.10);font-size:12px;font-weight:950;backdrop-filter:blur(10px);}
.product-visual-badge{left:12px;bottom:12px;color:var(--gold2);}
.product-visual-hit{left:12px;top:12px;color:var(--gold2);background:var(--gold-dim);border-color:rgba(201,148,58,.24);}
.product-visual-info{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;}
.product-visual-info article,.product-commerce-summary article,.product-decision-strip article,.support-card,.product-micro-faq-grid .card{padding:14px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid var(--border);}
.product-visual-info strong,.product-commerce-summary strong,.product-decision-strip strong{display:block;color:#fff;font-size:13px;line-height:1.15;}
.product-visual-info span,.product-commerce-summary span,.product-decision-strip span{display:block;color:var(--muted);font-size:11px;font-weight:800;margin-top:4px;line-height:1.25;}
.product-media-cta{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
.product-media-cta .btn{min-height:44px;padding:10px;font-size:12px;border-radius:15px;}
.product-page-copy{padding:28px;display:flex;flex-direction:column;gap:16px;}
.product-page-copy h1{font-size:clamp(34px,5.2vw,64px);text-wrap:balance;}
.product-collection-link a{color:var(--gold2);font-weight:900;}
.product-page-price{font-size:clamp(34px,5vw,52px);font-weight:950;color:var(--gold2);letter-spacing:-.05em;line-height:1;}
.product-intent-card,.product-advisor-card,.included-card{padding:18px;border-radius:22px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.030));border:1px solid var(--border);}
.product-intent-card{display:grid;grid-template-columns:1fr;gap:6px;}
.product-intent-card strong,.product-advisor-card strong,.included-card strong{color:#fff;font-size:18px;line-height:1.1;}
.product-intent-card span{color:var(--muted);font-size:13px;font-weight:800;}
.product-commerce-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;}
.product-sales-points,.product-order-confidence{display:flex;flex-wrap:wrap;gap:7px;}
.product-sales-points span,.product-order-confidence span{padding:8px 11px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-size:12px;font-weight:850;}
.product-advisor-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(220px,.7fr);gap:14px;align-items:start;}
.advisor-mini-grid{display:grid;gap:8px;}
.advisor-mini-grid span{display:grid;gap:4px;padding:12px;border-radius:16px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-size:12px;font-weight:800;}
.advisor-mini-grid b{color:#fff;}
.product-contact-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;}
.product-choice-section{display:grid;gap:12px;padding-top:2px;}
.choice-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-end;}
.choice-head strong{font-size:18px;color:#fff;}
.choice-head span{max-width:360px;color:var(--muted);font-size:12px;font-weight:800;text-align:right;}
.page-size-grid,.page-finish-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;}
.page-size-card,.page-finish-card{display:flex;flex-direction:column;gap:6px;text-align:left;padding:14px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-weight:850;min-height:102px;}
.page-size-card strong,.page-finish-card strong{color:#fff;font-size:15px;}
.page-size-card span,.page-finish-card span{font-size:12px;line-height:1.3;}
.page-size-card b,.page-finish-card b{margin-top:auto;color:var(--gold2);font-size:13px;}
.page-size-card.is-active,.page-finish-card.is-active{background:var(--gold-dim);border-color:rgba(201,148,58,.28);}
.product-order-form{display:flex;flex-direction:column;gap:14px;padding:18px;border-radius:24px;background:rgba(255,255,255,.035);border:1px solid var(--border);}
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.product-live-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;}
.product-live-summary>div{padding:13px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid var(--border);}
.product-live-summary span{display:block;color:var(--muted2);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;}
.product-live-summary strong{display:block;color:#fff;font-size:15px;margin-top:3px;}
.product-form-help-strip{display:flex;flex-wrap:wrap;gap:7px;}
.product-form-help-strip span{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-size:11px;font-weight:850;}
.product-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
.product-form-grid label{display:flex;flex-direction:column;gap:6px;font-size:12px;font-weight:850;color:var(--muted);}
.product-comment-field{min-height:92px;resize:vertical;}
.product-order-bottom{display:grid;grid-template-columns:minmax(0,.65fr) minmax(260px,.35fr);gap:12px;align-items:end;}
.product-order-bottom>div:first-child span{display:block;color:var(--muted2);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;margin-bottom:4px;}
.product-order-actions{display:grid;gap:8px;}
.product-decision-strip,.product-support-grid,.product-micro-faq-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.included-card ul{margin-top:12px;display:grid;gap:8px;color:var(--muted);font-size:14px;}
.included-card li{position:relative;padding-left:18px;}
.included-card li::before{content:'—';position:absolute;left:0;color:var(--gold2);}
.mobile-product-jump-section{display:none;}
.mobile-product-jump{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;padding:10px;border-radius:24px;background:rgba(255,255,255,.045);border:1px solid var(--border);}
.mobile-product-jump a{display:grid;gap:3px;text-align:center;padding:12px 8px;border-radius:16px;background:rgba(255,255,255,.045);border:1px solid var(--border);}
.mobile-product-jump strong{font-size:12px;color:#fff;}
.mobile-product-jump span{font-size:10px;color:var(--muted);font-weight:800;}
.size-visual-list{display:grid;gap:8px;margin-top:14px;}
.size-visual-list span{padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.045);border:1px solid var(--border);color:var(--muted);font-size:13px;font-weight:800;}
.size-visual-list b{color:#fff;margin-right:6px;}
.mobile-conversion-dock{display:none;position:fixed;left:12px;right:12px;bottom:12px;z-index:88;background:rgba(14,17,24,.94);border:1px solid var(--border2);border-radius:var(--radius-xl);backdrop-filter:blur(16px);padding:8px;box-shadow:0 8px 32px rgba(0,0,0,.4);}
.mobile-conversion-dock a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;min-height:56px;padding:10px 8px;border-radius:var(--radius-m);text-align:center;}
.mobile-conversion-dock strong{font-size:12px;line-height:1;color:#fff;}
.mobile-conversion-dock span{font-size:10px;line-height:1;color:var(--muted2);font-weight:800;}
@media(max-width:960px){
  .product-page-grid{grid-template-columns:1fr;}
  .product-page-media{position:relative;top:auto;}
  .product-page-copy{padding:22px;border-radius:28px;}
  .product-advisor-card,.product-order-bottom{grid-template-columns:1fr;}
}
@media(max-width:760px){
  .product-page-section{padding-top:22px;}
  .product-visual-info,.product-commerce-summary,.page-size-grid,.page-finish-grid,.product-live-summary,.product-form-grid,.product-decision-strip,.product-support-grid,.product-micro-faq-grid{grid-template-columns:1fr;}
  .product-media-cta,.product-contact-row{grid-template-columns:1fr;}
  .choice-head{display:grid;gap:4px;}
  .choice-head span{text-align:left;max-width:none;}
  .mobile-product-jump-section{display:block;padding:0 0 22px;}
  .product-visual-frame img{aspect-ratio:1/1.08;}
  .product-page-copy h1{font-size:34px;}
  .mobile-conversion-dock{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:5px;padding-bottom:calc(8px + env(safe-area-inset-bottom,0px));}
}

/* ═══════════════════════════════════════════════════════
   V73 premium polish: hero, contacts, MAX
   additive overrides, safe for current structure
   ═══════════════════════════════════════════════════════ */
:root{
  --gold-soft:rgba(232,184,90,.20);
  --glass-strong:rgba(255,255,255,.075);
  --shadow-soft:0 22px 70px rgba(0,0,0,.28);
  --shadow-gold:0 18px 46px rgba(201,148,58,.18);
}
.hero{
  padding:46px 0 36px;
  background:
    radial-gradient(circle at 82% -12%, rgba(232,184,90,.16), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(72,103,180,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0));
}
.hero-layout{gap:22px;}
.hero-copy,.hero-visual{
  background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.028));
  border-color:rgba(255,255,255,.11);
  box-shadow:var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.055);
}
.hero-copy{position:relative;overflow:hidden;}
.hero-copy::before{
  content:'';
  position:absolute;
  inset:-1px -1px auto -1px;
  height:46%;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,0));
}
.hero-copy>*{position:relative;z-index:1;}
.hero-title{
  display:grid;
  gap:4px;
  margin:0 0 16px;
  max-width:760px;
}
.hero-title-main,.hero-title-sub{
  display:block;
  color:#fff;
  font-weight:950;
  letter-spacing:-.075em;
  line-height:.86;
  text-wrap:balance;
}
.hero-title-main{
  font-size:clamp(54px,7.8vw,104px);
  background:linear-gradient(180deg,#ffffff 0%,#f5efe4 48%,#c8bda9 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 18px 45px rgba(0,0,0,.28);
}
.hero-title-sub{
  font-size:clamp(39px,5.5vw,74px);
  color:rgba(255,255,255,.88);
}
.hero-copy .lead{
  max-width:62ch;
  color:rgba(240,237,232,.70);
}
.hero-btns-premium{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-bottom:12px;
}
.btn,.btn-gold,.btn-outline,.btn-ghost,.btn-primary,.btn-secondary{
  transform:translateZ(0);
  will-change:transform;
}
.btn-gold,.btn-primary{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.38), inset 0 -10px 18px rgba(98,59,10,.16), 0 14px 34px rgba(201,148,58,.20);
}
.btn-gold:hover,.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.42), inset 0 -10px 18px rgba(98,59,10,.14), 0 22px 46px rgba(201,148,58,.24);
}
.btn-outline,.btn-ghost,.btn-secondary{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.16);
}
.btn:active{transform:translateY(1px) scale(.99);}
.hero-contact-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin:0 0 18px;
}
.contact-pill{
  display:grid;
  gap:3px;
  min-height:58px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform var(--trans), border-color var(--trans), background var(--trans);
}
.contact-pill:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.065);
  border-color:rgba(255,255,255,.16);
}
.contact-pill strong{font-size:14px;font-weight:950;color:#fff;line-height:1;}
.contact-pill span{font-size:11px;font-weight:750;color:var(--muted);line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.contact-pill-max{border-color:rgba(115,148,255,.22);background:linear-gradient(135deg,rgba(74,103,212,.14),rgba(255,255,255,.035));}
.hero-dirs{margin-top:18px;}
.hero-dir{
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.028));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-dir strong{font-size:18px;}
.hero-dir:hover{transform:translateY(-2px);}
.hero-visual{isolation:isolate;}
.hero-badge{
  box-shadow:0 16px 40px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
  background:rgba(8,11,17,.78);
}
.slide-cap{
  background:rgba(8,11,17,.62);
  box-shadow:0 18px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
}
.slide-cap strong{font-size:18px;}
.slide-links-premium{grid-template-columns:repeat(4,minmax(0,1fr));}
.slide-links-premium .slide-link{
  min-width:0;
  background:rgba(8,11,17,.82);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.slide-links-premium .slide-link strong,.slide-links-premium .slide-link span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.fc-max{
  background:linear-gradient(135deg,#4c62f4,#8192ff);
}
.fc-max img{width:26px;height:26px;object-fit:contain;border-radius:7px;}
.floating-cta{
  gap:9px;
}
.floating-cta a{
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 14px 36px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.22);
}
.drawer-actions-messengers{gap:8px;}
.copy-phone-toast{
  position:fixed;
  left:50%;
  bottom:calc(110px + env(safe-area-inset-bottom,0px));
  z-index:120;
  transform:translate(-50%,12px);
  opacity:0;
  pointer-events:none;
  max-width:calc(100vw - 32px);
  padding:11px 14px;
  border-radius:16px;
  background:rgba(10,13,20,.94);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;
  font-weight:850;
  box-shadow:0 20px 45px rgba(0,0,0,.32);
  transition:opacity .18s ease, transform .18s ease;
}
.copy-phone-toast.is-visible{opacity:1;transform:translate(-50%,0);}
.contact-item{box-shadow:inset 0 1px 0 rgba(255,255,255,.04);}
.contact-item a:hover{color:var(--gold2);}
@media (min-width:1120px){
  .hero-layout{grid-template-columns:minmax(0,.94fr) minmax(520px,1.06fr);}
  .hero-copy,.hero-visual{min-height:670px;}
}
@media (max-width:860px){
  .hero{padding:28px 0 28px;}
  .hero-layout{gap:14px;}
  .hero-copy{padding:20px;border-radius:30px;}
  .hero-title{gap:2px;margin-bottom:12px;}
  .hero-title-main{font-size:clamp(48px,14vw,66px);letter-spacing:-.078em;}
  .hero-title-sub{font-size:clamp(34px,10vw,48px);letter-spacing:-.065em;}
  .hero-btns-premium{grid-template-columns:1fr;gap:8px;}
  .hero-btns-premium .btn{min-height:54px;font-size:14px;}
  .hero-contact-row{grid-template-columns:1fr;gap:7px;margin-bottom:14px;}
  .contact-pill{min-height:50px;padding:10px 12px;border-radius:16px;}
  .hero-dirs{grid-template-columns:1fr 1fr;}
  .hero-dir{padding:13px;border-radius:18px;}
  .hero-dir strong{font-size:15px;}
  .hero-dir span{font-size:11px;}
  .hero-visual{min-height:610px;border-radius:30px;}
  .slide-links-premium{grid-template-columns:repeat(2,minmax(0,1fr));}
  .slide-cap{bottom:136px;left:14px;right:14px;padding:12px 14px;}
  .slider-dots{bottom:106px;}
  .slide-links{left:14px;right:14px;bottom:14px;gap:7px;}
  .slide-link{padding:10px 11px;border-radius:16px;}
  .slide-link strong{font-size:12px;}
  .slide-link span{font-size:10px;}
  .floating-cta{bottom:calc(100px + env(safe-area-inset-bottom,0px));}
  .floating-cta a{width:46px;height:46px;}
  .fc-max img{width:22px;height:22px;}
}
@media (max-width:430px){
  .hero-copy{padding:18px;}
  .hero-title-main{font-size:44px;}
  .hero-title-sub{font-size:31px;}
  .hero-copy .lead{font-size:15px;line-height:1.45;}
  .hero-dirs{grid-template-columns:1fr;}
  .hero-visual{min-height:580px;}
  .hero-badge{font-size:11px;max-width:calc(100% - 28px);white-space:normal;text-align:center;line-height:1.2;}
  .slide-cap{bottom:130px;}
  .slider-dots{bottom:102px;}
  .mobile-dock-inner{grid-template-columns:repeat(auto-fit,minmax(58px,1fr));}
  .mobile-dock a{padding:8px 4px;}
  .mobile-dock strong{font-size:10.5px;}
  .mobile-dock span{font-size:9px;}
}


/* V64 refinement: Apple-like mobile controls, MAX cleanup, better hierarchy */
button.btn-menu,
button.menu-btn,
button.sevenart-mobile-menu-btn,
.btn-menu,
.menu-btn,
.sevenart-mobile-menu-btn{
  -webkit-appearance:none;
  appearance:none;
  border:1px solid rgba(255,255,255,.14)!important;
  background:linear-gradient(180deg,rgba(13,17,24,.96),rgba(9,12,18,.88))!important;
  color:#fff!important;
  box-shadow:0 10px 28px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.btn-menu svg,.menu-btn svg,.sevenart-mobile-menu-btn svg{flex:0 0 auto;opacity:.92}
.btn-menu span,.menu-btn span,.sevenart-mobile-menu-btn span{display:inline-block}
.btn-menu:hover,.menu-btn:hover,.sevenart-mobile-menu-btn:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.22)!important;background:linear-gradient(180deg,rgba(18,23,32,.98),rgba(12,16,24,.92))!important}

.hero-title-main,.hero-title-sub{
  letter-spacing:-.052em;
  line-height:.92;
}
.hero-title-main{
  text-shadow:0 14px 34px rgba(0,0,0,.24);
}
.hero-title-sub{
  color:rgba(255,255,255,.90);
}
.hero-btns-premium .btn,
.drawer-actions-messengers .btn,
.slide-links-premium .slide-link,
.contact-pill,
.mobile-dock a{
  position:relative;
  overflow:hidden;
}
.hero-btns-premium .btn::before,
.drawer-actions-messengers .btn::before,
.slide-links-premium .slide-link::before,
.contact-pill::before,
.mobile-dock a::before{
  content:'';
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0));
  pointer-events:none;
}
.hero-btns-premium .btn,
.drawer-actions-messengers .btn{
  min-height:58px;
  border-radius:20px;
  font-size:15px;
  font-weight:900;
}
.btn-outline,.btn-ghost,.btn-secondary{
  background:linear-gradient(180deg,rgba(255,255,255,.062),rgba(255,255,255,.032));
  color:#f3f5fb;
  border-color:rgba(255,255,255,.12);
}
.btn-outline:hover,.btn-ghost:hover,.btn-secondary:hover{
  background:linear-gradient(180deg,rgba(255,255,255,.084),rgba(255,255,255,.044));
  border-color:rgba(255,255,255,.20);
}
.contact-pill{
  min-height:62px;
  padding:13px 15px;
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.032));
  border-color:rgba(255,255,255,.10);
  box-shadow:0 10px 30px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.06);
}
.contact-pill strong{font-size:15px;letter-spacing:-.02em}
.contact-pill span{font-size:12px;color:rgba(238,241,247,.68)}
.contact-pill-max{
  border-color:rgba(118,145,255,.24);
  background:linear-gradient(180deg,rgba(79,100,200,.18),rgba(255,255,255,.032));
}
.slide-links-premium .slide-link{
  border-radius:18px;
  border-color:rgba(255,255,255,.10);
  min-height:74px;
}
.slide-links-premium .slide-link strong{font-size:14px;letter-spacing:-.02em}
.slide-links-premium .slide-link span{font-size:11px}
.floating-cta{
  right:14px;
  gap:8px;
}
.floating-cta a{
  width:52px;
  height:52px;
  border-radius:18px;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.fc-max{
  background:linear-gradient(135deg,#5167ff,#7786ff);
}
.fc-max img{width:23px;height:23px;border-radius:0}
.mobile-dock{
  border-radius:26px;
  padding:8px;
  box-shadow:0 18px 42px rgba(0,0,0,.34);
}
.mobile-dock-inner{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(64px,1fr))!important;
  gap:6px!important;
}
.mobile-dock a{
  min-height:60px;
  padding:10px 6px;
  border-radius:18px;
  background:rgba(255,255,255,.022);
  border:1px solid transparent;
}
.mobile-dock a:hover,.mobile-dock a.active{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.10);
}
.mobile-dock strong{font-size:12px;letter-spacing:-.02em}
.mobile-dock span{font-size:10px;line-height:1.1}
.mobile-dock .dock-cta{
  background:linear-gradient(180deg,rgba(201,148,58,.26),rgba(201,148,58,.16));
  border-color:rgba(201,148,58,.30);
}
.copy-phone-toast{
  bottom:calc(120px + env(safe-area-inset-bottom,0px));
}
@media (max-width:860px){
  .hero-title-main{font-size:clamp(42px,12.6vw,60px);letter-spacing:-.058em}
  .hero-title-sub{font-size:clamp(27px,8.6vw,40px);letter-spacing:-.045em;line-height:.95}
  .hero-copy .lead{font-size:15px;line-height:1.42}
  .hero-btns-premium .btn,.drawer-actions-messengers .btn{min-height:56px;font-size:15px;border-radius:18px}
  .contact-pill{min-height:56px;padding:12px 14px;border-radius:18px}
  .contact-pill strong{font-size:14px}
  .contact-pill span{font-size:11px}
  .slide-links-premium{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .slide-links-premium .slide-link{min-height:68px;border-radius:16px}
  .floating-cta{bottom:calc(108px + env(safe-area-inset-bottom,0px))}
}
@media (max-width:430px){
  .hero-title{margin-bottom:14px}
  .hero-title-main{font-size:40px}
  .hero-title-sub{font-size:28px}
  .hero-copy .lead{font-size:14.5px}
  .mobile-dock{left:10px;right:10px;bottom:10px;padding:7px;border-radius:24px}
  .mobile-dock-inner{grid-template-columns:repeat(auto-fit,minmax(60px,1fr))!important;gap:5px!important}
  .mobile-dock a{min-height:58px;padding:9px 5px;border-radius:16px}
  .mobile-dock strong{font-size:11px}
  .mobile-dock span{font-size:9.5px}
  .floating-cta{right:10px}
  .floating-cta a{width:48px;height:48px;border-radius:16px}
}


/* Commercial structure and mobile polish */
.route-grid{
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
}
.route-card-express{
  border-color:rgba(201,148,58,.28)!important;
  background:linear-gradient(180deg,rgba(201,148,58,.16),rgba(255,255,255,.035))!important;
}
.file-transfer-section{
  background:linear-gradient(180deg,rgba(255,255,255,.015),rgba(255,255,255,.035));
}
.file-transfer-card{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(360px,1fr);
  gap:28px;
  align-items:center;
  padding:28px;
  border-radius:32px;
  background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.032));
  border:1px solid rgba(255,255,255,.105);
  box-shadow:0 24px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
}
.file-transfer-card h2{margin-top:10px;max-width:14ch;letter-spacing:-.055em}
.file-transfer-card p{margin-top:12px;color:var(--muted);line-height:1.55;max-width:58ch}
.file-transfer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.file-transfer-grid a{
  min-height:112px;
  display:grid;
  align-content:center;
  gap:6px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform var(--trans), background var(--trans), border-color var(--trans);
}
.file-transfer-grid a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.065);
  border-color:rgba(255,255,255,.16);
}
.file-transfer-grid strong{font-size:17px;color:#fff;letter-spacing:-.03em}
.file-transfer-grid span{font-size:13px;color:var(--muted);font-weight:800;line-height:1.35}
.request-btns{display:flex;flex-wrap:wrap;gap:8px}
.request-btns .btn{min-height:48px}
.form-msg.err,.form-msg.ok{margin-top:12px}
input.is-invalid,textarea.is-invalid,select.is-invalid{border-color:rgba(239,68,68,.55)!important;box-shadow:0 0 0 3px rgba(239,68,68,.08)!important}
@media(max-width:900px){
  .file-transfer-card{grid-template-columns:1fr;padding:22px;border-radius:28px}
  .file-transfer-card h2{max-width:100%}
}
@media(max-width:560px){
  .file-transfer-grid{grid-template-columns:1fr}
  .file-transfer-grid a{min-height:86px;padding:15px;border-radius:18px}
  .request-btns{display:grid;grid-template-columns:1fr;width:100%}
  .request-btns .btn{width:100%}
}
@media(max-width:390px){
  .hero-title-main{font-size:37px!important}
  .hero-title-sub{font-size:26px!important}
  .contact-pill span{font-size:10.5px}
  .file-transfer-card{padding:18px;border-radius:24px}
}

/* ═══════════════════════════════════════════════════════════════
   V68 POLISH — calc на prices.php переехал из inline.style.cssText
   ═══════════════════════════════════════════════════════════════ */
.calc-type-btn{
  padding:12px 20px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.82);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:all .16s;
  margin:0 8px 8px 0;
}
.calc-type-btn:hover{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.085);
}
.calc-type-btn.is-active{
  background:linear-gradient(135deg,#d5a25f,#b77f3d);
  color:#141821;
  border-color:transparent;
}
.calc-opt-btn{
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.78);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:all .16s;
  margin:0 6px 6px 0;
}
.calc-opt-btn:hover{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
}
.calc-opt-btn.is-active{
  background:linear-gradient(135deg,#d5a25f,#b77f3d);
  color:#141821;
  border-color:transparent;
}
.calc-param-wrap{margin-bottom:16px}
.calc-param-label{
  font-size:13px;
  color:rgba(255,255,255,.6);
  margin-bottom:8px;
  font-weight:800;
}
.calc-param-row{display:flex;flex-wrap:wrap}

/* ═══════════════════════════════════════════════════════════════
   V67 POLISH (восстановлено для V68) — Hero typography & mobile
   ═══════════════════════════════════════════════════════════════ */
.hero-title-main,
.hero-title-sub{
  letter-spacing:-.045em;
  line-height:.92;
}
.hero-title-main{font-size:clamp(50px,7.4vw,98px)}
.hero-title-sub{font-size:clamp(36px,5.2vw,68px)}
.hero-btns-premium .btn{min-height:54px;display:inline-flex;align-items:center;justify-content:center}
.contact-pill{min-height:62px}
.contact-pill strong{font-size:15px}
.contact-pill span{font-size:12px;font-weight:600;color:rgba(238,241,247,.72);letter-spacing:-.005em}
.mobile-dock-inner a{min-height:48px;white-space:nowrap}
.mobile-dock-inner a span{font-size:10.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
@media(max-width:430px){
  .hero-title-main{letter-spacing:-.04em;font-size:clamp(46px,12.2vw,62px)}
  .hero-title-sub{letter-spacing:-.035em;font-size:clamp(28px,8.4vw,42px)}
  .hero-btns-premium{grid-template-columns:1fr 1fr;gap:8px}
  .hero-btns-premium .btn{min-height:52px;font-size:14.5px}
  .contact-pill{min-height:58px}
  .contact-pill span{font-size:11.5px}
  .mobile-dock-inner a span{font-size:10px}
}
@media(max-width:390px){
  .hero-title-main{font-size:42px!important;letter-spacing:-.035em!important}
  .hero-title-sub{font-size:28px!important;letter-spacing:-.03em!important}
  .hero-btns-premium .btn{font-size:14px;min-height:50px}
}
@media(max-width:360px){
  .hero-title-main{font-size:38px!important}
  .hero-title-sub{font-size:26px!important}
  .mobile-dock-inner a span{font-size:9.5px}
}
.floating-cta{bottom:calc(env(safe-area-inset-bottom,0px) + 16px)}
@media(max-width:768px){
  .floating-cta{bottom:calc(env(safe-area-inset-bottom,0px) + 82px)}
}
.form-msg{margin-top:12px;padding:12px 14px;border-radius:14px;font-size:14px;line-height:1.45}
.form-msg.ok{background:rgba(70,180,120,.12);border:1px solid rgba(70,180,120,.28);color:#cdebd7}
.form-msg.err{background:rgba(220,90,90,.10);border:1px solid rgba(220,90,90,.28);color:#ffd6d6}

/* V74 — design examples / B2B visual proof */
.route-card-design{
  background:linear-gradient(135deg,rgba(201,148,58,.13),rgba(255,255,255,.035));
  border-color:rgba(232,184,90,.24);
}
.design-showcase-section{
  position:relative;
  overflow:hidden;
}
.design-showcase-section::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 14% 6%,rgba(232,184,90,.10),transparent 24%),
    radial-gradient(circle at 90% 0,rgba(255,255,255,.055),transparent 22%);
}
.design-showcase-section > .wrap,
.design-showcase-section > .container{
  position:relative;
  z-index:1;
}
.design-showcase-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:end;
  margin-bottom:24px;
}
.design-showcase-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}
.design-example-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.design-example-grid-home{
  grid-template-columns:1.15fr .85fr 1fr;
}
.design-example-card{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.030));
  border:1px solid var(--border);
  box-shadow:0 18px 48px rgba(0,0,0,.22);
  transition:transform var(--trans),border-color var(--trans),box-shadow var(--trans);
}
.design-example-card:hover{
  transform:translateY(-3px);
  border-color:rgba(232,184,90,.25);
  box-shadow:0 24px 64px rgba(0,0,0,.32);
}
.design-example-card img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  transform:scale(1.01);
}
.design-example-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(9,11,16,0) 35%,rgba(9,11,16,.78) 100%);
  pointer-events:none;
}
.design-example-card div{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:2;
  display:grid;
  gap:4px;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(9,11,16,.62);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.design-example-card strong{
  color:#fff;
  font-size:16px;
  line-height:1.06;
  letter-spacing:-.035em;
}
.design-example-card span{
  color:rgba(240,237,232,.72);
  font-size:12px;
  line-height:1.35;
  font-weight:750;
}
.design-example-grid-home .design-example-card:nth-child(1),
.portfolio-design-grid .design-example-card:nth-child(1){
  grid-row:span 2;
}
.design-example-grid-home .design-example-card:nth-child(1),
.design-example-grid-home .design-example-card:nth-child(1) img,
.portfolio-design-grid .design-example-card:nth-child(1),
.portfolio-design-grid .design-example-card:nth-child(1) img{
  min-height:734px;
}
.design-note{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
  padding:18px 20px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.030));
  border:1px solid var(--border);
}
.design-note strong{
  color:#fff;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.035em;
}
.design-note span{
  color:var(--muted);
  font-size:13px;
  max-width:680px;
}
.portfolio-design-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.portfolio-design-grid .design-example-card{
  min-height:310px;
}
.portfolio-design-grid .design-example-card img{
  min-height:310px;
}
.business-design-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.business-design-grid .design-example-card{
  min-height:320px;
}
.business-design-grid .design-example-card img{
  min-height:320px;
}
@media(max-width:1080px){
  .design-example-grid,
  .design-example-grid-home,
  .portfolio-design-grid,
  .business-design-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .portfolio-design-grid .design-example-card:nth-child(1){grid-row:auto;}
  .portfolio-design-grid .design-example-card:nth-child(1),
  .portfolio-design-grid .design-example-card:nth-child(1) img{
    min-height:360px;
  }
}
@media(max-width:720px){
  .design-showcase-shell{
    grid-template-columns:1fr;
    align-items:start;
  }
  .design-showcase-actions{
    justify-content:flex-start;
  }
  .design-showcase-actions .btn{
    width:100%;
    justify-content:center;
  }
  .design-example-grid,
  .design-example-grid-home,
  .portfolio-design-grid,
  .business-design-grid{
    grid-template-columns:1fr;
  }
  .design-example-card,
  .design-example-card img,
  .design-example-grid-home .design-example-card:nth-child(1),
  .design-example-grid-home .design-example-card:nth-child(1) img,
  .portfolio-design-grid .design-example-card:nth-child(1),
  .portfolio-design-grid .design-example-card:nth-child(1) img{
    min-height:360px;
  }
  .design-note{
    flex-direction:column;
    align-items:flex-start;
    border-radius:20px;
  }
}
@media(max-width:430px){
  .design-example-card,
  .design-example-card img,
  .portfolio-design-grid .design-example-card,
  .portfolio-design-grid .design-example-card img,
  .business-design-grid .design-example-card,
  .business-design-grid .design-example-card img{
    min-height:320px;
  }
  .design-example-card{
    border-radius:22px;
  }
  .design-example-card div{
    left:12px;
    right:12px;
    bottom:12px;
    border-radius:16px;
    padding:12px;
  }
  .design-example-card strong{font-size:15px;}
  .design-example-card span{font-size:11.5px;}
}

/* V75 — design shop / B2B platform sprint */
.page-hero{padding:calc(var(--topbar-h) + 48px) 0 42px;background:radial-gradient(circle at 15% 0,rgba(201,148,58,.14),transparent 30%),linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,0));}
.page-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.85fr);gap:26px;align-items:center;}
.page-hero h1{font-size:clamp(42px,6vw,76px);line-height:.94;letter-spacing:-.065em;max-width:850px;}
.page-hero p{margin-top:16px;color:var(--muted);font-size:clamp(16px,1.8vw,21px);line-height:1.48;max-width:760px;}
.design-hero-mosaic{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.design-hero-mosaic img,.design-product-main-image img{width:100%;height:100%;min-height:260px;object-fit:cover;border-radius:28px;border:1px solid var(--border);box-shadow:0 18px 48px rgba(0,0,0,.28);}
.design-hero-mosaic img:first-child{grid-row:span 2;min-height:540px;}
.design-category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.design-category-card,.design-include-item,.status-card{display:grid;gap:8px;padding:20px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));border:1px solid var(--border);box-shadow:0 12px 34px rgba(0,0,0,.16);}
.design-category-card strong,.design-include-item{color:#fff;font-weight:900;}
.design-category-card span{color:var(--muted);font-size:13px;}
.design-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.design-product-card{overflow:hidden;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));border:1px solid var(--border);box-shadow:0 18px 48px rgba(0,0,0,.22);}
.design-product-card img{width:100%;height:260px;object-fit:cover;}
.design-product-body{display:grid;gap:10px;padding:18px;}
.design-product-body>span,.design-price-row em{color:var(--muted2);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;}
.design-product-body h3{font-size:23px;line-height:1.05;letter-spacing:-.04em;}
.design-product-body p{color:var(--muted);font-size:14px;line-height:1.45;}
.design-price-row{display:grid;gap:2px;margin-top:2px;}
.design-price-row b{color:var(--gold2);font-size:18px;}
.design-card-actions,.contact-row-inline{display:flex;gap:10px;flex-wrap:wrap;}
.design-card-actions .btn{flex:1;min-width:130px;}
.request-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(380px,1fr);gap:24px;align-items:start;}
.design-order-section{background:radial-gradient(circle at 80% 0,rgba(201,148,58,.10),transparent 28%);}
.design-price-hero{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;}
.design-price-hero span{padding:12px 14px;border-radius:999px;background:rgba(255,255,255,.055);border:1px solid var(--border);color:var(--muted);}
.design-price-hero b{color:var(--gold2);}
.design-includes-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;}
.design-tariff-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.design-tariff-grid article{padding:22px;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));border:1px solid var(--border);box-shadow:0 16px 42px rgba(0,0,0,.18);}
.design-tariff-grid article.featured{border-color:rgba(232,184,90,.30);background:linear-gradient(180deg,rgba(201,148,58,.15),rgba(255,255,255,.035));}
.design-tariff-grid span{color:var(--muted2);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;}
.design-tariff-grid h3{margin-top:10px;font-size:30px;line-height:1;letter-spacing:-.05em;color:#fff;}
.design-tariff-grid p{margin-top:10px;color:var(--muted);font-size:14px;}
.status-card{max-width:760px;}
@media(max-width:980px){
  .page-hero-grid,.request-grid{grid-template-columns:1fr;}
  .design-product-grid,.design-category-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .design-includes-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:720px){
  .page-hero{padding:calc(var(--topbar-h) + 28px) 0 28px;}
  .page-hero h1{font-size:clamp(36px,10.5vw,50px);}
  .design-product-grid,.design-category-grid,.design-tariff-grid{grid-template-columns:1fr;}
  .design-hero-mosaic{grid-template-columns:1fr;}
  .design-hero-mosaic img:first-child{grid-row:auto;min-height:320px;}
  .design-card-actions .btn,.contact-row-inline .btn{width:100%;}
}
@media(max-width:430px){
  .design-product-card{border-radius:22px;}
  .design-product-card img{height:220px;}
  .design-product-body h3{font-size:21px;}
  .design-includes-grid{grid-template-columns:1fr;}
}

/* V76 — websites / landings / ads product direction */
.website-hero{background:radial-gradient(circle at 75% 8%,rgba(201,148,58,.14),transparent 34%),radial-gradient(circle at 10% 0,rgba(86,112,255,.08),transparent 28%)}
.website-hero-grid{align-items:center}
.website-hero-card{display:grid;gap:16px}
.website-browser-mock{position:relative;overflow:hidden;min-height:440px;border-radius:34px;padding:22px;background:linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035));border:1px solid var(--border);box-shadow:0 24px 70px rgba(0,0,0,.28)}
.website-browser-mock::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 70% 10%,rgba(201,148,58,.24),transparent 30%),linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,0));pointer-events:none}
.browser-dots{position:relative;z-index:2;display:flex;gap:8px;margin-bottom:28px}.browser-dots i{width:12px;height:12px;border-radius:99px;background:rgba(255,255,255,.28);display:block}.browser-dots i:nth-child(1){background:#d5a25f}.browser-dots i:nth-child(2){background:rgba(255,255,255,.42)}.browser-dots i:nth-child(3){background:rgba(255,255,255,.18)}
.browser-hero{position:relative;z-index:2;display:grid;gap:12px;padding:26px;border-radius:28px;background:rgba(7,10,16,.64);border:1px solid rgba(255,255,255,.10);box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}
.browser-hero span{color:var(--gold2);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.10em}.browser-hero strong{color:#fff;font-size:clamp(30px,4vw,52px);letter-spacing:-.06em;line-height:.96}.browser-hero em{font-style:normal;color:var(--muted);font-weight:800;line-height:1.4}
.browser-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:12px;margin-top:18px}.browser-grid b{height:84px;border-radius:22px;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));border:1px solid rgba(255,255,255,.08)}
.website-stack-note{display:grid;gap:6px;padding:18px 20px;border-radius:26px;background:linear-gradient(180deg,rgba(201,148,58,.15),rgba(255,255,255,.035));border:1px solid rgba(201,148,58,.22);box-shadow:0 16px 40px rgba(0,0,0,.18)}.website-stack-note strong{color:#fff;font-size:19px;letter-spacing:-.03em}.website-stack-note span{color:var(--muted);line-height:1.45}
.website-service-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.website-service-grid article{display:grid;gap:8px;min-height:150px;padding:22px;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));border:1px solid var(--border);box-shadow:0 16px 42px rgba(0,0,0,.18)}.website-service-grid strong{color:#fff;font-size:21px;line-height:1.05;letter-spacing:-.04em}.website-service-grid span{color:var(--muted);font-size:14px;line-height:1.4}
.website-package-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.website-package-grid-home{grid-template-columns:repeat(3,minmax(0,1fr))}.website-package-card{display:flex;flex-direction:column;gap:12px;padding:22px;border-radius:30px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));border:1px solid var(--border);box-shadow:0 18px 52px rgba(0,0,0,.22)}.website-package-card.featured{background:linear-gradient(180deg,rgba(201,148,58,.14),rgba(255,255,255,.035));border-color:rgba(201,148,58,.25)}.website-package-card>span{color:var(--muted2);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.website-package-card h3{color:#fff;font-size:29px;line-height:.98;letter-spacing:-.055em}.website-package-card p{color:var(--muted);font-size:14px;line-height:1.45}.website-package-card b{color:var(--gold2);font-size:20px}.website-package-card ul{display:grid;gap:7px;margin:0 0 4px;padding:0;list-style:none}.website-package-card li{color:rgba(255,255,255,.74);font-size:13px;line-height:1.35}.website-package-card li::before{content:'✓';color:var(--gold2);font-weight:900;margin-right:7px}.website-package-card .btn{margin-top:auto}
.website-home-section{background:radial-gradient(circle at 85% 0,rgba(86,112,255,.08),transparent 30%)}.route-card-web{border-color:rgba(115,138,255,.22)!important;background:linear-gradient(180deg,rgba(80,104,220,.12),rgba(255,255,255,.025))!important}.seo-website-page .website-hero-card{align-self:stretch}.website-order-form select,.website-order-form input,.website-order-form textarea{width:100%}
@media(max-width:1180px){.website-package-grid,.website-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.website-package-grid-home{grid-template-columns:1fr 1fr}.browser-grid{grid-template-columns:1fr 1fr}.browser-grid b:first-child{grid-column:1/-1}}
@media(max-width:760px){.website-browser-mock{min-height:340px;border-radius:24px;padding:16px}.browser-hero{border-radius:20px;padding:18px}.browser-hero strong{font-size:34px}.website-package-grid,.website-service-grid,.website-package-grid-home{grid-template-columns:1fr}.website-package-card,.website-service-grid article{border-radius:22px}.website-stack-note{border-radius:20px}.browser-grid{grid-template-columns:1fr}.browser-grid b{height:56px}.website-hero-tags{display:grid}.website-package-card h3{font-size:25px}}


/* ═══════════════════════════════════════════════════════
   V82 hero and brand cleanup: official logo, desktop/mobile polish
   ═══════════════════════════════════════════════════════ */
.brand-logo{display:flex;align-items:center;gap:10px;min-width:0;}
.brand-logo-img{display:block;width:auto;height:46px;max-width:150px;object-fit:contain;filter:drop-shadow(0 5px 12px rgba(201,148,58,.18));}
.brand-logo .brand-copy{display:flex;flex-direction:column;min-width:0;}
.brand-logo .brand-copy small{font-size:9px;letter-spacing:.12em;text-transform:uppercase;color:rgba(240,237,232,.42);white-space:nowrap;}
.topbar .brand-logo-img{height:38px;max-width:125px;}
.drawer-head .brand-logo-img{height:42px;max-width:140px;}
.footer-brand-logo .brand-logo-img{height:52px;max-width:160px;margin-bottom:10px;}

.mobile-dock-inner{grid-template-columns:repeat(5,minmax(0,1fr))!important;}
.mobile-dock a{gap:4px;}
.mobile-dock strong{font-size:11.5px!important;}
.mobile-dock span{font-size:9.5px!important;}
@media (max-width:860px){
  .topbar .brand-logo-img{height:34px;max-width:112px;}
  .brand-logo .brand-copy small{display:none;}
  .floating-cta{bottom:calc(104px + env(safe-area-inset-bottom,0px))!important;right:10px!important;}
}
@media (max-width:430px){
  .mobile-dock{left:8px!important;right:8px!important;bottom:8px!important;padding:6px!important;border-radius:22px!important;}
  .mobile-dock-inner{gap:4px!important;}
  .mobile-dock a{min-height:52px!important;padding:8px 3px!important;border-radius:15px!important;}
  .mobile-dock strong{font-size:10.5px!important;}
  .mobile-dock span{font-size:9px!important;}
}


/* ═══════════════════════════════════════════════════════
   V83 hard fix: real hero layout, official logo usage, business hero cleanup
   ═══════════════════════════════════════════════════════ */
:root{--gold3:#f4d681;--deep:#07090e;}
.brand-logo-img{object-fit:contain!important;object-position:left center!important;}
.brand-logo .brand-copy small{letter-spacing:.10em;color:rgba(240,237,232,.52)}
.topbar{backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.topbar-inner{min-height:72px}
.topbar .brand{flex:0 0 auto}
.topbar .brand-logo-img{height:42px!important;max-width:136px!important}
.btn-menu{background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035))!important;border:1px solid rgba(255,255,255,.14)!important;color:#fff!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 14px 36px rgba(0,0,0,.22)}
.hero-meta{display:flex;flex-wrap:wrap;gap:8px 10px;align-items:center;margin-bottom:12px}
.hero-logo-backdrop{display:none!important}
.hero-final{padding:24px 0 28px!important;background:radial-gradient(circle at 86% 5%,rgba(244,214,129,.12),transparent 31%),linear-gradient(180deg,rgba(255,255,255,.012),rgba(255,255,255,0))}
.hero-shell-v83{position:relative;display:grid!important;grid-template-columns:minmax(0,.78fr) minmax(440px,1fr)!important;grid-template-areas:'content visual' 'benefits visual'!important;gap:18px!important;align-items:stretch;min-height:560px!important;padding:30px!important;border-radius:36px!important;background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.024))!important;border:1px solid rgba(255,255,255,.115)!important;box-shadow:0 28px 80px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.065)!important;overflow:hidden}
.hero-shell-v83::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 75% 20%,rgba(232,184,90,.16),transparent 34%),linear-gradient(90deg,rgba(7,9,14,.10),rgba(7,9,14,.42));pointer-events:none}
.hero-shell-v83 .hero-content{grid-area:content;position:relative;z-index:2;align-self:center;max-width:720px}
.hero-shell-v83 h1{max-width:760px!important;font-size:clamp(42px,5.2vw,74px)!important;line-height:.96!important;letter-spacing:-.046em!important;margin-bottom:14px!important;text-wrap:balance}
.hero-shell-v83 .lead{max-width:58ch!important;font-size:17px!important;line-height:1.46!important;color:rgba(240,237,232,.70)!important}
.hero-shell-v83 .hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}.hero-shell-v83 .hero-actions .btn{min-height:52px;border-radius:18px}
.hero-shell-v83 .hero-benefits{grid-area:benefits;position:relative;z-index:2;align-self:end;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}.hero-shell-v83 .hero-benefits article{min-height:72px;padding:12px;border-radius:17px;background:rgba(255,255,255,.046);border:1px solid rgba(255,255,255,.10)}
.hero-side-visual-v83{grid-area:visual;position:relative;z-index:2;display:grid;grid-template-columns:1fr .54fr;gap:10px;min-height:500px}
.hero-side-visual-v83 figure,.hero-side-mini-v83 img{overflow:hidden;border-radius:26px;background:#0a0d13;border:1px solid rgba(255,255,255,.11);box-shadow:0 20px 54px rgba(0,0,0,.32)}
.hero-side-main-v83{position:relative;min-height:100%}.hero-side-main-v83 img,.hero-side-mini-v83 img{width:100%;height:100%;object-fit:cover;filter:saturate(.96) contrast(1.02)}
.hero-side-mini-v83{display:grid;gap:10px;grid-template-rows:1fr 1fr;min-height:0}
.hero-side-main-v83 figcaption{position:absolute;left:12px;right:12px;bottom:12px;padding:11px 13px;border-radius:16px;background:rgba(7,10,16,.78);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(12px)}
.hero-side-main-v83 figcaption strong{display:block;color:#fff;font-size:14px}.hero-side-main-v83 figcaption span{display:block;margin-top:2px;color:rgba(240,237,232,.63);font-size:11px;font-weight:800}
.mobile-dock-inner{grid-template-columns:repeat(5,minmax(0,1fr))!important}.mobile-dock a{min-width:0;overflow:hidden}.mobile-dock strong,.mobile-dock span{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mobile-dock a[href*="max.ru"] span{font-size:0!important}.mobile-dock a[href*="max.ru"] span::after{content:'канал';font-size:9px!important}
@media(max-width:1120px){.hero-side-visual-v83{min-height:420px}}
@media(max-width:860px){
  body{padding-bottom:92px}.topbar-inner{min-height:62px}.topbar .brand-logo-img{height:36px!important;max-width:118px!important}.brand-logo .brand-copy{display:none!important}.hero-meta{margin-bottom:10px}.hero-addr{display:none}
  .floating-cta{right:8px!important;bottom:calc(100px + env(safe-area-inset-bottom,0px))!important}.floating-cta a{width:48px!important;height:48px!important;border-radius:16px!important}
  .hero-shell-v83{grid-template-columns:1fr!important;grid-template-areas:'content' 'visual' 'benefits'!important;min-height:0!important;padding:18px 16px!important;border-radius:28px!important}.hero-shell-v83 h1{font-size:clamp(32px,10vw,44px)!important;max-width:none!important;letter-spacing:-.03em!important}.hero-shell-v83 .lead{font-size:14px!important;line-height:1.38!important}.hero-side-visual-v83{min-height:290px;grid-template-columns:1fr 1fr}.hero-side-main-v83{grid-column:1/-1;min-height:200px}.hero-side-mini-v83{grid-column:1/-1;grid-template-columns:1fr 1fr;grid-template-rows:auto}.hero-side-mini-v83 img{height:120px}.hero-shell-v83 .hero-benefits{grid-template-columns:1fr;gap:7px}.hero-shell-v83 .hero-benefits article{min-height:0}
}
@media(max-width:430px){.mobile-dock{left:8px!important;right:8px!important;bottom:8px!important}.mobile-dock a{min-height:52px!important;padding:8px 3px!important}.mobile-dock strong{font-size:10px!important}.mobile-dock span{font-size:8.5px!important}.topbar-actions .btn:not(.btn-menu),.topbar-phone{display:none!important}}


/* ═══════════════════════════════════════════════════════
   Production polish: calmer hero, stronger mobile rhythm, safer CTA grid
   ═══════════════════════════════════════════════════════ */
html,body{overflow-x:hidden;}
.route-card,.service-card,.website-package-card,.design-example-card{transition:transform .18s ease,border-color .18s ease,background .18s ease;}
.route-card:hover,.service-card:hover,.website-package-card:hover,.design-example-card:hover{transform:translateY(-2px);}
@media(max-width:860px){
  .mobile-dock-inner{grid-template-columns:repeat(5,minmax(0,1fr))!important;}
  .mobile-dock a{min-height:54px!important;border-radius:16px!important;}
  .mobile-dock strong{font-size:10.5px!important;}
  .mobile-dock span{font-size:8.7px!important;}
}
.topbar-nav a{white-space:nowrap;}


/* Production polish: cleaner hero, stable mobile CTA */
:root{--v86-gold:#d8ae55;--v86-gold2:#f0cf83;--v86-card:rgba(255,255,255,.055);--v86-line:rgba(255,255,255,.12)}
html,body{max-width:100%;overflow-x:hidden!important;scroll-behavior:smooth}
img,video,canvas,svg{max-width:100%;height:auto}
.brand-logo-img{display:block;object-fit:contain!important;object-position:left center!important;filter:drop-shadow(0 8px 16px rgba(216,174,85,.18))!important}
.topbar{backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.topbar-inner{min-height:74px!important}
.topbar .brand-logo-img{height:48px!important;max-width:154px!important}
.drawer-head .brand-logo-img{height:46px!important;max-width:150px!important}
.footer-brand-logo .brand-logo-img{height:58px!important;max-width:178px!important}
.topbar-nav a{white-space:nowrap}
.topbar-actions .btn,.topbar-phone{white-space:nowrap}
.mobile-dock{z-index:70!important;backdrop-filter:blur(18px)!important;-webkit-backdrop-filter:blur(18px)!important}
.mobile-dock-inner{grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:5px!important}
.mobile-dock a{min-width:0!important;min-height:56px!important;padding:8px 4px!important;border-radius:16px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important}
.mobile-dock strong{font-size:10.8px!important;line-height:1.05!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.mobile-dock span{font-size:9px!important;line-height:1.05!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.mobile-dock a[href*="max.ru"] span{font-size:9px!important}.mobile-dock a[href*="max.ru"] span::after{content:none!important}
.floating-cta{z-index:65!important}
@media(max-width:860px){
  body{padding-bottom:96px!important}.topbar-inner{min-height:62px!important}.topbar .brand-logo-img{height:38px!important;max-width:126px!important}.brand-logo .brand-copy{display:none!important}
  .floating-cta{bottom:calc(104px + env(safe-area-inset-bottom,0px))!important;right:10px!important;gap:8px!important}.floating-cta a{width:48px!important;height:48px!important;border-radius:16px!important}
}
@media(max-width:430px){.mobile-dock{left:8px!important;right:8px!important;bottom:8px!important;padding:6px!important;border-radius:22px!important}.mobile-dock-inner{gap:4px!important}.mobile-dock a{min-height:52px!important;padding:7px 3px!important;border-radius:15px!important}.mobile-dock strong{font-size:10px!important}.mobile-dock span{font-size:8.4px!important}.topbar-actions .btn:not(.btn-menu),.topbar-phone{display:none!important}
}


/* Production polish: stable hero, navigation, mobile dock and form UX */
:root{--v87-gold:#d8ae55;--v87-gold2:#f1d174;--v87-panel:rgba(255,255,255,.052);--v87-line:rgba(255,255,255,.11)}
html,body{max-width:100%;overflow-x:hidden!important;scroll-behavior:smooth}
img{max-width:100%;height:auto}.brand-logo-img{object-fit:contain}.btn,.contact-pill,.mobile-dock a{-webkit-tap-highlight-color:transparent}
.topbar{background:rgba(7,9,14,.78)!important;border-bottom:1px solid rgba(255,255,255,.08)!important}.topbar-inner{gap:12px!important}.topbar-nav{min-width:0;overflow:hidden}.topbar-nav a{font-size:13px;padding:10px 11px}.topbar-actions{min-width:max-content}.btn-menu{gap:8px!important}
@media(max-width:1280px){.topbar-nav{display:none!important}.btn-menu{display:flex!important}.topbar-actions>.btn-gold{display:flex!important}.topbar .brand-logo-img{height:42px!important;max-width:140px!important}}
@media(max-width:640px){.topbar-actions>.btn-gold{display:none!important}}
.mobile-dock{box-shadow:0 18px 42px rgba(0,0,0,.36),inset 0 1px 0 rgba(255,255,255,.06)!important}.mobile-dock-inner{grid-template-columns:repeat(5,minmax(0,1fr))!important}.mobile-dock a{min-height:56px!important}.mobile-dock a[href*="max.ru"] span{font-size:0!important}.mobile-dock a[href*="max.ru"] span::before{content:'связь';font-size:9px!important}.mobile-dock .dock-cta{background:linear-gradient(180deg,rgba(216,174,85,.30),rgba(132,92,22,.20))!important;border-color:rgba(216,174,85,.34)!important}
@media(max-width:430px){.mobile-dock{left:8px!important;right:8px!important;bottom:8px!important}.mobile-dock a{min-height:52px!important}.mobile-dock strong{font-size:9.8px!important}.mobile-dock span,.mobile-dock a[href*="max.ru"] span::before{font-size:8.3px!important}}
.form-msg,.form-status,#formMsg,.order-status-result{min-height:22px}.form-msg.success,.form-status.success,#formMsg.success{color:#c9f7d5}.form-msg.error,.form-status.error,#formMsg.error{color:#ffc0bd}
.footer .footer-links a{min-height:30px;display:inline-flex;align-items:center}


/* ═══════════════════════════════════════════════════════
   Production pass: defect fixes, cleaner hero, safer mobile contacts
   ═══════════════════════════════════════════════════════ */
html,body{width:100%;max-width:100%;overflow-x:hidden!important;}
body{background:#07090e;}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid rgba(242,207,117,.92)!important;outline-offset:3px;}
.form-msg.ok,.form-status.ok,#formMsg.ok{color:#c9f7d5!important;}
.form-msg.err,.form-status.err,#formMsg.err{color:#ffc0bd!important;}
.form-msg,.form-status,#formMsg{font-size:13px;font-weight:750;line-height:1.35;}
@media(max-width:860px){
  body{padding-bottom:96px!important;}
  .floating-cta{right:9px!important;bottom:calc(104px + env(safe-area-inset-bottom,0px))!important;}
  .floating-cta a{width:47px!important;height:47px!important;border-radius:16px!important;}
}
@media(max-width:430px){
  .topbar .brand-logo-img{height:36px!important;max-width:122px!important;}
  .mobile-dock{left:8px!important;right:8px!important;bottom:8px!important;padding:6px!important;border-radius:22px!important;}
  .mobile-dock-inner{gap:4px!important;}
  .mobile-dock a{min-height:52px!important;padding:7px 3px!important;border-radius:15px!important;}
  .mobile-dock strong{font-size:9.8px!important;}
  .mobile-dock span,.mobile-dock a[href*="max.ru"] span::before{font-size:8.3px!important;}
}


/* ═══════════════════════════════════════════════════════
   Final production pass: clean hero without old class conflicts,
   better contact handling, tighter mobile rhythm
   ═══════════════════════════════════════════════════════ */


/* V90 final polish: cleaner lead capture, stronger contact readability */
.form-msg,.form-message{border-radius:16px;padding:12px 14px;font-weight:850;line-height:1.35;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.045);color:rgba(244,242,238,.82)}
.form-msg.ok,.form-message.ok,.form-msg.success,.form-message.success{border-color:rgba(82,211,127,.28);background:rgba(82,211,127,.09);color:#d9ffe5}
.form-msg.err,.form-message.err,.form-msg.error,.form-message.error{border-color:rgba(255,104,104,.28);background:rgba(255,104,104,.09);color:#ffe0e0}
@media(max-width:860px){
  .drawer-actions-messengers{grid-template-columns:1fr 1fr!important;gap:8px!important}
  .drawer-actions-messengers .btn{min-height:48px!important}
}


/* V130 clean active layer: legacy hero blocks v92-v128 removed. */
/* Current icon system: original messenger icons, clean mobile-safe layers. */
:root{
  --sa-tg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10.8 31.7 52.4 14.9c2.3-.93 4.2 1.26 3.4 3.73L44.9 54.3c-.68 2.05-3.23 2.78-4.9 1.36L27.8 45.4l-7.2 6.9c-1.25 1.2-3.35.58-3.72-1.12l-2.7-12.38-4.04-1.25c-2.12-.65-2.22-3.5.66-5.85Zm10.9 4.18 3.02 10.93 3.12-8.25 20.97-18.12c.8-.7-.06-1.88-.94-1.2L21.7 35.88Z'/%3E%3C/svg%3E");
  --sa-wa:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M16.9 50.4 20.5 40A18.8 18.8 0 1 1 32.2 45c-3.25 0-6.32-.82-9-2.27l-6.3 7.67Zm9.14-29.16c-.58-1.28-1.18-1.31-1.74-1.33-.45-.02-.98-.02-1.5-.02s-1.38.2-2.1.98c-.73.79-2.77 2.7-2.77 6.58s2.83 7.63 3.22 8.16c.39.52 5.48 8.75 13.58 11.93 6.73 2.63 8.1 2.1 9.56 1.97 1.46-.14 4.7-1.92 5.36-3.77.66-1.85.66-3.43.46-3.77-.2-.33-.72-.52-1.52-.92-.78-.39-4.7-2.3-5.42-2.57-.72-.26-1.25-.39-1.78.4-.52.78-2.04 2.56-2.5 3.08-.46.53-.92.6-1.7.2-.8-.4-3.35-1.23-6.37-3.93-2.35-2.1-3.94-4.68-4.4-5.47-.46-.78-.05-1.22.35-1.6.35-.36.78-.93 1.18-1.39.4-.46.52-.78.78-1.31.27-.52.14-.99-.06-1.38-.2-.4-1.73-4.28-2.6-5.8Z'/%3E%3C/svg%3E");
  --sa-max:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M13 45V19h11.2L32 31.1 39.8 19H51v26H39.9V33.6L32 45 24.1 33.6V45H13Z'/%3E%3C/svg%3E");
  --sa-print:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M16 8h32a6 6 0 0 1 6 6v13H10V14a6 6 0 0 1 6-6Zm-7 18h46a9 9 0 0 1 9 9v21H49V43H15v13H0V35a9 9 0 0 1 9-9Zm41 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z'/%3E%3C/svg%3E");
  --sa-canvas:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M12 9h40a8 8 0 0 1 8 8v31a8 8 0 0 1-8 8H12a8 8 0 0 1-8-8V17a8 8 0 0 1 8-8Zm5 38h36L42 31l-7 8-8-10-10 18Z'/%3E%3C/svg%3E");
  --sa-site:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 12h44a8 8 0 0 1 8 8v25a8 8 0 0 1-8 8H10a8 8 0 0 1-8-8V20a8 8 0 0 1 8-8Zm9 15h27v-6H19v6Zm0 11h16v-6H19v6Zm0 10h24v-6H19v6Z'/%3E%3C/svg%3E");
  --sa-design:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M13 48 40 21a10 10 0 0 1 14 14L27 62H13V48Zm31-22 8 8'/%3E%3C/svg%3E");
  --sa-request:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 6a26 26 0 1 1 0 52 26 26 0 0 1 0-52Zm-4 16v7h-7v6h7v7h8v-7h7v-6h-7v-7h-8Z'/%3E%3C/svg%3E");
  --sa-price:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M14 9h36a7 7 0 0 1 7 7v32a7 7 0 0 1-7 7H14a7 7 0 0 1-7-7V16a7 7 0 0 1 7-7Zm8 15h22v-6H22v6Zm0 12h14v-6H22v6Zm0 11h26v-6H22v6Z'/%3E%3C/svg%3E");
}
.hero-v134{padding:26px 0 34px;background:radial-gradient(circle at 88% 0,rgba(244,201,130,.13),transparent 34%),radial-gradient(circle at 8% 94%,rgba(69,102,188,.10),transparent 32%)}
.hero-v134 .hero-layout-v134{display:grid;grid-template-columns:minmax(0,.96fr) minmax(420px,1.04fr);gap:16px;align-items:stretch}
.hero-v134 .hero-copy-v134,.hero-v134 .hero-visual-v134{min-height:642px;border-radius:34px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(145deg,rgba(255,255,255,.072),rgba(255,255,255,.027));box-shadow:0 24px 80px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.08)}
.hero-v134 .hero-copy-v134{padding:34px;display:flex;flex-direction:column;justify-content:center;overflow:hidden}
.hero-v134 .hero-title-v134{display:grid;gap:4px;margin:0 0 16px}.hero-v134 .hero-title-v134 span{font-size:clamp(42px,4.7vw,68px);line-height:1.01;letter-spacing:-.028em;text-wrap:balance}.hero-v134 .hero-title-gold{background:linear-gradient(92deg,#fff0ba,#c99335 58%,#fff1b9);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-v134 .lead{max-width:60ch;font-size:16.4px;line-height:1.52;color:rgba(244,240,232,.76);margin:0 0 18px}.hero-v134 .hero-promise-v134{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 18px}.hero-v134 .hero-promise-v134 span{padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.105);background:rgba(255,255,255,.04);font-size:12px;color:rgba(246,242,234,.72)}
.hero-v134 .hero-actions-v134{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;margin:0 0 16px}.hero-v134 .hero-actions-v134 .btn{min-height:56px;border-radius:18px;gap:8px;font-size:13px;letter-spacing:-.01em}.hero-v134 .hero-actions-v134 .btn::after{content:'';width:18px;height:18px;display:inline-block;flex:0 0 auto;background:currentColor;-webkit-mask:center/contain no-repeat var(--sa-request);mask:center/contain no-repeat var(--sa-request)}.hero-v134 .hero-actions-v134 a[href*='shop']::after{-webkit-mask-image:var(--sa-canvas);mask-image:var(--sa-canvas)}.hero-v134 .hero-actions-v134 a[href*='business']::after{-webkit-mask-image:var(--sa-design);mask-image:var(--sa-design)}.hero-v134 .hero-actions-v134 a[href*='prices']::after{-webkit-mask-image:var(--sa-price);mask-image:var(--sa-price)}
.hero-v134 .hero-helper-v134{margin:0 0 10px;color:rgba(246,242,234,.62);font-weight:760}.hero-v134 .hero-scenarios-v134{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;margin:0 0 16px}.hero-v134 .hero-scenarios-v134 a{min-height:108px;padding:14px;border-radius:22px;border:1px solid rgba(255,255,255,.105);background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.03));display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:5px;color:#fff;text-decoration:none}.hero-v134 .hero-scenarios-v134 strong{font-size:14px}.hero-v134 .hero-scenarios-v134 span:last-child{font-size:11px;line-height:1.2;color:rgba(246,242,234,.62)}
.hero-v134 .hero-scenario-icon{position:relative;width:34px!important;height:34px!important;border-radius:14px!important;margin:0 0 3px!important;background:linear-gradient(145deg,#ffe28a,#bf8425)!important;box-shadow:0 14px 28px rgba(201,148,58,.18),inset 0 1px 0 rgba(255,255,255,.36)!important}.hero-v134 .hero-scenario-icon::before{content:'';position:absolute;inset:8px;background:#17120c;-webkit-mask:center/contain no-repeat var(--sa-request);mask:center/contain no-repeat var(--sa-request)}.hero-v134 .icon-print::before{-webkit-mask-image:var(--sa-print);mask-image:var(--sa-print)}.hero-v134 .icon-canvas::before{-webkit-mask-image:var(--sa-canvas);mask-image:var(--sa-canvas)}.hero-v134 .icon-web::before{-webkit-mask-image:var(--sa-site);mask-image:var(--sa-site)}.hero-v134 .icon-design::before{-webkit-mask-image:var(--sa-design);mask-image:var(--sa-design)}
.hero-v134 .hero-contact-row-v134{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}.hero-v134 .contact-pill{position:relative;min-height:82px;border-radius:22px;padding:12px 12px 12px 58px!important;display:flex!important;flex-direction:column;align-items:flex-start;justify-content:center;gap:2px;border:1px solid rgba(255,255,255,.11);background:linear-gradient(145deg,rgba(255,255,255,.078),rgba(255,255,255,.03));box-shadow:inset 0 1px 0 rgba(255,255,255,.06);text-decoration:none}.hero-v134 .contact-pill::after{display:none!important}.hero-v134 .contact-pill::before{content:''!important;display:block!important;position:absolute;left:12px;top:50%;transform:translateY(-50%);width:36px;height:36px;border-radius:15px;background:#36bdff;-webkit-mask:center/58% 58% no-repeat var(--sa-tg);mask:center/58% 58% no-repeat var(--sa-tg);box-shadow:0 12px 26px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.28)}.hero-v134 .contact-pill-wa::before{background:#25d366;-webkit-mask-image:var(--sa-wa);mask-image:var(--sa-wa)}.hero-v134 .contact-pill-max::before{background:#7d8cff;-webkit-mask-image:var(--sa-max);mask-image:var(--sa-max)}.hero-v134 .contact-pill strong{font-size:13px;color:#fff}.hero-v134 .contact-pill span{font-size:10.5px;color:rgba(246,242,234,.63);max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hero-v134 .contact-pill em{margin-top:4px;padding:5px 8px;border-radius:999px;background:rgba(255,255,255,.08);font-size:10px;color:rgba(255,255,255,.76);font-style:italic}
.hero-v134 .hero-mobile-media-v134{display:none}.hero-v134 .hero-visual-v134{position:relative;overflow:hidden;padding:14px;display:grid;grid-template-rows:auto minmax(0,1fr) auto;gap:13px;isolation:isolate}.hero-v134 .hero-visual-v134::before{content:'';position:absolute;inset:0;background:linear-gradient(120deg,rgba(255,255,255,.075),transparent 34%,rgba(232,184,90,.06));pointer-events:none}.hero-v134 .hero-visual-v134>*{position:relative;z-index:1}.hero-v134 .hero-visual-head-v134{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:70px;padding:10px 12px;border-radius:22px;border:1px solid rgba(255,255,255,.09);background:rgba(0,0,0,.18)}.hero-v134 .hero-visual-head-v134 img{width:112px;height:auto;object-fit:contain}.hero-v134 .hero-visual-head-v134 span{font-size:12px;color:rgba(246,242,234,.62);text-align:right}.hero-v134 .hero-showcase-v134{display:grid;gap:11px;min-height:0}.hero-v134 .showcase-main-v134{position:relative;overflow:hidden;min-height:388px;margin:0;border-radius:26px;background:#111;border:1px solid rgba(255,255,255,.095)}.hero-v134 .showcase-main-v134 img{width:100%;height:100%;display:block;object-fit:cover}.hero-v134 .showcase-main-v134 figcaption{position:absolute;left:14px;right:14px;bottom:14px;padding:12px 14px;border-radius:18px;background:rgba(10,12,16,.66);border:1px solid rgba(255,255,255,.13);backdrop-filter:blur(14px)}.hero-v134 .hero-live-strip-v134{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}.hero-v134 .hero-live-strip-v134 a{min-height:105px;border-radius:20px;overflow:hidden}.hero-v134 .hero-live-strip-v134 img{height:100%;object-fit:cover}.hero-v134 .hero-proof-v134{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}.hero-v134 .hero-proof-v134 span{min-height:76px;padding:11px;border-radius:18px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.045)}
.mobile-dock-inner{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:4px!important}.mobile-dock .dock-link{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:2px!important;min-width:0!important;overflow:hidden!important}.mobile-dock .dock-link::before{display:none!important}.mobile-dock .dock-link::after{content:''!important;display:block!important;order:-1;width:20px;height:20px;margin:0 0 2px;background:#d7a63a;-webkit-mask:center/contain no-repeat var(--sa-canvas);mask:center/contain no-repeat var(--sa-canvas)}.mobile-dock .dock-print::after{-webkit-mask-image:var(--sa-print);mask-image:var(--sa-print)}.mobile-dock .dock-request::after,.mobile-dock .dock-cta::after{-webkit-mask-image:var(--sa-request);mask-image:var(--sa-request);background:#fff1b6}.mobile-dock .dock-telegram::after{-webkit-mask-image:var(--sa-tg);mask-image:var(--sa-tg);background:#36bdff}.mobile-dock .dock-whatsapp::after{-webkit-mask-image:var(--sa-wa);mask-image:var(--sa-wa);background:#25d366}.mobile-dock .dock-max::after{-webkit-mask-image:var(--sa-max);mask-image:var(--sa-max);background:#7d8cff}.mobile-dock strong{font-size:10.4px!important;line-height:1.05;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mobile-dock span{font-size:8.6px!important;line-height:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;opacity:.68}
.file-transfer-grid a{position:relative;grid-template-columns:42px minmax(0,1fr)!important}.file-transfer-grid a::before{content:''!important;display:block!important;width:36px;height:36px;border-radius:15px;background:#d7a63a;-webkit-mask:center/60% 60% no-repeat var(--sa-request);mask:center/60% 60% no-repeat var(--sa-request);box-shadow:0 12px 24px rgba(0,0,0,.2)}.file-transfer-grid a[href*='t.me']::before{background:#36bdff;-webkit-mask-image:var(--sa-tg);mask-image:var(--sa-tg)}.file-transfer-grid a[href*='wa.me']::before{background:#25d366;-webkit-mask-image:var(--sa-wa);mask-image:var(--sa-wa)}.file-transfer-grid a[href*='max.ru']::before{background:#7d8cff;-webkit-mask-image:var(--sa-max);mask-image:var(--sa-max)}
.floating-cta a{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.14)!important;box-shadow:0 14px 34px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.20)!important}.floating-cta .social-glyph,.floating-cta a::after{display:block!important;width:27px;height:27px;background:#fff;-webkit-mask:center/contain no-repeat var(--sa-tg);mask:center/contain no-repeat var(--sa-tg)}.floating-cta .fc-tg{background:linear-gradient(145deg,#35b7ff,#1688d9)!important}.floating-cta .fc-wa{background:linear-gradient(145deg,#38f276,#0a9f4b)!important}.floating-cta .fc-max{background:linear-gradient(145deg,#7d8cff,#4249d8)!important}.floating-cta .fc-wa .social-glyph{-webkit-mask-image:var(--sa-wa);mask-image:var(--sa-wa)}.floating-cta .fc-max .social-glyph{-webkit-mask-image:var(--sa-max);mask-image:var(--sa-max)}.floating-cta a svg,.floating-cta a img{display:none!important}.floating-cta a::after{content:none!important}
@media(max-width:1120px){.hero-v134 .hero-layout-v134{grid-template-columns:1fr}.hero-v134 .hero-copy-v134,.hero-v134 .hero-visual-v134{min-height:auto}.hero-v134 .hero-visual-v134{min-height:520px}}
@media(max-width:860px){.hero-v134{padding:13px 0 18px}.hero-v134 .wrap{width:min(100% - 22px,var(--wrap,1180px))}.hero-v134 .hero-layout-v134{display:block}.hero-v134 .hero-copy-v134{border-radius:27px;padding:18px 15px 15px;min-height:0}.hero-v134 .hero-addr{display:none}.hero-v134 .hero-title-v134{gap:2px;margin-bottom:11px}.hero-v134 .hero-title-v134 span{font-size:clamp(31px,8.55vw,39px);line-height:1.025;letter-spacing:-.018em}.hero-v134 .lead{font-size:13.8px;line-height:1.39;margin-bottom:13px;max-width:100%}.hero-v134 .hero-promise-v134{gap:6px;margin-bottom:12px}.hero-v134 .hero-promise-v134 span{font-size:10.5px;padding:7px 8px}.hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin-bottom:10px}.hero-v134 .hero-actions-v134 .btn{min-height:46px;border-radius:15px;font-size:11.4px;padding:9px 6px}.hero-v134 .hero-helper-v134{font-size:12px;margin-bottom:8px}.hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(4,minmax(0,1fr));gap:6px;margin-bottom:10px}.hero-v134 .hero-scenarios-v134 a{min-height:78px;border-radius:15px;padding:9px 6px;align-items:center;text-align:center}.hero-v134 .hero-scenarios-v134 strong{font-size:11.5px}.hero-v134 .hero-scenarios-v134 span:last-child{display:none}.hero-v134 .hero-scenario-icon{width:30px!important;height:30px!important;margin-bottom:1px!important}.hero-v134 .hero-scenario-icon::before{inset:7px}.hero-v134 .hero-mobile-media-v134{display:block;position:relative;margin:0 0 10px;overflow:hidden;border-radius:20px;border:1px solid rgba(255,255,255,.105);background:rgba(255,255,255,.04);aspect-ratio:16/9}.hero-v134 .hero-mobile-media-v134 img{width:100%;height:100%;display:block;object-fit:cover}.hero-v134 .hero-mobile-media-v134 figcaption{position:absolute;left:9px;right:9px;bottom:9px;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 10px;border-radius:14px;background:rgba(10,12,16,.68);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(12px)}.hero-v134 .hero-mobile-media-v134 figcaption strong{font-size:11.5px;line-height:1.1}.hero-v134 .hero-mobile-media-v134 figcaption span{font-size:10px;color:rgba(246,242,234,.62);line-height:1.1;text-align:right}.hero-v134 .hero-contact-row-v134{grid-template-columns:1fr;gap:7px}.hero-v134 .contact-pill{min-height:50px;border-radius:16px;padding:9px 86px 9px 54px!important}.hero-v134 .contact-pill::before{left:11px;width:32px;height:32px;border-radius:13px}.hero-v134 .contact-pill strong{font-size:12px}.hero-v134 .contact-pill span{font-size:10.4px}.hero-v134 .contact-pill em{position:absolute;right:10px;top:50%;transform:translateY(-50%);margin:0}.hero-v134 .hero-visual-v134{display:none!important}body{overflow-x:hidden}}
@media(max-width:430px){.mobile-dock-inner{grid-template-columns:repeat(6,minmax(0,1fr))!important}.mobile-dock strong{font-size:9.2px!important}.mobile-dock span{display:none!important}.hero-v134 .contact-pill em{display:none}.hero-v134 .contact-pill{padding-right:11px!important}}
@media(max-width:380px){.hero-v134 .hero-title-v134 span{font-size:30px}.hero-v134 .lead{font-size:13.2px}.hero-v134 .hero-actions-v134{grid-template-columns:1fr}.hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))}.hero-v134 .hero-scenarios-v134 a{min-height:58px;flex-direction:row;justify-content:flex-start;text-align:left;padding:8px 9px}.hero-v134 .hero-scenario-icon{width:26px!important;height:26px!important;margin:0!important}.hero-v134 .hero-mobile-media-v134 figcaption span{display:none}}


/* v130 original messenger icons: professional app artwork, no mask squiggles */
:root{
  --icon-tg-original:url('./7art-telegram-original-v130.png');
  --icon-wa-original:url('./7art-whatsapp-original-v130.png');
  --icon-max-original:url('./7art-max-original-v130.png');
}
.hero-v134 .contact-pill::before,
.mobile-dock .dock-telegram::after,
.mobile-dock .dock-whatsapp::after,
.mobile-dock .dock-max::after,
.file-transfer-grid a[href*='t.me']::before,
.file-transfer-grid a[href*='wa.me']::before,
.file-transfer-grid a[href*='max.ru']::before,
.drawer-actions-messengers a[href*='t.me']::after,
.drawer-actions-messengers a[href*='wa.me']::after,
.drawer-actions-messengers a[href*='max.ru']::after{
  -webkit-mask:none!important;
  mask:none!important;
  background-color:transparent!important;
  background-repeat:no-repeat!important;
  background-position:center!important;
  background-size:contain!important;
}
.hero-v134 .contact-pill::before{background-image:var(--icon-tg-original)!important;border-radius:50%!important;box-shadow:0 10px 22px rgba(0,0,0,.28)!important;}
.hero-v134 .contact-pill-wa::before{background-image:var(--icon-wa-original)!important;}
.hero-v134 .contact-pill-max::before{background-image:var(--icon-max-original)!important;border-radius:15px!important;}
.mobile-dock .dock-telegram::after{background-image:var(--icon-tg-original)!important;width:22px!important;height:22px!important;}
.mobile-dock .dock-whatsapp::after{background-image:var(--icon-wa-original)!important;width:22px!important;height:22px!important;}
.mobile-dock .dock-max::after{background-image:var(--icon-max-original)!important;width:22px!important;height:22px!important;}
.file-transfer-grid a[href*='t.me']::before{background-image:var(--icon-tg-original)!important;background-size:72%!important;}
.file-transfer-grid a[href*='wa.me']::before{background-image:var(--icon-wa-original)!important;background-size:72%!important;}
.file-transfer-grid a[href*='max.ru']::before{background-image:var(--icon-max-original)!important;background-size:72%!important;}
.drawer-actions-messengers a[href*='t.me']::after{background-image:var(--icon-tg-original)!important;}
.drawer-actions-messengers a[href*='wa.me']::after{background-image:var(--icon-wa-original)!important;}
.drawer-actions-messengers a[href*='max.ru']::after{background-image:var(--icon-max-original)!important;}
.floating-cta .social-glyph{display:block!important;width:33px!important;height:33px!important;-webkit-mask:none!important;mask:none!important;background-color:transparent!important;background-repeat:no-repeat!important;background-position:center!important;background-size:contain!important;}
.floating-cta .fc-tg,.floating-cta .fc-wa,.floating-cta .fc-max{background:rgba(12,15,22,.68)!important;backdrop-filter:blur(14px)!important;}
.floating-cta .fc-tg .social-glyph{background-image:var(--icon-tg-original)!important;}
.floating-cta .fc-wa .social-glyph{background-image:var(--icon-wa-original)!important;}
.floating-cta .fc-max .social-glyph{background-image:var(--icon-max-original)!important;}
.floating-cta a::before,.floating-cta a::after{content:none!important;display:none!important;}
@media(max-width:860px){
  .floating-cta{right:10px!important;bottom:calc(108px + env(safe-area-inset-bottom,0px))!important;gap:8px!important;z-index:38!important;}
  .floating-cta a{width:52px!important;height:52px!important;border-radius:20px!important;}
  .floating-cta .social-glyph{width:34px!important;height:34px!important;}
  .hero-v134 .hero-contact-row-v134{margin-bottom:0!important;}
  .hero-v134 .contact-pill::before{width:34px!important;height:34px!important;left:10px!important;}
  .mobile-dock{z-index:45!important;}
}
@media(max-width:430px){
  .mobile-dock .dock-link::after{width:21px!important;height:21px!important;}
  .mobile-dock strong{font-size:9px!important;}
  .floating-cta{right:8px!important;}
}

/* v130 mobile anti-overlap: messenger access stays in hero contact row and bottom dock */
@media(max-width:860px){.floating-cta{display:none!important;}}


/* v130 final messenger icon polish: original images only, no mask glyphs, no hero overlap */
:root{
  --icon-tg-original:url('./7art-telegram-original-v130.png');
  --icon-wa-original:url('./7art-whatsapp-original-v130.png');
  --icon-max-original:url('./7art-max-original-v130.png');
}
.hero-v134 .contact-pill::before,
.mobile-dock .dock-telegram::after,
.mobile-dock .dock-whatsapp::after,
.mobile-dock .dock-max::after,
.file-transfer-grid a[href*='t.me']::before,
.file-transfer-grid a[href*='wa.me']::before,
.file-transfer-grid a[href*='max.ru']::before,
.drawer-actions-messengers a[href*='t.me']::after,
.drawer-actions-messengers a[href*='wa.me']::after,
.drawer-actions-messengers a[href*='max.ru']::after{
  -webkit-mask:none!important;
  mask:none!important;
  clip-path:none!important;
  background-color:transparent!important;
  background-repeat:no-repeat!important;
  background-position:center!important;
  background-size:contain!important;
}
.hero-v134 .contact-pill::before{
  width:38px!important;
  height:38px!important;
  left:12px!important;
  border-radius:50%!important;
  background-image:var(--icon-tg-original)!important;
  box-shadow:0 10px 24px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.18)!important;
}
.hero-v134 .contact-pill-wa::before{background-image:var(--icon-wa-original)!important;}
.hero-v134 .contact-pill-max::before{background-image:var(--icon-max-original)!important;border-radius:17px!important;}
.hero-v134 .contact-pill{padding-left:62px!important;overflow:hidden!important;}
.hero-v134 .contact-pill strong,.hero-v134 .contact-pill span,.hero-v134 .contact-pill em{position:relative;z-index:2;}
.mobile-dock .dock-telegram::after{background-image:var(--icon-tg-original)!important;}
.mobile-dock .dock-whatsapp::after{background-image:var(--icon-wa-original)!important;}
.mobile-dock .dock-max::after{background-image:var(--icon-max-original)!important;}
.mobile-dock .dock-telegram::after,
.mobile-dock .dock-whatsapp::after,
.mobile-dock .dock-max::after{
  width:24px!important;
  height:24px!important;
  border-radius:9px!important;
}
.floating-cta a{background:rgba(12,15,22,.72)!important;backdrop-filter:blur(16px)!important;-webkit-backdrop-filter:blur(16px)!important;}
.floating-cta .social-glyph{
  display:block!important;
  width:34px!important;
  height:34px!important;
  -webkit-mask:none!important;
  mask:none!important;
  clip-path:none!important;
  background-color:transparent!important;
  background-repeat:no-repeat!important;
  background-position:center!important;
  background-size:contain!important;
}
.floating-cta .fc-tg .social-glyph{background-image:var(--icon-tg-original)!important;}
.floating-cta .fc-wa .social-glyph{background-image:var(--icon-wa-original)!important;}
.floating-cta .fc-max .social-glyph{background-image:var(--icon-max-original)!important;}
.floating-cta a::before,.floating-cta a::after{content:none!important;display:none!important;}
@media(max-width:860px){
  .floating-cta{display:none!important;}
  .hero-v134 .hero-contact-row-v134{position:relative;z-index:4;margin-bottom:0!important;}
  .hero-v134 .contact-pill{min-height:52px!important;padding:9px 74px 9px 58px!important;border-radius:17px!important;}
  .hero-v134 .contact-pill::before{width:35px!important;height:35px!important;left:11px!important;}
  .mobile-dock{z-index:80!important;}
  .mobile-dock-inner{grid-template-columns:repeat(6,minmax(0,1fr))!important;}
  .mobile-dock .dock-link{min-height:64px!important;padding:7px 3px!important;}
  .mobile-dock strong{font-size:9.6px!important;letter-spacing:-.01em!important;}
}
@media(max-width:430px){
  .hero-v134 .contact-pill{padding-right:12px!important;}
  .hero-v134 .contact-pill em{display:none!important;}
  .mobile-dock strong{font-size:9px!important;}
  .mobile-dock .dock-telegram::after,.mobile-dock .dock-whatsapp::after,.mobile-dock .dock-max::after{width:23px!important;height:23px!important;}
}

/* v130 aliases after removing old class names from active hero markup */
.hero-v134 .hero-visual-head-v134{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:70px;padding:10px 12px;border-radius:22px;border:1px solid rgba(255,255,255,.09);background:rgba(0,0,0,.18)}
.hero-v134 .hero-visual-head-v134 img{width:112px;height:auto;object-fit:contain}
.hero-v134 .hero-visual-head-v134 span{font-size:12px;color:rgba(246,242,234,.62);text-align:right}
.hero-v134 .hero-showcase-v134{display:grid;gap:11px;min-height:0}
.hero-v134 .showcase-main-v134{position:relative;overflow:hidden;min-height:388px;margin:0;border-radius:26px;background:#111;border:1px solid rgba(255,255,255,.095)}
.hero-v134 .showcase-main-v134 img{width:100%;height:100%;display:block;object-fit:cover}
.hero-v134 .showcase-main-v134 figcaption{position:absolute;left:14px;right:14px;bottom:14px;padding:12px 14px;border-radius:18px;background:rgba(10,12,16,.66);border:1px solid rgba(255,255,255,.13);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}

/* v130 active class aliases: no old versioned class names needed in HTML */
.hero-v134 .hero-live-strip-v134{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.hero-v134 .hero-live-strip-v134 a{position:relative;min-height:105px;border-radius:20px;overflow:hidden}
.hero-v134 .hero-live-strip-v134 img{width:100%;height:100%;min-height:86px;object-fit:cover;display:block;filter:saturate(.94) contrast(1.03);transition:transform .55s ease}
.hero-v134 .hero-live-strip-v134 span{position:absolute;left:10px;right:10px;bottom:10px;z-index:2;color:#fff;font-size:11px;font-weight:760;text-shadow:0 2px 10px rgba(0,0,0,.55)}
.hero-v134 .hero-live-strip-v134 a::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.55));pointer-events:none}
.studio-proof-v134{padding:24px 0 10px;background:linear-gradient(180deg,#080a0f,#090c12)}
.proof-strip-v134{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.proof-strip-v134 article{position:relative;overflow:hidden;min-height:174px;border-radius:26px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.035);box-shadow:0 20px 52px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.05)}
.proof-strip-v134 img{display:block;width:100%;height:100%;min-height:174px;object-fit:cover;filter:saturate(.95) contrast(1.02);transition:transform .7s ease}
.proof-strip-v134 article:hover img{transform:scale(1.035)}
.proof-strip-v134 article::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,6,9,.05),rgba(5,6,9,.82));pointer-events:none}
.proof-strip-v134 div{position:absolute;left:12px;right:12px;bottom:12px;z-index:2;padding:12px;border-radius:18px;background:rgba(8,10,15,.70);border:1px solid rgba(255,255,255,.10);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}
.proof-strip-v134 strong{display:block;color:#fff;font-size:14px;line-height:1.08;font-weight:820;letter-spacing:-.012em}.proof-strip-v134 span{display:block;margin-top:5px;color:rgba(242,239,233,.68);font-size:11px;line-height:1.25;font-weight:560}
.live-studio-v134{position:relative;overflow:hidden;background:linear-gradient(180deg,#080a0f,#0c0f16 56%,#080a0f)}
.live-studio-v134::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 14% 10%,rgba(201,148,58,.10),transparent 34%),radial-gradient(circle at 84% 4%,rgba(117,134,190,.08),transparent 28%);pointer-events:none}
.live-studio-v134 .wrap{position:relative;z-index:1}.live-grid-v134{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.live-card-v134{position:relative;min-height:260px;overflow:hidden;border-radius:26px;border:1px solid rgba(255,255,255,.09);background:#10131a;box-shadow:0 22px 56px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.05)}
.live-card-wide-v134{grid-column:span 2}.live-card-v134 img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.96) contrast(1.02);transition:transform .7s ease,filter .7s ease}.live-card-v134:hover img{transform:scale(1.035);filter:saturate(1.02) contrast(1.04)}.live-card-v134::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 38%,rgba(3,4,7,.82));pointer-events:none}.live-card-v134 div{position:absolute;left:14px;right:14px;bottom:14px;z-index:2;padding:12px 13px;border-radius:18px;background:rgba(8,10,15,.70);border:1px solid rgba(255,255,255,.10);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}.live-card-v134 strong{display:block;font-size:15px;line-height:1.05;font-weight:820;color:#fff;letter-spacing:-.015em}.live-card-v134 span{display:block;margin-top:5px;color:rgba(242,239,233,.68);font-size:11.5px;line-height:1.25;font-weight:620}
@media(max-width:980px){.proof-strip-v134{grid-template-columns:1fr}.proof-strip-v134 article,.proof-strip-v134 img{min-height:180px}.live-grid-v134{grid-template-columns:repeat(2,minmax(0,1fr))}.live-card-v134{min-height:220px}.live-card-wide-v134{grid-column:span 2}}
@media(max-width:860px){.studio-proof-v134{padding:16px 0 8px}.proof-strip-v134{gap:9px}.proof-strip-v134 article,.proof-strip-v134 img{min-height:150px;border-radius:21px}.proof-strip-v134 div{left:9px;right:9px;bottom:9px;padding:10px;border-radius:15px}.proof-strip-v134 strong{font-size:13px}.proof-strip-v134 span{font-size:10.3px}.live-studio-v134{padding-top:34px}.live-grid-v134{grid-template-columns:1fr;gap:10px}.live-card-v134,.live-card-wide-v134{grid-column:auto;min-height:198px;border-radius:22px}.live-card-v134 div{left:10px;right:10px;bottom:10px;border-radius:16px;padding:10px 11px}.live-card-v134 strong{font-size:13.6px}.live-card-v134 span{font-size:10.7px}}
@media(max-width:430px){.live-card-v134{min-height:184px}}


/* ===== v130 production copy polish: readable live block, no mobile clipping ===== */
.live-studio-v134 .section-head h2{max-width:880px;text-wrap:balance;}
.live-studio-v134 .section-head p{max-width:760px;}
@media(max-width:430px){
  .live-studio-v134 .section-head h2{font-size:clamp(29px,8.2vw,37px)!important;line-height:1.06!important;letter-spacing:-.026em!important;}
  .live-studio-v134 .section-head p{font-size:15px!important;line-height:1.52!important;max-width:100%!important;}
  .live-studio-v134 .section-head{padding-right:0!important;}
}


/* ===== v130 final production polish: no overlap, active layer only ===== */
html,body{overflow-x:hidden;}
.hero-v134,.studio-proof-v134,.live-studio-v134{isolation:isolate;}
.hero-v134 .hero-layout-v134,
.hero-v134 .hero-copy-v134,
.hero-v134 .hero-visual-v134,
.hero-v134 .hero-actions-v134,
.hero-v134 .hero-scenarios-v134,
.hero-v134 .hero-contact-row-v134,
.live-studio-v134 .section-head,
.live-grid-v134,.live-card-v134{min-width:0;}
.hero-v134 .hero-title-v134 span,
.live-studio-v134 .section-head h2{overflow-wrap:normal;word-break:normal;text-wrap:balance;}
.hero-v134 .lead,
.live-studio-v134 .section-head p{overflow-wrap:break-word;}
.hero-v134 .hero-mobile-media-v134{position:relative;z-index:1;}
.hero-v134 .hero-contact-row-v134{position:relative;z-index:2;}
.floating-cta .social-img{display:block;width:34px;height:34px;object-fit:contain;border-radius:12px;}
.floating-cta .fc-tg .social-img,.floating-cta .fc-wa .social-img{border-radius:50%;}
@media(max-width:860px){
  .hero-v134{padding-top:14px!important;}
  .hero-v134 .hero-copy-v134{overflow:hidden!important;}
  .hero-v134 .hero-title-v134{max-width:100%!important;}
  .hero-v134 .hero-title-v134 span{font-size:clamp(36px,9.4vw,50px)!important;line-height:1.04!important;letter-spacing:-.035em!important;}
  .hero-v134 .lead{font-size:15.4px!important;line-height:1.46!important;}
  .hero-v134 .hero-helper-v134{font-size:14.2px!important;line-height:1.42!important;margin-top:10px!important;margin-bottom:10px!important;}
  .hero-v134 .hero-scenarios-v134{gap:8px!important;}
  .hero-v134 .hero-mobile-media-v134{margin-top:14px!important;}
  .live-studio-v134 .section-head h2{font-size:clamp(32px,8.7vw,43px)!important;line-height:1.06!important;letter-spacing:-.032em!important;}
  .live-studio-v134 .section-head p{font-size:15.5px!important;line-height:1.55!important;}
}
@media(max-width:430px){
  .hero-v134 .hero-title-v134 span{font-size:clamp(34px,9.6vw,44px)!important;}
  .hero-v134 .hero-actions-v134{gap:8px!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:54px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:90px!important;border-radius:20px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:13px!important;}
  .hero-v134 .hero-scenarios-v134 span:not(.hero-scenario-icon){font-size:9.6px!important;}
  .hero-v134 .hero-contact-row-v134{gap:8px!important;}
  .hero-v134 .contact-pill{min-height:54px!important;}
  .live-studio-v134 .section-head h2{font-size:clamp(30px,8.2vw,36px)!important;line-height:1.06!important;}
  .live-studio-v134 .section-head p{font-size:15px!important;line-height:1.52!important;}
  .mobile-dock{left:10px!important;right:10px!important;bottom:max(8px,env(safe-area-inset-bottom))!important;}
}


/* v134 SEO scale: guides, cases, article cards. Uses existing dark/glass design without touching hero. */
.seo-home-preview-v134{position:relative;overflow:hidden}.seo-home-grid,.seo-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.seo-home-card,.seo-card,.seo-panel,.seo-sticky-card{border:1px solid rgba(255,255,255,.1);background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.026));box-shadow:0 22px 70px rgba(0,0,0,.22);border-radius:28px}.seo-home-card{display:flex;flex-direction:column;gap:8px;padding:22px;text-decoration:none;color:var(--text)}.seo-home-card strong{font-size:18px;line-height:1.2}.seo-home-card span{color:var(--muted);font-size:14px;line-height:1.45}.seo-home-card:hover,.seo-card:hover{border-color:rgba(220,178,86,.34);transform:translateY(-2px)}.section-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-top:22px}.seo-hub-layout{display:grid;gap:34px}.seo-card{padding:24px;transition:.22s ease;min-height:210px;display:flex;flex-direction:column}.seo-card h2,.seo-card h3{margin:8px 0 10px;line-height:1.16}.seo-card h2 a,.seo-card h3 a{color:var(--text);text-decoration:none}.seo-card p{color:var(--muted);line-height:1.62;margin:0 0 18px}.seo-card-type{display:inline-flex;width:max-content;border:1px solid rgba(220,178,86,.25);background:rgba(220,178,86,.1);color:var(--gold);border-radius:999px;padding:6px 10px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.arrow-link{margin-top:auto;color:var(--gold);font-weight:800;text-decoration:none}.seo-article-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}.seo-article-main{display:grid;gap:16px}.seo-info-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.seo-info-grid>div{border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.045);border-radius:24px;padding:20px;display:grid;gap:9px}.seo-info-grid strong{color:var(--gold);font-size:13px;text-transform:uppercase;letter-spacing:.06em}.seo-info-grid span{color:var(--text);line-height:1.45}.seo-panel{padding:26px}.seo-panel h2{margin:0 0 12px;font-size:26px}.seo-panel p,.seo-panel li{color:var(--muted);line-height:1.72}.seo-panel ul{margin:0;padding-left:20px}.seo-article-side{position:relative}.seo-sticky-card{padding:22px;margin-bottom:14px;position:sticky;top:92px}.seo-sticky-card h2{margin:0 0 10px}.seo-sticky-card p{color:var(--muted);line-height:1.6}.seo-sticky-card .btn{width:100%;margin-top:10px}.seo-side-links{display:grid;gap:8px}.case-card-grid .seo-card{min-height:230px}.faq-list details{border:1px solid rgba(255,255,255,.09);border-radius:18px;padding:14px 16px;margin:10px 0;background:rgba(255,255,255,.035)}.faq-list summary{cursor:pointer;font-weight:800;color:var(--text)}.faq-list p{margin:10px 0 0}.seo-article-hero p,.seo-hub-hero p{max-width:820px}
@media (max-width:900px){.seo-home-grid,.seo-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.seo-article-layout{grid-template-columns:1fr}.seo-sticky-card{position:static}.seo-info-grid{grid-template-columns:1fr}}
@media (max-width:560px){.seo-home-grid,.seo-card-grid{grid-template-columns:1fr}.seo-home-card,.seo-card,.seo-panel,.seo-sticky-card{border-radius:22px}.seo-panel{padding:20px}.seo-panel h2{font-size:22px}.section-actions{justify-content:stretch}.section-actions .btn{width:100%}}


/* v134 SEO QA polish: topic navigation, article CTA and mobile safety. */
.seo-hub-nav-section{padding-top:18px;padding-bottom:0}
.seo-topic-nav{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:center;padding:14px;border:1px solid rgba(255,255,255,.09);border-radius:26px;background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.024));box-shadow:0 18px 52px rgba(0,0,0,.18)}
.seo-topic-nav a{display:inline-flex;align-items:center;min-height:38px;padding:9px 13px;border-radius:999px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.045);color:var(--text);text-decoration:none;font-weight:800;font-size:13px;line-height:1}
.seo-topic-nav a:hover{border-color:rgba(220,178,86,.36);color:var(--gold);transform:translateY(-1px)}
.seo-next-step{border-color:rgba(220,178,86,.22);background:linear-gradient(145deg,rgba(220,178,86,.11),rgba(255,255,255,.035))}
.seo-next-step .hero-btns{margin-top:16px;justify-content:flex-start}
.seo-card-grid .seo-card h2,.seo-card-grid .seo-card h3{overflow-wrap:break-word;text-wrap:balance}
.sitemap-human-list a small{overflow-wrap:anywhere}
@media(max-width:860px){.seo-hub-nav-section{padding-top:10px}.seo-topic-nav{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding:10px;border-radius:20px;-webkit-overflow-scrolling:touch}.seo-topic-nav a{white-space:nowrap;min-height:34px;font-size:12px;padding:8px 11px}.seo-card-grid{grid-template-columns:1fr!important}.seo-info-grid{grid-template-columns:1fr}.seo-article-layout{grid-template-columns:1fr}.seo-sticky-card{position:relative;top:auto}.seo-panel{padding:20px;border-radius:22px}.seo-panel h2{font-size:22px}.seo-next-step .hero-btns{display:grid;grid-template-columns:1fr;gap:10px}.seo-home-grid{grid-template-columns:1fr!important}}


/* v134 SEO growth polish: stronger guides/search/cases without touching core design */
.search-result-groups{display:grid;gap:28px;margin-top:22px}.search-result-group .section-head.compact{margin-bottom:14px}.search-empty-card{padding:26px;border-radius:26px}.search-empty-card .hero-btns{margin-top:16px}.seo-hub-group{scroll-margin-top:94px}.seo-card-grid .seo-card{overflow:hidden}.seo-card .arrow-link::after{content:'';display:inline-block;width:8px;height:8px;border-top:2px solid currentColor;border-right:2px solid currentColor;transform:rotate(45deg);margin-left:4px}.case-card .seo-card-type,.result-type{max-width:max-content}.seo-article-main .faq-list details[open]{border-color:rgba(220,178,86,.25);background:rgba(220,178,86,.055)}.seo-article-side .seo-sticky-card a.btn-outline[href*="wa.me"],.seo-article-side .seo-sticky-card a.btn-outline[href*="t.me"]{border-color:rgba(255,255,255,.16)}@media(max-width:860px){.search-result-groups{gap:20px}.search-result-group .section-head.compact h2{font-size:24px}.search-empty-card{padding:20px;border-radius:22px}.seo-hub-group{scroll-margin-top:72px}.seo-card{min-height:auto}}

/* v137 — SEO media proof layer: article/case visuals without touching core forms or hero */
.seo-visual{position:relative;overflow:hidden;border-radius:28px;border:1px solid rgba(255,255,255,.11);background:rgba(255,255,255,.04);box-shadow:0 24px 70px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.06)}
.seo-visual img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;filter:saturate(.96) contrast(1.03)}
.seo-visual figcaption{position:absolute;left:14px;right:14px;bottom:14px;padding:12px 14px;border-radius:18px;background:rgba(8,10,14,.72);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);color:rgba(246,242,234,.82);font-size:13px;line-height:1.35;font-weight:650}
.seo-card-media{display:block;margin:-24px -24px 16px;overflow:hidden;border-radius:28px 28px 18px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.035)}
.seo-card-media img{display:block;width:100%;height:168px;object-fit:cover;filter:saturate(.96) contrast(1.03);transition:transform .55s ease}
.seo-card:hover .seo-card-media img{transform:scale(1.035)}
.case-card .seo-card-media img{height:178px}
@media(max-width:860px){.seo-visual{border-radius:22px}.seo-visual img{aspect-ratio:4/3}.seo-visual figcaption{position:relative;left:auto;right:auto;bottom:auto;margin:0;border-radius:0;background:rgba(255,255,255,.045);font-size:12px}.seo-card-media{margin:-24px -24px 14px}.seo-card-media img,.case-card .seo-card-media img{height:190px}}
@media(max-width:560px){.seo-card-media{margin:-20px -20px 13px;border-radius:22px 22px 16px 16px}.seo-card-media img,.case-card .seo-card-media img{height:176px}}

/* v140 — proof-фото на коммерческих SEO-страницах */
.seo-proof-section {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(24px, 4vw, 56px);
}
.seo-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.seo-proof-card {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
}
.seo-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  background: rgba(255,255,255,.04);
}
.seo-proof-card div {
  padding: 16px 16px 18px;
  display: grid;
  gap: 6px;
}
.seo-proof-card strong {
  color: var(--text, #f5f5f5);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.12;
  letter-spacing: -.015em;
}
.seo-proof-card span {
  color: var(--muted, rgba(255,255,255,.68));
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .seo-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .seo-proof-section { padding-top: 28px; }
  .seo-proof-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .seo-proof-card img {
    aspect-ratio: 16 / 10;
    border-radius: 20px 20px 0 0;
  }
  .seo-proof-card div { padding: 14px 14px 16px; }
}


/* V142 accessibility/performance polish */
:where(a, button, input, select, textarea, .btn, .dock-link, .route-card, .service-card, .product-card a):focus-visible {
  outline: 2px solid rgba(232,184,90,.95);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(232,184,90,.16);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@supports (padding: max(0px)) {
  .mobile-dock, .mobile-sticky, .sticky-bar {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

.live-grid-v133 img,
.portfolio-proof-card img,
.design-example-card img,
.product-media img {
  content-visibility: auto;
}

/* ═══════════════════════════════════════════════════════
   V143 calculator production fix
   Исправляет mobile-налепание в блоке быстрых расчётов:
   количество, кнопки +/- и radio options теперь имеют собственную сетку.
   ═══════════════════════════════════════════════════════ */
#calc{position:relative;}
.calc-card{
  position:relative;
  overflow:hidden;
  padding:clamp(20px,3vw,34px);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%,rgba(232,184,90,.13),transparent 32%),
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 70px rgba(0,0,0,.30);
}
.calc-grid{
  display:grid;
  grid-template-columns:minmax(220px,1.05fr) minmax(170px,.65fr) minmax(240px,.9fr);
  gap:18px;
  align-items:end;
}
.calc-field{min-width:0;display:grid;gap:9px;}
.calc-field>label{
  color:rgba(240,237,232,.88);
  font-size:14px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-.02em;
}
.calc-field select,
.calc-field input[type="number"]{
  width:100%;
  min-height:52px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.92);
  color:#10131a;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7),0 12px 34px rgba(0,0,0,.18);
  outline:none;
}
.calc-field select{padding:0 42px 0 16px;font-weight:850;}
.calc-field input[type="number"]{
  height:52px;
  padding:0 12px;
  text-align:center;
  font-size:20px;
  font-weight:900;
  appearance:textfield;
  -moz-appearance:textfield;
}
.calc-field input[type="number"]::-webkit-inner-spin-button,
.calc-field input[type="number"]::-webkit-outer-spin-button{appearance:none;margin:0;}
.calc-qty-row{
  display:grid;
  grid-template-columns:48px minmax(84px,1fr) 48px auto;
  gap:8px;
  align-items:center;
  max-width:100%;
}
.calc-btn{
  width:48px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.075);
  color:var(--text);
  font-size:24px;
  font-weight:900;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.calc-btn:active{transform:translateY(1px);}
.calc-unit{
  min-width:32px;
  color:rgba(240,237,232,.76);
  font-size:15px;
  font-weight:900;
  white-space:nowrap;
}
.calc-options{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.calc-opt{
  position:relative;
  display:block;
  min-width:0;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.calc-opt input{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
}
.calc-opt span{
  min-height:58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  padding:10px 13px 10px 40px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.055);
  color:rgba(240,237,232,.74);
  font-size:15px;
  font-weight:950;
  line-height:1.12;
  overflow:hidden;
}
.calc-opt span::before{
  content:'';
  position:absolute;
  left:14px;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  border-radius:50%;
  border:2px solid rgba(255,255,255,.42);
  background:rgba(255,255,255,.08);
}
.calc-opt input:checked+span{
  color:var(--text);
  border-color:rgba(232,184,90,.36);
  background:linear-gradient(180deg,rgba(232,184,90,.18),rgba(232,184,90,.075));
}
.calc-opt input:checked+span::before{
  border-color:#32a8ff;
  background:radial-gradient(circle,#32a8ff 0 42%,transparent 46%);
  box-shadow:0 0 0 4px rgba(50,168,255,.10);
}
.calc-opt i{
  display:block;
  color:rgba(240,237,232,.50);
  font-size:12px;
  font-style:normal;
  font-weight:850;
  line-height:1.15;
}
.calc-result{
  margin-top:18px;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(232,184,90,.20);
  background:linear-gradient(135deg,rgba(232,184,90,.14),rgba(255,255,255,.035));
}
.calc-result-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.calc-result-label{
  color:rgba(240,237,232,.70);
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.calc-result-value{
  color:var(--text);
  font-size:clamp(27px,4.5vw,42px);
  font-weight:950;
  letter-spacing:-.05em;
  line-height:1;
}
.calc-result-hint{max-width:64ch;margin-top:8px;color:rgba(240,237,232,.66);font-weight:700;}
.calc-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px;}
.calc-actions .btn{min-height:52px;}
@media(max-width:940px){
  .calc-grid{grid-template-columns:1fr 1fr;align-items:start;}
  .calc-field:first-child{grid-column:1/-1;}
}
@media(max-width:640px){
  #calc{padding-bottom:calc(118px + env(safe-area-inset-bottom,0px));}
  .calc-card{padding:20px;border-radius:28px;margin-inline:-2px;}
  .calc-grid{grid-template-columns:1fr;gap:15px;}
  .calc-field>label{font-size:15px;}
  .calc-qty-row{grid-template-columns:46px minmax(78px,1fr) 46px auto;gap:7px;}
  .calc-btn{width:46px;height:50px;border-radius:15px;}
  .calc-field select,.calc-field input[type="number"]{min-height:50px;border-radius:16px;}
  .calc-options{grid-template-columns:1fr;}
  .calc-opt span{min-height:54px;padding-left:42px;}
  .calc-result{padding:16px;border-radius:22px;}
  .calc-actions{display:grid;grid-template-columns:1fr;}
  .calc-actions .btn{width:100%;justify-content:center;}
}
@media(max-width:380px){
  .calc-card{padding:18px 16px;}
  .calc-qty-row{grid-template-columns:42px minmax(74px,1fr) 42px auto;gap:6px;}
  .calc-btn{width:42px;height:48px;}
  .calc-unit{font-size:14px;min-width:28px;}
  .calc-result-value{font-size:28px;}
}


/* v148: premium direction SVG icons in hero. Clean SVGs, transparent outside icon body, subtle Apple-style glow. */
.hero-v134 .hero-scenarios-v134 a{
  position:relative;
  overflow:hidden;
  align-items:center;
  text-align:center;
  justify-content:center;
  gap:8px;
  min-width:0;
}
.hero-v134 .hero-scenarios-v134 a::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.115), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.078), rgba(255,255,255,.026));
  opacity:.9;
  pointer-events:none;
}
.hero-v134 .hero-scenarios-v134 a::after{
  content:"";
  position:absolute;
  width:72px;
  height:72px;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  border-radius:999px;
  background:rgba(221,176,74,.16);
  filter:blur(18px);
  opacity:.7;
  pointer-events:none;
}
.hero-v134 .hero-scenario-art{
  position:relative;
  z-index:1;
  display:block;
  width:62px;
  height:62px;
  object-fit:contain;
  margin:0 auto 3px;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  filter:drop-shadow(0 12px 22px rgba(0,0,0,.36)) drop-shadow(0 0 16px rgba(226,180,74,.22));
  transform:translateZ(0);
}
.hero-v134 .hero-scenarios-v134 a:nth-child(1) .hero-scenario-art{filter:drop-shadow(0 12px 22px rgba(0,0,0,.36)) drop-shadow(0 0 17px rgba(120,82,255,.32));}
.hero-v134 .hero-scenarios-v134 a:nth-child(2) .hero-scenario-art{filter:drop-shadow(0 12px 22px rgba(0,0,0,.36)) drop-shadow(0 0 17px rgba(255,168,39,.34));}
.hero-v134 .hero-scenarios-v134 a:nth-child(3) .hero-scenario-art{filter:drop-shadow(0 12px 22px rgba(0,0,0,.36)) drop-shadow(0 0 18px rgba(34,156,255,.34));}
.hero-v134 .hero-scenarios-v134 a:nth-child(4) .hero-scenario-art{filter:drop-shadow(0 12px 22px rgba(0,0,0,.36)) drop-shadow(0 0 18px rgba(255,54,156,.34));}
.hero-v134 .hero-scenarios-v134 a:nth-child(1)::after{background:rgba(120,82,255,.18);}
.hero-v134 .hero-scenarios-v134 a:nth-child(2)::after{background:rgba(255,176,39,.18);}
.hero-v134 .hero-scenarios-v134 a:nth-child(3)::after{background:rgba(34,156,255,.18);}
.hero-v134 .hero-scenarios-v134 a:nth-child(4)::after{background:rgba(255,54,156,.18);}
.hero-v134 .hero-scenarios-v134 strong,
.hero-v134 .hero-scenarios-v134 span:not(.hero-scenario-icon){position:relative;z-index:1;}
.hero-v134 .hero-scenarios-v134 strong{font-weight:950;letter-spacing:-.025em;}
.hero-v134 .hero-scenarios-v134 span:last-child{font-weight:760;}
.hero-v134 .hero-scenario-icon{display:none!important;}
@media(max-width:860px){
  .hero-v134 .hero-scenarios-v134 a{min-height:98px!important;padding:10px 6px!important;gap:5px!important;}
  .hero-v134 .hero-scenarios-v134 a::after{width:56px;height:56px;top:9px;filter:blur(15px);}
  .hero-v134 .hero-scenario-art{width:46px;height:46px;margin-bottom:2px;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:12.8px!important;line-height:1.08!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:10.8px!important;line-height:1.12!important;}
}
@media(max-width:380px){
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:7px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:84px!important;flex-direction:column!important;justify-content:center!important;text-align:center!important;padding:8px 4px!important;border-radius:17px!important;}
  .hero-v134 .hero-scenario-art{width:37px;height:37px;margin:0 auto 2px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:11.8px!important;line-height:1.06!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{display:none!important;}
}


/* v148: final Apple-style direction icon + typography polish. Icons stay transparent outside their own artwork; no white canvas/background. */
.hero-v134 .hero-scenarios-v134{
  align-items:stretch;
}
.hero-v134 .hero-scenarios-v134 a{
  isolation:isolate;
  overflow:hidden!important;
  transform:translateZ(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 46px rgba(0,0,0,.22);
}
.hero-v134 .hero-scenarios-v134 a:hover{
  border-color:rgba(229,186,89,.26)!important;
  transform:translateY(-2px);
}
.hero-v134 .hero-scenarios-v134 a::before{
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.092), rgba(255,255,255,.028))!important;
}
.hero-v134 .hero-scenarios-v134 a::after{
  z-index:0;
  opacity:.86!important;
  mix-blend-mode:screen;
}
.hero-v134 .hero-scenario-art{
  width:66px!important;
  height:66px!important;
  flex:0 0 auto;
  background:transparent!important;
  border:none!important;
  border-radius:0!important;
  filter:
    drop-shadow(0 14px 24px rgba(0,0,0,.38))
    drop-shadow(0 0 18px rgba(226,180,74,.18))!important;
  transition:transform .22s ease, filter .22s ease;
}
.hero-v134 .hero-scenarios-v134 a:hover .hero-scenario-art{
  transform:translateY(-1px) scale(1.035);
}
.hero-v134 .hero-scenarios-v134 strong{
  font-size:17px!important;
  line-height:1.04!important;
  font-weight:960!important;
  letter-spacing:-.035em!important;
  text-wrap:balance;
}
.hero-v134 .hero-scenarios-v134 span:last-child{
  font-size:11.5px!important;
  line-height:1.22!important;
  font-weight:760!important;
  color:rgba(246,242,234,.66)!important;
  max-width:100%;
}
.hero-v134 .hero-title-v134,
.hero-v134 .hero-title-v134 span,
.section-head h2,
.seo-hub-hero h1,
.seo-article-hero h1{
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  text-wrap:balance;
}
.hero-v134 .lead,
.section-head p,
.seo-hub-hero p,
.seo-article-hero p{
  text-wrap:pretty;
}
@media(max-width:640px){
  .hero-v134 .hero-title-v134 span{letter-spacing:-.058em!important;}
  .hero-v134 .lead{font-size:15.8px!important;line-height:1.54!important;}
}
@media(max-width:430px){
  .hero-v134 .hero-scenarios-v134{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    margin-bottom:16px!important;
  }
  .hero-v134 .hero-scenarios-v134 a{
    min-height:118px!important;
    padding:13px 10px 12px!important;
    border-radius:22px!important;
    gap:7px!important;
  }
  .hero-v134 .hero-scenarios-v134 a::after{
    width:70px!important;
    height:70px!important;
    top:8px!important;
    filter:blur(18px)!important;
  }
  .hero-v134 .hero-scenario-art{
    width:56px!important;
    height:56px!important;
    margin:0 auto 2px!important;
  }
  .hero-v134 .hero-scenarios-v134 strong{
    font-size:15.8px!important;
    line-height:1.04!important;
  }
  .hero-v134 .hero-scenarios-v134 span:last-child{
    display:block!important;
    font-size:10.7px!important;
    line-height:1.16!important;
  }
}
@media(max-width:360px){
  .hero-v134 .hero-scenarios-v134 a{min-height:108px!important;padding:11px 8px!important;}
  .hero-v134 .hero-scenario-art{width:50px!important;height:50px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:15px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:10.1px!important;}
}


/* v148: final typography + direction-icon production polish. No layout rewrite. */
:root{
  --sa-readable-text: clamp(15.8px, 1.95vw, 18px);
  --sa-readable-small: clamp(13.5px, 1.55vw, 15px);
}
body{font-kerning:normal;font-feature-settings:"kern" 1,"liga" 1,"calt" 1;}
main p, .page-main p, .seo-panel p, .article-body p, .card p, .landing-content p{font-size:max(15px,1em);}
.hero-v134 .hero-scenarios-v134 a{will-change:transform;}
.hero-v134 .hero-scenarios-v134 a:focus-visible{
  outline:2px solid rgba(242,207,117,.95)!important;
  outline-offset:4px!important;
  border-color:rgba(242,207,117,.55)!important;
}
.hero-v134 .hero-scenarios-v134 a::after{transition:opacity .22s ease, transform .22s ease;}
.hero-v134 .hero-scenarios-v134 a:hover::after{opacity:.98!important;transform:translateX(-50%) scale(1.06);}
.hero-v134 .hero-scenario-art{image-rendering:auto;}
@media(max-width:640px){
  body{font-size:16px;}
  p,.lead,.hero-sub,.page-hero p,.seo-panel p,.landing-content p{font-size:var(--sa-readable-text)!important;line-height:1.55!important;}
  .eyebrow,.hero-eyebrow{font-size:12px!important;line-height:1.15!important;}
  .btn,.contact-pill,button,input,select,textarea{font-size:15px;}
  input,select,textarea{min-height:48px;}
  .section{padding-block:38px;}
}
@media(max-width:430px){
  h1,.page-hero h1,.seo-article-hero h1{font-size:clamp(34px,10vw,44px)!important;line-height:1.02!important;letter-spacing:-.048em!important;}
  h2,.section-head h2{font-size:clamp(27px,8vw,36px)!important;line-height:1.04!important;letter-spacing:-.042em!important;}
  .hero-v134 .hero-scenarios-v134 a{touch-action:manipulation;}
  .hero-v134 .hero-scenarios-v134 span:last-child{opacity:.78;}
}
@media(max-width:360px){
  h1,.page-hero h1,.seo-article-hero h1{font-size:32px!important;}
  p,.lead,.hero-sub,.page-hero p,.seo-panel p,.landing-content p{font-size:15.5px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14.6px!important;}
}


/* v148: final direction SVG icon polish — clean app icons, no external white background, calmer Apple-style glow. */
.hero-v134 .hero-scenarios-v134 a{
  background:
    radial-gradient(circle at 50% 6%, rgba(255,255,255,.105), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032))!important;
  border:1px solid rgba(255,255,255,.108)!important;
}
.hero-v134 .hero-scenarios-v134 a::after{
  width:82px!important;
  height:82px!important;
  top:7px!important;
  opacity:.72!important;
  filter:blur(22px)!important;
}
.hero-v134 .hero-scenario-art{
  width:68px!important;
  height:68px!important;
  object-fit:contain!important;
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
  border-radius:0!important;
}
.hero-v134 .hero-scenarios-v134 a:nth-child(1) .hero-scenario-art{filter:drop-shadow(0 15px 24px rgba(0,0,0,.38)) drop-shadow(0 0 18px rgba(128,96,255,.28))!important;}
.hero-v134 .hero-scenarios-v134 a:nth-child(2) .hero-scenario-art{filter:drop-shadow(0 15px 24px rgba(0,0,0,.38)) drop-shadow(0 0 18px rgba(255,176,48,.30))!important;}
.hero-v134 .hero-scenarios-v134 a:nth-child(3) .hero-scenario-art{filter:drop-shadow(0 15px 24px rgba(0,0,0,.38)) drop-shadow(0 0 18px rgba(47,172,255,.30))!important;}
.hero-v134 .hero-scenarios-v134 a:nth-child(4) .hero-scenario-art{filter:drop-shadow(0 15px 24px rgba(0,0,0,.38)) drop-shadow(0 0 18px rgba(255,70,169,.30))!important;}
.hero-v134 .hero-scenarios-v134 strong{
  font-size:18px!important;
  letter-spacing:-.035em!important;
  color:#fffaf0!important;
  text-shadow:0 1px 0 rgba(255,255,255,.05),0 14px 26px rgba(0,0,0,.42);
}
.hero-v134 .hero-scenarios-v134 span:last-child{color:rgba(247,242,232,.68)!important;}
@media(max-width:430px){
  .hero-v134 .hero-scenarios-v134 a{min-height:120px!important;}
  .hero-v134 .hero-scenario-art{width:58px!important;height:58px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:16.2px!important;}
}
@media(max-width:360px){
  .hero-v134 .hero-scenarios-v134 a{min-height:110px!important;}
  .hero-v134 .hero-scenario-art{width:52px!important;height:52px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14.8px!important;}
}


/* v149: user-supplied premium app icons for mobile CTA dock and hero CTA menu. Safe layer only: no layout rewrite. */
.hero-v134 .hero-actions-v134 .btn.has-action-icon::after{display:none!important;content:none!important;}
.hero-v134 .hero-actions-v134 .btn.has-action-icon{position:relative;display:inline-flex!important;align-items:center;justify-content:space-between;gap:10px;overflow:hidden;isolation:isolate;}
.hero-v134 .hero-actions-v134 .btn.has-action-icon>span{position:relative;z-index:2;min-width:0;overflow:hidden;text-overflow:ellipsis;}
.hero-v134 .hero-actions-v134 .hero-action-img{position:relative;z-index:2;width:38px;height:38px;flex:0 0 38px;object-fit:contain;border-radius:13px;background:transparent;filter:drop-shadow(0 10px 18px rgba(0,0,0,.38)) drop-shadow(0 0 14px rgba(111,170,255,.18));}
.hero-v134 .hero-actions-v134 .btn.has-action-icon::before{content:'';position:absolute;right:-18px;top:50%;width:72px;height:72px;transform:translateY(-50%);border-radius:999px;background:radial-gradient(circle,rgba(232,184,90,.24),rgba(73,143,255,.11) 44%,transparent 70%);filter:blur(12px);opacity:.78;z-index:1;pointer-events:none;}
.hero-v134 .hero-actions-v134 .btn.has-action-icon[href*='shop']::before{background:radial-gradient(circle,rgba(252,180,62,.24),rgba(148,80,255,.14) 42%,transparent 72%);}
.hero-v134 .hero-actions-v134 .btn.has-action-icon[href*='business']::before{background:radial-gradient(circle,rgba(232,184,90,.24),rgba(255,168,74,.11) 42%,transparent 72%);}
.hero-v134 .hero-actions-v134 .btn.has-action-icon[href*='prices']::before{background:radial-gradient(circle,rgba(232,184,90,.22),rgba(116,93,255,.13) 42%,transparent 72%);}
.mobile-dock .dock-link.has-dock-app-icon::after{display:none!important;content:none!important;}
.mobile-dock .dock-app-icon{order:-1;display:block;width:30px!important;height:30px!important;object-fit:contain;border-radius:10px;background:transparent!important;box-shadow:none!important;filter:drop-shadow(0 7px 13px rgba(0,0,0,.45)) drop-shadow(0 0 10px rgba(75,160,255,.16));}
.mobile-dock .dock-art .dock-app-icon{filter:drop-shadow(0 7px 13px rgba(0,0,0,.45)) drop-shadow(0 0 11px rgba(255,180,48,.18));}
.mobile-dock .dock-print .dock-app-icon{filter:drop-shadow(0 7px 13px rgba(0,0,0,.45)) drop-shadow(0 0 11px rgba(52,188,255,.18));}
.mobile-dock .dock-request .dock-app-icon{filter:drop-shadow(0 7px 13px rgba(0,0,0,.45)) drop-shadow(0 0 12px rgba(166,85,255,.20));}
.mobile-dock .dock-link.has-dock-app-icon{position:relative;isolation:isolate;}
.mobile-dock .dock-link.has-dock-app-icon::before{content:''!important;position:absolute!important;display:block!important;z-index:-1;top:10px;left:50%;width:34px;height:34px;transform:translateX(-50%);border-radius:999px;background:radial-gradient(circle,rgba(97,163,255,.18),transparent 68%);filter:blur(9px);opacity:.86;}
.mobile-dock .dock-art.has-dock-app-icon::before{background:radial-gradient(circle,rgba(255,177,48,.17),transparent 68%);}
.mobile-dock .dock-request.has-dock-app-icon::before{background:radial-gradient(circle,rgba(166,85,255,.18),transparent 68%);}
@media(max-width:860px){
  .hero-v134 .hero-actions-v134 .hero-action-img{width:34px;height:34px;flex-basis:34px;border-radius:12px;}
  .hero-v134 .hero-actions-v134 .btn.has-action-icon{padding-left:13px!important;padding-right:9px!important;}
}
@media(max-width:430px){
  .mobile-dock .dock-app-icon{width:28px!important;height:28px!important;border-radius:9px;}
  .mobile-dock .dock-link.has-dock-app-icon::before{top:9px;width:31px;height:31px;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:32px;height:32px;flex-basis:32px;}
}
@media(max-width:380px){
  .hero-v134 .hero-actions-v134 .btn.has-action-icon{justify-content:center!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:30px;height:30px;flex-basis:30px;}
}

/* ═══════════════════════════════════════════════════════
   V150 — neon brand + Apple-style hero polish, safe overrides
   ═══════════════════════════════════════════════════════ */
:root{
  --v150-cyan:#1ad7ff;
  --v150-pink:#ff3ecf;
  --v150-gold:#f4c76e;
  --v150-deep:#05070c;
}
.brand-logo-img{
  height:52px!important;
  max-width:168px!important;
  object-fit:contain!important;
  filter:
    drop-shadow(0 0 10px rgba(26,215,255,.24))
    drop-shadow(0 0 14px rgba(255,62,207,.18))!important;
}
.topbar .brand-logo-img{height:44px!important;max-width:150px!important;}
.drawer-head .brand-logo-img{height:46px!important;max-width:154px!important;}
.footer-brand-logo .brand-logo-img{height:56px!important;max-width:178px!important;}
.hero-v134{
  position:relative;
  isolation:isolate;
  background:
    radial-gradient(circle at 6% 13%, rgba(26,215,255,.13), transparent 30%),
    radial-gradient(circle at 96% 10%, rgba(255,62,207,.12), transparent 33%),
    linear-gradient(180deg,#05070c 0%,#07090f 56%,#080a10 100%)!important;
}
.hero-v134::before{
  content:"";
  position:absolute;
  inset:calc(var(--topbar-h,64px) + 16px) max(16px,calc((100vw - 1180px)/2)) 18px max(16px,calc((100vw - 1180px)/2));
  border-radius:38px;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(110deg,rgba(26,215,255,.58),rgba(255,255,255,.03) 18%,rgba(255,255,255,.02) 76%,rgba(255,62,207,.62)) border-box;
  -webkit-mask:linear-gradient(#000 0 0) padding-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  padding:1px;
  box-shadow:
    0 0 34px rgba(26,215,255,.13),
    0 0 38px rgba(255,62,207,.10),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-layout-v134{
  position:relative!important;
  overflow:hidden!important;
  border-radius:38px!important;
  background:
    radial-gradient(circle at 0 0,rgba(26,215,255,.08),transparent 34%),
    radial-gradient(circle at 100% 0,rgba(255,62,207,.075),transparent 36%),
    linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025))!important;
  border:1px solid rgba(255,255,255,.13)!important;
  box-shadow:0 30px 90px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.hero-layout-v134::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(26,215,255,.14),transparent 18%,transparent 80%,rgba(255,62,207,.14)),
    radial-gradient(circle at 52% -10%,rgba(255,255,255,.10),transparent 28%);
  opacity:.72;
}
.hero-copy-v134{
  position:relative!important;
  z-index:2!important;
  overflow:hidden!important;
  border-radius:30px!important;
  padding:26px!important;
  background:linear-gradient(145deg,rgba(6,8,13,.74),rgba(12,14,20,.48))!important;
  border:1px solid rgba(255,255,255,.09)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055),0 18px 54px rgba(0,0,0,.22)!important;
}
.hero-copy-v134::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(120deg,rgba(26,215,255,.22),transparent 22%,transparent 72%,rgba(255,62,207,.20));
  opacity:.42;
  -webkit-mask:linear-gradient(#000 0 0) padding-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  padding:1px;
}
.hero-neon-reference-v150,.hero-neon-reference-v151{
  position:absolute;
  inset:auto -8% -16% auto;
  width:min(520px,70%);
  height:auto;
  opacity:.11;
  mix-blend-mode:screen;
  filter:blur(.2px) saturate(1.1);
  pointer-events:none;
  user-select:none;
  z-index:0;
}
.hero-copy-v134 > *:not(.hero-neon-reference-v150,.hero-neon-reference-v151){position:relative;z-index:1;}
.hero-title-v134{
  text-shadow:0 0 20px rgba(255,255,255,.08),0 12px 44px rgba(0,0,0,.32)!important;
}
.hero-title-gold{
  background:linear-gradient(90deg,#fff0b8,#d9a94c 52%,#f7db8a)!important;
  -webkit-background-clip:text!important;
  background-clip:text!important;
  color:transparent!important;
  filter:drop-shadow(0 0 12px rgba(244,199,110,.12));
}
.hero-meta .eyebrow{
  background:linear-gradient(90deg,rgba(26,215,255,.16),rgba(255,62,207,.12))!important;
  border-color:rgba(255,255,255,.15)!important;
  color:#f1d27e!important;
  text-shadow:0 0 12px rgba(26,215,255,.22),0 0 14px rgba(255,62,207,.16);
}
.hero-actions-v134 .btn{position:relative;overflow:hidden;}
.hero-actions-v134 .btn::after{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(120deg,rgba(255,255,255,.18),transparent 34%,rgba(26,215,255,.10),rgba(255,62,207,.10));
  opacity:.45;
}
.hero-action-img{
  width:24px!important;
  height:24px!important;
  object-fit:contain!important;
  border-radius:8px!important;
  filter:drop-shadow(0 0 8px rgba(255,255,255,.22)) drop-shadow(0 0 12px rgba(244,199,110,.16))!important;
  flex:0 0 auto!important;
}
.hero-scenario-art,
.dock-app-icon{
  object-fit:contain!important;
  filter:drop-shadow(0 0 10px rgba(244,199,110,.18)) drop-shadow(0 0 12px rgba(26,215,255,.08))!important;
}
.hero-scenarios-v134 a{
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035))!important;
  border:1px solid rgba(255,255,255,.13)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 18px 36px rgba(0,0,0,.20)!important;
}
.mobile-dock{
  border-color:rgba(255,255,255,.12)!important;
  box-shadow:0 20px 52px rgba(0,0,0,.48),0 0 22px rgba(26,215,255,.07),0 0 26px rgba(255,62,207,.06),inset 0 1px 0 rgba(255,255,255,.06)!important;
}
.mobile-dock .dock-app-icon{width:30px!important;height:30px!important;border-radius:10px!important;}
.mobile-dock .dock-telegram .messenger-icon,
.mobile-dock .dock-whatsapp .messenger-icon,
.mobile-dock .dock-max .messenger-icon{filter:drop-shadow(0 0 8px rgba(255,255,255,.18))!important;}
@media(max-width:860px){
  .topbar .brand-logo-img{height:38px!important;max-width:132px!important;}
  .hero-v134::before{inset:calc(var(--topbar-h,62px) + 8px) 10px 12px 10px;border-radius:30px;}
  .hero-layout-v134{border-radius:30px!important;}
  .hero-copy-v134{padding:20px 16px!important;border-radius:24px!important;}
  .hero-neon-reference-v150,.hero-neon-reference-v151{width:82%;right:-25%;bottom:-8%;opacity:.08;}
  .hero-title-v134{font-size:clamp(34px,10.7vw,48px)!important;letter-spacing:-.042em!important;}
  .hero-actions-v134{gap:10px!important;}
  .hero-actions-v134 .btn{min-height:58px!important;}
  .hero-action-img{width:22px!important;height:22px!important;border-radius:7px!important;}
  .hero-scenario-art{width:46px!important;height:46px!important;}
  .mobile-dock .dock-app-icon{width:28px!important;height:28px!important;}
}
@media(max-width:430px){
  .topbar .brand-logo-img{height:34px!important;max-width:120px!important;}
  .hero-copy-v134{padding:18px 14px!important;}
  .hero-neon-reference-v150,.hero-neon-reference-v151{opacity:.065;right:-34%;bottom:-6%;}
  .hero-action-img{width:20px!important;height:20px!important;}
  .hero-actions-v134 .btn{min-height:54px!important;}
  .mobile-dock .dock-app-icon{width:26px!important;height:26px!important;}
}


/* ═══════════════════════════════════════════════════════
   V151 — final visual polish: tighter hero, clean neon logo, compact CTA icons
   Safe overrides only. Does not change API/forms/catalog.
   ═══════════════════════════════════════════════════════ */
:root{--build-version:"v163";}
.topbar{backdrop-filter:saturate(1.35) blur(18px);-webkit-backdrop-filter:saturate(1.35) blur(18px);}
.topbar-inner{border-color:rgba(255,255,255,.10)!important;background:linear-gradient(180deg,rgba(8,10,15,.78),rgba(8,10,15,.52))!important;box-shadow:0 18px 44px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.065)!important;}
.topbar .brand-logo-img{height:40px!important;max-width:140px!important;filter:drop-shadow(0 0 7px rgba(26,215,255,.28)) drop-shadow(0 0 10px rgba(255,62,207,.20))!important;}
.hero-v134{padding-top:16px!important;}
.hero-layout-v134{gap:18px!important;}
.hero-copy-v134{min-height:0!important;}
.hero-copy-v134::after{content:"";position:absolute;left:0;top:0;width:100%;height:1px;background:linear-gradient(90deg,transparent,rgba(26,215,255,.42),rgba(255,62,207,.35),transparent);opacity:.75;pointer-events:none;}
.hero-neon-reference-v150,.hero-neon-reference-v151{opacity:.075!important;width:min(560px,66%)!important;right:-10%!important;bottom:-18%!important;filter:saturate(1.16) contrast(1.05) blur(.15px)!important;}
.hero-title-v134{max-width:9.8ch!important;line-height:.93!important;letter-spacing:-.055em!important;}
.hero-title-v134 b{font-weight:950!important;}
.hero-title-gold{letter-spacing:-.052em!important;}
.hero-v134 .lead{max-width:620px!important;color:rgba(238,241,247,.76)!important;font-weight:650!important;}
.hero-promise-v134 span{background:rgba(255,255,255,.045)!important;border-color:rgba(255,255,255,.10)!important;color:rgba(245,247,251,.78)!important;}
.hero-actions-v134 .btn{gap:10px!important;min-height:60px!important;letter-spacing:-.025em!important;}
.hero-actions-v134 .btn span{position:relative;z-index:2;}
.hero-actions-v134 .hero-action-img{width:21px!important;height:21px!important;border-radius:7px!important;opacity:.96!important;filter:drop-shadow(0 0 8px rgba(255,255,255,.20)) drop-shadow(0 0 12px rgba(244,199,110,.14))!important;}
.hero-actions-v134 .btn.has-action-icon::before{width:54px!important;height:54px!important;right:-16px!important;opacity:.48!important;filter:blur(16px)!important;}
.hero-scenarios-v134 a{min-height:118px!important;}
.hero-scenario-art{width:50px!important;height:50px!important;border-radius:17px!important;filter:drop-shadow(0 10px 18px rgba(0,0,0,.32)) drop-shadow(0 0 11px rgba(244,199,110,.16))!important;}
.hero-scenarios-v134 strong{font-size:19px!important;letter-spacing:-.035em!important;}
.hero-scenarios-v134 span{font-size:12px!important;opacity:.70!important;}
.hero-contact-row-v134{position:relative!important;z-index:3!important;}
.hero-mobile-media-v134{box-shadow:0 18px 44px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.07)!important;}
.mobile-dock{z-index:80!important;}
.mobile-dock .dock-link{min-width:0!important;}
.mobile-dock .dock-link strong,.mobile-dock .dock-link span{letter-spacing:-.025em!important;}
.mobile-dock .dock-app-icon{width:27px!important;height:27px!important;border-radius:9px!important;}
.mobile-dock .messenger-icon{width:29px!important;height:29px!important;object-fit:contain!important;}
@media(max-width:860px){
  .topbar .brand-logo-img{height:34px!important;max-width:124px!important;}
  .hero-v134{padding-top:10px!important;}
  .hero-layout-v134{gap:12px!important;}
  .hero-copy-v134{padding:18px 14px!important;border-radius:25px!important;}
  .hero-title-v134{max-width:9.4ch!important;font-size:clamp(32px,10.5vw,44px)!important;line-height:.94!important;}
  .hero-v134 .lead{font-size:14px!important;line-height:1.39!important;font-weight:650!important;}
  .hero-promise-v134{gap:7px!important;}
  .hero-promise-v134 span{font-size:11.5px!important;padding:8px 10px!important;}
  .hero-actions-v134{grid-template-columns:1fr 1fr!important;gap:9px!important;}
  .hero-actions-v134 .btn{min-height:54px!important;padding:10px 11px!important;font-size:14px!important;}
  .hero-actions-v134 .hero-action-img{width:19px!important;height:19px!important;border-radius:6px!important;}
  .hero-scenarios-v134{grid-template-columns:repeat(4,1fr)!important;gap:8px!important;}
  .hero-scenarios-v134 a{min-height:96px!important;padding:10px 5px!important;border-radius:18px!important;}
  .hero-scenario-art{width:38px!important;height:38px!important;border-radius:13px!important;}
  .hero-scenarios-v134 strong{font-size:13.5px!important;}
  .hero-scenarios-v134 span{display:none!important;}
  .hero-neon-reference-v150,.hero-neon-reference-v151{width:90%!important;right:-36%!important;bottom:-8%!important;opacity:.052!important;}
}
@media(max-width:430px){
  .hero-copy-v134{padding:16px 12px!important;}
  .hero-title-v134{font-size:clamp(31px,10.8vw,42px)!important;}
  .hero-actions-v134 .btn{min-height:52px!important;font-size:13.2px!important;}
  .hero-actions-v134 .hero-action-img{width:18px!important;height:18px!important;}
  .hero-scenarios-v134 a{min-height:88px!important;}
  .hero-scenario-art{width:34px!important;height:34px!important;}
  .hero-scenarios-v134 strong{font-size:12.5px!important;}
  .mobile-dock .dock-app-icon,.mobile-dock .messenger-icon{width:25px!important;height:25px!important;}
}
@media(max-width:375px){
  .hero-actions-v134 .btn{font-size:12.5px!important;padding-left:8px!important;padding-right:8px!important;gap:6px!important;}
  .hero-actions-v134 .hero-action-img{width:17px!important;height:17px!important;}
  .hero-scenarios-v134{gap:6px!important;}
  .hero-scenarios-v134 a{min-height:82px!important;border-radius:16px!important;}
  .hero-scenario-art{width:31px!important;height:31px!important;}
  .hero-scenarios-v134 strong{font-size:11.7px!important;}
}

/* V152 production alignment: hero/mobile/forms/navigation */
.v152-direction-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:22px 0 28px;
}
.v152-direction-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:132px;
  padding:20px;
  text-decoration:none;
  color:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 54px rgba(0,0,0,.26);
}
.v152-direction-card strong{font-size:17px;line-height:1.18;color:var(--text,#fff)}
.v152-direction-card span{font-size:13px;line-height:1.45;color:rgba(238,241,247,.68)}
.v152-service-panel{padding:24px;align-self:stretch}
.v152-service-panel strong{display:block;font-size:18px;margin-bottom:12px}
.v152-service-panel ul{margin:0;padding-left:18px;color:rgba(238,241,247,.72);line-height:1.55}
@media (max-width: 900px){
  .v152-direction-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
}
@media (max-width: 640px){
  .hero-title-v134{font-size:clamp(34px,10.5vw,48px);line-height:.94;letter-spacing:-.035em}
  .hero-copy-v134 .lead{font-size:15px;line-height:1.48;max-width:100%}
  .hero-actions-v134{display:grid;grid-template-columns:1fr 1fr;gap:10px;width:100%}
  .hero-actions-v134 .btn{min-width:0;width:100%;white-space:normal;overflow:visible;text-overflow:clip;padding:12px 10px;line-height:1.12}
  .hero-actions-v134 .btn span{white-space:normal;overflow:visible;text-overflow:clip}
  .hero-action-img{width:32px;height:32px;flex:0 0 32px}
  .hero-scenarios-v134{grid-template-columns:1fr 1fr;gap:10px}
  .hero-scenarios-v134 a{min-height:104px;padding:12px}
  .hero-scenario-art{width:44px;height:44px}
  .hero-promise-v134{gap:8px}
  .hero-promise-v134 span{font-size:11px;padding:8px 10px}
  .v152-direction-grid{grid-template-columns:1fr;margin:18px 0 24px}
  .v152-direction-card{min-height:auto;padding:16px}
  .mobile-dock-inner{gap:5px}
  .mobile-dock a{min-width:0}
  .mobile-dock strong{font-size:11px}
  .mobile-dock span{font-size:10px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
}
@media (max-width: 390px){
  .hero-actions-v134{grid-template-columns:1fr}
  .hero-actions-v134 .btn{justify-content:space-between}
}


/* V153 QA polish: layout, mobile, CTA, icons */
:root{--build-version:"v163";}
.hero-actions-v134 .btn,.hero-btns .btn{white-space:normal;overflow:visible;text-overflow:clip;line-height:1.12;}
.hero-actions-v134 .btn span{white-space:normal;overflow:visible;text-overflow:clip;}
.mobile-dock{z-index:86!important;}
.mobile-dock-inner{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:4px!important;}
.mobile-dock .dock-link,.mobile-dock a{min-width:0!important;overflow:hidden!important;text-align:center!important;}
.mobile-dock .dock-link{display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;gap:2px!important;}
.mobile-dock strong{font-size:9.4px!important;line-height:1.05!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;}
.mobile-dock span{font-size:8.2px!important;line-height:1!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;opacity:.72!important;}
.mobile-dock .dock-phone strong{font-size:9px!important;}
.mobile-dock .dock-services::after{background:linear-gradient(135deg,#f2c96d,#25d7ff)!important;}
.mobile-dock .dock-phone::after{background:linear-gradient(135deg,#f2c96d,#ffffff)!important;}
.form .form-row,.v52-form .form-grid-2{gap:12px;}
.form input,.form select,.form textarea,.v52-form input,.v52-form select,.v52-form textarea{min-width:0;}
@media(max-width:860px){
  .hero-v134{padding-top:8px!important;}
  .hero-layout-v134{gap:10px!important;}
  .hero-copy-v134{padding:16px 12px!important;}
  .hero-title-v134{max-width:10.4ch!important;font-size:clamp(30px,9.6vw,42px)!important;line-height:.96!important;}
  .hero-actions-v134{grid-template-columns:1fr 1fr!important;gap:8px!important;}
  .hero-actions-v134 .btn{min-height:50px!important;padding:10px 8px!important;font-size:13.3px!important;}
  .hero-scenarios-v134{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  .hero-scenarios-v134 a{min-height:82px!important;}
}
@media(max-width:430px){
  .hero-title-v134{font-size:clamp(29px,9.8vw,39px)!important;}
  .hero-actions-v134{grid-template-columns:1fr!important;}
  .hero-actions-v134 .btn{justify-content:center!important;min-height:48px!important;font-size:13px!important;}
  .hero-promise-v134 span{font-size:10.5px!important;padding:7px 8px!important;}
  .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-scenarios-v134 a{min-height:78px!important;}
  .mobile-dock{left:6px!important;right:6px!important;padding:5px!important;border-radius:20px!important;}
  .mobile-dock-inner{gap:3px!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:48px!important;padding:6px 2px!important;border-radius:14px!important;}
  .mobile-dock strong{font-size:8.6px!important;}
  .mobile-dock span{display:none!important;}
  .mobile-dock .dock-link::after{width:20px!important;height:20px!important;margin-bottom:2px!important;}
}
@media(max-width:370px){
  .mobile-dock strong{font-size:8.1px!important;letter-spacing:-.03em!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:46px!important;}
}

/* V154 FINAL VISUAL POLISH: hero, CTA, mobile, icons, cards */
:root{--sa-phone:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21 9c-3 0-6 3-6 6 0 23 18 34 34 34 3 0 6-3 6-6v-7c0-2-1-4-3-5l-8-3c-2-1-4 0-5 2l-2 4c-7-3-12-8-15-15l4-2c2-1 3-3 2-5l-3-8c-1-2-3-3-5-3h1Z'/%3E%3C/svg%3E");}
.scroll-cta-bar{display:none!important;}

:root{--build-version:"v163";--v154-card-border:rgba(255,255,255,.12);--v154-soft-text:rgba(244,247,252,.76);}
html{scroll-behavior:smooth;}
body{overflow-x:hidden;}
.btn,.contact-pill,.mobile-dock .dock-link,.v152-direction-card{transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease;}
.btn:focus-visible,.contact-pill:focus-visible,.mobile-dock a:focus-visible,.v152-direction-card:focus-visible{outline:2px solid rgba(38,214,255,.72);outline-offset:3px;}
.hero-v134 .hero-copy-v134,.hero-v134 .hero-visual-v134{border-color:rgba(255,255,255,.115)!important;box-shadow:0 22px 70px rgba(0,0,0,.34),0 0 38px rgba(26,215,255,.045),inset 0 1px 0 rgba(255,255,255,.075)!important;}
.hero-v134 .hero-title-v134{max-width:11.2ch!important;}
.hero-v134 .hero-title-v134 span{letter-spacing:-.026em!important;text-wrap:balance;}
.hero-v134 .lead{color:var(--v154-soft-text)!important;text-wrap:pretty;}
.hero-v134 .hero-promise-v134 span{white-space:nowrap;}
.hero-v134 .hero-actions-v134 .btn{min-width:0!important;white-space:normal!important;overflow:visible!important;text-overflow:clip!important;text-align:center!important;justify-content:center!important;box-shadow:0 12px 30px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.07)!important;}
.hero-v134 .hero-actions-v134 .btn span{display:block;min-width:0;white-space:normal!important;overflow:visible!important;text-overflow:clip!important;line-height:1.12!important;}
.hero-v134 .hero-actions-v134 .btn:hover{transform:translateY(-1px);}
.hero-v134 .hero-action-img{object-fit:contain!important;flex:0 0 auto!important;}
.hero-v134 .hero-scenarios-v134 a,.v152-direction-card{overflow:hidden;}
.hero-v134 .hero-scenarios-v134 a:hover,.v152-direction-card:hover{transform:translateY(-2px);border-color:rgba(244,199,110,.26)!important;box-shadow:0 18px 46px rgba(0,0,0,.28),0 0 28px rgba(26,215,255,.045)!important;}
.hero-v134 .hero-scenario-art{object-fit:contain!important;flex:0 0 auto!important;}
.hero-v134 .hero-contact-row-v134{gap:9px!important;}
.hero-v134 .contact-pill{align-items:center!important;min-width:0!important;}
.hero-v134 .contact-pill strong,.hero-v134 .contact-pill span{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.hero-v134 .contact-pill em{font-style:normal;}
.hero-v134 .hero-mobile-media-v134{box-shadow:0 18px 42px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.07)!important;}
.v152-direction-grid{align-items:stretch;}
.v152-direction-card{border-radius:22px!important;background:linear-gradient(180deg,rgba(255,255,255,.072),rgba(255,255,255,.034))!important;border-color:var(--v154-card-border)!important;}
.v152-direction-card strong{letter-spacing:-.02em;}
.v152-direction-card span{text-wrap:pretty;}
.form,.v52-form,.request-grid form{border-color:rgba(255,255,255,.12)!important;box-shadow:0 18px 52px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.06)!important;}
.form label,.v52-form label{letter-spacing:-.01em;}
.form input,.form select,.form textarea,.v52-form input,.v52-form select,.v52-form textarea{border-radius:16px!important;}
.form button[type="submit"],.v52-form button[type="submit"]{min-height:52px;}
.mobile-dock{z-index:90!important;left:10px!important;right:10px!important;bottom:10px!important;padding:6px!important;border-radius:23px!important;background:linear-gradient(180deg,rgba(10,12,17,.83),rgba(10,12,17,.66))!important;border:1px solid rgba(255,255,255,.13)!important;box-shadow:0 20px 52px rgba(0,0,0,.44),0 0 28px rgba(26,215,255,.055),inset 0 1px 0 rgba(255,255,255,.07)!important;}
.mobile-dock-inner{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:4px!important;}
.mobile-dock .dock-link,.mobile-dock a{min-width:0!important;min-height:54px!important;padding:7px 3px!important;border-radius:16px!important;overflow:hidden!important;text-align:center!important;}
.mobile-dock .dock-link{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:2px!important;}
.mobile-dock .dock-link::after,.mobile-dock .dock-link .dock-app-icon{width:22px!important;height:22px!important;display:block!important;flex:0 0 auto!important;margin:0 0 2px!important;object-fit:contain!important;border-radius:8px!important;}
.mobile-dock .dock-app-icon{filter:drop-shadow(0 0 8px rgba(255,255,255,.16))!important;}
.mobile-dock strong{font-size:9.4px!important;line-height:1.05!important;letter-spacing:-.012em!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;}
.mobile-dock span{font-size:8px!important;line-height:1!important;max-width:100%!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;opacity:.68!important;}
.mobile-dock .dock-telegram::after,.mobile-dock .dock-whatsapp::after,.mobile-dock .dock-max::after{border-radius:50%!important;background-size:contain!important;background-position:center!important;background-repeat:no-repeat!important;}
.mobile-dock .dock-services::after{background:linear-gradient(135deg,#f2c96d,#25d7ff)!important;-webkit-mask:center/contain no-repeat var(--sa-request);mask:center/contain no-repeat var(--sa-request);}
.mobile-dock .dock-phone::after{background:linear-gradient(135deg,#fff1b6,#f2c96d)!important;-webkit-mask:center/contain no-repeat var(--sa-phone);mask:center/contain no-repeat var(--sa-phone);}
@media(max-width:1120px){
  .hero-v134 .hero-layout-v134{gap:12px!important;}
  .hero-v134 .hero-visual-v134{min-height:480px!important;}
}
@media(max-width:860px){
  .hero-v134{padding:10px 0 16px!important;}
  .hero-v134 .wrap{width:min(100% - 20px,var(--wrap,1180px))!important;}
  .hero-v134 .hero-copy-v134{padding:16px 14px 14px!important;border-radius:25px!important;}
  .hero-v134 .hero-title-v134{max-width:100%!important;margin-bottom:10px!important;}
  .hero-v134 .hero-title-v134 span{font-size:clamp(30px,8.2vw,38px)!important;line-height:1.04!important;letter-spacing:-.018em!important;}
  .hero-v134 .lead{font-size:13.6px!important;line-height:1.42!important;margin-bottom:12px!important;}
  .hero-v134 .hero-promise-v134{margin-bottom:11px!important;gap:6px!important;}
  .hero-v134 .hero-promise-v134 span{font-size:10.4px!important;padding:7px 8px!important;}
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;margin-bottom:10px!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:48px!important;padding:9px 7px!important;font-size:12.4px!important;border-radius:15px!important;gap:6px!important;}
  .hero-v134 .hero-action-img{width:17px!important;height:17px!important;}
  .hero-v134 .hero-helper-v134{font-size:11.8px!important;margin:0 0 8px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:6px!important;margin-bottom:9px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:74px!important;padding:8px 5px!important;border-radius:15px!important;}
  .hero-v134 .hero-scenario-art{width:30px!important;height:30px!important;margin-bottom:2px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:11.2px!important;line-height:1.05!important;}
  .hero-v134 .hero-scenarios-v134 span{display:none!important;}
  .hero-v134 .hero-mobile-media-v134{margin-bottom:9px!important;border-radius:18px!important;}
  .hero-v134 .hero-contact-row-v134{grid-template-columns:1fr!important;gap:7px!important;}
  .hero-v134 .contact-pill{min-height:48px!important;padding:8px 68px 8px 54px!important;border-radius:16px!important;}
  .hero-v134 .contact-pill::before{width:32px!important;height:32px!important;left:10px!important;}
  .hero-v134 .contact-pill strong{font-size:12px!important;}
  .hero-v134 .contact-pill span{font-size:10px!important;}
  .hero-v134 .contact-pill em{right:10px!important;font-size:10.5px!important;}
}
@media(max-width:430px){
  .hero-v134{padding-top:8px!important;}
  .hero-v134 .hero-copy-v134{padding:14px 12px 12px!important;border-radius:23px!important;}
  .hero-v134 .hero-title-v134 span{font-size:clamp(28px,8.8vw,36px)!important;line-height:1.05!important;}
  .hero-v134 .lead{font-size:13.15px!important;line-height:1.38!important;}
  .hero-v134 .hero-promise-v134 span{font-size:10px!important;padding:6px 7px!important;}
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:47px!important;font-size:11.6px!important;padding:8px 5px!important;}
  .hero-v134 .hero-action-img{width:16px!important;height:16px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:68px!important;padding:7px 4px!important;}
  .hero-v134 .hero-scenario-art{width:27px!important;height:27px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:10.5px!important;}
  .hero-v134 .contact-pill{padding-right:10px!important;}
  .hero-v134 .contact-pill em{display:none!important;}
  .mobile-dock{left:6px!important;right:6px!important;bottom:6px!important;padding:5px!important;border-radius:20px!important;}
  .mobile-dock-inner{gap:3px!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:48px!important;padding:6px 2px!important;border-radius:14px!important;}
  .mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{width:19px!important;height:19px!important;margin-bottom:1px!important;}
  .mobile-dock strong{font-size:8.4px!important;letter-spacing:-.025em!important;}
  .mobile-dock span{display:none!important;}
}
@media(max-width:380px){
  .hero-v134 .hero-title-v134 span{font-size:27px!important;}
  .hero-v134 .lead{font-size:12.8px!important;}
  .hero-v134 .hero-actions-v134{grid-template-columns:1fr!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:45px!important;font-size:12.2px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:58px!important;flex-direction:row!important;justify-content:flex-start!important;text-align:left!important;padding:8px 9px!important;}
  .hero-v134 .hero-scenario-art{width:25px!important;height:25px!important;margin:0 6px 0 0!important;}
  .mobile-dock strong{font-size:8px!important;}
}
@media(min-width:861px){
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:54px!important;}
}



/* V155 HERO ICON RECOVERY: bigger buttons, sharper action icons, clearer direction cards */
:root{--build-version:"v163";}
.hero-v134 .hero-actions-v134 .hero-action-img{width:36px!important;height:36px!important;flex:0 0 36px!important;border-radius:12px!important;filter:drop-shadow(0 10px 20px rgba(0,0,0,.32))!important;}
.hero-v134 .hero-actions-v134 .btn{align-items:center!important;gap:10px!important;}
.hero-v134 .hero-actions-v134 .btn span{font-weight:860!important;letter-spacing:-.018em!important;}
.hero-v134 .hero-scenarios-v134 a{align-items:center!important;justify-content:center!important;text-align:center!important;}
.hero-v134 .hero-scenario-art{width:54px!important;height:54px!important;margin:0 auto 6px!important;filter:drop-shadow(0 12px 24px rgba(0,0,0,.34))!important;}
.hero-v134 .hero-scenarios-v134 strong{font-size:16px!important;line-height:1.08!important;letter-spacing:-.028em!important;}
.hero-v134 .hero-scenarios-v134 span:last-child{display:block!important;font-size:10.8px!important;line-height:1.16!important;opacity:.78!important;text-align:center!important;}
@media(max-width:860px){
  .hero-v134 .hero-actions-v134{gap:10px!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:56px!important;padding:10px 10px!important;font-size:12.8px!important;border-radius:17px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:28px!important;height:28px!important;flex-basis:28px!important;border-radius:10px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;margin-bottom:12px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:112px!important;padding:12px 10px!important;border-radius:18px!important;}
  .hero-v134 .hero-scenario-art{width:44px!important;height:44px!important;margin:0 auto 6px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14.4px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{display:block!important;font-size:10.2px!important;}
}
@media(max-width:430px){
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:58px!important;padding:10px 9px!important;font-size:12.3px!important;line-height:1.12!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:26px!important;height:26px!important;flex-basis:26px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:108px!important;padding:11px 10px!important;}
  .hero-v134 .hero-scenario-art{width:42px!important;height:42px!important;margin:0 auto 6px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{display:block!important;font-size:10px!important;line-height:1.14!important;}
}
@media(max-width:380px){
  .hero-v134 .hero-actions-v134{grid-template-columns:1fr!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:54px!important;font-size:12.6px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:25px!important;height:25px!important;flex-basis:25px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:98px!important;flex-direction:column!important;justify-content:center!important;text-align:center!important;padding:10px 8px!important;}
  .hero-v134 .hero-scenario-art{width:38px!important;height:38px!important;margin:0 auto 5px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:13.2px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{display:block!important;font-size:9.7px!important;}
}


/* V155 HERO CTA CERTIFICATES POLISH */
:root{--build-version:"v163";--cert-gold:#f3c76e;--cert-cyan:#23d7ff;}
.hero-v134 .hero-actions-v134 .btn{min-height:60px!important;padding:12px 13px!important;border-radius:19px!important;gap:11px!important;}
.hero-v134 .hero-actions-v134 .hero-action-img{width:40px!important;height:40px!important;flex-basis:40px!important;border-radius:13px!important;}
.hero-v134 .hero-actions-v134 .btn span{font-size:15px!important;line-height:1.12!important;}
.hero-v134 .hero-scenarios-v134 a{background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.042))!important;border-color:rgba(255,255,255,.14)!important;box-shadow:0 18px 42px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.07)!important;}
.hero-v134 .hero-scenario-art{width:60px!important;height:60px!important;margin-bottom:8px!important;}
.hero-v134 .hero-scenarios-v134 strong{font-size:17px!important;}
.hero-v134 .hero-scenarios-v134 span:last-child{font-size:11px!important;max-width:16ch;margin:0 auto!important;}
.certificates-section{position:relative;overflow:hidden;background:radial-gradient(circle at 14% 8%,rgba(35,215,255,.085),transparent 30%),radial-gradient(circle at 92% 6%,rgba(244,199,110,.07),transparent 28%);}
.certificates-panel{position:relative;padding:26px;border-radius:32px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.032));box-shadow:0 28px 78px rgba(0,0,0,.36),0 0 42px rgba(35,215,255,.045),inset 0 1px 0 rgba(255,255,255,.075);overflow:hidden;}
.certificates-panel::before{content:"";position:absolute;inset:-1px;border-radius:inherit;pointer-events:none;background:linear-gradient(135deg,rgba(35,215,255,.18),transparent 32%,rgba(244,199,110,.16));mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);padding:1px;mask-composite:exclude;-webkit-mask-composite:xor;opacity:.75;}
.certificates-head{margin-bottom:18px!important;}
.certificates-head h2{letter-spacing:-.035em;text-wrap:balance;}
.certificates-head p{max-width:760px;margin-left:auto;margin-right:auto;color:rgba(244,247,252,.72)!important;}
.certificates-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.certificate-card{position:relative;display:flex;flex-direction:column;min-width:0;padding:9px;border-radius:20px;text-decoration:none;color:#fff;background:linear-gradient(180deg,rgba(9,13,20,.74),rgba(9,13,20,.46));border:1px solid rgba(255,255,255,.115);box-shadow:0 16px 42px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.06);overflow:hidden;}
.certificate-card img{display:block;width:100%;height:auto;aspect-ratio:900/637;object-fit:cover;border-radius:14px;border:1px solid rgba(255,255,255,.10);box-shadow:0 10px 26px rgba(0,0,0,.30);background:#111;}
.certificate-meta{display:grid;grid-template-columns:auto 1fr;column-gap:9px;row-gap:2px;align-items:start;padding:10px 2px 1px;}
.certificate-meta span{grid-row:1/3;display:inline-flex;align-items:center;justify-content:center;min-width:45px;height:28px;border-radius:10px;background:rgba(244,199,110,.11);border:1px solid rgba(244,199,110,.22);color:#f6d587;font-size:12px;font-weight:900;line-height:1;}
.certificate-meta strong{font-size:13px;line-height:1.12;letter-spacing:-.018em;color:#fff;}
.certificate-meta small{font-size:10.8px;line-height:1.18;color:rgba(244,247,252,.66);}
.certificates-footer{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:18px;padding-top:14px;border-top:1px solid rgba(255,255,255,.08);}
.certificates-footer p{max-width:720px;margin:0;color:rgba(244,247,252,.62);font-size:12.4px;line-height:1.45;}
.certificates-footer .btn{white-space:nowrap;}
.mobile-dock{bottom:max(8px,env(safe-area-inset-bottom))!important;background:linear-gradient(180deg,rgba(11,14,20,.78),rgba(11,14,20,.58))!important;box-shadow:0 18px 48px rgba(0,0,0,.40),0 0 20px rgba(35,215,255,.045)!important;}
@media(max-width:1024px){
  .certificates-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:860px){
  .hero-v134 .hero-actions-v134 .btn{min-height:60px!important;padding:12px 11px!important;font-size:13px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:31px!important;height:31px!important;flex-basis:31px!important;}
  .hero-v134 .hero-actions-v134 .btn span{font-size:13px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:116px!important;}
  .hero-v134 .hero-scenario-art{width:48px!important;height:48px!important;margin-bottom:7px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14.8px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:10.2px!important;}
  .certificates-panel{padding:20px 14px;border-radius:26px;}
  .certificates-grid{display:flex;overflow-x:auto;gap:12px;padding:1px 2px 12px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;}
  .certificate-card{flex:0 0 min(78vw,330px);scroll-snap-align:start;border-radius:18px;}
  .certificates-footer{display:block;}
  .certificates-footer .btn{width:100%;margin-top:12px;}
}
@media(max-width:430px){
  .hero-v134 .hero-actions-v134 .btn{min-height:60px!important;font-size:12.8px!important;gap:8px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:29px!important;height:29px!important;flex-basis:29px!important;}
  .hero-v134 .hero-actions-v134 .btn span{font-size:12.8px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:110px!important;}
  .hero-v134 .hero-scenario-art{width:45px!important;height:45px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14.2px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:9.9px!important;}
  .certificates-head h2{font-size:clamp(28px,8vw,36px)!important;}
  .certificate-card{flex-basis:82vw;}
  .certificate-meta strong{font-size:12.8px;}
  .certificate-meta small{font-size:10.5px;}
}
@media(max-width:380px){
  .hero-v134 .hero-actions-v134 .btn{min-height:56px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:28px!important;height:28px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:104px!important;}
  .hero-v134 .hero-scenario-art{width:42px!important;height:42px!important;}
}


/* V156 FINAL POLISH: hero, CTA, cards, mobile dock, certificates */
:root{--build-version:"v163";--v156-gold:#f4c76e;--v156-cyan:#25d7ff;--v156-glass:rgba(12,15,22,.70);--v156-line:rgba(255,255,255,.13);}
.hero-v134 .hero-copy-v134{
  isolation:isolate;
  background:
    radial-gradient(circle at 20% 8%,rgba(37,215,255,.115),transparent 34%),
    radial-gradient(circle at 84% 4%,rgba(244,199,110,.105),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.082),rgba(255,255,255,.034))!important;
}
.hero-v134 .hero-title-v134 span{
  text-shadow:0 12px 34px rgba(0,0,0,.38);
  letter-spacing:-.021em!important;
}
.hero-v134 .lead{
  max-width:760px!important;
  color:rgba(244,247,252,.80)!important;
}
.hero-v134 .hero-promise-v134{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:8px!important;
}
.hero-v134 .hero-promise-v134 span{
  background:linear-gradient(180deg,rgba(255,255,255,.082),rgba(255,255,255,.035))!important;
  border-color:rgba(255,255,255,.13)!important;
  color:rgba(246,242,234,.82)!important;
}
.hero-v134 .hero-actions-v134{
  align-items:stretch!important;
}
.hero-v134 .hero-actions-v134 .btn{
  min-height:60px!important;
  padding:14px 16px!important;
  border-radius:20px!important;
  gap:12px!important;
  font-size:15.2px!important;
  letter-spacing:-.014em!important;
}
.hero-v134 .hero-actions-v134 .btn.btn-gold{
  box-shadow:0 16px 42px rgba(244,199,110,.18),0 18px 46px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.16)!important;
}
.hero-v134 .hero-actions-v134 .btn:not(.btn-gold){
  background:linear-gradient(180deg,rgba(255,255,255,.072),rgba(255,255,255,.032))!important;
  border-color:rgba(255,255,255,.14)!important;
}
.hero-v134 .hero-actions-v134 .btn:hover{
  transform:translateY(-2px);
  border-color:rgba(244,199,110,.34)!important;
  box-shadow:0 18px 48px rgba(0,0,0,.32),0 0 26px rgba(37,215,255,.07)!important;
}
.hero-v134 .hero-actions-v134 .hero-action-img{
  width:40px!important;
  height:40px!important;
  flex-basis:40px!important;
  border-radius:14px!important;
  filter:drop-shadow(0 12px 21px rgba(0,0,0,.34)) drop-shadow(0 0 12px rgba(244,199,110,.13))!important;
}
.hero-v134 .hero-helper-v134{
  color:rgba(246,242,234,.70)!important;
}
.hero-v134 .hero-scenarios-v134{
  gap:12px!important;
}
.hero-v134 .hero-scenarios-v134 a{
  min-height:132px!important;
  padding:16px 14px!important;
  border-radius:24px!important;
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.082),rgba(255,255,255,.035))!important;
  border-color:rgba(255,255,255,.135)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.hero-v134 .hero-scenarios-v134 a::after{
  opacity:.74!important;
}
.hero-v134 .hero-scenario-art{
  width:62px!important;
  height:62px!important;
  margin:0 auto 8px!important;
}
.hero-v134 .hero-scenarios-v134 strong{
  font-size:17.2px!important;
  line-height:1.06!important;
  color:#fff!important;
}
.hero-v134 .hero-scenarios-v134 span:last-child{
  display:block!important;
  font-size:11.4px!important;
  line-height:1.18!important;
  color:rgba(244,247,252,.70)!important;
}
.mobile-dock{
  backdrop-filter:blur(22px) saturate(135%)!important;
  -webkit-backdrop-filter:blur(22px) saturate(135%)!important;
  background:linear-gradient(180deg,rgba(13,16,22,.78),rgba(13,16,22,.62))!important;
  border-color:rgba(255,255,255,.12)!important;
  box-shadow:0 18px 46px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.075)!important;
  padding-bottom:calc(6px + env(safe-area-inset-bottom,0px))!important;
}
.mobile-dock .dock-link,.mobile-dock a{
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022))!important;
}
.mobile-dock .dock-link:active,.mobile-dock a:active{
  transform:translateY(1px) scale(.985);
}
.mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{
  width:21px!important;
  height:21px!important;
}
.mobile-dock strong{
  font-weight:820!important;
}
.certificates-section{
  position:relative;
  padding-top:44px!important;
  padding-bottom:48px!important;
}
.certificates-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 22% 16%,rgba(37,215,255,.08),transparent 32%),radial-gradient(circle at 78% 20%,rgba(244,199,110,.08),transparent 30%);
}
.certificates-panel{
  position:relative;
  overflow:hidden;
  border-radius:30px!important;
  border:1px solid rgba(255,255,255,.135)!important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.068),rgba(255,255,255,.032)),
    rgba(9,12,18,.62)!important;
  box-shadow:0 28px 82px rgba(0,0,0,.34),0 0 42px rgba(37,215,255,.055),inset 0 1px 0 rgba(255,255,255,.08)!important;
  padding:28px!important;
}
.certificates-head{
  margin-bottom:18px!important;
}
.certificates-head h2{
  letter-spacing:-.025em!important;
  text-shadow:0 12px 34px rgba(0,0,0,.34);
}
.certificates-head p{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
  color:rgba(244,247,252,.72)!important;
}
.certificates-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:14px!important;
}
.certificate-card{
  border-radius:20px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.13)!important;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025))!important;
  box-shadow:0 16px 38px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.07)!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.certificate-card:hover{
  transform:translateY(-2px);
  border-color:rgba(244,199,110,.26)!important;
  box-shadow:0 22px 52px rgba(0,0,0,.34),0 0 26px rgba(37,215,255,.06)!important;
}
.certificate-card img{
  display:block!important;
  width:100%!important;
  aspect-ratio:1.414/1!important;
  height:auto!important;
  object-fit:cover!important;
  background:rgba(255,255,255,.03)!important;
}
.certificate-meta{
  display:grid!important;
  grid-template-columns:auto 1fr!important;
  gap:4px 9px!important;
  align-items:center!important;
  padding:10px 11px 12px!important;
}
.certificate-meta span{
  grid-row:1/3;
  min-width:44px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:12px;
  font-weight:900;
  color:#0d1118;
  background:linear-gradient(135deg,#fff1b8,#f4c76e);
}
.certificate-meta strong{
  font-size:13px!important;
  line-height:1.1!important;
  color:#fff!important;
  letter-spacing:-.018em!important;
}
.certificate-meta small{
  font-size:10.6px!important;
  line-height:1.18!important;
  color:rgba(244,247,252,.66)!important;
}
.certificates-footer{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:16px!important;
  margin-top:16px!important;
  padding:14px 16px!important;
  border-radius:18px!important;
  border:1px solid rgba(255,255,255,.10)!important;
  background:rgba(255,255,255,.035)!important;
}
.certificates-footer p{
  margin:0!important;
  max-width:760px;
  color:rgba(244,247,252,.68)!important;
  font-size:13px!important;
  line-height:1.45!important;
}
.certificates-footer .btn{
  flex:0 0 auto;
  min-height:46px!important;
  padding:12px 16px!important;
}
@media(max-width:980px){
  .hero-v134 .hero-actions-v134 .btn{min-height:58px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:36px!important;height:36px!important;flex-basis:36px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:124px!important;}
  .certificates-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:860px){
  .hero-v134 .hero-copy-v134{padding:17px 14px 15px!important;}
  .hero-v134 .hero-title-v134 span{font-size:clamp(30px,8.45vw,39px)!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:56px!important;font-size:13.4px!important;padding:10px 10px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:30px!important;height:30px!important;flex-basis:30px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:116px!important;}
  .hero-v134 .hero-scenario-art{width:48px!important;height:48px!important;}
  .certificates-section{padding-top:34px!important;padding-bottom:38px!important;}
  .certificates-panel{padding:20px 14px!important;border-radius:25px!important;}
  .certificates-grid{
    display:flex!important;
    overflow-x:auto!important;
    scroll-snap-type:x mandatory;
    gap:12px!important;
    padding:2px 2px 10px!important;
    -webkit-overflow-scrolling:touch;
  }
  .certificate-card{
    flex:0 0 78%!important;
    max-width:330px;
    scroll-snap-align:start;
  }
  .certificates-footer{
    align-items:flex-start!important;
    flex-direction:column!important;
  }
}
@media(max-width:430px){
  .hero-v134 .hero-actions-v134{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:9px!important;
  }
  .hero-v134 .hero-actions-v134 .btn{
    min-height:58px!important;
    padding:10px 8px!important;
    font-size:12.4px!important;
    border-radius:17px!important;
  }
  .hero-v134 .hero-actions-v134 .hero-action-img{
    width:28px!important;
    height:28px!important;
    flex-basis:28px!important;
  }
  .hero-v134 .hero-scenarios-v134{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:9px!important;
  }
  .hero-v134 .hero-scenarios-v134 a{
    min-height:106px!important;
    padding:11px 8px!important;
    border-radius:18px!important;
  }
  .hero-v134 .hero-scenario-art{
    width:42px!important;
    height:42px!important;
    margin-bottom:6px!important;
  }
  .hero-v134 .hero-scenarios-v134 strong{font-size:14px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:9.8px!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:49px!important;}
  .mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{width:19px!important;height:19px!important;}
  .certificate-card{flex-basis:86%!important;}
}
@media(max-width:370px){
  .hero-v134 .hero-actions-v134{grid-template-columns:1fr!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:54px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:100px!important;}
  .certificate-card{flex-basis:90%!important;}
}


/* V157 GEO SEO EXPANSION: visible service-area layer, geo cards, internal linking */
:root{--build-version:"v163";--v157-line:rgba(255,255,255,.13);--v157-glass:rgba(12,15,22,.66);--v157-gold:#f4c76e;--v157-cyan:#25d7ff;}
.geo-page .page-hero.geo-hero{
  position:relative;
  overflow:hidden;
}
.geo-page .geo-hero::before,
.geo-home-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 16% 12%,rgba(37,215,255,.08),transparent 30%),
    radial-gradient(circle at 82% 10%,rgba(244,199,110,.08),transparent 28%);
}
.geo-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.75fr);
  gap:18px;
  align-items:stretch;
}
.geo-hero-grid h1{
  max-width:920px;
  letter-spacing:-.035em;
}
.geo-hero-grid p{
  max-width:820px;
  color:rgba(244,247,252,.76);
}
.geo-coverage-card,
.geo-home-panel,
.geo-inline-panel,
.geo-cluster-card,
.geo-service-card,
.geo-work-grid article,
.geo-link-card{
  border:1px solid var(--v157-line);
  background:linear-gradient(180deg,rgba(255,255,255,.064),rgba(255,255,255,.028));
  box-shadow:0 18px 48px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.065);
  backdrop-filter:blur(18px) saturate(128%);
  -webkit-backdrop-filter:blur(18px) saturate(128%);
}
.geo-coverage-card{
  border-radius:28px;
  padding:22px;
  min-height:100%;
}
.geo-coverage-card strong{
  display:block;
  font-size:18px;
  line-height:1.15;
  color:#fff;
  letter-spacing:-.02em;
  margin-bottom:8px;
}
.geo-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:14px;
}
.geo-tags span,
.geo-keywords span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.045);
  color:rgba(244,247,252,.78);
  font-size:12px;
  line-height:1;
}
.geo-service-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.geo-service-card{
  border-radius:22px;
  padding:18px;
}
.geo-service-card h3{
  font-size:17px;
  margin:0 0 8px;
  letter-spacing:-.02em;
}
.geo-service-card p{
  color:rgba(244,247,252,.68);
  font-size:13px;
  line-height:1.42;
  margin:0 0 12px;
}
.geo-service-card a{
  color:var(--v157-gold);
  font-weight:850;
  text-decoration:none;
}
.geo-work-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.geo-work-grid article{
  border-radius:22px;
  padding:18px;
}
.geo-work-grid b{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  background:linear-gradient(135deg,var(--v157-gold),#fff0b2);
  color:#0c1017;
  margin-bottom:10px;
}
.geo-work-grid h3{
  margin:0 0 8px;
  font-size:16px;
}
.geo-work-grid p{
  margin:0;
  color:rgba(244,247,252,.66);
  font-size:13px;
  line-height:1.42;
}
.geo-links-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.geo-link-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:86px;
  border-radius:20px;
  padding:14px;
  color:#fff;
  text-decoration:none;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.geo-link-card:hover{
  transform:translateY(-2px);
  border-color:rgba(244,199,110,.28);
  box-shadow:0 22px 54px rgba(0,0,0,.32),0 0 30px rgba(37,215,255,.055);
}
.geo-link-card strong{
  font-size:15px;
  letter-spacing:-.018em;
}
.geo-link-card span{
  margin-top:5px;
  color:rgba(244,247,252,.62);
  font-size:12px;
}
.geo-clusters-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.geo-cluster-card{
  border-radius:24px;
  padding:20px;
}
.geo-cluster-card h3{
  margin:0 0 10px;
}
.geo-home-section{
  position:relative;
}
.geo-home-panel{
  position:relative;
  border-radius:30px;
  padding:28px;
  overflow:hidden;
}
.geo-home-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.geo-home-grid a{
  min-height:92px;
  padding:15px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
}
.geo-home-grid strong{
  display:block;
  font-size:16px;
  margin-bottom:6px;
}
.geo-home-grid span{
  color:rgba(244,247,252,.66);
  font-size:12px;
  line-height:1.25;
}
.geo-home-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
}
.geo-home-footer p{
  margin:0;
  color:rgba(244,247,252,.66);
  font-size:13px;
  line-height:1.42;
}
.geo-inline-section{
  padding-top:34px!important;
  padding-bottom:34px!important;
}
.geo-inline-panel{
  border-radius:26px;
  padding:22px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
  gap:16px;
  align-items:center;
}
.geo-inline-panel h2{
  margin:4px 0 8px;
  letter-spacing:-.025em;
}
.geo-inline-panel p{
  margin:0;
  color:rgba(244,247,252,.68);
}
.geo-inline-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.geo-inline-links a{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-size:12.5px;
  font-weight:820;
}
.geo-keywords{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:14px;
}
.footer-geo-links a:first-child{
  color:var(--v157-gold);
}
@media(max-width:980px){
  .geo-hero-grid,
  .geo-inline-panel{
    grid-template-columns:1fr;
  }
  .geo-service-grid,
  .geo-work-grid,
  .geo-links-grid,
  .geo-home-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  .geo-home-panel,
  .geo-coverage-card,
  .geo-inline-panel{
    border-radius:24px;
    padding:18px 14px;
  }
  .geo-service-grid,
  .geo-work-grid,
  .geo-links-grid,
  .geo-home-grid,
  .geo-clusters-grid{
    grid-template-columns:1fr;
  }
  .geo-home-footer,
  .geo-inline-panel{
    display:block;
  }
  .geo-home-footer .btn{
    margin-top:12px;
    width:100%;
  }
  .geo-inline-links{
    justify-content:flex-start;
    margin-top:14px;
  }
  .geo-link-card{
    min-height:72px;
  }
}

/* V158 GEO MODULE MERGE: data-driven geo pages and compact geo index */
.geo-links-compact{grid-template-columns:repeat(2,minmax(0,1fr))!important;margin-top:10px}
.geo-index .geo-cluster-card{min-height:100%}
.geo-page .faq-list details{border-radius:18px}
@media(max-width:640px){.geo-links-compact{grid-template-columns:1fr!important}}

/* V159 GEO GLOBALIZATION: expanded metro/rayon coverage */
.geo-index .geo-clusters-grid{grid-template-columns:1fr!important}
.geo-index .geo-cluster-card{padding:22px!important}
.geo-index .geo-links-compact{grid-template-columns:repeat(4,minmax(0,1fr))!important}
@media(max-width:980px){.geo-index .geo-links-compact{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:640px){.geo-index .geo-links-compact{grid-template-columns:1fr!important}}


/* V160 SEO MONEY PAGES POLISH: service+geo, stronger linking, quality blocks */
.service-geo-page .geo-hero .eyebrow{color:rgba(244,199,110,.92)}
.service-geo-exact-section .geo-link-card,
.service-geo-money-section .geo-link-card{
  min-height:96px;
  border-color:rgba(244,199,110,.16);
  background:
    radial-gradient(circle at 22% 12%,rgba(244,199,110,.08),transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.064),rgba(255,255,255,.026));
}
.geo-quality-section .geo-inline-panel{
  border-color:rgba(37,215,255,.16);
}
.geo-money-mini{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.geo-money-mini a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 11px;
  border-radius:999px;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-size:12px;
  font-weight:820;
}
.geo-money-mini a:hover{
  border-color:rgba(244,199,110,.32);
  color:#fff;
}
@media(max-width:640px){
  .service-geo-page .geo-service-grid{grid-template-columns:1fr!important}
  .geo-money-mini a{width:100%;justify-content:center}
}


/* V161 SEO QUALITY BOOST: service hubs, crosslinks, topical authority */
.service-hub-page .geo-hero-grid h1{
  max-width:980px;
}
.service-hub-page .geo-service-card h3{
  text-transform:none;
}
.service-hub-links-section .geo-link-card,
.service-geo-cross-section .geo-link-card{
  border-color:rgba(37,215,255,.14);
}
.geo-subhead{
  margin:20px 0 12px;
  color:#fff;
  font-size:18px;
  letter-spacing:-.02em;
}
.footer-hub-links{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:14px;
  padding-top:12px;
}
.footer-hub-links a:first-child{
  color:var(--v157-gold,#f4c76e);
}
.service-hub-mini{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
}
.service-hubs-section .geo-link-card{
  min-height:104px;
  border-color:rgba(244,199,110,.16);
  background:
    radial-gradient(circle at 20% 10%,rgba(244,199,110,.07),transparent 40%),
    linear-gradient(180deg,rgba(255,255,255,.064),rgba(255,255,255,.026));
}
@media(max-width:640px){
  .service-hubs-section .geo-links-grid,
  .service-hub-page .geo-links-grid{
    grid-template-columns:1fr!important;
  }
}


/* V162 SEO QUALITY CRO POLISH: anti-thin, FAQ, trust, CRO readability */
.geo-trust-section .geo-work-grid article,
.service-prepare-section .geo-inline-panel,
.geo-profile-section .geo-inline-panel{
  border-color:rgba(244,199,110,.16);
}
.service-prepare-tags a{cursor:pointer;}
.service-hub-page .faq-list details,
.service-geo-page .faq-list details,
.geo-page .faq-list details{
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.105);
}
.geo-profile-section .geo-inline-panel,
.service-prepare-section .geo-inline-panel{
  background:radial-gradient(circle at 18% 10%,rgba(244,199,110,.07),transparent 42%),linear-gradient(180deg,rgba(255,255,255,.062),rgba(255,255,255,.028));
}
@media(max-width:640px){
  .geo-trust-section .geo-work-grid,
  .service-prepare-section .geo-inline-links,
  .geo-profile-section .geo-inline-links{grid-template-columns:1fr!important}
}


/* V163 AUDIT FIXES: sitemap/indexation sync, no visual redesign */

/* FINAL PRODUCTION QA POLISH */
html,body{max-width:100%;overflow-x:hidden;}
img,svg,video,canvas{max-width:100%;}
.topbar-inner,.topbar-actions,.hero-actions,.hero-ctas,.cta-row,.drawer-actions,.contact-actions,.messenger-row,.form-actions,.mobile-dock-inner,.footer-inner{min-width:0;}
.hero-actions,.hero-ctas,.cta-row,.drawer-actions,.messenger-row,.form-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;}
.hero-actions .btn,.hero-ctas .btn,.cta-row .btn,.form-actions .btn,.drawer-actions .btn{white-space:normal;text-align:center;line-height:1.18;}
.form input,.form select,.form textarea,.print-order-form input,.print-order-form select,.print-order-form textarea,.website-order-form input,.website-order-form select,.website-order-form textarea,.design-order-form input,.design-order-form select,.design-order-form textarea{max-width:100%;box-sizing:border-box;}
.footer-links a,.drawer-nav a,.sevenart-mobile-links a,.breadcrumb a,.breadcrumbs a{overflow-wrap:anywhere;}
.mobile-dock{padding-bottom:env(safe-area-inset-bottom);}
.mobile-dock-inner{overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;}
.mobile-dock-inner::-webkit-scrollbar{display:none;}
.card,.service-card,.product-card,.collection-card,.hub-card,.seo-card{min-width:0;}
@media (max-width:768px){
  .topbar-inner{gap:10px;}
  .topbar-actions{gap:8px;}
  .topbar-phone{display:none;}
  .hero,.hero-v134{min-height:auto;}
  .hero h1,.hero-title,h1{letter-spacing:-.035em;overflow-wrap:balance;}
  .hero-subtitle,.lead,.section-lead{max-width:100%;}
  .hero-actions .btn,.hero-ctas .btn,.cta-row .btn,.form-actions .btn{flex:1 1 180px;min-height:46px;}
  .drawer-actions.drawer-actions-messengers{grid-template-columns:1fr 1fr;display:grid;gap:10px;}
  .footer-inner{gap:22px;}
  .mobile-dock-inner{padding-left:10px;padding-right:10px;}
  .mobile-dock a{flex:0 0 auto;min-width:70px;}
}
@media (max-width:430px){
  .wrap{width:min(100% - 24px,var(--wrap,1180px));}
  .hero-actions .btn,.hero-ctas .btn,.cta-row .btn,.form-actions .btn{flex-basis:100%;}
  .drawer-actions.drawer-actions-messengers{grid-template-columns:1fr;}
  .mobile-dock a{min-width:64px;}
  .mobile-dock strong{font-size:11px;}
  .mobile-dock span{font-size:10px;}
}

/* V166 MOSCOW SEO METRIKA PRODUCTION */
.moscow-seo-section .geo-links-grid{margin-top:24px}
.moscow-seo-section .geo-link-card strong{line-height:1.16}
.moscow-trust-panel{margin-top:24px}
@media (max-width: 640px){
  .moscow-seo-section .section-head h2{font-size:clamp(28px,8vw,38px);line-height:1.05;letter-spacing:-.04em}
  .moscow-seo-section .geo-links-grid{grid-template-columns:1fr;gap:12px}
  .moscow-trust-panel{gap:18px}
}


/* FINAL 7ART SEO DESIGN QA POLISH */
.hero-title,.hero-title-v134{max-width:1100px;text-wrap:balance;line-height:.96;}
.hero .lead,.hero-v134 .lead{max-width:820px;text-wrap:pretty;}
.hero-promise-v134 span,.hero-tags span,.trust-pill,.messenger-link{min-width:0;}
.messenger-row a,.drawer-actions-messengers a{justify-content:center;}
.form-msg{border-radius:18px;padding:12px 14px;line-height:1.35;}
.product-card img,.collection-card img,.design-product-card img{object-fit:cover;}
@media (max-width:768px){
  .hero-title,.hero-title-v134{font-size:clamp(38px,10.8vw,72px);line-height:1;letter-spacing:-.055em;}
  .hero .lead,.hero-v134 .lead{font-size:clamp(16px,4.3vw,19px);line-height:1.45;}
  .hero-promise-v134{display:grid;grid-template-columns:1fr;gap:8px;}
  .hero-promise-v134 span{width:100%;justify-content:center;text-align:center;}
  .messenger-row{grid-template-columns:1fr;}
  .messenger-row a{width:100%;}
  .section-head,.section-head-v134{text-wrap:balance;}
}
@media (max-width:430px){
  .hero-meta{gap:8px;flex-wrap:wrap;}
  .hero-title,.hero-title-v134{font-size:clamp(34px,11vw,48px);}
  .topbar-brand span,.brand-word{max-width:150px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
  .mobile-dock{box-shadow:0 -18px 50px rgba(0,0,0,.35);}
}

/* FINAL CONTINUED 7ART QA POLISH */
@media (max-width: 520px){
  .hero-btns,.request-btns,.messenger-row,.contact-actions,.form-grid-2{gap:10px;}
  .hero-btns .btn,.request-btns .btn,.messenger-row .btn,.contact-actions .btn{min-height:46px;white-space:normal;text-align:center;line-height:1.15;}
  .page-hero h1,.hero h1{overflow-wrap:anywhere;hyphens:auto;}
  .mobile-dock a,.mobile-dock .dock-link{min-width:0;}
  .form-message,.form-msg{font-size:14px;line-height:1.45;}
}
input.is-invalid,textarea.is-invalid,select.is-invalid{outline:0;}

/* FINAL V168 ICON / BUTTON FIX — larger icons, true button feel, cleaner messenger UI */
:root{
  --icon-tg-original:url('./telegram-user-ref.png');
  --icon-wa-original:url('./whatsapp-user-ref.png');
  --icon-max-original:url('./max-user-ref.png');
}
.hero-v134 .hero-actions-v134{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  align-items:stretch!important;
}
.hero-v134 .hero-actions-v134 .btn{
  justify-content:flex-start!important;
  text-align:left!important;
  min-height:74px!important;
  padding:14px 18px!important;
  border-radius:22px!important;
  line-height:1.1!important;
  box-shadow:0 18px 42px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.07)!important;
}
.hero-v134 .hero-actions-v134 .btn > span{
  display:block!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:unset!important;
  font-size:15px!important;
  font-weight:900!important;
  letter-spacing:-.02em!important;
}
.hero-v134 .hero-actions-v134 .hero-action-img{
  width:48px!important;
  height:48px!important;
  flex:0 0 48px!important;
  border-radius:14px!important;
  margin-left:10px!important;
  object-fit:contain!important;
}
.hero-v134 .hero-actions-v134 .btn.btn-gold{
  color:#0d1118!important;
}
.hero-v134 .hero-scenarios-v134{
  gap:12px!important;
}
.hero-v134 .hero-scenarios-v134 a{
  min-height:148px!important;
  padding:18px 14px 16px!important;
  border-radius:24px!important;
}
.hero-v134 .hero-scenario-art{
  width:78px!important;
  height:78px!important;
  margin:0 auto 10px!important;
}
.hero-v134 .hero-scenarios-v134 strong{
  font-size:19px!important;
  line-height:1.03!important;
}
.hero-v134 .hero-scenarios-v134 span:last-child{
  font-size:12px!important;
  line-height:1.2!important;
}
.hero-v134 .hero-contact-row-v134{
  gap:10px!important;
}
.hero-v134 .contact-pill{
  min-height:64px!important;
  padding:12px 14px 12px 70px!important;
  border-radius:19px!important;
  position:relative!important;
  box-shadow:0 12px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
.hero-v134 .contact-pill::before{
  width:40px!important;
  height:40px!important;
  left:14px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
}
.hero-v134 .contact-pill strong{font-size:15px!important;}
.hero-v134 .contact-pill span{font-size:11.8px!important;}
.hero-v134 .contact-pill em{display:inline-block!important;font-size:11.5px!important;font-style:normal!important;color:rgba(255,255,255,.68)!important;}
.mobile-dock{
  z-index:90!important;
  padding:8px!important;
  border-radius:24px!important;
}
.mobile-dock-inner{
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:6px!important;
}
.mobile-dock .dock-link,
.mobile-dock a{
  min-height:72px!important;
  padding:9px 5px 8px!important;
  border-radius:18px!important;
  justify-content:center!important;
}
.mobile-dock .dock-link::after,
.mobile-dock .dock-app-icon{
  width:32px!important;
  height:32px!important;
  margin:0 0 4px!important;
  border-radius:10px!important;
}
.mobile-dock strong{
  font-size:11px!important;
  line-height:1!important;
}
.mobile-dock span{
  font-size:10px!important;
  line-height:1!important;
}
@media(max-width:980px){
  .hero-v134 .hero-actions-v134 .btn{min-height:70px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:44px!important;height:44px!important;flex-basis:44px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:138px!important;}
  .hero-v134 .hero-scenario-art{width:70px!important;height:70px!important;}
}
@media(max-width:860px){
  .hero-v134 .hero-actions-v134 .btn{min-height:66px!important;padding:12px 14px!important;}
  .hero-v134 .hero-actions-v134 .btn>span{font-size:14px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:40px!important;height:40px!important;flex-basis:40px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:126px!important;}
  .hero-v134 .hero-scenario-art{width:62px!important;height:62px!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:68px!important;}
  .mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{width:30px!important;height:30px!important;}
}
@media(max-width:430px){
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:64px!important;padding:11px 12px!important;border-radius:18px!important;}
  .hero-v134 .hero-actions-v134 .btn>span{font-size:13.2px!important;line-height:1.08!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:36px!important;height:36px!important;flex-basis:36px!important;margin-left:8px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:124px!important;padding:14px 10px!important;}
  .hero-v134 .hero-scenario-art{width:58px!important;height:58px!important;margin-bottom:8px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:16px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:10.7px!important;}
  .hero-v134 .hero-contact-row-v134{grid-template-columns:1fr!important;}
  .hero-v134 .contact-pill{min-height:60px!important;padding-left:64px!important;}
  .hero-v134 .contact-pill::before{width:36px!important;height:36px!important;left:12px!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:64px!important;border-radius:16px!important;}
  .mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{width:28px!important;height:28px!important;}
}
@media(max-width:370px){
  .hero-v134 .hero-actions-v134{grid-template-columns:1fr!important;}
}


/* V169 HONEYPOT + FORM FOCUS POLISH */
.hp-field,
input.hp-field,
textarea.hp-field,
select.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.input:focus,
.select:focus {
  border-color: var(--accent2, #f4c982) !important;
  box-shadow: 0 0 0 1px rgba(244, 201, 130, 0.18), 0 0 14px rgba(244, 201, 130, 0.24) !important;
  outline: none !important;
}

/* V170 COMPACT HERO / SHORTER SCROLL / ICON BUTTON QA */
:root{
  --sa-hero-display:"Segoe UI Variable Display","SF Pro Display","Inter Tight","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}
.hero-v134 .hero-title-v134,
.hero-v134 .hero-title-v134 span,
.hero-v134 .hero-title-v134 b,
.hero-v134 .hero-title-gold{
  font-family:var(--sa-hero-display)!important;
  font-weight:860!important;
  letter-spacing:-.052em!important;
  line-height:.97!important;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
}
.hero-v134 .hero-title-v134 b{font-weight:920!important;}
.hero-v134 .hero-title-gold{letter-spacing:-.048em!important;}
.hero-v134 .lead{
  max-width:760px!important;
  font-size:clamp(17px,1.45vw,20px)!important;
  line-height:1.48!important;
}
.hero-v134 .hero-copy-v134{
  padding-top:clamp(18px,2.5vw,34px)!important;
  padding-bottom:clamp(16px,2.2vw,28px)!important;
}
.hero-v134 .hero-actions-v134{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
  margin-bottom:14px!important;
}
.hero-v134 .hero-actions-v134 .btn{
  min-height:68px!important;
  padding:12px 12px!important;
  justify-content:space-between!important;
  gap:8px!important;
  border-radius:20px!important;
}
.hero-v134 .hero-actions-v134 .btn>span{
  font-size:14px!important;
  line-height:1.08!important;
}
.hero-v134 .hero-actions-v134 .hero-action-img{
  width:44px!important;
  height:44px!important;
  flex:0 0 44px!important;
  margin-left:4px!important;
  border-radius:14px!important;
}
.hero-v134 .hero-scenarios-v134{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
  margin-bottom:14px!important;
}
.hero-v134 .hero-scenarios-v134 a{
  min-height:124px!important;
  padding:14px 10px!important;
  border-radius:22px!important;
}
.hero-v134 .hero-scenario-art{
  width:66px!important;
  height:66px!important;
  margin:0 auto 7px!important;
}
.hero-v134 .hero-scenarios-v134 strong{font-size:16.4px!important;}
.hero-v134 .hero-scenarios-v134 span:last-child{font-size:10.5px!important;line-height:1.14!important;}
.hero-v134 .hero-contact-row-v134{
  margin-top:10px!important;
  margin-bottom:0!important;
}
.hero-v134 .contact-pill{
  min-height:60px!important;
  border-radius:18px!important;
}
.hero-v134 .contact-pill::before{
  width:38px!important;
  height:38px!important;
}
.section{padding-block:clamp(42px,5vw,70px)!important;}
.section-head{margin-bottom:clamp(18px,2.5vw,28px)!important;}
.studio-proof-v134{padding-block:clamp(24px,3vw,42px)!important;}
.live-studio-v134 .section-head,
.design-showcase-section .section-head,
.website-home-section .section-head,
.seo-home-preview-v134 .section-head{
  max-width:860px;
}
.live-grid-v134,
.design-example-grid-home,
.services-grid,
.seo-home-grid,
.website-package-grid-home{
  gap:14px!important;
}
.live-grid-v134 .live-card-v134,
.design-example-grid-home .design-example-card,
.service-card,
.seo-home-card,
.website-package-card{
  border-radius:22px!important;
}
.live-card-v134 div,
.design-example-card div{padding:14px!important;}
.live-card-v134 strong,
.design-example-card strong{font-size:15px!important;line-height:1.12!important;}
.live-card-v134 span,
.design-example-card span{font-size:12px!important;line-height:1.25!important;}
/* Desktop: keep page informative, but stop repeated galleries from stretching the page endlessly */
@media(min-width:981px){
  .live-grid-v134 article:nth-child(n+9){display:none!important;}
  .design-example-grid-home article:nth-child(n+5){display:none!important;}
  .seo-home-grid a:nth-child(n+5){display:none!important;}
  .live-grid-v134{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  .live-grid-v134 .live-card-wide-v134{grid-column:span 2!important;}
}
@media(max-width:980px){
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:66px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:40px!important;height:40px!important;flex-basis:40px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:116px!important;}
  .hero-v134 .hero-scenario-art{width:58px!important;height:58px!important;}
  .live-grid-v134,
  .design-example-grid-home,
  .services-grid,
  .seo-home-grid,
  .website-package-grid-home,
  .proof-strip-v134{
    display:flex!important;
    overflow-x:auto!important;
    scroll-snap-type:x mandatory;
    gap:12px!important;
    padding:2px 2px 12px!important;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .live-grid-v134::-webkit-scrollbar,
  .design-example-grid-home::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .seo-home-grid::-webkit-scrollbar,
  .website-package-grid-home::-webkit-scrollbar,
  .proof-strip-v134::-webkit-scrollbar{display:none;}
  .live-grid-v134>* ,
  .design-example-grid-home>* ,
  .services-grid>* ,
  .seo-home-grid>* ,
  .website-package-grid-home>* ,
  .proof-strip-v134>*{
    flex:0 0 min(82vw,360px)!important;
    scroll-snap-align:start;
  }
  .live-card-wide-v134{grid-column:auto!important;}
  .section{padding-block:34px!important;}
}
@media(max-width:430px){
  .hero-v134 .hero-title-v134,
  .hero-v134 .hero-title-v134 span{
    font-size:clamp(31px,9.4vw,42px)!important;
    line-height:1.01!important;
    letter-spacing:-.045em!important;
  }
  .hero-v134 .lead{font-size:15.8px!important;line-height:1.46!important;}
  .hero-v134 .hero-promise-v134{display:grid!important;grid-template-columns:1fr!important;gap:7px!important;}
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:62px!important;padding:10px 9px!important;border-radius:17px!important;}
  .hero-v134 .hero-actions-v134 .btn>span{font-size:12.7px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:35px!important;height:35px!important;flex-basis:35px!important;}
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:108px!important;padding:12px 8px!important;}
  .hero-v134 .hero-scenario-art{width:52px!important;height:52px!important;margin-bottom:6px!important;}
  .hero-v134 .hero-scenarios-v134 strong{font-size:14.5px!important;}
  .hero-v134 .hero-scenarios-v134 span:last-child{font-size:9.8px!important;}
  .hero-v134 .hero-contact-row-v134{grid-template-columns:1fr!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:64px!important;}
  .mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{width:28px!important;height:28px!important;}
  .live-grid-v134>* ,
  .design-example-grid-home>* ,
  .services-grid>* ,
  .seo-home-grid>* ,
  .website-package-grid-home>* ,
  .proof-strip-v134>*{flex-basis:84vw!important;}
}
@media(max-width:370px){
  .hero-v134 .hero-actions-v134{grid-template-columns:1fr!important;}
}


/* V171 QA: honeypot/cache cleanup marker */

/* V172 CLEAN HERO BUTTON ICON SYSTEM — deterministic final layer, no redesign */
:root{
  --v172-hero-font:"Segoe UI Variable Display","SF Pro Display","Inter Tight","Arial",system-ui,-apple-system,sans-serif;
  --v172-radius-button:20px;
  --v172-icon-action-d:48px;
  --v172-icon-direction-d:78px;
  --v172-icon-dock-d:32px;
}
.hero-v134 .hero-title-v134,
.hero-v134 .hero-title-v134 span{
  font-family:var(--v172-hero-font)!important;
  font-weight:840!important;
  letter-spacing:-.052em!important;
  line-height:.98!important;
  font-stretch:normal;
}
.hero-v134 .hero-title-v134 b{font-weight:900!important;}
.hero-v134 .lead{max-width:760px!important;font-size:clamp(16px,1.45vw,19px)!important;line-height:1.48!important;}
.hero-v134 .hero-copy-v134{gap:12px!important;}
.hero-v134 .hero-promise-v134{gap:8px!important;margin:12px 0 4px!important;}
.hero-v134 .hero-promise-v134 span{min-height:34px!important;padding:8px 11px!important;font-size:12px!important;}
.hero-v134 .hero-actions-v134{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin:14px 0 10px!important;
}
.hero-v134 .hero-actions-v134 .btn{
  width:100%!important;
  min-width:0!important;
  min-height:70px!important;
  padding:13px 16px!important;
  border-radius:var(--v172-radius-button)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  text-align:left!important;
  white-space:normal!important;
  overflow:hidden!important;
  box-shadow:0 16px 38px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.hero-v134 .hero-actions-v134 .btn>span{
  min-width:0!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:clip!important;
  font-size:14.8px!important;
  line-height:1.08!important;
  font-weight:900!important;
  letter-spacing:-.018em!important;
}
.hero-v134 .hero-actions-v134 .hero-action-img{
  width:var(--v172-icon-action-d)!important;
  height:var(--v172-icon-action-d)!important;
  min-width:var(--v172-icon-action-d)!important;
  flex:0 0 var(--v172-icon-action-d)!important;
  object-fit:contain!important;
  border-radius:14px!important;
  margin:0!important;
  opacity:1!important;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.34))!important;
}
.hero-v134 .hero-scenarios-v134{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
  margin:8px 0 14px!important;
}
.hero-v134 .hero-scenarios-v134 a{
  min-height:146px!important;
  padding:17px 12px 14px!important;
  border-radius:23px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:6px!important;
}
.hero-v134 .hero-scenario-art{
  width:var(--v172-icon-direction-d)!important;
  height:var(--v172-icon-direction-d)!important;
  flex:0 0 var(--v172-icon-direction-d)!important;
  margin:0 auto 6px!important;
  object-fit:contain!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
.hero-v134 .hero-scenarios-v134 strong{font-size:18px!important;line-height:1.04!important;font-weight:920!important;}
.hero-v134 .hero-scenarios-v134 span:last-child{font-size:11.2px!important;line-height:1.18!important;}
.hero-v134 .hero-contact-row-v134{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:9px!important;margin-top:4px!important;}
.hero-v134 .contact-pill{
  min-height:62px!important;
  padding:12px 12px 12px 68px!important;
  border-radius:18px!important;
  position:relative!important;
  overflow:hidden!important;
}
.hero-v134 .contact-pill::before{
  content:""!important;
  position:absolute!important;
  left:13px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:40px!important;
  height:40px!important;
  background-repeat:no-repeat!important;
  background-position:center!important;
  background-size:contain!important;
}
.hero-v134 .contact-pill-tg::before{background-image:url('./telegram-user-ref.png')!important;border-radius:50%!important;}
.hero-v134 .contact-pill-wa::before{background-image:url('./whatsapp-user-ref.png')!important;border-radius:50%!important;}
.hero-v134 .contact-pill-max::before{background-image:url('./max-user-ref.png')!important;border-radius:13px!important;}
.mobile-dock{padding:8px!important;border-radius:24px!important;}
.mobile-dock-inner{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:6px!important;}
.mobile-dock .dock-link,.mobile-dock a{
  min-height:70px!important;
  padding:8px 4px!important;
  border-radius:17px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:3px!important;
  text-align:center!important;
}
.mobile-dock .dock-link::after,
.mobile-dock .dock-app-icon{
  width:var(--v172-icon-dock-d)!important;
  height:var(--v172-icon-dock-d)!important;
  flex:0 0 var(--v172-icon-dock-d)!important;
  margin:0 0 3px!important;
  object-fit:contain!important;
  background-size:contain!important;
  background-repeat:no-repeat!important;
  background-position:center!important;
  border-radius:10px!important;
}
.mobile-dock strong{font-size:10.5px!important;line-height:1!important;font-weight:850!important;letter-spacing:-.015em!important;}
.mobile-dock span{font-size:9.4px!important;line-height:1!important;}
.section{padding-block:clamp(36px,4.6vw,66px)!important;}
.live-grid-v134,.services-grid,.design-example-grid-home,.website-package-grid-home{gap:14px!important;}
@media(max-width:980px){
  .hero-v134 .hero-scenarios-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:132px!important;}
  .hero-v134 .hero-scenario-art{width:68px!important;height:68px!important;flex-basis:68px!important;}
}
@media(max-width:860px){
  .hero-v134 .hero-title-v134,.hero-v134 .hero-title-v134 span{letter-spacing:-.047em!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:64px!important;padding:11px 13px!important;}
  .hero-v134 .hero-actions-v134 .hero-action-img{width:40px!important;height:40px!important;min-width:40px!important;flex-basis:40px!important;}
  .hero-v134 .hero-actions-v134 .btn>span{font-size:13.7px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:120px!important;padding:13px 10px!important;}
  .hero-v134 .hero-scenario-art{width:58px!important;height:58px!important;flex-basis:58px!important;}
}
@media(max-width:560px){
  .hero-v134 .hero-actions-v134{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hero-v134 .hero-contact-row-v134{grid-template-columns:1fr!important;}
  .hero-v134 .contact-pill{min-height:58px!important;}
  .mobile-dock .dock-link,.mobile-dock a{min-height:64px!important;}
  .mobile-dock .dock-link::after,.mobile-dock .dock-app-icon{width:28px!important;height:28px!important;flex-basis:28px!important;}
}
@media(max-width:380px){
  .hero-v134 .hero-actions-v134{grid-template-columns:1fr!important;}
  .hero-v134 .hero-actions-v134 .btn{min-height:58px!important;}
  .hero-v134 .hero-scenarios-v134 a{min-height:112px!important;}
}
