/* =========================================================
   DECALS.UA — Industrial / Technical aesthetic
   Палітра: вугільно-чорний + кислотний жовтий + біле
   Шрифти: Archivo (display) + JetBrains Mono (технічний)
========================================================= */

:root {
  --bg: #0e0e0e;
  --bg-2: #161616;
  --bg-3: #1e1e1e;
  --ink: #f4f4f0;
  --ink-dim: #8a8a85;
  --ink-mute: #55554f;
  --accent: #f0ff26;       /* кислотний жовто-зелений */
  --accent-2: #ff4d1a;     /* попереджувальний помаранч */
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --danger: #ff3b30;
  --ok: #24d36a;

  --ff-display: 'Archivo', system-ui, sans-serif;
  --ff-black: 'Archivo Black', 'Archivo', sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r: 2px;
  --maxw: 1440px;
  --pad: clamp(16px, 3vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-display);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* -------- GRID BACKGROUND (як на технічному кресленні) -------- */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .25;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* -------- TOPBAR -------- */
.topbar {
  position: relative; z-index: 2;
  background: var(--accent);
  color: #000;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px var(--pad);
  gap: 12px;
}
.topbar__text { flex: 1; text-align: center; }
.topbar__mark { font-weight: 700; }

@media (max-width: 640px) {
  .topbar__mark { display: none; }
  .topbar__text { font-size: 10px; }
}

/* -------- HEADER -------- */
.header {
  position: sticky; top: 0; z-index: 50;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 24px;
  padding: 18px var(--pad);
  background: rgba(14,14,14,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-black);
  font-size: 22px; letter-spacing: -.02em;
}
.logo__icon { color: var(--accent); font-size: 18px; }
.logo__text em { color: var(--accent); font-style: normal; }
.logo--footer { font-size: 28px; margin-bottom: 12px; }

.nav {
  display: flex; gap: 32px; justify-self: center;
  font-family: var(--ff-mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: .1em;
}
.nav a { position: relative; padding: 6px 0; transition: color .2s; }
.nav a:hover { color: var(--accent); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent); transition: width .3s;
}
.nav a:hover::after { width: 100%; }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink);
  transition: transform .3s, opacity .2s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 24px; }
.menu-open .burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0 0; z-index: 40;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px var(--pad);
  display: flex; flex-direction: column; gap: 24px;
  font-family: var(--ff-black); font-size: 28px;
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.7,0,.3,1);
  pointer-events: none;
}
.menu-open .mobile-menu { transform: translateY(0); pointer-events: auto; }

@media (max-width: 960px) {
  .nav, .header > .btn { display: none; }
  .burger { display: block; }
  .header { grid-template-columns: 1fr auto; }
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--ff-mono); font-size: 13px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r);
  transition: transform .2s, background .2s, color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--sm { padding: 10px 16px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; padding: 18px; }

.btn--primary {
  background: var(--accent); color: #000;
}
.btn--primary:hover { background: #d9ff00; transform: translateY(-1px); }

.btn--ghost {
  border-color: var(--line-2); color: var(--ink);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn__arrow { transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* -------- HERO -------- */
.hero {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 60px var(--pad) 0;
  min-height: calc(100vh - 120px);
  display: flex; flex-direction: column; justify-content: space-between;
}

.hero__meta {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-dim); letter-spacing: .15em; text-transform: uppercase;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--line-2);
}

.hero__title {
  font-family: var(--ff-black);
  font-size: clamp(56px, 14vw, 220px);
  line-height: .88;
  letter-spacing: -.04em;
  padding: 60px 0 40px;
}
.hero__line { display: block; }
.hero__line--offset { padding-left: clamp(40px, 12vw, 180px); }
.hero__accent { color: var(--accent); font-family: var(--ff-display); font-weight: 400; font-style: italic; text-transform: lowercase; letter-spacing: -.02em; }
.hero__outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.hero__bottom {
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: end;
  padding: 40px 0;
  border-top: 1px dashed var(--line-2);
}
.hero__lead {
  max-width: 580px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--ink-dim);
}
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.corner {
  position: absolute; font-family: var(--ff-mono); color: var(--accent);
  font-size: 14px; line-height: 1;
}
.corner--tl { top: 16px; left: var(--pad); }
.corner--tr { top: 16px; right: var(--pad); }
.corner--bl { bottom: 16px; left: var(--pad); }
.corner--br { bottom: 16px; right: var(--pad); }

@media (max-width: 780px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: space-between; }
}

