/* Absolut FUT - extracted from index.html's inline <style>.
   Shared by every page so the browser fetches it once. */

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

:root {
  --red: #cc0000;
  --red-dark: #990000;
  --red-bright: #e80000;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #181818;
  --border: rgba(255,255,255,0.08);
  --border-red: rgba(204,0,0,0.4);
  --text: #ffffff;
  --text-muted: #999999;
  --text-dim: #7a7a7a;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-card: 0 18px 50px -20px rgba(0,0,0,0.7);
  --shadow-red: 0 14px 40px -14px rgba(204,0,0,0.4);
  --ring: 0 0 0 3px rgba(204,0,0,0.4);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a, button, select, input, label { -webkit-tap-highlight-color: transparent; }

/* premium grain overlay - adds subtle texture over flat dark surfaces */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* keyboard focus ring for accessibility */
a:focus-visible, button:focus-visible, select:focus-visible,
input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* -- PROMO BAR -- */
.promo-bar {
  position: relative;
  z-index: 210;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 55%, var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  text-align: center;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.promo-bar-item { display: inline-flex; align-items: center; gap: 0.55rem; }
.promo-bar-ico { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.85; }
.promo-bar-txt {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.92;
}
.promo-bar-pct { font-weight: 700; }
.promo-bar-code {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .promo-bar { font-size: 0.7rem; padding: 0.55rem 0.85rem; gap: 0.6rem; }
}

/* -- NAV -- */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(rgba(8,8,8,0.82), rgba(8,8,8,0.82)), url('bg3_1.webp') bottom center/cover no-repeat;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border-red);
  padding: 0 2rem;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
nav.scrolled {
  background: linear-gradient(rgba(6,6,6,0.95), rgba(6,6,6,0.95)), url('bg3_1.webp') bottom center/cover no-repeat;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
  transition: height 0.25s ease;
}
nav.scrolled .nav-inner { height: 52px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}
.nav-right { display: flex; align-items: center; gap: 0.9rem; position: relative; z-index: 200; }
/* inline desktop links (split around centered logo); hamburger takes over below 1080px */
.nav-inline { display: none; align-items: center; gap: 0.2rem; position: relative; z-index: 200; }
.nav-inline a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-inline a:hover { color: var(--text); background: rgba(204,0,0,0.1); }
.nav-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
}
.nav-logo-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.nav-logo-circle { position: relative; }
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
}
.nav-logo-text .line2 { color: var(--red); }
/* side drawer menu */
.nav-links {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-links.open { visibility: visible; opacity: 1; pointer-events: auto; }
.nav-menu-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: min(380px, 84vw);
  background: #0d0d0d;
  border-right: 1px solid var(--border);
  box-shadow: 10px 0 44px rgba(0,0,0,0.6);
  padding: 92px 0 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.nav-links.open .nav-menu-panel { transform: translateX(0); }
.nav-menu-label {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
  padding: 0 1.75rem 0.9rem;
}
.nav-menu-links { list-style: none; }
.nav-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 800; font-size: 1.35rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  padding: 1rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-menu-links li:last-child a { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-menu-links a::after {
  content: '\203A'; color: var(--text-dim); font-weight: 400; font-size: 1.5rem; line-height: 1;
  transition: transform 0.15s, color 0.15s;
}
.nav-menu-links a:hover { background: rgba(204,0,0,0.08); color: var(--red); padding-left: 2.1rem; }
.nav-menu-links a:hover::after { color: var(--red); transform: translateX(4px); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 0.4rem 1.1rem !important;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { background: var(--red-bright) !important; transform: scale(1.045); box-shadow: 0 0 16px rgba(204,0,0,0.45); }
.nav-hamburger { display: block; background: none; border: none; cursor: pointer; padding: 6px; position: relative; z-index: 200; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1140px) {
  .nav-hamburger { display: none; }
  .nav-inline { display: flex; }
  /* wordmark logo is wide — on desktop it sits left, links flow after it */
  .nav-logo { position: static; transform: none; order: -1; }
  .nav-inline-left { margin-left: 1.1rem; }
  .nav-right { margin-left: auto; }
}

/* -- SERVICE PANELS -- */
.service-panel { display: none; }
.service-panel.active { display: block; animation: panelIn 0.35s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-svc-btn.active {
  background: rgba(204,0,0,0.15);
  border-color: var(--red);
}
.hero-svc-btn.active .hero-svc-icon { background: rgba(204,0,0,0.2); border-color: var(--red); }
.hero-svc-btn.active .hero-svc-icon svg { stroke: var(--red); }

/* -- HERO -- */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh; /* stable on mobile while the URL bar collapses */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('fc26.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,1) 100%),
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(180,0,0,0.18) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 60px 60px, 60px 60px; }
}
.hero-content { position: relative; z-index: 1; max-width: 760px; width: 100%; text-align: center; }
.hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-stats-row {
  animation: heroIn 0.7s cubic-bezier(0.16,0.84,0.44,1) both;
}
.hero-badge { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.28s; }
.hero-actions { animation-delay: 0.4s; }
.hero-stats-row { animation-delay: 0.52s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-stats-row, .hero-grid { animation: none; opacity: 1; transform: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(204,0,0,0.12);
  border: 1px solid var(--border-red);
  color: #ff6666;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 0 24px rgba(204,0,0,0.4); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.hero-stats-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 720px;
  text-align: left;
}
.hero-stats-col {
  flex: 0 0 280px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  min-width: 0;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: inherit;
}
.hero-stat-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(204,0,0,0.1);
  border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-ico svg { width: 19px; height: 19px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-stat-clickable { cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.hero-stat-clickable:hover, .hero-stat-clickable:focus-visible { border-color: var(--border-red); background: rgba(204,0,0,0.06); }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.hero-carousel-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
  min-width: 0;
}
.hero-carousel {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card2);
  box-shadow: var(--shadow-card);
}
.hero-carousel-caption {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
}
.hero-carousel-caption strong { font-weight: 700; }
.hero-carousel-caption a { color: inherit; font-weight: 700; text-decoration: none; cursor: pointer; }
.hero-carousel-caption a:hover { text-decoration: underline; }
.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-carousel img.active { opacity: 1; }
.hero-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.hero-carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s;
}
.hero-carousel-dot.active { background: var(--red); transform: scale(1.2); }
@media (max-width: 680px) {
  .hero-stats-row {
    flex-direction: column;
    align-items: center;
    max-width: 300px;
  }
  .hero-stats-col { width: 100%; height: auto; }
  .hero-carousel-block { flex-direction: column; margin-bottom: 1.75rem; }
  .hero-carousel-caption { text-align: center; }
}
.hero-faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2rem auto 0;
  padding: 0.6rem 1.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hero-faq-btn:hover { background: rgba(204,0,0,0.1); border-color: var(--border-red); color: var(--text); }
.hero-faq-btn svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* -- TRUST BAR -- */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 0.7rem; justify-content: center; }
.trust-item-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(204,0,0,0.1);
  border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
}
.trust-item-ico svg { width: 21px; height: 21px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item-ico.tp { background: rgba(0,182,122,0.12); border-color: rgba(0,182,122,0.45); }
.trust-item-ico.tp svg { stroke: none; fill: #00b67a; }
.trust-item-txt { display: flex; flex-direction: column; line-height: 1.15; }
.trust-item-txt b { font-family: var(--font-head); font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.trust-item-txt span { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }
@media (max-width: 860px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .trust-item { justify-content: flex-start; }
}
@media (max-width: 460px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
}

/* -- SECTIONS -- */
section { padding: 6.5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }

/* -- FAQ -- */
.faq-categories { max-width: 760px; margin: 0 auto; }
.faq-cat { border-bottom: 1px solid var(--border); }
.faq-cat-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 1.5rem 0.25rem;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-cat-q:hover { color: var(--red); }
.faq-cat.open .faq-cat-q { color: var(--red); }
.faq-cat.open > .faq-cat-q .faq-toggle { transform: rotate(180deg); }
.faq-cat-a { display: none; }
.faq-cat.open .faq-cat-a { display: block; }
.faq-list { padding: 0 0.25rem 0.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  padding: 1.35rem 0.25rem;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--red); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: transform 0.2s, background 0.15s, border-color 0.15s;
}
.faq-toggle svg { width: 13px; height: 13px; }
.faq-item.open .faq-toggle { transform: rotate(180deg); }
.faq-cat-q:hover .faq-toggle, .faq-q:hover .faq-toggle { background: rgba(204,0,0,0.12); border-color: var(--red); }
.faq-a { display: none; }
.faq-item.open .faq-a { display: block; }
.faq-a p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 0 0.25rem 1.35rem;
}


/* -- HERO SERVICE BUTTONS -- */
.hero-svc-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0.75rem 0 1.1rem;
}
.hero-svc-label::before,
.hero-svc-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red));
}
.hero-svc-label::after { background: linear-gradient(90deg, var(--border-red), transparent); }
.hero-service-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.25rem auto 2rem;
  max-width: 860px;
}
.hero-svc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 3rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.hero-svc-btn:hover {
  background: rgba(204,0,0,0.12);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.hero-svc-icon {
  width: 66px; height: 66px;
  background: rgba(204,0,0,0.12);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.hero-svc-icon svg { width: 30px; height: 30px; stroke: var(--red); }
.hero-svc-icon svg path { fill: var(--red); }
.hero-svc-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.hero-svc-desc { font-size: 0.85rem; color: var(--text-dim); }
@media (max-width: 580px) {
  .hero-service-btns { grid-template-columns: 1fr; max-width: 320px; }
}

/* -- SERVICE INDEX -- */
.service-index {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.service-index-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.si-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  border-right: 1px solid var(--border);
  transition: background 0.15s;
  position: relative;
}
.si-card:last-child { border-right: none; }
.si-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.si-card:hover { background: rgba(204,0,0,0.06); }
.si-card:hover::after { transform: scaleX(1); }
.si-icon {
  width: 42px; height: 42px;
  background: rgba(204,0,0,0.1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.si-icon svg { width: 20px; height: 20px; stroke: var(--red); }
.si-text { display: flex; flex-direction: column; flex: 1; }
.si-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3px;
}
.si-desc { font-size: 0.78rem; color: var(--text-dim); }
.si-arrow { width: 16px; height: 16px; stroke: var(--text-dim); flex-shrink: 0; transition: stroke 0.15s, transform 0.15s; }
.si-card:hover .si-arrow { stroke: var(--red); transform: translateX(3px); }
@media (max-width: 680px) {
  .service-index-grid { grid-template-columns: 1fr; }
  .si-card { border-right: none; border-bottom: 1px solid var(--border); }
  .si-card:last-child { border-bottom: none; }
  .si-card::after { bottom: auto; top: 0; height: 2px; }
}

/* -- COINS SECTION -- */
#coins { background: var(--bg); }
/* COIN PLATFORM TOGGLE */
.coin-platform-toggle { display: flex; gap: 1rem; margin-bottom: 2rem; }
.coin-plat-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.1rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.coin-plat-btn span { font-family: var(--font-body); font-size: 0.72rem; font-weight: 400; color: var(--text-dim); text-transform: none; letter-spacing: 0; }
.coin-plat-btn:hover { border-color: var(--red); color: var(--text); }
.coin-plat-btn.active { border-color: var(--red); background: rgba(204,0,0,0.1); color: #fff; }
.coin-plat-btn.active span { color: var(--text-muted); }

/* PRICING TIERS */
.coin-tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.coin-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
}
.coin-tier.best { border-color: var(--red); background: linear-gradient(135deg, #180000, #111); }
.coin-tier-range { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.coin-tier-rate { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--red); }
.coin-tier-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: var(--font-head); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; padding: 2px 10px; border-radius: 100px; white-space: nowrap; }

/* COIN CARDS */
.coins-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.coin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem 1.5rem; position: relative; transition: border-color 0.2s, transform 0.2s; overflow: hidden; }
.coin-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 12px 12px 0 0; }
.coin-card:hover { border-color: var(--border-red); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.coin-card.featured { border-color: var(--red); background: linear-gradient(135deg, #180000, #111); }
.coin-card.featured::after { content: 'BEST VALUE'; position: absolute; top: 14px; right: -22px; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; padding: 3px 36px; transform: rotate(45deg); }
.coin-amount { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 0.25rem; }
.coin-amount span { color: var(--red); }
.coin-unit { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.coin-price { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 0.25rem; }
.coin-per { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.coin-btn { width: 100%; text-align: center; background: rgba(204,0,0,0.15); color: #ff6666; border: 1px solid var(--border-red); border-radius: var(--radius); padding: 0.65rem; font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; transition: background 0.15s, color 0.15s; }
.coin-btn:hover, .coin-card.featured .coin-btn { background: var(--red); color: #fff; }

/* COINS TWO-COLUMN LAYOUT */
.coins-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; margin-top: 2rem; }
@media (max-width: 900px) {
  .coins-layout { grid-template-columns: 1fr; }
  .coins-form-panel { padding: 1.5rem; }
}
.coins-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.coins-form-panel .form-title { margin-bottom: 1.5rem; }
.coins-form-panel form { flex: 1; display: flex; flex-direction: column; }
.coins-form-panel .form-group:last-of-type { flex: 1; }
.coins-form-panel .form-group:last-of-type textarea { min-height: 80px; height: 100%; }
.coins-form-panel .form-buttons { margin-top: 1.5rem; }
.coins-right-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.coins-hiw, .coins-packs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.coins-panel-label {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hiw-step { display: flex; align-items: flex-start; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hiw-step:last-child { border-bottom: none; }
.hiw-num { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; color: var(--red); min-width: 2rem; line-height: 1.3; flex-shrink: 0; }
.hiw-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.hiw-desc { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }
.pack-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 0.6rem;
}
.pack-strip:last-child { margin-bottom: 0; }
.pack-strip:hover { border-color: rgba(204,0,0,0.5); background: rgba(204,0,0,0.05); }
.pack-strip.active { border-color: var(--red); background: rgba(204,0,0,0.1); }
.pack-strip-amount { font-family: var(--font-head); font-size: 1rem; font-weight: 900; color: var(--text); flex: 1; }
.pack-strip-per { font-size: 0.72rem; color: var(--text-dim); margin-right: 1rem; }
.pack-strip-price { font-family: var(--font-head); font-size: 1rem; font-weight: 900; color: var(--red); min-width: 4rem; text-align: right; }
.pack-strip { position: relative; }
.pack-strip-badge {
  position: absolute;
  top: -8px; right: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(204,0,0,0.45);
}
.pack-strip-badge.value { background: #00b67a; box-shadow: 0 2px 8px rgba(0,182,122,0.45); }

/* -- RANK SLIDER (FUT Champions) -- */
.rank-slider-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.85rem; }
.rank-slider-name { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); line-height: 1; }
.rank-slider-wins { font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; color: var(--red); }
.form-group input.rank-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 20px;
  background: transparent;
  border: none; border-radius: 0; padding: 0;
  outline: none; cursor: pointer;
  margin: 0.3rem 0 0;
}
.form-group input.rank-slider:focus { border: none; }
/* WebKit: dedicated track + centered thumb */
.rank-slider::-webkit-slider-runnable-track {
  height: 6px; border-radius: 100px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) var(--fill,50%), rgba(255,255,255,0.09) var(--fill,50%), rgba(255,255,255,0.09) 100%);
}
.rank-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--red);
  box-shadow: 0 2px 6px rgba(0,0,0,0.55);
  margin-top: -6px;
  transition: transform 0.12s ease;
  cursor: grab;
}
.rank-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.rank-slider:active::-webkit-slider-thumb { transform: scale(1.12); cursor: grabbing; }
/* Firefox */
.rank-slider::-moz-range-track { height: 6px; border-radius: 100px; background: rgba(255,255,255,0.09); }
.rank-slider::-moz-range-progress { height: 6px; border-radius: 100px; background: var(--red); }
.rank-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--red);
  box-shadow: 0 2px 6px rgba(0,0,0,0.55); cursor: grab;
}
.rank-slider:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(204,0,0,0.35), 0 2px 6px rgba(0,0,0,0.55); }
.rank-slider-scale { display: flex; justify-content: space-between; margin-top: 0.7rem; padding: 0 1px; }
.rank-slider-scale span { font-size: 0.68rem; color: var(--text-dim); font-variant-numeric: tabular-nums; cursor: pointer; padding: 3px 6px; border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s; }
.rank-slider-scale span:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.rank-slider-scale span.active { color: var(--red); font-weight: 800; }

