/* ============================================================
   COMPONENTS — Buttons, Badges, Cards, Modal, Forms
   NexRC Light Theme
   ============================================================ */

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms cubic-bezier(0.2, 0, 0, 1),
              color 150ms ease,
              border-color 150ms ease,
              box-shadow 200ms ease,
              transform 120ms ease;
  white-space: nowrap;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}
.btn:active { transform: scale(0.97); }

/* Sizes */
.btn-sm   { font-size: 13px; height: 32px; padding: 0 14px; }
.btn-md   { height: 44px; padding: 0 20px; }
.btn-lg   { font-size: 15px; height: 44px; padding: 0 24px; }
.btn-xl   { font-size: 16px; height: 52px; padding: 0 32px; width: 100%; }
.btn-full { width: 100%; }

/* Primary — graphite dark (premium) */
.btn-primary {
  background: var(--graphite);
  color: #fff;
  border-color: var(--graphite);
}
.btn-primary:hover {
  background: var(--graphite-hover);
  border-color: var(--graphite-hover);
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.25);
}
.btn-primary:active { transform: scale(0.97); }

/* Ghost — outlined */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--text-secondary);
  background: var(--surface-1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Dark — for use inside dark sections */
.btn-dark {
  background: transparent;
  color: var(--text-inverted);
  border-color: rgba(255,255,255,0.25);
}
.btn-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* White — solid white button for dark sections */
.btn-white {
  background: #ffffff;
  color: var(--text-primary);
  border-color: #ffffff;
}
.btn-white:hover {
  background: var(--bg-surface);
  border-color: var(--bg-surface);
}

/* Supply — same as primary */
.btn-supply {
  background: var(--graphite);
  color: #fff;
  border-color: var(--graphite);
}
.btn-supply:hover {
  background: var(--graphite-hover);
  border-color: var(--graphite-hover);
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.25);
}

/* Text link */
.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}
.btn-text:hover { text-decoration: underline; }

/* Disabled */
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 3px 10px;
  border-radius: 100px;
}

/* In stock — muted green */
.badge-instock {
  color: var(--status-stock);
  background: var(--status-stock-bg);
  border: 1px solid rgba(5, 150, 105, 0.20);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--status-stock);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
/* inline badge-dot for filter pills */
.badge-dot.instock {
  background: var(--status-stock);
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* Order / supply badge — amber */
.badge-order {
  color: var(--status-order);
  background: var(--status-order-bg);
  border: 1px solid rgba(180, 83, 9, 0.20);
}

/* ── Product Card ───────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 200ms ease,
              transform 250ms cubic-bezier(0.34, 1.3, 0.64, 1),
              box-shadow 250ms ease;
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* — Media (1:1 square) — */
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-1);
}
.product-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
}
.product-card__placeholder svg { color: var(--border-hover); }

/* — Badge (absolute over image, top-left) — */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

/* — Body: category · title · price — */
.product-card__body {
  padding: 14px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card__cat {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 2px;
}
.product-card__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a {
  color: inherit;
  transition: color 150ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a:hover { color: var(--brand-primary); }

.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.product-card__price .price,
.product-card__price .woocommerce-Price-amount {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
}
.product-card__price del {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 5px;
}
.product-card__price ins { text-decoration: none; display: inline; color: var(--text-primary); }
.product-card__price del { display: inline; }
.product-card__price .price-on-request {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* — Footer: full-width CTA — */
.product-card__footer {
  padding: 0 18px 18px;
}
.product-card__btn {
  width: 100%;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  letter-spacing: 0;
}

/* ── Category Card ──────────────────────────────────────────── */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 0 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.category-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--border-hover);
}
.category-card__image {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--bg-elevated);
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.category-card:hover .category-card__image img { transform: scale(1.04); }
.category-card__body { padding: 0 10px; }
.category-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 3px;
}
.category-card__count {
  font-size: 11px;
  color: var(--text-muted);
}
.category-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Blog Card ──────────────────────────────────────────────── */
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__image { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-elevated); }
.blog-card__image img { width:100%; height:100%; object-fit:cover; transition: transform 0.3s; }
.blog-card:hover .blog-card__image img { transform: scale(1.03); }
.blog-card__body { padding: 20px; }
.blog-card__date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card__title { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.blog-card__title a { color: var(--text-primary); }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Order Modal overlay ────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   MODAL OVERLAY
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 8, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════════
   RFQ PANEL — light premium container
═══════════════════════════════════════════════════════════ */
.rfq-panel {
  --rfq-bg:        #FFFFFF;
  --rfq-surface:   #F8F9FB;
  --rfq-surface-2: #EFF1F5;
  --rfq-border:    rgba(0,0,0,0.06);
  --rfq-border-md: rgba(0,0,0,0.10);
  --rfq-text:      #0D0F14;
  --rfq-muted:     #6B7280;
  --rfq-accent:    #1A56DB;
  --rfq-accent-glow: rgba(26,86,219,0.10);
  --rfq-tg:        #229ED9;
  --rfq-tg-glow:   rgba(34,158,217,0.18);
  --rfq-green:     #10B981;
  --rfq-radius:    16px;

  background: var(--rfq-bg);
  border: 1px solid var(--rfq-border-md);
  border-radius: var(--rfq-radius);
  padding: 24px 24px 24px;
  width: 100%;
  max-width: 740px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.34,1.18,0.64,1), opacity 200ms ease;
  max-height: 96vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rfq-surface-2) transparent;
}

