/* Ageless Refunds — high-fidelity hulk.sh-inspired red frontend */
:root {
  --bg: #0a0a0a;
  --bg-nav: rgba(10, 10, 10, 0.94);
  --bg-card: #111111;
  --bg-card-2: #141414;
  --bg-muted: #1a1a1a;
  --bg-badge: #210d0d;
  --bg-accent-subtle: #1a0d0d;
  --fg: #f0f0f0;
  --fg-strong: #ffffff;
  --fg-muted: #a0a0a0;
  --fg-dim: #666666;
  --border: #2a2a2a;
  --border-soft: rgba(255, 255, 255, 0.055);
  --accent: #dc2626;
  --accent-dark: #991b1b;
  --accent-light: #ef4444;
  --accent-soft: rgba(220, 38, 38, 0.10);
  --accent-glow: rgba(220, 38, 38, 0.18);
  --danger-gradient: linear-gradient(90deg, #991b1b 0%, #dc2626 45%, #ef4444 100%);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Montserrat', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection, ::selection { background: rgba(220, 38, 38, .28); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* Page atmosphere */
.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background:
    radial-gradient(80% 60% at -5% 18%, rgba(220, 38, 38, .07) 0%, transparent 65%),
    radial-gradient(60% 70% at 15% 52%, rgba(220, 38, 38, .055), transparent 70%),
    #0a0a0a;
}
.ambient-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .65;
  background-image:
    linear-gradient(rgba(220, 38, 38, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, .025) 1px, transparent 1px),
    radial-gradient(circle, rgba(42,42,42,.7) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.35) 45%, rgba(0,0,0,.65));
}
.ambient-red { pointer-events: none; position: absolute; z-index: -2; filter: blur(80px); opacity: .55; }
.ambient-red-hero { top: 115px; left: -180px; width: 460px; height: 380px; background: radial-gradient(circle, rgba(220,38,38,.14), transparent 68%); }
.ambient-red-mid { top: 1750px; left: 27%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(220,38,38,.10), transparent 70%); }