/* PRICE DISPLAY */
.price-display {
  background: rgba(204,0,0,0.07);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.price-display.empty { font-size: 0.88rem; font-family: var(--font-body); font-weight: 400; color: var(--text-dim); }
.form-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.5rem; }
.form-submit-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.form-submit-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ORDER FORM */
.order-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  max-width: 620px;
}
.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,80,0.08);
  border: 1px solid rgba(0,180,80,0.25);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.82rem;
  color: #4caf50;
}
.trust-signal svg { flex-shrink: 0; }
.form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}
.form-notice {
  background: rgba(204,0,0,0.07);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #ff8888;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.form-submit:hover { background: var(--red-bright); box-shadow: 0 0 28px rgba(204,0,0,0.35); }
.form-submit:disabled { background: #444; cursor: not-allowed; }
.payment-note {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.9rem;
}

/* -- DIVIDER -- */
.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* -- SERVICES GRID -- */
#services { background: var(--bg-card); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--border-red); box-shadow: var(--shadow-red); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.12);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.15s;
}
.service-link:hover { gap: 10px; }

/* -- TRADING -- */
#trading { background: var(--bg); }
.trading-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.trading-features { list-style: none; margin: 2rem 0; }
.trading-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.trading-features li:last-child { border-bottom: none; }
.feat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 28px;
}
.feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.feat-desc { font-size: 0.85rem; color: var(--text-muted); }
.trading-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.trading-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tc-logo {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.tc-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; }
.tc-sub { font-size: 0.8rem; color: var(--text-dim); }
.trading-perks { list-style: none; }
.trading-perks li {
  display: flex;
  gap: 10px;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.trading-perks li:last-child { border-bottom: none; }
.trading-perks li svg { width: 16px; height: 16px; stroke: var(--red); flex-shrink: 0; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.trading-proof-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 1.5rem 0 0.85rem;
}
.trading-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.trading-proof-item { position: relative; display: block; cursor: zoom-in; }
.trading-proof-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.trading-proof-item:hover .trading-proof-frame {
  border-color: rgba(204,0,0,0.6);
  box-shadow: 0 14px 34px -14px rgba(204,0,0,0.55), var(--shadow-card);
  transform: translateY(-3px);
}
.trading-proof-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.trading-proof-item:hover img { transform: scale(1.08); }
.trading-proof-zoom-hint {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.trading-proof-item:hover .trading-proof-zoom-hint { opacity: 1; }
.trading-proof-zoom-hint svg {
  width: 32px; height: 32px; padding: 8px;
  color: #fff;
  background: rgba(10,10,10,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: scale(0.85);
  transition: transform 0.25s ease;
}
.trading-proof-item:hover .trading-proof-zoom-hint svg { transform: scale(1); }

/* -- BOOSTING -- */
#boosting { background: var(--bg); }
.boost-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.boost-reviews { margin-top: 3rem; }
.boost-reviews-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.boost-reviews-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}
.boost-reviews-strip img {
  height: 220px;
  width: auto;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  cursor: pointer;
}
.boost-reviews-more {
  height: 220px;
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-red);
  border-radius: var(--radius-lg);
  color: #ff6666;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background 0.15s, border-color 0.15s;
}
.boost-reviews-more:hover { background: rgba(204,0,0,0.12); border-color: var(--red); }
.boost-reviews-more svg { width: 22px; height: 22px; stroke: #ff6666; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* -- REVIEW LIGHTBOX -- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.lightbox-gallery {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  max-width: 960px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0.5rem;
}
.lightbox-overlay.gallery-mode .lightbox-gallery { display: grid; }
.lightbox-overlay.gallery-mode > img { display: none; }
.lightbox-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: transform 0.15s, border-color 0.15s;
}
.lightbox-gallery img:hover { border-color: var(--red); transform: translateY(-2px); }
.lightbox-overlay.gallery-mode .lightbox-prev,
.lightbox-overlay.gallery-mode .lightbox-next { display: none; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--border-red);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1000;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(204,0,0,0.3); border-color: var(--red); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 680px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}
.boost-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.boost-type-icon {
  width: 62px; height: 62px;
  background: rgba(204,0,0,0.10);
  border: 1px solid rgba(204,0,0,0.45);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
#btn-objectives .boost-type-icon img { filter: brightness(3); }
.boost-type-icon img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: brightness(1);
  transition: filter 0.2s;
}
.boost-type-btn:hover { border-color: var(--border-red); color: var(--text); transform: translateY(-4px); }
.boost-type-btn:hover .boost-type-icon { background: rgba(204,0,0,0.18); border-color: var(--red); box-shadow: 0 0 10px rgba(204,0,0,0.25); }
.boost-type-btn:hover .boost-type-icon img { filter: sepia(1) saturate(10) hue-rotate(310deg) brightness(0.85); }
.boost-type-btn.active { border-color: var(--red); background: linear-gradient(135deg, #160000, #111); color: var(--text); }
.boost-type-btn.active .boost-type-icon { background: rgba(204,0,0,0.20); border-color: var(--red); box-shadow: 0 0 14px rgba(204,0,0,0.4); }
.boost-type-btn.active .boost-type-icon img { filter: sepia(1) saturate(10) hue-rotate(310deg) brightness(0.9); }
@media (max-width: 680px) { .boost-selector { grid-template-columns: 1fr; } }
.boost-tier-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.boost-tier-range {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.boost-tier-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.boost-tier-note { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.boost-features-mini { list-style: none; text-align: left; }
.boost-features-mini li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  display: flex; align-items: center; gap: 6px;
}
.boost-features-mini li::before { content: '›'; color: var(--red); font-weight: 700; }
.boost-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  max-width: 620px;
}

/* -- COMMUNITY -- */
#community { background: var(--bg); }
.community-discord-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #160000, #111);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: border-color 0.2s;
}
.community-discord-card:hover { border-color: rgba(204,0,0,0.5); }
.community-discord-left { display: flex; gap: 1.5rem; align-items: center; }
.community-discord-left > div { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.comm-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.5rem; }
.comm-desc { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }
.community-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.community-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}
.community-features li::before { content: '·'; color: var(--red); font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.community-count {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}
.community-count span { color: var(--red); }
.socials-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { transform: translateY(-3px); }
.instagram-btn:hover { border-color: #e1306c; background: rgba(225,48,108,0.08); color: #e1306c; }
.instagram-btn:hover svg { stroke: #e1306c; }
.tiktok-btn:hover { border-color: #69c9d0; background: rgba(105,201,208,0.08); color: #69c9d0; }
.tiktok-btn:hover svg { fill: #69c9d0; }
.x-btn:hover { border-color: #aaa; background: rgba(170,170,170,0.08); color: #ddd; }
.x-btn:hover svg { fill: #ddd; }
@media (max-width: 700px) {
  .community-discord-card { grid-template-columns: 1fr; gap: 2rem; }
  .community-discord-left { flex-direction: column; }
}

/* -- LATEST REVIEWS STRIP -- */
.reviews-strip-section { position: relative; padding: 4.5rem 1.5rem; overflow: hidden; }
.reviews-strip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 40%, rgba(204,0,0,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-strip-head { position: relative; z-index: 1; text-align: center; margin-bottom: 0.5rem; }
.reviews-strip-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.reviews-strip-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.reviews-strip-desc { color: var(--text-muted); font-size: 0.92rem; max-width: 440px; margin: 0 auto; }

.reviews-strip-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}
.reviews-strip-item {
  position: relative;
  width: 340px;
  max-width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}
/* soft ambient glow behind each card - always faintly on, blooms on hover */
.reviews-strip-item::before {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 25%, rgba(204,0,0,0.6), transparent 65%);
  filter: blur(20px);
  opacity: 0.16;
  animation: reviewGlowPulse 5s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
.reviews-strip-item:nth-child(2)::before { animation-delay: -2.5s; }
.reviews-strip-item:hover::before { opacity: 0.55; }
@keyframes reviewGlowPulse { 0%, 100% { opacity: 0.16; } 50% { opacity: 0.3; } }

.reviews-strip-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.reviews-strip-item:hover .reviews-strip-frame {
  border-color: rgba(204,0,0,0.6);
  box-shadow: 0 20px 55px -18px rgba(204,0,0,0.6), var(--shadow-card);
  transform: translateY(-4px);
}
.reviews-strip-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}
.reviews-strip-item:hover img { transform: scale(1.08); }

.reviews-strip-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.reviews-strip-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); animation: pulse 1.5s infinite; }

/* centered magnifier badge - signals the image is click-to-zoom, fades in on hover */
.reviews-strip-zoom-hint {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.reviews-strip-item:hover .reviews-strip-zoom-hint { opacity: 1; }
.reviews-strip-zoom-hint svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: #fff;
  background: rgba(10,10,10,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: scale(0.85);
  transition: transform 0.25s ease;
}
.reviews-strip-item:hover .reviews-strip-zoom-hint svg { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reviews-strip-item::before, .reviews-strip-badge::before { animation: none; }
}
.community-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.community-icon.discord-icon { background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.3); }
.community-icon.instagram-icon { background: rgba(200,60,120,0.15); border: 1px solid rgba(200,60,120,0.3); }
.community-icon svg { width: 30px; height: 30px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.community-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.community-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.6; }
.btn-discord {
  background: rgba(204,0,0,0.12);
  color: var(--red);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-discord:hover { background: rgba(204,0,0,0.28); color: #fff; }
.btn-instagram {
  background: rgba(200,60,120,0.15);
  color: #e080b0;
  border: 1px solid rgba(200,60,120,0.4);
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-instagram:hover { background: rgba(200,60,120,0.3); color: #fff; }

/* -- CURRENCY SELECTOR -- */
.currency-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.currency-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
}
#currency-select {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background: var(--red);
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  height: 38px;
  padding: 0 1.8rem 0 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
}
#currency-select:hover { background: var(--red-bright); }
#currency-select option { background: #111; color: #fff; }

.nav-inline a.nav-auth-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  height: 38px;
  padding: 0 1.1rem;
  border-radius: var(--radius);
}
.nav-inline a.nav-auth-btn:hover { background: var(--red-bright); color: #fff; }

.profile-stat-ico.coin { background: none; }
.profile-stat-ico.coin img { width: 100%; height: 100%; object-fit: contain; }

/* -- CONTACT MODAL -- */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.contact-modal-overlay.active { display: flex; }
.contact-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  animation: panelIn 0.25s ease;
}
.contact-modal h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.contact-modal p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.contact-modal-options { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-group + .contact-group { margin-top: 1.5rem; }
.contact-group-label { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg);
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, background 0.2s;
}
.contact-option:hover { border-color: var(--red); background: rgba(204,0,0,0.08); }
.contact-option svg { flex-shrink: 0; }
.contact-option-label { display: flex; flex-direction: column; gap: 2px; }
.contact-option-sub { font-family: var(--font-body); font-size: 0.75rem; font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.contact-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 1.4rem;
}
.contact-modal-close:hover { color: var(--text); }

/* -- FOOTER -- */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-red);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); margin-top: 0.75rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-muted); }
.footer-payments {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.pay-label {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim);
}
.pay-marks { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.pay-chip {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.03em; color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  line-height: 1;
}
.footer-disclaimer {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* -- SUCCESS MODAL -- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.modal-icon {
  width: 64px; height: 64px;
  background: rgba(204,0,0,0.12);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.modal-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.modal h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.75rem; }
.modal p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.75rem; }
.modal-close { width: 100%; }

/* -- SCROLL ANIMATION -- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .trading-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .order-form-wrap, .boost-form-wrap { padding: 1.5rem; }
  .hero-stats { gap: 2rem; }
}

/* -- SECTION DECORATIONS -- */
#coins.service-panel, #trading.service-panel, #boosting.service-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.92) 100%),
    url('background.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
}
@media (max-width: 680px) {
  #coins.service-panel, #trading.service-panel, #boosting.service-panel { background-attachment: scroll, scroll; }
}
.section-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.di { position: absolute; display: block; color: var(--red); }
#coins .container, #trading .container, #boosting .container { position: relative; z-index: 1; }
@keyframes dfloat { 0%,100%{transform:rotate(var(--dr,0deg)) translateY(0)} 50%{transform:rotate(var(--dr,0deg)) translateY(-14px)} }
.di { animation: dfloat 8s ease-in-out infinite; }
.di[src] { animation: none; }
.di:nth-child(2){animation-delay:-2s;animation-duration:10s}
.di:nth-child(3){animation-delay:-4s;animation-duration:7s}
.di:nth-child(4){animation-delay:-1.5s;animation-duration:9s}
.di:nth-child(5){animation-delay:-3.5s;animation-duration:11s}
.di:nth-child(6){animation-delay:-5s;animation-duration:8.5s}

/* -- CHAT BUBBLE -- */
.chat-bubble {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  z-index: 220;
  transition: transform 0.15s, background 0.15s;
}
.chat-bubble:hover { background: var(--red-bright); transform: scale(1.06); }
.chat-bubble svg { width: 26px; height: 26px; stroke: #fff; }
@media (max-width: 680px) {
  .chat-bubble { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .chat-bubble svg { width: 23px; height: 23px; }
}

/* ── MOBILE APP SHELL (bottom tab bar + sticky shop CTA) ── */
.tab-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  top: auto; /* the global nav rule sets top:0 — must not stretch */
  z-index: 240;
  display: none;
  border-bottom: none;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
}
.tab-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 560px;
  margin: 0 auto;
}
.tab-item {
  appearance: none;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 48px;
  padding: 0.3rem 0.2rem;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s;
}
.tab-item svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tab-item:active { color: var(--text); }
.tab-item.active { color: var(--red); }
/* number inputs: hide the tiny native spinners; mobile gets ± steppers (100K/500K/1M) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.amount-stepper { display: none; gap: 0.4rem; margin-top: 0.5rem; }
.amount-stepper button, .amount-stepper-desktop button {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.6rem 0.3rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.amount-stepper button:active, .amount-stepper-desktop button:active { background: rgba(204,0,0,0.15); border-color: var(--border-red); }
.amount-stepper-desktop { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.amount-stepper-desktop button { flex: 1; }
@media (max-width: 680px) {
  .amount-stepper { display: grid; grid-template-columns: repeat(3, 1fr); }
  .amount-stepper-desktop { display: none; }
}
.coins-sticky-cta {
  position: fixed;
  left: 0.75rem; right: 0.75rem;
  bottom: calc(62px + env(safe-area-inset-bottom) + 0.6rem);
  z-index: 230;
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(17,17,17,0.97);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.6rem 0.55rem 1rem;
  box-shadow: 0 12px 34px rgba(0,0,0,0.65);
}
.coins-sticky-cta.visible { display: flex; }
.coins-sticky-info { flex: 1; min-width: 0; line-height: 1.15; }
.coins-sticky-label {
  display: block;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coins-sticky-price { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--red); }
.coins-sticky-btn {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.coins-sticky-btn:active { background: var(--red-bright); transform: scale(0.98); }
@media (max-width: 680px) {
  .tab-bar { display: block; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .chat-bubble { bottom: calc(74px + env(safe-area-inset-bottom)); }
  /* tab bar replaces the hamburger on phones; logo left, currency right */
  .nav-hamburger { display: none; }
  .nav-logo { position: static; transform: none; }
  .nav-logo img { height: 24px !important; width: auto !important; max-width: calc(100vw - 180px); object-fit: contain; object-position: left center; }
  .nav-inner { justify-content: space-between; height: 56px; }
  nav.scrolled .nav-inner { height: 48px; }
  #currency-select { font-size: 0.85rem; padding: 0.35rem 1.6rem 0.35rem 0.9rem; }
  /* iOS Safari zooms into inputs under 16px — keep form text at 16px on phones */
  input:not([type="checkbox"]):not([type="range"]), select, textarea { font-size: 16px !important; }
  /* bigger tap targets for the win-count scale */
  .rank-slider-scale span { padding: 7px 8px; }
}
@media (min-width: 681px) {
  .coins-sticky-cta { display: none !important; }
}

/* -- TRACK ORDER -- */
.track-search { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 0 2rem; }
.track-search input {
  flex: 1;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.15s;
}
.track-search input:focus { border-color: var(--red); outline: none; }
.track-search-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.15s;
}
.track-search-btn:hover { background: var(--red-bright); }
.track-group-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin: 1.75rem 0 0.75rem;
}
.track-group-label:first-child { margin-top: 0; }
.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.track-row:hover { border-color: var(--red); transform: translateY(-2px); }
.track-row-left .id { font-family: var(--font-head); font-weight: 800; font-size: 1rem; }
.track-row-left .meta { font-size: 0.8rem; color: var(--text-dim); margin-top: 2px; }
.track-row-right { display: flex; align-items: center; gap: 0.9rem; }
.track-row-right .total { font-family: var(--font-head); font-weight: 800; color: var(--red); }
.track-empty { color: var(--text-muted); font-size: 0.9rem; padding: 1rem 0; }
@media (max-width: 500px) {
  .track-search { flex-direction: column; }
  .track-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ----------------------------------------------------------
   CHECKOUT / ORDER / PROFILE — full-screen app views
   ---------------------------------------------------------- */
.app-view {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}
.app-view.active { display: block; }
body.app-open { overflow: hidden; }

.app-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.app-bar-left { display: flex; align-items: center; gap: 1.1rem; min-width: 0; z-index: 2; flex: 1 1 auto; overflow: hidden; }
.app-bar img.app-logo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  height: 30px; width: auto; max-width: min(45vw, 220px); object-fit: contain; object-position: center;
  display: block; cursor: pointer; z-index: 1;
}
.app-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.3rem 0.1rem;
  transition: color 0.15s; white-space: nowrap; flex-shrink: 0;
}
.app-back:hover { color: var(--red); }
/* The logo is absolutely centred in the bar, so on narrow screens it runs
   into the back button. Drop the label and keep the arrow — the button
   already carries an aria-label for screen readers. */