/* ── Two-column grid ───────────────────────────────────── */
.rfq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rfq-col--left {
  padding-right: 22px;
  border-right: 1px solid var(--rfq-border);
  display: flex;
  flex-direction: column;
}
.rfq-col--right {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
}
.rfq-col__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #C0C4CC;
  margin-bottom: 10px;
}
.modal-overlay.active .rfq-panel {
  transform: translateY(0) scale(1);
}
.rfq-panel::-webkit-scrollbar { width: 4px; }
.rfq-panel::-webkit-scrollbar-thumb { background: var(--rfq-surface-2); border-radius: 2px; }

/* Close button */
.rfq-panel__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--rfq-muted);
  background: var(--rfq-surface);
  border: 1px solid var(--rfq-border);
  transition: background 140ms, color 140ms, border-color 140ms;
  cursor: pointer;
}
.rfq-panel__close:hover {
  background: var(--rfq-surface-2);
  color: var(--rfq-text);
  border-color: var(--rfq-border-md);
}

/* ── Product header ────────────────────────────────────── */
.rfq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--rfq-surface);
  border: 1px solid var(--rfq-border);
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.rfq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}
.rfq-item__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.rfq-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.rfq-item__body  { flex: 1; min-width: 0; }
.rfq-item__cat {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rfq-accent);
  margin-bottom: 3px;
}
.rfq-item__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rfq-text);
  line-height: 1.45;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rfq-item__meta {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.rfq-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.rfq-chip--time   { background: rgba(245,158,11,0.08);  color: #B45309; border: 1px solid rgba(245,158,11,0.20); }
.rfq-chip--moq    { background: rgba(26,86,219,0.08);   color: #1A56DB; border: 1px solid rgba(26,86,219,0.18); }
.rfq-chip--import { background: rgba(16,185,129,0.08);  color: #059669; border: 1px solid rgba(16,185,129,0.20); }

/* ── Hero headline ─────────────────────────────────────── */
.rfq-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-right: 0;
}
.rfq-hero__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rfq-surface);
  border: 1px solid var(--rfq-border);
  border-radius: 9px;
  color: var(--rfq-accent);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.rfq-hero__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--rfq-text);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 2px;
}
.rfq-hero__sub {
  font-size: 11.5px;
  color: var(--rfq-muted);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ── Trust strip ──────────────────────────────────────── */
.rfq-trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 9px 12px;
  background: var(--rfq-surface);
  border: 1px solid var(--rfq-border);
  border-radius: 9px;
  margin-bottom: 12px;
}
.rfq-trust__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--rfq-muted);
  flex: 1;
  justify-content: center;
  letter-spacing: -0.005em;
}
.rfq-trust__sep {
  width: 1px;
  height: 16px;
  background: var(--rfq-border);
  flex-shrink: 0;
}

/* ── Telegram CTA ──────────────────────────────────────── */
.rfq-tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 38px;
  background: linear-gradient(135deg, #229ED9 0%, #1a8abf 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  margin-bottom: 8px;
  transition: transform 140ms ease, box-shadow 200ms ease, filter 140ms ease;
  box-shadow: 0 2px 12px rgba(34,158,217,0.22);
}
.rfq-tg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,158,217,0.36);
  filter: brightness(1.06);
}
.rfq-tg-btn:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 2px 8px var(--rfq-tg-glow);
}
.rfq-tg-btn__handle {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0;
}

