/* ============================================================
   Skarby - marketing landing
   Brand: dark theme + gold accent (#de9931 / #ecb34d). Do not change.
   No build step. Plain CSS. Fonts: Archivo (display) + Inter (text),
   both with Cyrillic subsets for ru/uk.
   ============================================================ */

:root {
  --bg:        #0a0908;
  --bg-2:      #000000;
  --panel:     #141210;
  --panel-2:   #1b1714;
  --panel-3:   #221c16;
  --border:    rgba(222, 153, 49, 0.14);
  --border-soft: rgba(255, 255, 255, 0.06);

  --gold:       #de9931;
  --gold-light: #ecb34d;
  --gold-deep:  #c6852b;

  --text:  #f4eee3;
  --muted: #9a948b;
  --dim:   #6f6a63;

  --maxw: 1160px;
  --radius: 18px;
  --radius-lg: 26px;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-text: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 72px; /* compensate for the fixed header (same offset sticky used to occupy) */
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.01em; }

.accent { color: var(--gold); }
.glow-text { text-shadow: 0 0 38px rgba(222, 153, 49, 0.45); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 9, 8, 0.72);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 30px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.14em;
  line-height: 1;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* language switcher */
.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  margin-left: 12px;
}
.lang button {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: none;
  border: none;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.16s;
}
.lang button.active {
  color: #1a1206;
  background: var(--gold);
}
.lang button:hover:not(.active) { color: var(--text); }

.nav-toggle { display: none; }

/* offset anchored sections below the sticky header */
#features, #more, #screens, #faq { scroll-margin-top: 84px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1206;
  box-shadow: 0 10px 34px -10px rgba(222, 153, 49, 0.6);
}
.btn-primary:hover { box-shadow: 0 14px 40px -8px rgba(222, 153, 49, 0.7); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
  height: 100vh;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(222,153,49,0.20), rgba(222,153,49,0.04) 45%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -240px; left: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(222,153,49,0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
}
/* let grid columns shrink below the image's intrinsic width (prevents mobile overflow) */
.hero-inner > * { min-width: 0; }
.phone-stage img { max-width: 100%; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(222, 153, 49, 0.06);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(46px, 7.2vw, 71px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero h1 .l-white { color: var(--text); }
.hero h1 .l-gold { color: var(--gold); }
.hero-sub {
  margin: 28px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.stores {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.store { font-size: 13px; color: var(--dim); }
.store b { color: var(--text); font-weight: 700; margin-right: 6px; }
.store .soon {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------- Hero feature bullets ---------- */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
  max-width: 460px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero-bullets svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding: 26px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 38px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--muted); }
.trust-item svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }

/* ---------- "More than maps" ---------- */
.more { padding: 92px 0 30px; }

/* ---------- Store badges ---------- */
.store-badges { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 14px 18px;
  border-radius: 14px;
  background: #0e0c0a;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
  font-family: var(--font-text);
  width: 190px;
}
.store-badge:hover { border-color: var(--gold); background: #15110c; transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 26px; color: var(--text); flex-shrink: 0; }
.store-badge .sb-text { text-align: left; line-height: 1.1; }
.store-badge .sb-top {font-size: 10px;letter-spacing: 0.06em;color: var(--muted);text-transform: uppercase;width: 100%;display: inline-block;text-align: center;}
.store-badge .sb-name { font-size: 16px; font-weight: 700; color: var(--text);width: 100%;display: inline-block;text-align: center; }

/* ---------- Phone mockup ---------- */
.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
  margin: -30px;
}
.phone-stage::before {
  content: '';
  position: absolute;
  inset: 6% 14%;
  background: radial-gradient(circle, rgba(222,153,49,0.28), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 320px;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #2a241d, #100d0a);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(222,153,49,0.12);
  transform: rotate(3deg);
}
.phone-screen {
  background: #0c0a08;
  border-radius: 36px;
  overflow: hidden;
  font-size: 12px;
}
.scr-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.scr-status .sig { color: var(--gold); letter-spacing: 0.05em; }
.scr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px 12px;
}
.scr-head .logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 13px;
}
.scr-head .logo span { display: block; font-size: 7px; letter-spacing: 0.26em; color: var(--gold); margin-top: 2px; }
.scr-head .dots { color: var(--muted); font-size: 16px; letter-spacing: 2px; }

.scr-card {
  margin: 0 14px 12px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}
.scr-profile { display: flex; gap: 12px; align-items: center; }
.scr-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 32%, #3a2f20, #0c0a08);
  display: flex; align-items: flex-end; justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}
.scr-avatar svg { width: 38px; height: 38px; }
.scr-name { font-weight: 700; color: var(--text); font-size: 14px; }
.scr-loc { color: var(--muted); font-size: 11px; margin-top: 2px; }
.scr-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1206;
  background: var(--gold);
  border-radius: 6px;
  padding: 2px 8px;
}
.scr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}
.scr-stat { text-align: center; }
.scr-stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text); }
.scr-stat span { font-size: 8px; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }

.scr-level { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.scr-level .lvl { font-weight: 600; color: var(--text); font-size: 12px; }
.scr-level .lvl b { color: var(--gold); }
.scr-track {
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--border-soft) 0 2px, transparent 2px 7px);
  position: relative;
}
.scr-track::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 46%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
}
.scr-track .pin {
  position: absolute;
  left: 46%; top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 3px solid #0c0a08;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(236,179,77,0.7);
}

.scr-list { margin: 0 14px 14px; }
.scr-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  padding: 11px 13px;
  margin-bottom: 7px;
}
.scr-row .ico {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: rgba(222,153,49,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.scr-row .ico svg { width: 15px; height: 15px; }
.scr-row .lbl { flex: 1; color: var(--text); font-weight: 500; font-size: 12px; }
.scr-row .chev { color: var(--dim); }

.scr-tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 14px 16px;
  border-top: 1px solid var(--border-soft);
  position: relative;
}
.scr-tab { color: var(--dim); display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; }
.scr-tab.on { color: var(--gold); }
.scr-tab svg { width: 18px; height: 18px; }
.scr-fab {
  width: 46px; height: 46px;
  margin-top: -22px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px -6px rgba(222,153,49,0.7);
}
.scr-fab svg { width: 22px; height: 22px; color: #1a1206; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 46px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 50px);
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Benefits strip ---------- */
.benefits {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 40px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit .b-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(222,153,49,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.benefit .b-ico svg { width: 21px; height: 21px; }
.benefit h3 { font-family: var(--font-text); font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }
.benefit p { margin: 5px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---------- Screens carousel ---------- */
.screens { padding: 92px 0 20px; }
.screens-row {
  display: flex;
}
.screens-row::-webkit-scrollbar { display: none; }
.screen-card {
  flex: 0 0 auto;
  width: calc(20% - 20px);
  scroll-snap-align: center;
  margin: 0 10px;
}
.mini-phone {
  border-radius: 20px;
  padding: 5px;
  background: linear-gradient(160deg, #2a241d, #100d0a);
  box-shadow: 0 26px 60px -26px rgba(0,0,0,0.9), 0 0 0 1px rgba(222,153,49,0.1);
}
.mini-screen {
  position: relative;
  aspect-ratio: 9 / 19;
  border-radius: 15px;
  background: linear-gradient(170deg, #15110c, #0a0908);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-screen .ph-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 7px 14px;
}
.mini-screen .ph-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.screen-card h3 { font-family: var(--font-text); font-size: 16px; font-weight: 700; color: var(--text); margin: 18px 2px 0; }
.screen-card p { font-size: 13.5px; color: var(--muted); margin: 7px 2px 0; line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { padding: 86px 0 40px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--panel);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item.open { border-color: var(--border); background: var(--panel-2); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-text);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
}
.faq-q .faq-sign {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-sign { transform: rotate(45deg); background: rgba(222,153,49,0.12); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- Telegram / community CTA ---------- */
.tg-cta { padding: 24px 0 30px; }
.tg-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 38px;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(38,160,235,0.12), transparent 55%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}
.tg-band .tg-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(38,160,235,0.14);
  color: #29a0e8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tg-band .tg-ico svg { width: 28px; height: 28px; }
.tg-text { flex: 1; min-width: 220px; }
.tg-text h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; color: var(--text); }
.tg-text p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; }
.btn-tg { background: #29a0e8; color: #04253a; }
.btn-tg:hover { background: #38adf0; }

/* ---------- Social icons ---------- */
.socials { display: flex; gap: 12px; margin-top: 4px; }
.social {
  width: 38px; height: 38px;
  border-radius: 11px;
  border: 1px solid var(--border-soft);
  background: var(--panel);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.18s, border-color 0.18s, transform 0.15s;
}
.social:hover { color: var(--gold); border-color: var(--border); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s;
}
.modal-overlay.show .modal { transform: none; }
.modal .m-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(222,153,49,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.modal .m-ico svg { width: 26px; height: 26px; }
.modal h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text); }
.modal p { color: var(--muted); margin: 10px 0 20px; font-size: 14.5px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0c0a08;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 15px;
}
.modal-form input:focus { outline: none; border-color: var(--gold); }
.modal-form .btn { width: 100%; }
.modal-note { font-size: 12.5px; color: var(--dim); margin: 14px 0 0; text-align: center; }
.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none; border: none; color: var(--muted);
  font-size: 26px; line-height: 1; cursor: pointer;
}
.modal-wrap { position: relative; }

/* ---------- Features ---------- */
.features { padding: 96px 0 30px; }
.section-head { text-align: center; max-width: 750px; margin: 0 auto 56px; }
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(222,153,49,0.06);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02;
  text-transform: uppercase;
}
.section-head p { color: var(--muted); margin: 20px 0 0; font-size: 17px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: linear-gradient(165deg, var(--panel), var(--bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.feature:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  background: linear-gradient(165deg, var(--panel-2), var(--bg));
}
.feature .f-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(222,153,49,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature .f-ico svg { width: 23px; height: 23px; }
.feature h3 { font-size: 19px; font-weight: 700; color: var(--text); }
.feature p { color: var(--muted); margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; }

/* ---------- Contact band ---------- */
.contact { padding: 50px 0; }
.contact-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(222, 153, 49, 0.45);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(222,153,49,0.18), transparent 52%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 0 0 1px rgba(222,153,49,0.06), 0 30px 70px -40px rgba(0,0,0,0.9);
  padding: 56px 52px;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 50%;
}
.contact-band h2 {
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 42px);
  text-transform: uppercase;
  line-height: 1.05;
}
.contact-band p {
  color: var(--muted);
  margin: 16px 0 26px;
  max-width: 420px;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  color: var(--text);
  font-weight: 600;
  font-size: 15.5px;
}
.contact-mail svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact-mail:hover { color: var(--gold); }
.contact-art {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  background: url('../img/contact-map.jpg') center right / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%);
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding: 56px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 30px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 16px;
  font-weight: 700;
  font-family: var(--font-text);
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.16s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Legal / content pages ---------- */
.page-hero { padding: 70px 0 30px; position: relative; }
.page-hero h1 {
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  text-transform: uppercase;
}
.page-hero .updated { color: var(--dim); font-size: 13px; margin-top: 14px; }
.legal { padding: 20px 0 90px; }
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
}
.legal-body p, .legal-body li { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.legal-body ul { padding-left: 20px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--gold); }
.legal-body .lead { font-size: 17px; color: var(--text); }
.legal-note {
  border: 1px solid var(--border);
  background: rgba(222,153,49,0.05);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 30px 0;
}
.legal-note p { color: var(--text); margin: 0; }

/* ---------- Support / contact page ---------- */
.support-hero {
  position: relative;
  padding: 64px 0 24px;
  overflow: hidden;
}
.support-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(222,153,49,0.16), transparent 66%);
  pointer-events: none;
}
.support-hero .wrap { position: relative; z-index: 1; }
.support-hero h1 {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 18px;
}
.support-hero p { color: var(--muted); font-size: 18px; margin: 22px 0 0; max-width: 620px; }

.contact-cards { padding: 30px 0 10px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  background: linear-gradient(165deg, var(--panel), var(--bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.info-card.row { display: flex; gap: 18px; align-items: flex-start; }
.info-card .ic-ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(222,153,49,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.info-card .ic-ico svg { width: 22px; height: 22px; }
.info-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); }
.info-card p { color: var(--muted); margin: 8px 0 0; font-size: 14.5px; }
.info-card .ic-mail { display: inline-block; margin-top: 14px; color: var(--gold); font-weight: 700; font-size: 15px; }
.info-card .ic-mail:hover { color: var(--gold-light); }
.info-card .ic-sub { display: block; color: var(--dim); font-size: 12.5px; margin-top: 6px; }

.mini-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.mini-card .mc-k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.mini-card .mc-v { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text); margin: 10px 0 6px; }
.mini-card .mc-sub { color: var(--muted); font-size: 13px; }

/* dark full-width message form */
.form-band {
  width: 100%;
  background: #131210;
  color: var(--text);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 72px 0 84px;
  margin-top: 56px;
}
.form-band h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.02;
}
.form-band h2 .accent { color: var(--gold); }
.form-band .form-lead { color: var(--muted); margin: 16px 0 38px; max-width: 580px; font-size: 16px; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.form-left { display: flex; flex-direction: column; gap: 20px; }
.form-right { display: flex; }
.form-right .field { width: 100%; display: flex; flex-direction: column; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #201e1a;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 15px;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--panel-2);
  box-shadow: 0 0 0 3px rgba(222,153,49,0.16);
}
.field .hint { font-size: 12.5px; color: var(--dim); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select-chev { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.form-right textarea { flex: 1; min-height: 240px; resize: vertical; }
.form-actions { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1206;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(222,153,49,0.5);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-send:hover { box-shadow: 0 14px 38px -8px rgba(222,153,49,0.6); }
.btn-send:active { transform: translateY(1px); }
.btn-send svg { width: 18px; height: 18px; }
.form-agree { font-size: 13px; color: var(--muted); max-width: 540px; }
.form-agree a { color: var(--gold); font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { font-size: 14px; margin: 4px 0 0; color: var(--gold); font-weight: 600; }
.form-status.err { color: #e0683c; }

/* ---------- Mobile sticky store dock (home only) ---------- */
.store-dock { display: none; }
@media (max-width: 720px) {
  .hero{
    padding: 20px 0 36px !important;
  }
  .phone-stage img {
    width: 90% !important;
  }
  .priv{
    font-size: 24px !important;
  }
  .store-badges{
    display: none;
  }
  .hero-copy{
    order: 2;
  }
  body[data-page="home"] { padding-bottom: 80px; }
  .store-dock {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 45;
    gap: 10px;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 9, 8, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-soft);
  }
  .store-dock .store-badge { flex: 1; min-width: 0; justify-content: center; padding: 9px 10px; }
  .store-dock .store-badge .sb-name { font-size: 14px; }
}

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
/* collapse the (now longer) nav into a burger earlier */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 40;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--bg);
    padding: 80px 24px 100px;
    top: 0;
    bottom: 0;
    height: 100vh;
  }
  .nav-links.open a { padding: 2px 0; width: auto; font-size: 21px; }
  .nav-links.open a.active { color: var(--gold); }
  .nav-links.open a.active::after { display: none; } /* no underline in the overlay */
  .nav-links.open .lang { margin-top: 18px; }
  /* keep logo + burger tappable above the overlay */
  .site-header .brand { position: relative; z-index: 50; }
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 50;
    background: none; border: none; cursor: pointer;
    color: var(--text); padding: 8px;
  }
  .nav-toggle svg { width: 24px; height: 24px; }
}
@media (max-width: 900px) {
  .hero { height: auto; padding: 100px 0 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-sub { max-width: none; }
  .phone-stage { order: 0; margin: 0; }
  .phone-stage img { max-width: 440px; width: 100%; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  /* screens become a horizontal scroll-carousel instead of squishing */
  .screens-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .screen-card { width: 72vw; max-width: 280px; }
}
@media (max-width: 720px) {
  .benefit h3{
    font-size: 13px;
  }
  benefit .b-ico {
    width: 24px;
    height: 24px;
  }
  .benefit p {
    margin: 5px 0 0;
    font-size: 10px;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-band {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 26px 130px;
    min-height: 0;
  }
  .contact-copy { max-width: none; }
  .contact-art {
    top: auto;
    width: 100%;
    height: 200px;
    background-position: center;
    -webkit-mask-image: linear-gradient(0deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(0deg, #000 55%, transparent 100%);
  }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-brand .brand { justify-content: center; }
  .footer-brand p { max-width: none; margin-left: auto; margin-right: auto; }
  .socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; gap: 6px; }
}
@media (max-width: 460px) {
  .wrap { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* support / contact page responsive */
@media (max-width: 880px) {
  .cards-2 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .form-right textarea { min-height: 200px; }
}