@media (max-width: 560px) {
  .app-back-label { display: none; }
  .app-back { padding: 0.3rem 0.4rem 0.3rem 0; }
}
.app-bar-right { display: flex; align-items: center; gap: 0.75rem; }
.app-bar-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; border-radius: 100px;
  padding: 0.45rem 0.9rem; font-size: 0.8rem; font-weight: 600;
  font-family: var(--font-body); transition: background 0.15s, border-color 0.15s;
}
.app-bar-btn:hover { background: rgba(204,0,0,0.12); border-color: var(--border-red); }
.app-bar-btn svg { width: 15px; height: 15px; }

.app-wrap { max-width: 1120px; margin: 0 auto; padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem) 4rem; }
.app-page-head { margin-bottom: 1.75rem; }
/* h2, not h1: these overlay views (checkout / track / terms / privacy / order)
   live in the same document as the homepage, so an h1 here would give the page
   five competing h1s and dilute the hero heading for search engines. */
.app-page-head h2 {
  font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900; letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.05;
}
.app-page-head p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.35rem; }
.legal-updated { color: var(--text-dim); font-size: 0.8rem; margin-bottom: 1.75rem; }
.legal-content { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; max-width: 780px; }
.legal-content h2 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); margin: 2rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 1.25rem 0 0.5rem; }
.legal-content p { margin-bottom: 0.85rem; }
.legal-content ul, .legal-content ol { margin: 0 0 0.85rem 1.25rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--text); }