/* -------- TICKER -------- */
.ticker {
  overflow: hidden;
  margin: 0 calc(-1 * var(--pad));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px 0;
}
.ticker__track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--ff-black); font-size: 18px;
  color: var(--ink); letter-spacing: .02em;
}
.ticker__track span { color: var(--ink-dim); }
.ticker__track span:nth-child(odd) { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- SECTION HEAD -------- */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad) 32px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: baseline; gap: 24px;
}
.section-head__num {
  font-family: var(--ff-mono); color: var(--accent); font-size: 14px;
}
.section-head__title {
  font-family: var(--ff-black);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -.02em;
}
.section-head__line { border-top: 1px dashed var(--line-2); height: 1px; }
.section-head__count, .section-head__link {
  font-family: var(--ff-mono); color: var(--ink-dim); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
}
.section-head__link:hover { color: var(--accent); }

@media (max-width: 640px) {
  .section-head { grid-template-columns: auto 1fr; row-gap: 12px; }
  .section-head__line, .section-head__count, .section-head__link { grid-column: 1 / -1; }
  .section-head__line { display: none; }
}

/* -------- BRANDS -------- */
.brands { position: relative; z-index: 1; }
.brand-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.brand-card {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  aspect-ratio: 3 / 4;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s;
}
.brand-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bg);
  transition: background .3s;
  z-index: 0;
}
.brand-card:hover::before { background: var(--bg); }
.brand-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.brand-card > * { position: relative; z-index: 1; }

.brand-card__top, .brand-card__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--ink-dim); text-transform: uppercase;
}
.brand-card__num { color: var(--accent); }
.brand-card__title {
  font-family: var(--ff-black);
  font-size: clamp(24px, 3vw, 42px);
  line-height: .9;
  letter-spacing: -.02em;
}
.brand-card__title em { font-style: normal; color: var(--ink-dim); font-size: .7em; }
.brand-card__arrow { transition: transform .2s; }
.brand-card:hover .brand-card__arrow { transform: translateX(4px); color: var(--accent); }

.brand-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 8px;
  background: var(--accent, #fff);
  z-index: 2;
}

@media (max-width: 960px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .brand-grid { grid-template-columns: 1fr; } .brand-card { aspect-ratio: 16 / 10; } }

/* -------- PROCESS -------- */
.process-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 260px;
  position: relative;
  transition: background .3s;
}
.step:hover { background: var(--bg-2); }
.step__num {
  font-family: var(--ff-mono); color: var(--accent);
  font-size: 12px; letter-spacing: .15em;
}
.step h3 {
  font-family: var(--ff-black);
  font-size: 22px; letter-spacing: -.01em;
  line-height: 1.1;
}
.step p { color: var(--ink-dim); font-size: 15px; }
.step__tag {
  margin-top: auto;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: .1em;
}

@media (max-width: 960px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* -------- PRODUCT CARDS -------- */
.product-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
  overflow: hidden;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.product-card__image {
  aspect-ratio: 4 / 3;
  position: relative;
  padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.product-card__brand {
  font-family: var(--ff-black);
  font-size: 22px; letter-spacing: -.01em;
}
.product-card__sku {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: .1em;
  opacity: .8;
}
.product-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__body h3 { font-size: 17px; font-weight: 800; line-height: 1.2; }
.product-card__body p { color: var(--ink-dim); font-size: 13px; flex: 1; }
.product-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; padding-top: 14px;
  border-top: 1px dashed var(--line-2);
}
.product-card__price {
  font-family: var(--ff-mono); font-size: 16px; color: var(--accent); font-weight: 500;
}
.product-card__btn {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-dim);
  transition: color .2s;
}
.product-card__btn:hover { color: var(--accent); }

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* -------- ORDER FORM -------- */
.order {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.order__num { font-family: var(--ff-mono); color: var(--accent); font-size: 14px; }
.order__title {
  font-family: var(--ff-black);
  font-size: clamp(40px, 6vw, 88px);
  line-height: .9; letter-spacing: -.03em;
  margin: 16px 0 24px;
}
.order__desc { color: var(--ink-dim); font-size: 17px; max-width: 480px; margin-bottom: 32px; }
.order__features {
  list-style: none;
  font-family: var(--ff-mono); font-size: 13px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink);
}
.order__features li { display: flex; align-items: center; gap: 10px; }
.order__features span { color: var(--accent); }

.order-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.order-form__head {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-dim); letter-spacing: .15em;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line-2);
  margin-bottom: 4px;
}
#formStatus { color: var(--accent); }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-dim); letter-spacing: .1em; text-transform: uppercase;
}
.field__label em { font-style: normal; color: var(--ink-mute); }
.field input, .field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field.error input, .field.error textarea { border-color: var(--danger); }
.field__error {
  font-family: var(--ff-mono); font-size: 11px; color: var(--danger);
  min-height: 14px; letter-spacing: .05em;
}

