/* ════════════════════════════════════════════════════
   DESIGN SYSTEM — WARM GRAPHITE & AMBER
════════════════════════════════════════════════════ */
:root {
  --bg-0:        #131210;
  --bg-1:        #1a1916;
  --bg-2:        #201e1b;
  --bg-3:        #272420;
  --bg-4:        #2f2c27;
  --amber:       #e8a84c;
  --amber-light: #f0c070;
  --amber-dim:   #c4893a;
  --amber-glow:  rgba(232,168,76,0.12);
  --amber-soft:  rgba(232,168,76,0.07);
  --gold:        #c9a84c;
  --cream:       #f0ebe0;
  --warm-white:  #d4cfc4;
  --stone:       #8a8274;
  --graphite:    #4a4540;
  --green:       #7eb87e;
  --green-glow:  rgba(126,184,126,0.12);
  --terracotta:  #d4734a;
  --teal:        #5a9ea0;
  --border:         rgba(255,250,240,0.07);
  --border-warm:    rgba(232,168,76,0.18);
  --border-strong:  rgba(255,250,240,0.12);
  --grad-amber: linear-gradient(135deg, #e8a84c, #c9a84c);
  --grad-hero:  linear-gradient(160deg, #131210 0%, #1a1916 40%, #1e1b14 100%);
  --grad-card:  linear-gradient(145deg, #201e1b, #1a1916);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-amber: 0 8px 32px rgba(232,168,76,0.22);
  --shadow-glow:  0 0 60px rgba(232,168,76,0.07);
  --r-xs: 6px; --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px;
  --font-ui:      'Heebo', sans-serif;
  --font-display: 'Fraunces', serif;
  --font-mono:    'DM Mono', monospace;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:     cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--bg-0);
  color: var(--cream);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

/* Page-wide grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--graphite); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-dim); }

a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.18; }
h4 { font-family: var(--font-ui); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
p  { color: var(--warm-white); }

/* ── Layout ────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 108px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid var(--border-warm);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.section-header { text-align: center; margin-bottom: 68px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 540px; margin: 0 auto; font-size: 1rem; color: var(--stone); }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), background 180ms var(--ease-io);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: translateX(120%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::after { transform: translateX(-120%); }

.btn-amber { background: var(--grad-amber); color: #0d0b08; }
.btn-amber:hover { transform: translateY(-2px); box-shadow: var(--shadow-amber); }

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-soft); transform: translateY(-2px); }

.btn-ghost { background: var(--bg-3); color: var(--warm-white); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-4); color: var(--cream); transform: translateY(-2px); }

.btn-tg { background: linear-gradient(135deg, #2ea6d6, #1e8cb4); color: #fff; }
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,166,214,0.28); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ── Badges ────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; font-family: var(--font-mono); }
.badge-amber { background: rgba(232,168,76,0.14); color: var(--amber-light); border: 1px solid rgba(232,168,76,0.28); }
.badge-green { background: var(--green-glow); color: var(--green); border: 1px solid rgba(126,184,126,0.24); }
.badge-terra { background: rgba(212,115,74,0.11); color: var(--terracotta); border: 1px solid rgba(212,115,74,0.24); }
.badge-teal  { background: rgba(90,158,160,0.11); color: var(--teal); border: 1px solid rgba(90,158,160,0.24); }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 900;
  transition: background 450ms var(--ease-io), border-color 450ms, box-shadow 450ms;
}
.navbar.scrolled {
  background: rgba(19,18,16,0.9);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(232,168,76,0.25);
}
.logo-text { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--cream); letter-spacing: -0.02em; }
.logo-text em { font-style: italic; color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { font-size: 0.87rem; font-weight: 500; color: var(--stone); padding: 8px 13px; border-radius: var(--r-xs); transition: color 150ms, background 150ms; }
.nav-links a:hover { color: var(--cream); background: var(--bg-3); }
.nav-links a.active { color: var(--amber); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-xs); padding: 10px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--warm-white); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(13,12,10,0.97); backdrop-filter: blur(20px); z-index: 800; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--warm-white); transition: color 150ms; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu-close { position: absolute; top: 24px; left: 24px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--warm-white); font-size: 1rem; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,168,76,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 10%, black 30%, transparent 80%);
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(232,168,76,0.08) 0%, transparent 70%); top: -200px; left: -150px; }
.hero-glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%); bottom: -80px; right: 20%; }
.hero-rule { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--amber), transparent); opacity: 0.25; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }

/* Hero text */
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px; animation: riseIn 0.9s var(--ease-out) both; }
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); animation: pulseAmber 2.4s ease infinite; }
.kicker-text { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }

@keyframes pulseAmber {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,168,76,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(232,168,76,0); }
}

.hero h1 { margin-bottom: 22px; animation: riseIn 0.9s var(--ease-out) 0.1s both; }
.hero h1 .line-italic { font-style: italic; color: var(--amber); }
.hero h1 .line-light { font-weight: 300; color: var(--warm-white); }

.hero-desc { font-size: 1.08rem; color: var(--stone); line-height: 1.85; max-width: 520px; margin-bottom: 40px; animation: riseIn 0.9s var(--ease-out) 0.2s both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; animation: riseIn 0.9s var(--ease-out) 0.3s both; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 36px; animation: riseIn 0.9s var(--ease-out) 0.4s both; }
.stat { flex: 1; padding-left: 28px; border-left: 1px solid var(--border); }
.stat:first-child { padding-right: 0; border-right: none; }
.stat:last-child { padding-left: 0; border-left: none; }
.stat-val { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--cream); line-height: 1; letter-spacing: -0.03em; }
.stat-val span { color: var(--amber); }
.stat-lbl { font-size: 0.77rem; color: var(--stone); margin-top: 5px; font-weight: 500; }

/* Hero panel card */
.hero-panel { animation: riseIn 0.9s var(--ease-out) 0.5s both; }
.panel-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg), var(--shadow-glow); }
.panel-head { background: var(--bg-3); padding: 13px 18px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.panel-dots { display: flex; gap: 6px; }
.panel-dot { width: 9px; height: 9px; border-radius: 50%; }
.panel-dot:nth-child(1) { background: #d4604a; }
.panel-dot:nth-child(2) { background: #e4a82e; }
.panel-dot:nth-child(3) { background: #5c9e5c; }
.panel-url { flex: 1; background: var(--bg-2); border: 1px solid var(--border); border-radius: 4px; height: 22px; font-family: var(--font-mono); font-size: 0.6rem; color: var(--stone); display: flex; align-items: center; padding: 0 9px; }
.panel-body { padding: 13px; display: flex; flex-direction: column; gap: 8px; }
.panel-item { display: flex; align-items: center; gap: 12px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 11px 13px; transition: border-color 200ms, background 200ms; }
.panel-item:hover { border-color: var(--border-warm); background: var(--bg-4); }
.pi-icon { width: 35px; height: 35px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.pi-a { background: rgba(232,168,76,0.15); }
.pi-b { background: var(--green-glow); }
.pi-c { background: rgba(90,158,160,0.12); }
.pi-d { background: rgba(212,115,74,0.12); }
.pi-info { flex: 1; min-width: 0; }
.pi-name { font-size: 0.79rem; font-weight: 700; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.pi-sub  { font-size: 0.67rem; color: var(--stone); font-family: var(--font-mono); }
.pi-price { font-family: var(--font-mono); font-size: 0.81rem; font-weight: 500; color: var(--amber); flex-shrink: 0; }
.panel-foot { padding: 11px 13px 13px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.panel-foot-txt { font-family: var(--font-mono); font-size: 0.63rem; color: var(--stone); }
.panel-foot-badge { display: flex; align-items: center; gap: 5px; background: var(--amber-soft); border: 1px solid var(--border-warm); border-radius: 100px; padding: 4px 10px; font-size: 0.63rem; font-weight: 700; color: var(--amber); font-family: var(--font-mono); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-1); padding: 13px 0; overflow: hidden; position: relative; }
.marquee-strip::before, .marquee-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-strip::before { right: 0; background: linear-gradient(to left, var(--bg-1), transparent); }
.marquee-strip::after  { left: 0; background: linear-gradient(to right, var(--bg-1), transparent); }
.marquee-track { display: flex; animation: marquee 26s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 30px; font-size: 0.77rem; font-weight: 600; color: var(--stone); white-space: nowrap; border-left: 1px solid var(--border); }
.marquee-item:first-child { border-left: none; }
.marquee-item .mi { color: var(--amber); font-size: 0.9rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════ */
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card { background: var(--grad-card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px 18px 24px; text-align: center; cursor: pointer; transition: transform 280ms var(--ease-out), border-color 200ms, box-shadow 280ms; position: relative; overflow: hidden; }
.cat-card::after { content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 2px; background: var(--grad-amber); transform: scaleX(0); transition: transform 280ms var(--ease-out); }
.cat-card:hover { transform: translateY(-5px); border-color: var(--border-warm); box-shadow: var(--shadow-md); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-emoji { font-size: 2rem; margin-bottom: 13px; display: block; }
.cat-name  { font-size: 0.87rem; font-weight: 700; color: var(--cream); margin-bottom: 5px; }
.cat-sub   { font-size: 0.69rem; color: var(--stone); line-height: 1.5; font-family: var(--font-mono); }

/* ════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--grad-card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; transition: transform 280ms var(--ease-out), border-color 200ms, box-shadow 280ms; position: relative; }
.product-card::before { content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px; background: radial-gradient(circle at top right, rgba(232,168,76,0.06), transparent 70%); pointer-events: none; z-index: 0; }
.product-card:hover { transform: translateY(-6px); border-color: var(--border-warm); box-shadow: var(--shadow-lg); }
.product-img { height: 210px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-emoji { font-size: 4.5rem; opacity: 0.22; user-select: none; }
.product-badge-wrap { position: absolute; top: 12px; right: 12px; }
.platform-tag { position: absolute; bottom: 10px; left: 10px; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500; color: var(--stone); background: rgba(13,12,10,0.82); backdrop-filter: blur(8px); padding: 3px 9px; border-radius: 100px; border: 1px solid var(--border); letter-spacing: 0.06em; }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }
.product-title { font-size: 0.96rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; line-height: 1.4; }
.product-desc  { font-size: 0.82rem; color: var(--stone); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); gap: 10px; }
.product-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--amber); line-height: 1; }
.product-price-note { font-size: 0.63rem; color: var(--stone); margin-top: 3px; font-family: var(--font-mono); }
.buy-btn { display: inline-flex; align-items: center; gap: 5px; background: var(--grad-amber); color: #0d0b08; font-size: 0.79rem; font-weight: 700; padding: 9px 15px; border-radius: var(--r-xs); transition: transform 160ms var(--ease-out), box-shadow 220ms; flex-shrink: 0; }
.buy-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-amber); }
.products-more { text-align: center; margin-top: 48px; }

/* ════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════ */
.why-bg { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-copy .section-tag { display: inline-flex; }
.why-copy h2 { margin-bottom: 16px; }
.why-copy > p { margin-bottom: 36px; font-size: 1rem; color: var(--stone); line-height: 1.85; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm); transition: border-color 200ms, transform 250ms var(--ease-out); }
.why-item:hover { border-color: var(--border-warm); transform: translateX(-4px); }
.why-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--amber-soft); border: 1px solid var(--border-warm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.why-copy-text h4 { font-size: 0.9rem; margin-bottom: 3px; color: var(--cream); }
.why-copy-text p  { font-size: 0.8rem; color: var(--stone); line-height: 1.6; }

/* Why visual */
.why-visual { position: relative; }
.wvc { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.wvc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.wvc-big { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--cream); letter-spacing: -0.04em; line-height: 1; }
.wvc-big span { color: var(--amber); }
.wvc-lbl { font-size: 0.73rem; color: var(--stone); font-family: var(--font-mono); margin-top: 6px; }
.wvc-ico { font-size: 2rem; }
.wvc-bars { display: flex; align-items: flex-end; gap: 7px; height: 80px; margin-bottom: 12px; }
.wvc-bar { flex: 1; border-radius: 4px 4px 0 0; position: relative; }
.wvc-bar-fill { position: absolute; bottom: 0; left: 0; right: 0; border-radius: 4px 4px 0 0; background: var(--bg-4); height: 100%; }
.wvc-bar.active .wvc-bar-fill { background: var(--grad-amber); box-shadow: 0 0 14px rgba(232,168,76,0.28); }
.wvc-months { display: flex; gap: 7px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.wvc-month { flex: 1; text-align: center; font-size: 0.59rem; color: var(--stone); font-family: var(--font-mono); }
.wvc-month.active { color: var(--amber); font-weight: 700; }
.wvc-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.wvc-tag { font-family: var(--font-mono); font-size: 0.63rem; color: var(--stone); background: var(--bg-3); border: 1px solid var(--border); border-radius: 100px; padding: 3px 9px; }
.wvc-tag.lit { background: var(--amber-soft); color: var(--amber); border-color: var(--border-warm); }

.why-float { position: absolute; background: var(--bg-2); border: 1px solid var(--border-warm); border-radius: var(--r-sm); padding: 11px 14px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; animation: floatBob 5s ease-in-out infinite; }
.why-float-1 { bottom: -20px; left: -28px; }
.why-float-2 { top: -16px; right: -18px; animation-delay: -2.5s; }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.fl-icon { font-size: 1.2rem; }
.fl-title { font-size: 0.73rem; font-weight: 700; color: var(--cream); }
.fl-sub   { font-size: 0.63rem; color: var(--stone); font-family: var(--font-mono); }

/* ════════════════════════════════════════
   TELEGRAM
════════════════════════════════════════ */
.tg-section { position: relative; overflow: hidden; }
.tg-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(46,166,214,0.04) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.tg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tg-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 40px 36px; position: relative; overflow: hidden; transition: border-color 200ms, box-shadow 280ms; }
.tg-card:hover { border-color: rgba(46,166,214,0.22); box-shadow: 0 16px 48px rgba(46,166,214,0.06); }
.tg-bg-icon { position: absolute; font-size: 10rem; opacity: 0.028; bottom: -30px; left: -20px; pointer-events: none; line-height: 1; }
.tg-icon-wrap { width: 58px; height: 58px; background: rgba(46,166,214,0.09); border: 1px solid rgba(46,166,214,0.18); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 22px; }
.tg-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.tg-card > p { font-size: 0.87rem; color: var(--stone); margin-bottom: 20px; line-height: 1.75; }
.tg-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.tg-list li { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--warm-white); }
.tg-list li::before { content: '✓'; width: 18px; height: 18px; background: var(--green-glow); border-radius: 50%; color: var(--green); font-size: 0.63rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ════════════════════════════════════════
   TRUST
════════════════════════════════════════ */
.trust-bg { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px 24px; position: relative; overflow: hidden; transition: border-color 200ms, transform 250ms var(--ease-out); }
.trust-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: var(--grad-amber); transform: scaleX(0); transform-origin: right; transition: transform 280ms var(--ease-out); }
.trust-card:hover { border-color: var(--border-warm); transform: translateY(-4px); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-icon { font-size: 1.7rem; margin-bottom: 13px; display: block; }
.trust-card h3 { font-size: 0.97rem; font-family: var(--font-ui); margin-bottom: 8px; color: var(--cream); }
.trust-card p  { font-size: 0.81rem; color: var(--stone); line-height: 1.65; }

/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.cta-band { margin: 0 28px; border-radius: var(--r-xl); background: var(--bg-2); border: 1px solid var(--border-warm); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-glow); }
.cta-band::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.cta-band-glow { position: absolute; width: 500px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(232,168,76,0.06) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p  { color: var(--stone); margin-bottom: 32px; font-size: 1rem; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; transition: border-color 150ms; }
.faq-item.open { border-color: var(--border-warm); }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: right; cursor: pointer; color: var(--cream); font-family: var(--font-ui); font-size: 0.91rem; font-weight: 700; transition: color 150ms; }
.faq-q:hover { color: var(--amber); }
.faq-item.open .faq-q { color: var(--amber); }
.faq-arrow { font-size: 0.63rem; color: var(--stone); transition: transform 0.3s var(--ease-out), color 150ms; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--amber); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a-inner { padding: 0 22px 20px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.84rem; color: var(--stone); line-height: 1.85; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 68px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 0.84rem; color: var(--stone); margin: 13px 0 20px; line-height: 1.8; max-width: 240px; }
.footer-tg-pills { display: flex; flex-direction: column; gap: 8px; }
.footer-tg-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,166,214,0.08); border: 1px solid rgba(46,166,214,0.17); border-radius: var(--r-xs); padding: 8px 13px; font-size: 0.79rem; font-weight: 600; color: #2ea6d6; transition: background 150ms; }
.footer-tg-pill:hover { background: rgba(46,166,214,0.14); }
.footer-col-title { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col-links a { font-size: 0.83rem; color: var(--stone); transition: color 150ms; }
.footer-col-links a:hover { color: var(--amber); }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; }
.footer-disclosure { font-size: 0.74rem; color: var(--stone); line-height: 1.75; max-width: 520px; }
.footer-disclosure strong { color: var(--warm-white); }
.footer-copy { font-size: 0.74rem; color: var(--graphite); text-align: left; }

/* ════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.btt { position: fixed; bottom: 28px; left: 28px; width: 46px; height: 46px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--stone); font-size: 1rem; transition: all 280ms var(--ease-out); opacity: 0; pointer-events: none; z-index: 200; }
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { background: var(--amber); color: #0d0b08; border-color: var(--amber); transform: translateY(-3px); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .tg-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-end .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat { border-left: none; padding-left: 0; border-bottom: 1px solid var(--border); padding-bottom: 18px; margin-bottom: 18px; }
  .stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .cta-band { padding: 40px 28px; margin: 0; border-radius: var(--r-md); }
  .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 560px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
}


.disabled-buy { opacity: 0.72; cursor: default; pointer-events: none; display: inline-flex; align-items: center; justify-content: center; }