/* -- CHECKOUT STEPS (Select / Checkout / Delivery) -- */
.checkout-steps { margin-top: 2rem; margin-bottom: 1.75rem; }
.checkout-steps-labels {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 0.7rem;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.cs-side { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.cs-side.left { justify-content: flex-end; }
.cs-side.right { justify-content: flex-start; }
.cs-step { color: var(--text-dim); transition: color 0.2s; white-space: nowrap; }
.cs-step.done { color: var(--text-muted); }
.cs-step.active { color: var(--red-bright); }
.cs-line { width: 30px; height: 1px; background: var(--border); flex-shrink: 0; }
.cs-line.done { background: var(--border-red); }
.checkout-steps-dots { display: flex; align-items: center; justify-content: center; gap: 0.55rem; margin-top: 0.65rem; }
.cs-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--text-dim); opacity: 0.45; transform: rotate(45deg); transition: background 0.2s, opacity 0.2s, box-shadow 0.2s; }
.cs-dot.done { background: var(--text-muted); opacity: 0.85; }
.cs-dot.active { background: var(--red-bright); opacity: 1; box-shadow: 0 0 10px rgba(232,0,0,0.55); }
@media (max-width: 480px) {
  .checkout-steps-labels { column-gap: 0.45rem; font-size: 0.82rem; }
  .cs-side { gap: 0.45rem; }
  .cs-line { width: 18px; }
}