.order-form__note {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: .05em; line-height: 1.6;
}
.order-form__note a { color: var(--ink-dim); text-decoration: underline; }

@media (max-width: 900px) {
  .order { grid-template-columns: 1fr; gap: 32px; }
}

/* -------- FOOTER -------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px var(--pad) 24px;
  position: relative; z-index: 1;
}
.footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--line-2);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--accent); letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__col a { color: var(--ink-dim); font-size: 14px; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__col p { color: var(--ink-dim); font-size: 14px; max-width: 320px; }
.footer__addr { color: var(--ink-mute); font-family: var(--ff-mono); font-size: 12px; margin-top: 6px; }

.footer__bottom {
  max-width: var(--maxw); margin: 24px auto 0;
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: .1em;
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* -------- TOAST -------- */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 14px 22px;
  background: var(--accent); color: #000;
  font-family: var(--ff-mono); font-size: 13px;
  letter-spacing: .05em;
  border-radius: var(--r);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  z-index: 100;
  transition: transform .4s cubic-bezier(.7,0,.3,1);
  max-width: calc(100vw - 32px);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast--error { background: var(--danger); color: #fff; }

/* -------- CATALOG PAGE -------- */
.catalog-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 60px var(--pad) 40px;
  border-bottom: 1px solid var(--line);
}
.catalog-hero__crumbs {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-dim); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.catalog-hero__crumbs a { color: var(--ink-dim); }
.catalog-hero__crumbs a:hover { color: var(--accent); }
.catalog-hero h1 {
  font-family: var(--ff-black);
  font-size: clamp(40px, 7vw, 100px);
  line-height: .9; letter-spacing: -.03em;
}
.catalog-hero p {
  color: var(--ink-dim); max-width: 640px;
  margin-top: 20px; font-size: 17px;
}

.catalog-layout {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px var(--pad) 80px;
  display: grid; grid-template-columns: 260px 1fr; gap: 40px;
}
.filters {
  position: sticky; top: 100px;
  align-self: start;
  font-family: var(--ff-mono); font-size: 13px;
}
.filters h4 {
  font-size: 11px; color: var(--accent); letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 12px;
}
.filters__group { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px dashed var(--line-2); }
.filters__group label {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer; color: var(--ink-dim);
  transition: color .2s;
}
.filters__group label:hover { color: var(--ink); }
.filters__group input[type="checkbox"],
.filters__group input[type="radio"] {
  accent-color: var(--accent);
}
.filters__count { color: var(--ink-mute); margin-left: auto; }

@media (max-width: 820px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
}

/* -------- PRODUCT PAGE -------- */
.product-page {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px var(--pad);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
}
.product-page__gallery {
  aspect-ratio: 1; border: 1px solid var(--line);
  background: linear-gradient(135deg, #367c2b, #2a5a21);
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  color: #fff;
}
.product-page__info h1 {
  font-family: var(--ff-black);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.product-page__sku {
  font-family: var(--ff-mono); font-size: 13px;
  color: var(--ink-dim); letter-spacing: .1em;
  margin-bottom: 24px;
}
.product-page__sku strong { color: var(--accent); font-weight: 500; }

.spec-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 32px;
  font-family: var(--ff-mono); font-size: 13px;
}
.spec-table tr { border-bottom: 1px dashed var(--line-2); }
.spec-table td { padding: 12px 0; color: var(--ink); }
.spec-table td:first-child { color: var(--ink-dim); width: 40%; }

.product-page__price {
  font-family: var(--ff-black);
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 24px;
}

@media (max-width: 820px) { .product-page { grid-template-columns: 1fr; gap: 32px; } }

/* -------- FLOATING CONTACT WIDGET -------- */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-contact__toggle {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.float-contact__toggle:hover { transform: scale(1.08); }

.float-contact__panel {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  padding: 16px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  font-family: var(--ff-mono);
}

.float-contact__panel.open { display: flex; }

.float-contact__label {
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.float-contact__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .15s;
}

.float-contact__btn--tg {
  background: #0088cc;
  color: #fff;
}
.float-contact__btn--tg:hover { background: #006fa3; }

.float-contact__btn--phone {
  background: var(--accent);
  color: #000;
}
.float-contact__btn--phone:hover { opacity: .85; }

.float-contact__btn svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .float-contact { bottom: 16px; right: 16px; }
  .float-contact__panel { min-width: 190px; }
}

/* -------- UTILS -------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