/* Loader */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  background:
    linear-gradient(rgba(220,38,38,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,38,38,.025) 1px, transparent 1px),
    #080808;
  background-size: 80px 80px;
  animation: loaderExit .85s var(--ease) 1.45s forwards;
}
.loader-mark-wrap { position: relative; width: 110px; height: 110px; display: grid; place-items: center; }
.loader-mark { width: 68px; height: 68px; object-fit: cover; mix-blend-mode: screen; opacity: .9; filter: sepia(1) saturate(4) hue-rotate(310deg) drop-shadow(0 0 18px rgba(220,38,38,.35)); }
.loader-ring { position: absolute; border: 1px solid rgba(220,38,38,.32); border-radius: 999px; inset: 8px; animation: breathe 1.8s var(--ease) infinite; }
.loader-ring-2 { inset: 22px; opacity: .8; animation-delay: .2s; }
.loader-word { font-weight: 900; letter-spacing: -.05em; font-size: 46px; line-height: 1; background: var(--danger-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 30px rgba(220,38,38,.15); }
.loader-bar { width: 220px; height: 2px; background: rgba(255,255,255,.06); overflow: hidden; }
.loader-bar span { display: block; width: 100%; height: 100%; background: var(--danger-gradient); transform-origin: left; animation: loadBar 1.15s var(--ease-out) forwards; }
.loader-percent { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .18em; color: #666; }

/* Nav */
.site-nav {
  position: fixed;
  left: 0; right: 0; bottom: auto; top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  background: linear-gradient(to bottom, rgba(10,10,10,.88), rgba(10,10,10,.70));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.045);
}
.nav-logo-text, .stores-logo, .footer-logo {
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  color: transparent;
  background: var(--danger-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(220,38,38,.28);
}
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 11px; color: var(--fg-muted); }
.nav-links a:not(.nav-telegram) { transition: color .2s var(--ease); }
.nav-links a:not(.nav-telegram):hover { color: var(--fg); }
.nav-telegram, .footer-telegram {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--accent);
  color: #080808;
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 0 18px rgba(220,38,38,.20);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav-telegram:hover, .footer-telegram:hover { transform: translateY(-1px); background: var(--accent-light); }
.nav-telegram.small { padding: 7px 11px; font-size: 10px; }
.telegram-dot { width: 7px; height: 7px; border-radius: 999px; background: #0a0a0a; box-shadow: 0 0 0 2px rgba(0,0,0,.12); }
.nav-menu-btn { display: none; background: transparent; border: 0; width: 36px; height: 36px; padding: 8px; }
.nav-menu-btn span { display: block; height: 2px; margin: 5px 0; background: var(--fg); border-radius: 99px; }

/* Hero */
.hero-section { min-height: 858px; padding: 126px 0 78px; border-bottom: 1px solid rgba(255,255,255,.045); }
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(360px, 470px) 1fr;
  align-items: center;
  gap: 80px;
}
.hero-copy { padding-top: 8px; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(220,38,38,.10);
  border: 1px solid rgba(220,38,38,.22);
  color: var(--accent-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: inset 0 0 14px rgba(220,38,38,.07);
}
.eyebrow-pill span, .mini-pills i { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 12px rgba(220,38,38,.8); }
.hero-wordmark { margin: 22px 0 8px; }
.hero-wordmark span {
  display: inline-block;
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.105em;
  background: linear-gradient(90deg, #5f1111 0%, #dc2626 46%, #fca5a5 74%, #7f1d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(220,38,38,.18));
}
.hero-title {
  margin: 0 0 18px;
  color: var(--fg);
  font-weight: 900;
  letter-spacing: -.035em;
  font-size: clamp(46px, 5vw, 66px);
  line-height: .95;
}
.hero-title span { color: var(--accent-light); }
.hero-subtitle {
  max-width: 450px;
  margin: 0;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}
.hero-actions { margin-top: 28px; display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #0a0a0a; box-shadow: 0 10px 26px rgba(220,38,38,.18); }
.btn-primary:hover { background: var(--accent-light); }
.btn-ghost { color: var(--fg-muted); background: rgba(17,17,17,.82); border-color: var(--border); }
.btn-ghost:hover { color: var(--fg); border-color: rgba(255,255,255,.18); }
.hero-checks { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 17px; color: var(--accent-light); font-size: 11px; font-weight: 800; }
.hero-visual { position: relative; height: 620px; display: grid; place-items: center; }
.hero-emblem {
  position: relative;
  z-index: 2;
  width: min(560px, 45vw);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: sepia(1) saturate(3.6) hue-rotate(315deg) contrast(1.08) drop-shadow(0 0 50px rgba(220,38,38,.24));
  opacity: .92;
  animation: float 5.4s ease-in-out infinite;
  transform-origin: 50% 45%;
}
.hero-emblem-halo { position: absolute; border-radius: 999px; border: 1px solid rgba(220,38,38,.16); box-shadow: inset 0 0 40px rgba(220,38,38,.05), 0 0 60px rgba(220,38,38,.07); }
.hero-emblem-halo-1 { width: 440px; height: 440px; animation: breathe 3.2s var(--ease) infinite; }
.hero-emblem-halo-2 { width: 320px; height: 320px; animation: breathe 3.2s var(--ease) .4s infinite; }
.hero-emblem-shadow { position: absolute; bottom: 52px; width: 420px; height: 75px; border-radius: 50%; background: radial-gradient(ellipse, rgba(0,0,0,.7), transparent 70%); filter: blur(12px); }

/* Trust */
.trust-section { max-width: 920px; margin: 0 auto; padding: 40px 28px 0; }
.mini-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.mini-pills span {
  display: inline-flex; align-items: center; gap: 7px;
  height: 22px; padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,17,17,.9);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--fg-muted);
  font-size: 10px;
  font-weight: 700;
}
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: rgba(17,17,17,.76); box-shadow: 0 12px 40px -8px rgba(0,0,0,.35); }
.trust-card { min-height: 132px; padding: 28px 24px; text-align: center; border-right: 1px solid var(--border); }
.trust-card:last-child { border-right: 0; }
.trust-icon { color: var(--accent); font-size: 18px; margin-bottom: 12px; text-shadow: 0 0 16px rgba(220,38,38,.45); }
.trust-card strong { display: block; color: #fff; font-size: 20px; line-height: 1; font-weight: 900; letter-spacing: -.03em; }
.trust-card small { display: block; margin-top: 8px; color: var(--fg-muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }

/* Negative space / sections */
.section-void-top { margin-top: 760px; }
.how-section { max-width: var(--container); margin-left: auto; margin-right: auto; padding: 0 28px; display: grid; grid-template-columns: 355px 1fr; gap: 95px; align-items: center; }
.how-copy h2, .section-head h2, .order-copy h2 { margin: 18px 0 16px; font-size: clamp(42px, 5vw, 58px); line-height: .92; letter-spacing: -.045em; font-weight: 900; color: #fff; }
.how-copy h2 { max-width: 355px; }
.how-copy h2::first-line { color: #fff; }
.how-copy h2 { color: var(--accent-light); }
.how-copy p, .section-head p, .order-copy p { margin: 0; color: var(--fg-muted); font-size: 14px; line-height: 1.7; font-weight: 500; }
.how-checks { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; color: var(--accent-light); font-size: 11px; font-weight: 800; }
/* How It Works - action card */
.how-action { display: flex; align-items: center; }
.how-action-card {
  width: 100%;
  padding: 34px;
  border: 1px solid rgba(220,38,38,.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,13,13,.90), rgba(17,17,17,.92));
  box-shadow: inset 0 0 24px rgba(220,38,38,.05), 0 16px 56px rgba(0,0,0,.30);
}
.how-action-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.how-step { display: flex; gap: 16px; align-items: flex-start; }
.how-step-num {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.28);
  color: var(--accent-light);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.how-step strong { display: block; color: #fff; font-size: 15px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 4px; }
.how-step p { margin: 0; color: var(--fg-muted); font-size: 12px; line-height: 1.5; }
.how-cta { width: 100%; margin-top: 4px; }

/* Vouches */
.vouches-section, .stores-section, .order-section { max-width: var(--container); margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 36px; }
.section-head.left { margin: 0 0 34px; text-align: left; max-width: 470px; }
.vouch-strip { position: relative; min-height: 900px; display: block; }
@keyframes vouchFloat1 { 0%,100% { transform: translate(0,0); } 25% { transform: translate(6px,-8px); } 50% { transform: translate(-4px,-12px); } 75% { transform: translate(-6px,-3px); } }
@keyframes vouchFloat2 { 0%,100% { transform: translate(0,0); } 30% { transform: translate(-7px,-5px); } 60% { transform: translate(5px,-14px); } 85% { transform: translate(3px,-2px); } }
@keyframes vouchFloat3 { 0%,100% { transform: translate(0,0); } 20% { transform: translate(-3px,-10px); } 50% { transform: translate(8px,-6px); } 75% { transform: translate(-5px,-14px); } }
@keyframes vouchFloat4 { 0%,100% { transform: translate(0,0); } 35% { transform: translate(5px,-12px); } 65% { transform: translate(-6px,-4px); } 90% { transform: translate(2px,-10px); } }

.vouch-tile {
  width: 125px;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #111;
  overflow: visible;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: absolute;
}
.vouch-tile:nth-child(1)  { top: 2%; left: 0%; animation: vouchFloat1 6s ease-in-out infinite; }
.vouch-tile:nth-child(2)  { top: 8%; left: 14%; animation: vouchFloat2 7s ease-in-out infinite; animation-delay: .2s; }
.vouch-tile:nth-child(3)  { top: 1%; left: 28%; animation: vouchFloat3 6.5s ease-in-out infinite; animation-delay: .4s; }
.vouch-tile:nth-child(4)  { top: 5%; left: 42%; animation: vouchFloat4 7.5s ease-in-out infinite; animation-delay: .6s; }
.vouch-tile:nth-child(5)  { top: 10%; left: 56%; animation: vouchFloat1 6.8s ease-in-out infinite; animation-delay: .1s; }
.vouch-tile:nth-child(6)  { top: 2%; left: 70%; animation: vouchFloat2 7.2s ease-in-out infinite; animation-delay: .5s; }
.vouch-tile:nth-child(7)  { top: 7%; left: 84%; animation: vouchFloat3 5.8s ease-in-out infinite; animation-delay: .3s; }
.vouch-tile:nth-child(8)  { top: 18%; left: 5%; animation: vouchFloat4 6.4s ease-in-out infinite; animation-delay: .7s; }
.vouch-tile:nth-child(9)  { top: 22%; left: 22%; animation: vouchFloat1 7.1s ease-in-out infinite; animation-delay: .8s; }
.vouch-tile:nth-child(10) { top: 16%; left: 38%; animation: vouchFloat2 6.2s ease-in-out infinite; animation-delay: .2s; }
.vouch-tile:nth-child(11) { top: 20%; left: 54%; animation: vouchFloat3 7.4s ease-in-out infinite; animation-delay: .5s; }
.vouch-tile:nth-child(12) { top: 14%; left: 70%; animation: vouchFloat4 5.9s ease-in-out infinite; animation-delay: .9s; }
.vouch-tile:nth-child(13) { top: 25%; left: 86%; animation: vouchFloat1 6.6s ease-in-out infinite; animation-delay: .4s; }
.vouch-tile:nth-child(14) { top: 34%; left: 0%; animation: vouchFloat2 7.3s ease-in-out infinite; animation-delay: .1s; }
.vouch-tile:nth-child(15) { top: 30%; left: 16%; animation: vouchFloat3 6.1s ease-in-out infinite; animation-delay: .6s; }
.vouch-tile:nth-child(16) { top: 36%; left: 32%; animation: vouchFloat4 7.6s ease-in-out infinite; animation-delay: .3s; }
.vouch-tile:nth-child(17) { top: 28%; left: 48%; animation: vouchFloat1 5.7s ease-in-out infinite; animation-delay: .7s; }
.vouch-tile:nth-child(18) { top: 33%; left: 64%; animation: vouchFloat2 6.9s ease-in-out infinite; animation-delay: .2s; }
.vouch-tile:nth-child(19) { top: 38%; left: 80%; animation: vouchFloat3 7.8s ease-in-out infinite; animation-delay: .5s; }
.vouch-tile:nth-child(20) { top: 46%; left: 3%; animation: vouchFloat4 6.3s ease-in-out infinite; animation-delay: .8s; }
.vouch-tile:nth-child(21) { top: 42%; left: 20%; animation: vouchFloat1 7.0s ease-in-out infinite; animation-delay: .2s; }
.vouch-tile:nth-child(22) { top: 48%; left: 36%; animation: vouchFloat2 6.5s ease-in-out infinite; animation-delay: .6s; }
.vouch-tile:nth-child(23) { top: 44%; left: 52%; animation: vouchFloat3 5.5s ease-in-out infinite; animation-delay: .3s; }
.vouch-tile:nth-child(24) { top: 50%; left: 68%; animation: vouchFloat4 7.2s ease-in-out infinite; animation-delay: .7s; }
.vouch-tile:nth-child(25) { top: 43%; left: 84%; animation: vouchFloat1 6.0s ease-in-out infinite; animation-delay: .4s; }
.vouch-tile:nth-child(26) { top: 58%; left: 1%; animation: vouchFloat2 6.7s ease-in-out infinite; animation-delay: .9s; }
.vouch-tile:nth-child(27) { top: 62%; left: 18%; animation: vouchFloat3 7.1s ease-in-out infinite; animation-delay: .1s; }
.vouch-tile:nth-child(28) { top: 55%; left: 34%; animation: vouchFloat4 5.6s ease-in-out infinite; animation-delay: .5s; }
.vouch-tile:nth-child(29) { top: 60%; left: 50%; animation: vouchFloat1 6.4s ease-in-out infinite; animation-delay: .3s; }
.vouch-tile:nth-child(30) { top: 57%; left: 66%; animation: vouchFloat2 7.5s ease-in-out infinite; animation-delay: .7s; }
.vouch-tile:nth-child(31) { top: 64%; left: 82%; animation: vouchFloat3 5.9s ease-in-out infinite; animation-delay: .2s; }
.vouch-tile:nth-child(32) { top: 72%; left: 10%; animation: vouchFloat4 6.8s ease-in-out infinite; animation-delay: .8s; }
.vouch-tile:nth-child(33) { top: 68%; left: 28%; animation: vouchFloat1 7.3s ease-in-out infinite; animation-delay: .4s; }
.vouch-tile:hover {
  animation-play-state: paused;
  transform: translateY(-4px);
  border-color: rgba(220,38,38,.35);
  box-shadow: 0 0 26px rgba(220,38,38,.10);
  z-index: 10;
}
.vouch-tile img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }

/* Vouch tooltip */
.vouch-tile::after {
  content: attr(data-amount);
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), bottom .25s var(--ease);
  box-shadow: 0 4px 16px rgba(220,38,38,.30);
}
.vouch-tile:hover::after {
  opacity: 1;
  bottom: -44px;
}
.lightbox { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(0,0,0,.94); }
.lightbox.active { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 88vh; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox button { position: absolute; top: 22px; right: 28px; border: 0; background: transparent; color: #fff; font-size: 42px; cursor: pointer; }

/* Stores/categories */
.stores-nav { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.06); }
.stores-nav > div { display: flex; gap: 16px; align-items: center; color: var(--fg-muted); font-size: 10px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border-radius: 14px;
  background: rgba(17,17,17,.82);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
  z-index: 1;
}
.category-card:hover,
.category-card.reveal:hover,
.category-card.reveal.visible:hover {
  transform: scale(1.18) !important;
  border-color: rgba(220,38,38,.44);
  box-shadow: 0 12px 48px rgba(220,38,38,.22);
  background: rgba(22,22,22,.94);
  z-index: 5;
}
.category-icon { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 10px; background: rgba(220,38,38,.10); color: var(--accent-light); border: 1px solid rgba(220,38,38,.16); font-weight: 900; transition: opacity .3s var(--ease); }
.category-card:hover .category-icon { opacity: 0; }
.category-card h3 { margin: 0 0 9px; color: #fff; font-size: 16px; font-weight: 900; transition: opacity .3s var(--ease); }
.category-card:hover h3 { opacity: 0; }
.category-card > p { margin: 0; color: var(--fg-muted); font-size: 12px; line-height: 1.55; transition: opacity .3s var(--ease); }
.category-card:hover > p { opacity: 0; }

/* Category expand on hover */
.category-expand {
  position: absolute;
  inset: 0;
  padding: 24px;
  padding-top: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.category-card:hover .category-expand {
  opacity: 1;
  pointer-events: auto;
}
.category-expand-text {
  margin: 0;
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.category-expand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: auto;
}

/* Category expand tags */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.category-tags span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.16);
  color: var(--fg-muted);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.store-logo-wall { margin-top: 28px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; opacity: .86; }
.store-chip { height: 54px; display: grid; place-items: center; padding: 8px; border-radius: 12px; background: rgba(17,17,17,.72); border: 1px solid rgba(255,255,255,.055); }
.store-chip img { max-width: 100%; max-height: 100%; object-fit: contain; opacity: .76; filter: grayscale(.35); transition: opacity .2s var(--ease), filter .2s var(--ease); }
.store-chip:hover img { opacity: 1; filter: none; }

/* Order */
.order-section { margin-top: 330px; padding-bottom: 160px; display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: start; }
.order-form {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(220,38,38,.20);
  background: linear-gradient(135deg, rgba(26,13,13,.92), rgba(17,17,17,.96));
  box-shadow: inset 0 0 20px rgba(220,38,38,.06), 0 20px 70px rgba(0,0,0,.32);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-form label { display: block; margin-bottom: 14px; }
.order-form label > span { display: block; margin-bottom: 7px; color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.order-form input, .order-form textarea, .order-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(10,10,10,.80);
  color: var(--fg);
  padding: 12px 13px;
  font-size: 13px;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.order-form textarea { resize: vertical; min-height: 112px; }
.order-form input:focus, .order-form textarea:focus, .order-form select:focus { border-color: rgba(220,38,38,.56); box-shadow: 0 0 0 3px rgba(220,38,38,.09); background: #0b0b0b; }
.form-submit { width: 100%; border: 0; margin-top: 4px; }
.form-note { margin: 13px 0 0; text-align: center; color: var(--fg-muted); font-size: 11px; }
.form-error { display: block; color: #fca5a5; margin-top: 6px; font-size: 11px; }

/* Footer */
.site-footer { max-width: var(--container); margin: 0 auto; padding: 80px 28px 42px; border-top: 1px solid rgba(255,255,255,.055); display: grid; grid-template-columns: 1.6fr .8fr; gap: 80px; color: var(--fg-muted); }
.site-footer p { margin: 14px 0 18px; max-width: 340px; font-size: 13px; line-height: 1.65; }
.site-footer strong { display: block; margin-bottom: 16px; color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.site-footer a:not(.footer-telegram), .site-footer span { display: block; margin: 9px 0; font-size: 12px; color: var(--fg-muted); }

/* Reveals + animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
@keyframes loaderExit { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@keyframes loadBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes breathe { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
@keyframes batFloat1 { 0%,100% { transform: translate(0,0) rotate(-5deg); } 25% { transform: translate(40px,-30px) rotate(3deg); } 50% { transform: translate(-20px,-55px) rotate(-8deg); } 75% { transform: translate(-35px,-15px) rotate(5deg); } }
@keyframes batFloat2 { 0%,100% { transform: translate(0,0) rotate(8deg); } 30% { transform: translate(-45px,-20px) rotate(-4deg); } 60% { transform: translate(25px,-50px) rotate(6deg); } 85% { transform: translate(30px,-10px) rotate(-3deg); } }
@keyframes batFloat3 { 0%,100% { transform: translate(0,0) rotate(-3deg); } 20% { transform: translate(30px,-40px) rotate(7deg); } 50% { transform: translate(-30px,-30px) rotate(-6deg); } 75% { transform: translate(10px,-60px) rotate(4deg); } }
@keyframes batFloat4 { 0%,100% { transform: translate(0,0) rotate(6deg); } 35% { transform: translate(-25px,-35px) rotate(-7deg); } 65% { transform: translate(35px,-20px) rotate(3deg); } 90% { transform: translate(-10px,-50px) rotate(-2deg); } }
@keyframes batDrift1 { 0%,100% { transform: translate(0,0) rotate(-3deg); } 20% { transform: translate(-50px,-25px) rotate(5deg); } 45% { transform: translate(30px,-60px) rotate(-6deg); } 70% { transform: translate(-20px,-20px) rotate(4deg); } 90% { transform: translate(15px,-45px) rotate(-2deg); } }
@keyframes batDrift2 { 0%,100% { transform: translate(0,0) rotate(4deg); } 25% { transform: translate(40px,-40px) rotate(-7deg); } 55% { transform: translate(-25px,-55px) rotate(3deg); } 80% { transform: translate(35px,-15px) rotate(-5deg); } }
@keyframes batDrift3 { 0%,100% { transform: translate(0,0) rotate(-6deg); } 15% { transform: translate(-35px,-20px) rotate(7deg); } 40% { transform: translate(25px,-50px) rotate(-3deg); } 65% { transform: translate(-40px,-30px) rotate(5deg); } 85% { transform: translate(20px,-10px) rotate(-4deg); } }
@keyframes batDrift4 { 0%,100% { transform: translate(0,0) rotate(7deg); } 30% { transform: translate(20px,-35px) rotate(-5deg); } 60% { transform: translate(-30px,-45px) rotate(2deg); } 85% { transform: translate(10px,-25px) rotate(-6deg); } }

/* Bat swarm - vouches page background */
.bats-swarm { pointer-events: none; position: absolute; inset: -60px -60px -60px -60px; z-index: 0; overflow: hidden; }
.bats-swarm .bat {
  position: absolute;
  opacity: .10;
  filter: grayscale(.5);
}
.bats-swarm .bat:nth-child(1)  { top: 5%; left: 3%; font-size: 28px; animation: batDrift1 11s ease-in-out infinite; }
.bats-swarm .bat:nth-child(2)  { top: 12%; left: 18%; font-size: 18px; animation: batDrift2 13s ease-in-out infinite; animation-delay: .5s; }
.bats-swarm .bat:nth-child(3)  { top: 3%; left: 32%; font-size: 24px; animation: batDrift3 10s ease-in-out infinite; animation-delay: 1s; }
.bats-swarm .bat:nth-child(4)  { top: 8%; left: 48%; font-size: 15px; animation: batDrift4 14s ease-in-out infinite; animation-delay: .3s; }
.bats-swarm .bat:nth-child(5)  { top: 15%; left: 62%; font-size: 30px; animation: batDrift1 9s ease-in-out infinite; animation-delay: 1.5s; }
.bats-swarm .bat:nth-child(6)  { top: 2%; left: 78%; font-size: 20px; animation: batDrift2 12s ease-in-out infinite; animation-delay: .8s; }
.bats-swarm .bat:nth-child(7)  { top: 10%; left: 90%; font-size: 22px; animation: batDrift3 15s ease-in-out infinite; animation-delay: .2s; }
.bats-swarm .bat:nth-child(8)  { top: 28%; left: 1%; font-size: 16px; animation: batDrift4 11s ease-in-out infinite; animation-delay: 1.2s; }
.bats-swarm .bat:nth-child(9)  { top: 22%; left: 14%; font-size: 26px; animation: batDrift1 8s ease-in-out infinite; animation-delay: .6s; }
.bats-swarm .bat:nth-child(10) { top: 32%; left: 28%; font-size: 14px; animation: batDrift2 13s ease-in-out infinite; animation-delay: 1.8s; }
.bats-swarm .bat:nth-child(11) { top: 18%; left: 44%; font-size: 21px; animation: batDrift3 10s ease-in-out infinite; animation-delay: .4s; }
.bats-swarm .bat:nth-child(12) { top: 26%; left: 58%; font-size: 19px; animation: batDrift4 9s ease-in-out infinite; animation-delay: 1.1s; }
.bats-swarm .bat:nth-child(13) { top: 20%; left: 72%; font-size: 25px; animation: batDrift1 12s ease-in-out infinite; animation-delay: .7s; }
.bats-swarm .bat:nth-child(14) { top: 30%; left: 85%; font-size: 17px; animation: batDrift2 14s ease-in-out infinite; animation-delay: .9s; }
.bats-swarm .bat:nth-child(15) { top: 45%; left: 6%; font-size: 29px; animation: batDrift3 11s ease-in-out infinite; animation-delay: .5s; }
.bats-swarm .bat:nth-child(16) { top: 38%; left: 22%; font-size: 13px; animation: batDrift4 10s ease-in-out infinite; animation-delay: 1.4s; }
.bats-swarm .bat:nth-child(17) { top: 50%; left: 36%; font-size: 23px; animation: batDrift1 13s ease-in-out infinite; animation-delay: .3s; }
.bats-swarm .bat:nth-child(18) { top: 42%; left: 52%; font-size: 18px; animation: batDrift2 9s ease-in-out infinite; animation-delay: 1.6s; }
.bats-swarm .bat:nth-child(19) { top: 35%; left: 68%; font-size: 27px; animation: batDrift3 12s ease-in-out infinite; animation-delay: .8s; }
.bats-swarm .bat:nth-child(20) { top: 48%; left: 82%; font-size: 15px; animation: batDrift4 15s ease-in-out infinite; animation-delay: .1s; }

/* Floating bats (homepage) */
.home-store-carousel { position: relative; }
.bats-container { pointer-events: none; position: absolute; inset: -80px -40px -40px -40px; z-index: 0; }
.bat { position: absolute; font-size: 22px; opacity: .18; filter: grayscale(.6); animation: batFloat1 7s ease-in-out infinite; }
.bat-1 { top: 15%; left: 8%; animation: batFloat1 8s ease-in-out infinite; font-size: 18px; }
.bat-2 { top: 25%; right: 5%; animation: batFloat2 9s ease-in-out infinite; font-size: 20px; animation-delay: .5s; }
.bat-3 { top: 50%; left: 3%; animation: batFloat3 7.5s ease-in-out infinite; font-size: 16px; animation-delay: 1s; }
.bat-4 { top: 10%; right: 12%; animation: batFloat4 8.5s ease-in-out infinite; font-size: 19px; animation-delay: .3s; }
.bat-5 { top: 35%; left: 15%; animation: batFloat2 10s ease-in-out infinite; font-size: 15px; animation-delay: 1.5s; }
.bat-6 { top: 60%; right: 8%; animation: batFloat3 9s ease-in-out infinite; font-size: 17px; animation-delay: .8s; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.flash-msg { animation: slideDown .25s var(--ease-out); }

/* Responsive */
@media (max-width: 1024px) {
  .site-nav { left: 0; right: 0; max-width: none; }
  .nav-menu-btn { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; left: 16px; right: 16px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: rgba(10,10,10,.96); backdrop-filter: blur(14px); flex-direction: column; align-items: stretch; gap: 12px; }
  .nav-links.open { display: flex; }
  .hero-inner, .how-section, .order-section { grid-template-columns: 1fr; gap: 42px; }
  .hero-section { min-height: auto; padding-bottom: 110px; }
  .hero-visual { height: 420px; }
  .hero-emblem { width: min(540px, 86vw); }
  .section-void-top { margin-top: 260px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:hover,
  .category-card.reveal:hover,
  .category-card.reveal.visible:hover { transform: scale(1.12) !important; }
  .store-logo-wall { grid-template-columns: repeat(4, 1fr); }
  .vouch-strip { min-height: 1100px; }
  .vouch-tile { width: 100px; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .hero-section { padding-top: 100px; }
  .hero-inner, .trust-section, .how-section, .vouches-section, .stores-section, .order-section, .site-footer { padding-left: 18px; padding-right: 18px; }
  .hero-actions, .hero-checks, .mini-pills { justify-content: flex-start; }
  .trust-cards { grid-template-columns: 1fr; }
  .trust-card { min-height: 112px; padding: 22px 14px; }

  .category-grid, .form-grid { grid-template-columns: 1fr; }
  .vouch-strip { min-height: 1600px; }
  .vouch-tile { width: 80px; }
  .stores-nav { align-items: flex-start; flex-direction: column; }
  .stores-nav > div { flex-wrap: wrap; }
  .store-logo-wall { grid-template-columns: repeat(2, 1fr); }
}

/* Targeted fixes from review */
.nav-logo { display: inline-flex; align-items: center; gap: 10px; min-width: 0; overflow: visible; }
.nav-logo-img { width: 34px; height: 34px; object-fit: cover; border-radius: 8px; mix-blend-mode: screen; filter: sepia(1) saturate(4) hue-rotate(315deg) contrast(1.05); flex: 0 0 auto; }
.nav-logo-text { font-size: 17px; letter-spacing: -.055em; white-space: nowrap; line-height: 1.1; overflow: visible; }
.compact-hero { min-height: 720px; padding-bottom: 54px; }
.hero-emblem { animation: none !important; transform: none !important; }
.hero-visual { height: 520px; }
.hero-wordmark span { line-height: .95; padding-right: .12em; letter-spacing: -.075em; }
.tightened-section { margin-top: 170px !important; }
.home-store-carousel { max-width: var(--container); margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.centered-btn { margin: 24px auto 0; display: table; }
.single-store-carousel { position: relative; height: 310px; max-width: 620px; margin: 0 auto; border: 1px solid rgba(255,255,255,.07); border-radius: 22px; background: linear-gradient(135deg, rgba(17,17,17,.92), rgba(10,10,10,.96)); overflow: hidden; box-shadow: 0 20px 70px rgba(0,0,0,.34), inset 0 0 22px rgba(220,38,38,.04); }
.store-slide { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 22px; margin: 0; opacity: 0; transform: scale(.97); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.store-slide.active { opacity: 1; transform: scale(1); }
.store-slide img { max-width: min(78%, 440px); max-height: 190px; object-fit: contain; filter: drop-shadow(0 16px 50px rgba(0,0,0,.55)); }
.store-slide figcaption { color: var(--fg); font-weight: 900; letter-spacing: -.03em; text-transform: capitalize; }
.cta-section { max-width: var(--container); margin-left: auto; margin-right: auto; padding: 0 28px 60px; }
.page-shell { min-height: 100vh; position: relative; }
.page-main { max-width: var(--container); margin: 0 auto; padding: 120px 28px 90px; }
.service-main { max-width: 820px; }
.service-card { border: 1px solid var(--border); border-radius: 18px; padding: 28px; background: rgba(17,17,17,.84); }
.service-card h3 { margin: 0 0 10px; font-size: 28px; font-weight: 900; }
.service-card p { color: var(--fg-muted); line-height: 1.7; }
.full-store-grid { grid-template-columns: repeat(4, 1fr); margin-top: 30px; }
.full-store-grid .store-chip { height: 130px; display: grid; gap: 10px; }
.full-store-grid .store-chip small { color: var(--fg-muted); font-size: 11px; font-weight: 800; text-align: center; }
.order-page-main { max-width: 960px; }
.detailed-order-form { border: 1px solid rgba(220,38,38,.18); border-radius: 22px; background: linear-gradient(135deg, rgba(17,17,17,.92), rgba(10,10,10,.96)); padding: 28px; box-shadow: 0 20px 80px rgba(0,0,0,.36), inset 0 0 22px rgba(220,38,38,.04); }
.order-step { position: relative; margin: 0 0 22px; padding: 24px; border: 1px solid rgba(255,255,255,.07); border-radius: 18px; background: rgba(10,10,10,.48); }
.order-step-number { position: absolute; top: 22px; right: 22px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--accent-light); background: rgba(220,38,38,.09); border: 1px solid rgba(220,38,38,.24); font-weight: 900; }
.order-step h3 { margin: 0 0 20px; color: #fff; font-size: 23px; font-weight: 900; letter-spacing: -.03em; }
.detailed-order-form label { display: block; margin-bottom: 14px; }
.detailed-order-form label span, .repeat-title { display: block; margin-bottom: 8px; color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.detailed-order-form b, .repeat-title b { color: var(--accent-light); }
.detailed-order-form input, .detailed-order-form textarea, .detailed-order-form select { width: 100%; border: 1px solid rgba(255,255,255,.085); border-radius: 12px; background: rgba(0,0,0,.45); color: var(--fg); padding: 12px 13px; font-size: 13px; outline: none; }
.detailed-order-form textarea { min-height: 92px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.repeat-block { margin-top: 14px; }
.repeat-row { display: grid; grid-template-columns: 1.5fr 1fr 80px; gap: 10px; margin-bottom: 10px; }
#tracking-list .repeat-row { grid-template-columns: 1fr; }
.add-row-btn { border: 1px solid rgba(220,38,38,.28); background: rgba(220,38,38,.08); color: var(--accent-light); border-radius: 999px; padding: 9px 13px; font-size: 12px; font-weight: 900; cursor: pointer; }
.answer-options { display: grid; gap: 12px; }
.radio-card { display: flex !important; gap: 10px; align-items: center; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(0,0,0,.28); }
.radio-card span { margin: 0 !important; text-transform: none !important; letter-spacing: 0 !important; font-size: 13px !important; }
@media (max-width: 1024px) { .tightened-section { margin-top: 110px !important; } .full-store-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px) { .nav-logo-text { font-size: 14px; } .compact-hero { min-height: auto; } .hero-visual { height: 310px; } .single-store-carousel { height: 240px; } .form-grid, .repeat-row { grid-template-columns: 1fr; } .full-store-grid { grid-template-columns: 1fr; } }

/* Polish fixes: scoped dot-grid, store grid spacing, centered button, answer prefs */
.site-shell { background: radial-gradient(80% 60% at -5% 18%, rgba(220,38,38,.07) 0%, transparent 65%), #0a0a0a; }
.ambient-grid { position: absolute; inset: 0 auto auto 0; width: 100%; height: 780px; opacity: .52; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.28) 70%, transparent 100%); }
.page-shell .ambient-grid { height: 380px; opacity: .24; }
.subtle-page-grid { opacity: .18 !important; }
.centered-btn { display: flex !important; width: max-content; max-width: max-content; margin: 28px auto 0 !important; align-items: center; justify-content: center; position: relative; top: auto; left: auto; }
.home-store-carousel { text-align: center; }
.stores-page-main { max-width: 1320px; }
.stores-spread-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 30px; margin-top: 46px; }
.store-spread-card { min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding: 26px; border: 1px solid rgba(255,255,255,.075); border-radius: 22px; background: linear-gradient(135deg, rgba(17,17,17,.86), rgba(10,10,10,.92)); box-shadow: 0 18px 56px rgba(0,0,0,.22); transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.store-spread-card:hover { transform: translateY(-5px); border-color: rgba(220,38,38,.32); box-shadow: 0 24px 70px rgba(0,0,0,.32), 0 0 28px rgba(220,38,38,.08); }
.store-spread-image { flex: 1; min-height: 150px; display: grid; place-items: center; }
.store-spread-image img { max-width: 92%; max-height: 145px; object-fit: contain; filter: drop-shadow(0 14px 34px rgba(0,0,0,.45)); }
.store-spread-card h3 { margin: 0; color: #fff; font-size: 16px; font-weight: 900; letter-spacing: -.03em; text-align: center; }
.answer-options { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.answer-options .radio-card { margin: 0; height: 56px; display: flex !important; align-items: center; gap: 10px; cursor: pointer; }
.answer-options .radio-card input { width: auto; margin: 0; accent-color: var(--accent); }
.answer-options .radio-card span { display: inline !important; margin: 0 !important; color: #fff; text-transform: none !important; letter-spacing: 0 !important; font-size: 13px !important; line-height: 1.2; }
.answer-options > input[name="answer_as"] { grid-column: 1 / -1; }
@media (max-width: 1100px) { .stores-spread-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .stores-spread-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } .store-spread-card { min-height: 210px; padding: 18px; } .answer-options { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .stores-spread-grid { grid-template-columns: 1fr; } }

/* Pricing grid - accounts page */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.pricing-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17,17,17,.90), rgba(10,10,10,.96));
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(220,38,38,.36); box-shadow: 0 0 26px rgba(220,38,38,.10); }
.pricing-card-top { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pricing-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(220,38,38,.10); color: var(--accent-light); border: 1px solid rgba(220,38,38,.16); font-weight: 900; }
.pricing-card h3 { margin: 0; color: #fff; font-size: 16px; font-weight: 900; }
.pricing-price { font-size: 32px; font-weight: 900; letter-spacing: -.03em; color: var(--accent-light); }
.pricing-card p { margin: 0; color: var(--fg-muted); font-size: 11px; }
.pricing-cta { text-align: center; margin-top: 32px; }
.pricing-cta .btn { padding: 0 36px; height: 48px; font-size: 14px; }

/* Mentorship page */
.mentorship-card {
  max-width: 560px;
  margin: 36px auto 0;
  padding: 40px;
  border: 1px solid rgba(220,38,38,.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(26,13,13,.90), rgba(17,17,17,.94));
  box-shadow: inset 0 0 24px rgba(220,38,38,.05), 0 16px 56px rgba(0,0,0,.32);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mentorship-card h3 {
  margin: 0;
  color: var(--accent-light);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mentorship-sub { margin: 0; color: var(--fg-muted); font-size: 13px; line-height: 1.65; max-width: 420px; }
.mentorship-divider { width: 60px; height: 1px; background: rgba(220,38,38,.25); }
.mentorship-note { margin: 0; color: #fff; font-size: 15px; font-weight: 700; }
.mentorship-btn { margin-top: 8px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Order form feedback */
.btn-loader { display: inline-flex; align-items: center; gap: 8px; }
.btn-loader::before { content: ''; width: 14px; height: 14px; border: 2px solid rgba(0,0,0,.2); border-top-color: #0a0a0a; border-radius: 50%; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-submit:disabled { opacity: .7; cursor: not-allowed; pointer-events: none; }

.order-success-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
}
.order-success-card {
  text-align: center;
  padding: 48px 40px;
  border: 1px solid rgba(220,38,38,.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(26,13,13,.94), rgba(17,17,17,.96));
  box-shadow: 0 0 60px rgba(220,38,38,.14), inset 0 0 30px rgba(220,38,38,.04);
  max-width: 440px;
  animation: fadeUp .4s var(--ease);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.order-success-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(220,38,38,.14);
  border: 2px solid rgba(220,38,38,.36);
  color: var(--accent-light);
  font-size: 24px;
  font-weight: 900;
}
.order-success-card h2 { margin: 0 0 12px; color: #fff; font-size: 24px; font-weight: 900; }
.order-success-card p { margin: 0 0 22px; color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

/* Hero vouch carousel replacing logo emblem */
.hero-vouch-visual { min-height: 560px; }
.hero-vouch-carousel { position: relative; z-index: 3; width: min(430px, 42vw); height: 545px; border-radius: 26px; border: 1px solid rgba(220,38,38,.24); background: linear-gradient(135deg, rgba(17,17,17,.94), rgba(0,0,0,.86)); box-shadow: 0 30px 90px rgba(0,0,0,.50), 0 0 46px rgba(220,38,38,.16), inset 0 0 24px rgba(220,38,38,.05); overflow: hidden; transform: rotate(2deg); }
.hero-vouch-carousel::before { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to bottom, rgba(0,0,0,.12), transparent 22%, transparent 72%, rgba(0,0,0,.42)); }
.hero-vouch-slide { position: absolute; inset: 14px; margin: 0; opacity: 0; transform: scale(.96) translateY(18px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); border-radius: 20px; overflow: hidden; background: #050505; }
.hero-vouch-slide.active { opacity: 1; transform: scale(1) translateY(0); }
.hero-vouch-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-vouch-caption { position: absolute; z-index: 4; bottom: 56px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(10,10,10,.78); border: 1px solid rgba(255,255,255,.08); color: var(--fg-muted); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; backdrop-filter: blur(12px); }
.hero-vouch-caption span { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 12px rgba(220,38,38,.8); }
.hero-vouch-visual .hero-emblem-halo-1 { width: 520px; height: 520px; }
.hero-vouch-visual .hero-emblem-halo-2 { width: 390px; height: 390px; }
@media (max-width: 1024px) { .hero-vouch-carousel { width: min(430px, 84vw); height: 500px; } .hero-vouch-visual { min-height: 520px; } }
@media (max-width: 700px) { .hero-vouch-carousel { width: min(360px, 88vw); height: 430px; transform: rotate(0deg); } .hero-vouch-visual { height: 470px; min-height: 470px; } .hero-vouch-caption { bottom: 30px; } }