/* checkout grid */
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.co-col { display: flex; flex-direction: column; gap: 1.5rem; }
.co-col.side { position: sticky; top: 84px; }
@media (max-width: 900px) { .co-col.side { position: static; } }

.co-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}
.co-panel-head {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
  letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.co-panel-head svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* discount / rewards tabs */
.co-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.co-tab {
  flex: 1; text-align: center; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: var(--radius);
  padding: 0.6rem 0.5rem; font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.co-tab.active { background: var(--red); color: #fff; border-color: var(--red); }
.co-tabpane { display: none; }
.co-tabpane.active { display: block; }
.co-sublabel { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

.co-code-row { display: flex; gap: 0.5rem; }
.co-code-row input {
  flex: 1; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); padding: 0.7rem 0.85rem;
  font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase;
}
.co-code-row input:focus { outline: none; border-color: var(--red); box-shadow: var(--ring); }
.co-code-btn {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text);
  border-radius: var(--radius); padding: 0 1.1rem; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.85rem; transition: background 0.15s;
}
.co-code-btn:hover { background: var(--red); border-color: var(--red); }
.co-code-msg { font-size: 0.78rem; margin-top: 0.5rem; min-height: 1rem; }
.co-code-msg.ok { color: #22c55e; }
.co-code-msg.err { color: var(--red-bright); }

.co-applied {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.4);
  border-radius: var(--radius); padding: 0.75rem 0.9rem;
}
.co-applied .code { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.05em; color: #22c55e; }
.co-applied .pct { color: var(--text-muted); font-size: 0.85rem; margin-left: 0.4rem; }
.co-applied .rm { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1.2rem; line-height: 1; padding: 0 0.2rem; }
.co-applied .rm:hover { color: var(--red-bright); }

.co-reward-note {
  margin-top: 0.9rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 0.9rem; font-size: 0.82rem; color: var(--text-muted);
}
.co-reward-note b.pts { color: var(--red); }
.co-reward-note b.cash { color: #22c55e; }

.co-cash-balance { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; }
.co-cash-balance .amt { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: #22c55e; }
.co-cash-balance .lbl { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.co-toggle-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text-muted); cursor: pointer; }

/* EA account fields */
.co-field { margin-bottom: 1rem; }
.co-field:last-child { margin-bottom: 0; }
.co-field-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
.co-field-label label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.co-help {
  display: inline-flex; align-items: center; gap: 0.3rem; cursor: pointer;
  background: none; border: none; color: var(--red); font-size: 0.76rem; font-weight: 600; font-family: var(--font-body);
}
.co-help svg { width: 13px; height: 13px; }
.co-input-wrap { position: relative; }
.co-input-wrap input {
  width: 100%; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); padding: 0.8rem 2.6rem 0.8rem 0.9rem;
  font-family: var(--font-body); font-size: 0.92rem;
}
.co-input-wrap input:focus { outline: none; border-color: var(--red); box-shadow: var(--ring); }
.co-input-ico {
  position: absolute; right: 0.7rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text-muted); pointer-events: none;
}
.co-input-ico.tint-mail { background: rgba(255,255,255,0.08); color: #fff; }
.co-input-ico.tint-lock { background: rgba(255,255,255,0.08); color: #fff; }
.co-input-ico svg { width: 15px; height: 15px; }
.co-secure-line { display: flex; align-items: center; gap: 0.45rem; margin-top: 0.9rem; font-size: 0.78rem; color: var(--text-dim); }
.co-secure-line svg { width: 13px; height: 13px; color: #22c55e; }

/* order summary */
.co-summary-amount {
  display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1rem;
}
.co-summary-amount .k { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }
.co-summary-amount .v { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; }
.co-plat-chip {
  background: rgba(204,0,0,0.15); border: 1px solid var(--border-red); color: var(--red);
  border-radius: var(--radius-sm); padding: 0.15rem 0.5rem; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.co-row { display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 0; font-size: 0.92rem; }
.co-row .lbl { color: var(--text-muted); }
.co-row .val { font-weight: 600; }
.co-row.discount .val { color: #22c55e; }
.co-row.total {
  margin-top: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em;
}
.co-row.total .lbl { color: var(--red); font-size: 1.05rem; font-weight: 800; }
.co-row.total .val { color: var(--red); font-size: 1.5rem; font-weight: 900; }
.co-row.hide { display: none; }

/* terms + payment */
.co-terms { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.co-terms input { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--red); flex-shrink: 0; cursor: pointer; }
.co-terms a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.co-terms a:hover { color: var(--red); }


.pay-methods-info { margin-top: 0.2rem; }
.pay-methods-label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.pay-methods-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.65rem; }
.pay-choice-grid { display: grid; gap: 0.65rem; margin-top: 0.8rem; }
.co-pay-btn {
  width: 100%; background: var(--bg-card); color: var(--text); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.95rem 1rem; cursor: pointer; font-family: var(--font-head);
  font-weight: 800; font-size: 0.98rem; letter-spacing: 0.03em; text-transform: uppercase;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s, border-color 0.15s;
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; text-align: left;
}
.co-pay-btn:hover:not(:disabled) { border-color: var(--red); box-shadow: var(--shadow-red); }
.co-pay-btn:active:not(:disabled) { transform: scale(0.98); }
.co-pay-btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.co-pay-btn.primary { background: var(--bg-card); color: var(--text); border-color: var(--border); box-shadow: none; }
.co-pay-btn.selected { border-color: var(--red); box-shadow: var(--shadow-red); background: rgba(204,0,0,0.14); }
.co-pay-btn.paypal { background: rgba(0,112,186,0.12); border-color: rgba(0,112,186,0.55); color: #e8f4ff; }
.co-pay-btn.paypal:hover:not(:disabled) { border-color: #009cde; box-shadow: 0 18px 50px -22px rgba(0,156,222,0.75); }
.co-pay-btn.crypto { background: rgba(22,163,74,0.13); border-color: rgba(34,197,94,0.55); color: #ecfdf5; }
.co-pay-btn.crypto:hover:not(:disabled) { border-color: #22c55e; box-shadow: 0 18px 50px -22px rgba(34,197,94,0.72); }
.pay-btn-main { display: block; }
.pay-btn-sub { display: block; margin-top: 0.18rem; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--text-muted); }
.co-pay-btn.primary .pay-btn-sub { color: var(--text-muted); }
.co-pay-btn.selected .pay-btn-sub { color: rgba(255,255,255,0.78); }
.co-pay-btn.paypal .pay-btn-sub, .co-pay-btn.crypto .pay-btn-sub { color: rgba(255,255,255,0.68); }
.pay-pill { font-family: var(--font-body); font-size: 0.68rem; font-weight: 800; padding: 0.22rem 0.48rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); color: var(--text-muted); white-space: nowrap; }
.co-pay-btn.primary .pay-pill { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.co-pay-btn.selected .pay-pill { background: rgba(255,255,255,0.18); color: #fff; }
.co-pay-btn.paypal .pay-pill { background: rgba(0,156,222,0.22); color: #8bd8ff; }
.co-pay-btn.crypto .pay-pill { background: rgba(34,197,94,0.2); color: #86efac; }
.co-proceed-btn {
  width: 100%; margin-top: 1rem; background: var(--red); color: #fff; border: none;
  border-radius: var(--radius); padding: 1rem; cursor: pointer; font-family: var(--font-head);
  font-weight: 900; font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s; box-shadow: var(--shadow-red);
}
.co-proceed-btn:hover:not(:disabled) { background: var(--red-bright); }
.co-proceed-btn:active:not(:disabled) { transform: scale(0.98); }
.co-proceed-btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

/* -- ORDER / DELIVERY VIEW -- */
.order-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-card); margin-bottom: 1.25rem;
}
.order-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.order-id-lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.order-id-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.02em; }
.status-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 100px;
  padding: 0.45rem 0.9rem; font-size: 0.82rem; font-weight: 700; white-space: nowrap;
  background: rgba(147,51,234,0.14); border: 1px solid rgba(147,51,234,0.45); color: #c084fc;
}
.status-badge.processing { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.45); color: #60a5fa; }
.status-badge.completed { background: rgba(34,197,94,0.14); border-color: rgba(34,197,94,0.45); color: #4ade80; }
.status-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.4s infinite; }
.status-badge.completed .dot { animation: none; }

.order-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.5rem; }
.order-meta .mk { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.order-meta .mv { font-weight: 700; font-size: 1.05rem; }
.order-meta .mv.coins { color: var(--red); font-family: var(--font-head); }

.order-breakdown { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }

.delivery-head { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 1rem; }
.delivery-head svg { width: 18px; height: 18px; color: var(--red); }
.delivery-status-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.delivery-status-txt { color: #60a5fa; font-weight: 600; font-size: 0.95rem; }
.delivery-status-txt.completed { color: #4ade80; }
.delivery-pct { font-weight: 700; font-size: 0.95rem; color: var(--text-muted); }
.delivery-bar { height: 10px; background: var(--bg-card2); border-radius: 100px; overflow: hidden; border: 1px solid var(--border); }
.delivery-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--red-dark), var(--red-bright)); border-radius: 100px; transition: width 0.6s ease; }
.delivery-coins { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.2rem; }
.delivery-coins .dk { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.delivery-coins .dv { font-weight: 700; font-size: 1.05rem; }
.delivery-coins .dv.done { color: #22c55e; font-family: var(--font-head); }

.cred-row { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; font-size: 0.92rem; }
.cred-row .ck { color: var(--text-muted); }
.cred-row .cv { font-family: var(--font-head); letter-spacing: 0.05em; }
.support-card { display: flex; align-items: center; gap: 0.9rem; }
.support-ico { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(147,51,234,0.14); color: #a855f7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.support-ico svg { width: 22px; height: 22px; }
.support-card b { display: block; font-size: 1rem; }
.support-card span { font-size: 0.85rem; color: var(--text-muted); }
.support-card a { color: var(--red); }

/* -- PROFILE VIEW -- */
.profile-hero {
  background: linear-gradient(135deg, rgba(204,0,0,0.10), rgba(147,51,234,0.06));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem 1.75rem; align-items: center; margin-bottom: 1.5rem;
}
@media (max-width: 700px) { .profile-hero { grid-template-columns: 1fr; text-align: center; } }
.profile-avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 900; color: #fff; box-shadow: var(--shadow-red); margin: 0 auto;
}
.profile-name { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; line-height: 1.1; }
.profile-email { color: var(--text-muted); font-size: 0.9rem; }

/* -- Account: editable display name. This is the handle published on the
   leaderboard and on public trader profiles, so it lives here rather than
   being frozen at signup. -- */
.account-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.account-section h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 0.3rem;
}
.account-section p.account-hint { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 0.9rem; }
.account-name-row { display: flex; gap: 0.6rem; align-items: flex-start; }
.account-name-row .co-input-wrap { flex: 1; margin: 0; }
.account-name-row button { flex-shrink: 0; white-space: nowrap; }
.account-name-row button[disabled] { opacity: 0.45; cursor: not-allowed; }
@media (max-width: 480px) {
  .account-name-row { flex-direction: column; }
  .account-name-row button { width: 100%; }
}
.profile-stats { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) { .profile-stats { grid-template-columns: 1fr; } }
.profile-stat { display: flex; align-items: center; gap: 0.9rem; background: rgba(0,0,0,0.35); border: 1px solid var(--border-red); border-radius: var(--radius); padding: 1rem 1.1rem; }
.profile-stat-ico { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.profile-stat-ico.tier { background: rgba(147,51,234,0.14); color: #a855f7; }
.profile-stat-ico.cash { background: rgba(16,185,129,0.14); color: #10b981; }
.profile-stat-ico svg { width: 22px; height: 22px; }
.profile-stat .sk { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.profile-stat .sv { font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; }
.profile-stat .sv.purple { color: #a855f7; }
.profile-stat .sv.green { color: #22c55e; }
.profile-stat .ssub { font-size: 0.74rem; color: var(--text-dim); }
.stat-dual-body { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.stat-dual-row { display: flex; gap: 1.75rem; }
.stat-dual-col { display: flex; flex-direction: column; gap: 0.15rem; }

.orders-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.orders-panel-head { display: flex; align-items: center; gap: 0.55rem; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border); font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.orders-panel-head svg { width: 18px; height: 18px; color: var(--red); }
.orders-table-wrap { overflow-x: auto; }
table.orders-table { width: 100%; border-collapse: collapse; min-width: 680px; }
table.orders-table th { text-align: left; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); }
table.orders-table td { padding: 0.95rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
table.orders-table tr:last-child td { border-bottom: none; }
table.orders-table tr.clickable { cursor: pointer; transition: background 0.12s; }
table.orders-table tr.clickable:hover { background: rgba(255,255,255,0.03); }
.tbl-chip { display: inline-block; border-radius: var(--radius-sm); padding: 0.2rem 0.55rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; }
.tbl-chip.type { background: rgba(204,0,0,0.14); color: var(--red); border: 1px solid var(--border-red); }
.tbl-chip.plat { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border); }
.tbl-id { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.03em; }
.orders-empty { padding: 2.5rem 1.4rem; text-align: center; color: var(--text-muted); }

/* -- AUTH (login / signup / reset) -- */
.auth-switch { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.auth-switch a { color: var(--red); font-weight: 600; cursor: pointer; }
.auth-switch a:hover { color: var(--red-bright); }
.auth-divider { display: flex; align-items: center; gap: 0.85rem; margin: 1.25rem 0; color: var(--text-dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-discord-auth {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: rgba(88,101,242,0.14); border: 1px solid rgba(88,101,242,0.45); color: #c7ccfa;
  border-radius: var(--radius); padding: 0.8rem 1rem; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s;
}
.btn-discord-auth:hover { background: rgba(88,101,242,0.24); border-color: #5865f2; }
.btn-discord-auth svg { width: 18px; height: 18px; flex-shrink: 0; }
.auth-forgot { text-align: right; margin-top: -0.5rem; margin-bottom: 1rem; }
.auth-forgot a { color: var(--text-muted); font-size: 0.8rem; cursor: pointer; }
.auth-forgot a:hover { color: var(--red); }
.hide { display: none !important; }
.orders-empty svg { width: 40px; height: 40px; color: var(--text-dim); margin-bottom: 0.75rem; }

/* -- PROFIT TRACKER + LEADERBOARD -- */
.co-input-wrap select {
  width: 100%; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); padding: 0.8rem 2.6rem 0.8rem 0.9rem;
  font-family: var(--font-body); font-size: 0.92rem; appearance: none;
}
.co-input-wrap select:focus { outline: none; border-color: var(--red); box-shadow: var(--ring); }
.profile-stat-ico.blue { background: rgba(59,130,246,0.14); color: #60a5fa; }
.profile-stat-ico.red { background: rgba(204,0,0,0.14); border: 1px solid var(--border-red); color: var(--red-bright); }
.profile-stat .sv.red { color: var(--red-bright); }
.tbl-chip.cat { background: rgba(204,0,0,0.14); color: var(--red); border: 1px solid var(--border-red); }
.tbl-chip.hold { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border); }
.tbl-chip.open { background: rgba(59,130,246,0.14); color: #60a5fa; border: 1px solid rgba(59,130,246,0.4); }
.lb-rank { font-family: var(--font-head); font-weight: 900; font-size: 1.05rem; color: var(--text-muted); }
.lb-rank.top3 { color: var(--red-bright); }
.lb-banner {
  background: linear-gradient(135deg, rgba(204,0,0,0.12), rgba(147,51,234,0.08));
  border: 1px solid var(--border-red); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.25rem; flex-wrap: wrap;
}
.lb-banner-text b { display: block; font-family: var(--font-head); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.25rem; }
.lb-banner-text span { color: var(--text-muted); font-size: 0.9rem; }
.tracker-delete-btn {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  border-radius: var(--radius-sm); padding: 0.35rem 0.7rem; font-size: 0.78rem;
  font-weight: 600; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tracker-delete-btn:hover, .tracker-delete-btn.confirm { background: rgba(204,0,0,0.14); border-color: var(--border-red); color: var(--red-bright); }
.card-search-dropdown {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 20; margin-top: 0.35rem;
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius);
  max-height: 320px; overflow-y: auto; box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.card-search-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.85rem; cursor: pointer; transition: background 0.12s; }
.card-search-item:hover { background: rgba(255,255,255,0.05); }
.card-search-item-thumb {
  width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.card-search-item-thumb img { width: 100%; height: 100%; object-fit: contain; }
.card-search-item-name { font-size: 0.88rem; font-weight: 600; }
.card-search-item-meta { font-size: 0.74rem; color: var(--text-dim); }
.card-search-selected {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem; padding: 0.5rem 0.7rem;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius-sm);
  font-size: 0.8rem; color: #22c55e;
}
.card-search-selected img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }

/* PayPal payment icon tint */
.pay-ico.paypal { background: rgba(0,112,186,0.16); color: #0070ba; }

/* promo code line (under the total) */
.co-promo { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.co-promo-entry { display: flex; gap: 0.5rem; }
.co-promo-entry input {
  flex: 1; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); padding: 0.65rem 0.8rem;
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
}
.co-promo-entry input:focus { outline: none; border-color: var(--red); box-shadow: var(--ring); }
.co-promo-applied {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.4);
  border-radius: var(--radius); padding: 0.55rem 0.85rem;
}
.co-promo-applied .code { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.04em; color: #22c55e; }
.co-promo-applied .pct { color: #22c55e; font-size: 0.85rem; margin-left: 0.4rem; }
.co-promo-applied .rm { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1.15rem; line-height: 1; padding: 0 0.2rem; }
.co-promo-applied .rm:hover { color: var(--red-bright); }

/* how-to-find info modal */
.info-modal-overlay {
  position: fixed; inset: 0; z-index: 500; display: none;
  align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.info-modal-overlay.active { display: flex; }
.info-modal {
  position: relative; width: 100%; max-width: 440px; max-height: 85vh; overflow-y: auto;
  background: var(--bg-card); border: 1px solid var(--border-red);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-card);
}
.info-modal h3 {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 0.9rem; padding-right: 1.5rem;
}
.info-modal-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.info-modal-body p { margin-bottom: 0.5rem; }
.info-modal-body ol, .info-modal-body ul { margin: 0.85rem 0 0; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.45rem; }
.info-modal-body li { font-size: 0.88rem; color: var(--text); line-height: 1.45; }
.info-modal-body a { color: var(--red); word-break: break-word; }
.info-modal-close {
  position: absolute; top: 0.85rem; right: 1rem; background: none; border: none;
  color: var(--text-dim); font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.info-modal-close:hover { color: var(--red); }

/* ── SERVICE PAGE HERO ──────────────────────────────────────────────────
   Used by the generated /coins/ and /boosting/ pages. Mirrors .page-hero in
   site.css deliberately: the hand-written landing pages and these need to read
   as the same site, and that treatment - photo wash, red eyebrow, condensed
   900 headline, stat tiles - is the one the site already uses for a page hero. */
.page-hero-svc {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.5rem 3.5rem;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,0.95) 100%),
    url('background.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid var(--border);
}
.page-hero-svc > .container { position: relative; z-index: 1; }
.page-hero-svc h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.page-hero-svc .hero-sub {
  max-width: 56ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.page-hero-svc .section-label { display: inline-block; }

/* Breadcrumb. It is a <nav>, and the bare `nav` selector further up styles the
   sticky site header - so every one of those properties has to be undone here
   or the trail renders as a second header bar. */
.crumbs-svc {
  position: static;
  z-index: auto;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.35rem 1.5rem 0;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.crumbs-svc a { color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.crumbs-svc a:hover { color: var(--red-bright); }
.crumbs-svc span[aria-current] { color: var(--text-muted); }

/* Hero stat tiles. Same design as .trust-strip in site.css, under different
   names because app.css already has a .trust-item that means something else
   (the icon row in the homepage hero). */
.svc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 2rem 0 0;
  max-width: 780px;
}
.svc-stat {
  background: rgba(17,17,17,0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-stat .k {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.01em;
}
.svc-stat .v {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 0.3rem;
  font-family: var(--font-head);
  font-weight: 600;
}

@media (max-width: 680px) {
  .page-hero-svc { padding: 2.5rem 1.25rem 2.75rem; }
  .crumbs-svc { padding: 1rem 1.25rem 0; }
}

/* On its own page the panel is the page - no top gap from the toggle layout. */
.page-hero-svc + .service-panel.active { animation: none; padding-top: 2rem; }

/* On a generated service page the .section-header has lost its label, H2 and
   description to the page hero above, so it is a wrapper around the progress
   steps and nothing else. Without this it contributes 2rem + 3rem of empty
   band between the hero and the form. */
.page-hero-svc + .service-panel.active .section-header { margin-bottom: 1.75rem; }
.page-hero-svc + .service-panel.active .checkout-steps { margin-top: 0; }