/* ── WhatsApp + MAX column ─────────────────────────────── */
.rfq-alt-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rfq-wa-btn,
.rfq-max-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 38px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 130ms ease, box-shadow 180ms ease, background 130ms ease;
}
.rfq-wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(37,211,102,0.22);
}
.rfq-wa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.32);
  filter: brightness(1.05);
}
.rfq-wa-btn:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 1px 6px rgba(37,211,102,0.18);
}
.rfq-max-btn {
  background: linear-gradient(135deg, #4F6EF7 0%, #8B5CF6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(123,97,255,0.22);
}
.rfq-max-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(123,97,255,0.32);
  filter: brightness(1.06);
}
.rfq-max-btn:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 1px 6px rgba(123,97,255,0.18);
}

/* ── Divider ───────────────────────────────────────────── */
.rfq-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--rfq-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rfq-sep::before,
.rfq-sep::after { content: ''; flex: 1; height: 1px; background: var(--rfq-border); }

/* ── Form fields ───────────────────────────────────────── */
.rfq-field {
  margin-bottom: 9px;
}
.rfq-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 5px;
}
.rfq-field__opt {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--rfq-muted);
  opacity: 0.5;
}
.rfq-field input,
.rfq-field textarea {
  width: 100%;
  padding: 0 13px;
  height: 42px;
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 9px;
  font-size: 13.5px;
  font-family: var(--font-primary);
  color: var(--rfq-text);
  outline: none;
  resize: none;
  transition: border-color 160ms, box-shadow 160ms, background 160ms;
}
.rfq-field textarea {
  height: auto;
  padding: 10px 13px;
}
.rfq-field input::placeholder,
.rfq-field textarea::placeholder { color: #C0C4CC; }
.rfq-field input:focus,
.rfq-field textarea:focus {
  border-color: rgba(0,0,0,0.20);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Premium Quantity Stepper ──────────────────────────── */
.rfq-stepper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  height: 42px;
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 9px;
  overflow: hidden;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.rfq-stepper:hover {
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.rfq-stepper:focus-within,
.rfq-stepper:focus {
  border-color: rgba(0,0,0,0.20);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.06);
  outline: none;
}

/* Buttons */
.rfq-stepper__btn {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(0,0,0,0.35);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: color 120ms ease, background 120ms ease;
  outline: none;
  overflow: hidden;
}

/* Icon inside button — scales on press */
.rfq-stepper__btn svg {
  transition: transform 80ms ease, opacity 120ms ease;
  position: relative;
  z-index: 1;
}
.rfq-stepper__btn:hover svg   { opacity: 1; }
.rfq-stepper__btn:active svg  { transform: scale(0.70); }

/* Ripple surface */
.rfq-stepper__btn::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  background: rgba(0,0,0,0.06);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 150ms ease, transform 150ms ease;
}
.rfq-stepper__btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.rfq-stepper__btn:active::before {
  background: rgba(0,0,0,0.10);
  opacity: 1;
  transform: scale(1);
  transition: none;
}
.rfq-stepper__btn:hover  { color: rgba(0,0,0,0.75); }
.rfq-stepper__btn:active { color: rgba(0,0,0,0.90); }

.rfq-stepper__btn:disabled {
  color: rgba(0,0,0,0.18);
  cursor: not-allowed;
  pointer-events: none;
}
.rfq-stepper__btn:disabled::before { display: none; }

/* Dividers between buttons and center */
.rfq-stepper__btn--dec {
  border-right: 1px solid rgba(0,0,0,0.06);
}
.rfq-stepper__btn--inc {
  border-left: 1px solid rgba(0,0,0,0.06);
}
.rfq-stepper:hover .rfq-stepper__btn--dec,
.rfq-stepper:hover .rfq-stepper__btn--inc {
  border-color: rgba(0,0,0,0.09);
}

/* Center display */
.rfq-stepper__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  position: relative;
}

/* Number — bold, large, tabular */
.rfq-stepper__num {
  font-size: 17px;
  font-weight: 700;
  color: var(--rfq-text);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  display: inline-block;
  min-width: 1.6ch;
  text-align: center;
}
.rfq-stepper__num.rfq-stepper__num--up {
  animation: rfqSlideUp 150ms cubic-bezier(0.22,1,0.36,1) forwards;
}
.rfq-stepper__num.rfq-stepper__num--down {
  animation: rfqSlideDown 150ms cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes rfqSlideUp {
  0%   { opacity: 0; transform: translateY(8px) scale(0.88); }
  100% { opacity: 1; transform: translateY(0)   scale(1);    }
}
@keyframes rfqSlideDown {
  0%   { opacity: 0; transform: translateY(-8px) scale(0.88); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Unit label */
.rfq-stepper__unit {
  font-size: 10px;
  font-weight: 500;
  color: #C0C4CC;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  margin-top: 1px;
}

/* ── Submit button ─────────────────────────────────────── */
.rfq-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 46px;
  background: #0D0F14;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 10px;
  transition: background 130ms, transform 110ms ease, box-shadow 180ms;
  font-family: var(--font-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.10);
}
.rfq-submit:hover {
  background: #1a1f2e;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.12);
}
.rfq-submit:active {
  transform: scale(0.985) translateY(0);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.rfq-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.rfq-legal {
  font-size: 10.5px;
  color: #9CA3AF;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}
.rfq-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rfq-legal a:hover { color: var(--accent); }

/* ── Success state ─────────────────────────────────────── */
.rfq-success {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 0;
}
.rfq-success__ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid rgba(16,185,129,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(16,185,129,0.06);
}
.rfq-success__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--rfq-text);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.rfq-success__text {
  font-size: 13px;
  color: var(--rfq-muted);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto 20px;
}
.rfq-success__contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.rfq-success__btns {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 380px;
}
.rfq-success__tg,
.rfq-success__wa,
.rfq-success__max {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  height: 44px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 130ms ease, box-shadow 180ms ease, filter 130ms ease;
}
.rfq-success__tg {
  background: linear-gradient(135deg, #229ED9 0%, #1a8abf 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(34,158,217,0.22);
}
.rfq-success__tg:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34,158,217,0.32);
  filter: brightness(1.06);
}
.rfq-success__wa {
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(37,211,102,0.22);
}
.rfq-success__wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.32);
  filter: brightness(1.05);
}
.rfq-success__max {
  background: linear-gradient(135deg, #4F6EF7 0%, #8B5CF6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(123,97,255,0.22);
}
.rfq-success__max:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(123,97,255,0.32);
  filter: brightness(1.06);
}
.rfq-success__hours {
  font-size: 11px;
  color: var(--rfq-muted);
  opacity: 0.6;
}

/* ── Mobile adjustments ────────────────────────────────── */
@media (max-width: 640px) {
  .rfq-cols {
    grid-template-columns: 1fr;
  }
  .rfq-col--left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--rfq-border);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .rfq-col--right {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .rfq-panel {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 20px 16px 32px;
    max-height: 96vh;
    transform: translateY(100%);
  }
  .modal-overlay.active .rfq-panel { transform: translateY(0); }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 72px 0 64px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
/* 2-column layout: content left, schematic right */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
/* Visual pane (desktop only) */
.hero-visual {
  display: none;
  position: relative;
  z-index: 1;
}
.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}
.hero-visual::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-1), transparent);
}
.hero-visual::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-1), transparent);
}
.hero-schematic {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  opacity: 0.92;
}
/* Subtle dot-grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
/* Fade out bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--bg-surface));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(26,86,219,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 640px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero trust stats row — inline, no card */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px;
}
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-item:last-child  { padding-right: 0; }
.hero-trust-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-trust-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
}
.hero-trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* Section eyebrow */
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

/* ── Section link ──────────────────────────────────────────── */
.section-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity 0.15s;
}
.section-link:hover { opacity: 0.75; }

/* ── Value props grid ─────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-item {
  background: var(--bg-base);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-icon {
  width: 40px; height: 40px;
  background: var(--accent-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.value-item h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}
.value-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Import Promo Block (dark section) ───────────────────────── */
.import-promo {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: center;
  padding: 56px 64px;
  background: var(--bg-dark);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.import-promo::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.import-promo__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249,250,251,0.4);
  margin-bottom: 12px;
}
.import-promo__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-inverted);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.import-promo__sub {
  font-size: 15px;
  color: rgba(249,250,251,0.65);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 420px;
}
.import-promo__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 32px;
}
.import-promo__feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(249,250,251,0.7);
}
.import-promo__feat svg { color: #34D399; flex-shrink: 0; }

/* Right: CN → RF diagram */
.import-promo__right { display: flex; align-items: center; justify-content: center; }
.import-promo__diagram {
  display: flex;
  align-items: center;
  gap: 0;
}
.import-node {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.import-node--cn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5);
}
.import-node--rf {
  background: var(--accent);
  color: #fff;
}
.import-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100px;
  flex-shrink: 0;
}
.import-arrow svg {
  width: 100%; height: 20px;
  color: rgba(255,255,255,0.2);
}
.import-arrow span {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── Telegram CTA — light card variant ────────────────────────── */
.tg-cta-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
}
.tg-cta-card .tg-cta-text { flex: 1; }
.tg-cta-card .tg-cta-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 4px;
}
.tg-cta-card .tg-cta-text p {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
}
/* Legacy dark-section variant */
.tg-cta-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tg-cta-icon { flex-shrink: 0; }
.tg-cta-text { flex: 1; }
.tg-cta-text h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-inverted);
  margin-bottom: 6px;
}
.tg-cta-text p {
  font-size: 14px;
  color: rgba(249,250,251,0.6);
  line-height: 1.6;
}

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  padding: 28px 24px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-item__icon {
  width: 40px; height: 40px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-item__icon svg { width: 20px; height: 20px; }
.feature-item h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Trust items ────────────────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-item svg { width: 16px; height: 16px; color: var(--success); }

/* ── Trust bar (full-width strip) ─────────────────────────────── */
.trust-bar {
  padding: 16px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-bar-item svg { color: var(--success); flex-shrink: 0; }

/* ── Promo blocks ────────────────────────────────────────────── */
.promo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-card {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.promo-card--dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.08);
}
.promo-card__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.promo-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text-primary);
}
.promo-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.promo-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.promo-card__list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}
.promo-card__list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
}

/* ── Delivery info block ────────────────────────────────────── */
.delivery-info {
  border: 1px solid rgba(180, 83, 9, 0.20);
  background: rgba(180, 83, 9, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.delivery-info svg { color: var(--warning); flex-shrink: 0; margin-top: 1px; }
.delivery-info strong { color: var(--warning); font-weight: 600; }

/* Delivery info — in-stock variant */
.delivery-info.instock {
  border-color: rgba(5, 150, 105, 0.20);
  background: rgba(5, 150, 105, 0.06);
}
.delivery-info.instock svg    { color: var(--success); }
.delivery-info.instock strong { color: var(--success); }

/* ── Trust signals row ──────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-row .trust-item svg { color: var(--success); flex-shrink: 0; }
.trust-row .trust-item.muted svg { color: var(--text-muted); }

/* ── Mono / technical text ──────────────────────────────────── */
.mono,
.text-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.mono-sm { font-family: var(--font-mono); font-size: 11px; }
.sku-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* ── Price components ───────────────────────────────────────── */
.price-primary {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.price-on-request {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── Section label ──────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Why NexRC — trust section ──────────────────────────────── */
.why-nexrc { }
.why-nexrc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.why-card {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}
.why-card__icon {
  width: 44px; height: 44px;
  background: var(--brand-primary-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Brand logos strip ──────────────────────────────────────── */
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.brand-logos__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 8px;
}
.brand-logo-item {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-logo-item img {
  height: 22px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.4;
  transition: opacity 0.2s;
}
.brand-logo-item:hover,
.brand-logo-item img:hover { opacity: 0.7; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 20px 0 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb span[aria-hidden] { color: var(--border-hover); }
.breadcrumb [aria-current] { color: var(--text-secondary); }

/* ── Contacts page ─────────────────────────────────────── */
.contacts-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.contacts-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 12px;
}
.contacts-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.contacts-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 130ms ease, box-shadow 180ms ease, filter 130ms ease;
}
.contacts-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.contacts-btn--tg  {
  background: linear-gradient(135deg, #229ED9 0%, #1a8abf 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(34,158,217,0.22);
}
.contacts-btn--wa  {
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37,211,102,0.22);
}
.contacts-btn--max {
  background: linear-gradient(135deg, #4F6EF7 0%, #8B5CF6 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(123,97,255,0.22);
}
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.contacts-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
}
.contacts-info-row svg { color: #6B7280; flex-shrink: 0; }
.contacts-info-row a { color: var(--accent); text-decoration: none; }
.contacts-info-row a:hover { text-decoration: underline; }
.contacts-requisites { margin-bottom: 40px; }
.contacts-req-table {
  border-collapse: collapse;
  width: 100%;
}
.contacts-req-table td {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.contacts-req-table td:first-child {
  color: #6B7280;
  width: 160px;
  font-weight: 500;
}
.contacts-req-table td:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Privacy page ──────────────────────────────────────── */
.privacy-page h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 32px;
}
.privacy-content h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 10px;
}
.privacy-content p, .privacy-content li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.privacy-content ul, .privacy-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.privacy-content a { color: var(--accent); }
