


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(8,13,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: var(--z-sticky);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(8,13,26,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: var(--sp-8);
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--color-text);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: 0.85; color: var(--color-text); }
.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--r-md);
  color: #080D1A;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0;
  flex-shrink: 0;
}
.nav-logo-text em { font-style: normal; color: var(--color-primary); }


.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-text);
  background: var(--color-primary-dim);
}
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-dim);
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: auto;
  flex-shrink: 0;
}
.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-muted);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-icon-btn:hover { color: var(--color-text); background: var(--color-surface-2); }
.nav-icon-btn svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--color-accent);
  color: #080D1A;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.zero { display: none; }


.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.nav-burger:hover { background: var(--color-surface-2); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-muted);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: calc(var(--z-sticky) - 1);
  opacity: 0;
  transition: opacity var(--t-base);
}
.nav-mobile-overlay.open { opacity: 1; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--sp-4);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--t-slow), opacity var(--t-base);
    pointer-events: none;
    z-index: var(--z-sticky);
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: var(--sp-3) var(--sp-4); font-size: 1rem; }
  .nav-burger { display: flex; }
  .nav-actions .btn { display: none; }
}

@media (max-width: 640px) {
  .nav-logo-text { display: none; }
}


.site-footer {
  background: var(--color-bg);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(167,139,250,0.06), transparent 70%);
  pointer-events: none;
}


.footer-accent-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-primary), var(--color-accent), var(--color-primary), transparent);
}


.footer-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-16) 0 var(--sp-10);
  gap: var(--sp-10);
}


.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: opacity var(--t-fast);
}
.footer-logo:hover { opacity: 0.8; color: var(--color-text); }
.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--r-lg);
  color: #08060F;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 40ch;
}


.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-6);
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--t-fast);
  padding: var(--sp-1) 0;
}
.footer-nav a:hover { color: var(--color-primary); }
.footer-nav-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}


.footer-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}


.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-text-muted);
  transition: all var(--t-fast);
}
.footer-social-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-dim);
  border-color: rgba(167,139,250,0.3);
  transform: translateY(-2px);
}
.footer-social-link svg { width: 17px; height: 17px; }


.footer-bottom-bar {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom-bar p { font-size: 0.77rem; color: var(--color-text-subtle); max-width: none; }
.footer-legal { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-legal a { font-size: 0.77rem; color: var(--color-text-subtle); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--color-text-muted); }

@media (max-width: 640px) {
  .footer-body { padding: var(--sp-10) 0 var(--sp-8); gap: var(--sp-8); }
  .footer-nav { gap: var(--sp-2) var(--sp-4); }
  .footer-nav-sep { display: none; }
  .footer-bottom-bar { flex-direction: column; align-items: center; text-align: center; }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  background-size: 200%;
  opacity: 0;
  transition: opacity var(--t-base), background-position 0.5s ease;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }
.btn:disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }


.btn-primary {
  background: var(--gradient-primary);
  color: #080D1A;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(34,211,238,0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(34,211,238,0.4);
  transform: translateY(-1px);
  color: #080D1A;
}


.btn-accent {
  background: var(--gradient-accent);
  color: #080D1A;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(245,158,11,0.25);
}
.btn-accent:hover {
  box-shadow: 0 6px 24px rgba(245,158,11,0.4);
  transform: translateY(-1px);
  color: #080D1A;
}


.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-dim);
  color: var(--color-primary);
}


.btn-ghost {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-surface-3);
  color: var(--color-text);
  border-color: var(--color-border-hover);
}


.btn-danger {
  background: var(--color-error-bg);
  color: var(--color-error);
  border-color: rgba(239,68,68,0.3);
}
.btn-danger:hover {
  background: rgba(239,68,68,0.2);
  border-color: var(--color-error);
}


.btn-xs { padding: 0.4rem 0.85rem; font-size: 0.75rem; border-radius: var(--r-md); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--r-xl); }
.btn-xl { padding: 1.15rem 2.5rem; font-size: 1.05rem; border-radius: var(--r-xl); }


.btn-icon {
  padding: 0.65rem;
  border-radius: var(--r-md);
}
.btn-icon svg { width: 20px; height: 20px; margin: 0; }


.btn-block { width: 100%; }


.btn.loading { pointer-events: none; }
.btn.loading .btn-text { opacity: 0; }
.btn.loading::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}


.card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  position: relative;
}
.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}


.tournament-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.tournament-card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.tournament-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.tournament-card:hover .tournament-card-image-bg {
  transform: scale(1.06);
}
.tournament-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
}
.tournament-card-sport-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-2);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.tournament-card-actions {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  display: flex;
  gap: var(--sp-2);
}
.card-action-btn {
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.card-action-btn:hover { color: #fff; background: rgba(0,0,0,0.8); }
.card-action-btn.saved { color: #EF4444; border-color: rgba(239,68,68,0.5); }
.card-action-btn svg { width: 14px; height: 14px; }

.tournament-card-body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}
.tournament-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.tournament-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}
.tournament-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  max-width: none;
}
.tournament-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--color-border);
}
.tournament-card-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.78rem;
  color: var(--color-text-subtle);
}
.tournament-card-meta-item svg { width: 13px; height: 13px; }
.tournament-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--color-border);
}
.tournament-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tournament-card-price-label {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tournament-card-price-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}
.tournament-card-btns {
  display: flex;
  gap: var(--sp-2);
}


.case-card {
  display: flex;
  flex-direction: column;
}
.case-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.case-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card-image-bg { transform: scale(1.05); }
.case-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}
.case-card-image-meta {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.case-card-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.case-card-title { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.case-card-summary { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; flex: 1; max-width: none; }
.case-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border);
}
.case-metric { text-align: center; }
.case-metric-value { font-size: 1.2rem; font-weight: 800; color: var(--color-primary); }
.case-metric-label { font-size: 0.7rem; color: var(--color-text-subtle); text-transform: uppercase; letter-spacing: 0.05em; }


.pricing-card {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(145deg, #0F1628, #162035, #1a2840);
  box-shadow: var(--shadow-primary);
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--sp-1) var(--sp-4);
  background: var(--gradient-primary);
  color: #080D1A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}
.pricing-card-tier { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); }
.pricing-card-name { font-size: 1.5rem; font-weight: 800; }
.pricing-card-price .amount { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; color: var(--color-accent); }
.pricing-card-price .from { font-size: 0.8rem; color: var(--color-text-subtle); }
.pricing-card-price .period { font-size: 0.85rem; color: var(--color-text-muted); }
.pricing-card-desc { font-size: 0.88rem; color: var(--color-text-muted); max-width: none; }
.pricing-features { display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.pricing-feature-check {
  width: 16px; height: 16px;
  background: var(--color-success-bg);
  border-radius: var(--r-full);
  color: var(--color-success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-feature-check svg { width: 10px; height: 10px; }


.team-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base);
}
.team-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-2);
  position: relative;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-card-body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.team-card-name { font-size: 1rem; font-weight: 700; }
.team-card-role { font-size: 0.8rem; color: var(--color-primary); font-weight: 600; margin-bottom: var(--sp-1); }
.team-card-bio { font-size: 0.83rem; color: var(--color-text-muted); line-height: 1.65; max-width: none; }


.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge-primary {
  background: var(--color-primary-dim);
  color: var(--color-primary);
  border-color: rgba(34,211,238,0.2);
}
.badge-accent {
  background: var(--color-accent-dim);
  color: var(--color-accent);
  border-color: rgba(245,158,11,0.2);
}
.badge-success {
  background: var(--color-success-bg);
  color: var(--color-success);
  border-color: rgba(16,185,129,0.2);
}
.badge-error {
  background: var(--color-error-bg);
  color: var(--color-error);
  border-color: rgba(239,68,68,0.2);
}
.badge-warning {
  background: var(--color-warning-bg);
  color: var(--color-warning);
  border-color: rgba(245,158,11,0.2);
}
.badge-neutral {
  background: var(--color-surface-3);
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

.badge-corporate {
  background: var(--color-primary-dim);
  color: var(--color-primary);
  border-color: rgba(34,211,238,0.2);
}
.badge-amateur {
  background: rgba(139,92,246,0.12);
  color: #a78bfa;
  border-color: rgba(139,92,246,0.2);
}
.badge-popular { background: var(--color-accent-dim); color: var(--color-accent); border-color: rgba(245,158,11,0.2); }
.badge-new     { background: var(--color-success-bg); color: var(--color-success); border-color: rgba(16,185,129,0.2); }


.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--r-full);
}
.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-new       { background: var(--color-info-bg);    color: var(--color-info); }
.status-review    { background: var(--color-warning-bg); color: var(--color-warning); }
.status-confirmed { background: var(--color-success-bg); color: var(--color-success); }
.status-cancelled { background: var(--color-error-bg);   color: var(--color-error); }


.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.form-label .required { color: var(--color-error); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-lg);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--color-text-subtle); }
.form-control:hover { border-color: var(--color-border-hover); }
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-dim);
  background: var(--color-surface-3);
}
.form-control.error { border-color: var(--color-error); box-shadow: 0 0 0 3px var(--color-error-bg); }
.form-control.success { border-color: var(--color-success); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}
select.form-control option { background: var(--color-surface-2); color: var(--color-text); }

.form-error {
  font-size: 0.78rem;
  color: var(--color-error);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  animation: fadeDown 0.2s ease;
}
.form-error svg { width: 13px; height: 13px; flex-shrink: 0; }

.form-hint {
  font-size: 0.78rem;
  color: var(--color-text-subtle);
}


.input-password-wrapper {
  position: relative;
}
.input-password-wrapper .form-control { padding-right: 3rem; }
.input-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-subtle);
  padding: 0.25rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}
.input-password-toggle:hover { color: var(--color-text-muted); }
.input-password-toggle svg { width: 18px; height: 18px; }


.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border-hover);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}
.form-check input[type="radio"] { border-radius: var(--r-full); }
.form-check input[type="checkbox"]:checked,
.form-check input[type="radio"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 2px;
  width: 8px; height: 5px;
  border-left: 2px solid #080D1A;
  border-bottom: 2px solid #080D1A;
  transform: rotate(-45deg);
}
.form-check input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #080D1A;
  border-radius: 50%;
}
.form-check-label {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check-label a { color: var(--color-primary); }


.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--color-surface-3);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
}
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-dim);
  cursor: pointer;
  transition: box-shadow var(--t-fast);
}
.form-range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px var(--color-primary-dim); }


.search-wrapper {
  position: relative;
}
.search-wrapper .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-subtle);
  pointer-events: none;
}
.search-wrapper .search-icon svg { width: 16px; height: 16px; }
.search-wrapper .form-control { padding-left: 2.75rem; }
.search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-subtle);
  padding: 0.25rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  cursor: pointer;
}
.search-clear:hover { color: var(--color-text-muted); }
.search-clear svg { width: 14px; height: 14px; }


.toast-container {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 360px;
  width: calc(100vw - var(--sp-12));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border-hover);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  pointer-events: auto;
  animation: toastIn 0.3s ease;
  position: relative;
  overflow: hidden;
}
.toast.dismissing { animation: toastOut 0.3s ease forwards; }
.toast-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.toast-icon svg { width: 20px; height: 20px; }
.toast-body { flex: 1; }
.toast-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.toast-message { font-size: 0.8rem; color: var(--color-text-muted); max-width: none; }
.toast-close {
  color: var(--color-text-subtle);
  padding: 2px;
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.toast-close:hover { color: var(--color-text-muted); }
.toast-close svg { width: 14px; height: 14px; }
.toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  border-radius: 0 0 0 var(--r-xl);
  transform-origin: left;
  animation: progressBar 3s linear forwards;
}


.toast-success { border-color: rgba(16,185,129,0.3); }
.toast-success .toast-icon { color: var(--color-success); }
.toast-success .toast-progress { background: var(--color-success); }
.toast-error   { border-color: rgba(239,68,68,0.3); }
.toast-error   .toast-icon { color: var(--color-error); }
.toast-error   .toast-progress { background: var(--color-error); }
.toast-warning { border-color: rgba(245,158,11,0.3); }
.toast-warning .toast-icon { color: var(--color-warning); }
.toast-warning .toast-progress { background: var(--color-warning); }
.toast-info    { border-color: rgba(59,130,246,0.3); }
.toast-info    .toast-icon { color: var(--color-info); }
.toast-info    .toast-progress { background: var(--color-info); }


.accordion { display: flex; flex-direction: column; gap: var(--sp-2); }
.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.accordion-item.open { border-color: var(--color-border-hover); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--t-fast);
}
.accordion-trigger:hover { color: var(--color-primary); }
.accordion-item.open .accordion-trigger { color: var(--color-primary); }
.accordion-icon {
  width: 20px; height: 20px;
  color: var(--color-text-subtle);
  flex-shrink: 0;
  transition: transform var(--t-base), color var(--t-base);
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); color: var(--color-primary); }
.accordion-icon svg { width: 20px; height: 20px; }
.accordion-body,
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body,
.accordion-item.open .accordion-panel { max-height: 600px; }
.accordion-content,
.accordion-panel > p,
.accordion-panel > div {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}


.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--sp-6);
}
.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  text-align: center;
  position: relative;
}
.testimonial-quote-icon {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  color: var(--color-primary-dim);
  opacity: 0.5;
}
.testimonial-quote-icon svg { width: 40px; height: 40px; }
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
  color: var(--color-accent);
}
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--sp-6);
  max-width: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--color-primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author-name { font-size: 0.9rem; font-weight: 700; }
.testimonial-author-role { font-size: 0.8rem; color: var(--color-text-subtle); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.slider-btn {
  width: 40px; height: 40px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--t-fast);
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--color-surface-3);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots {
  display: flex;
  gap: var(--sp-2);
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--t-base);
}
.slider-dot.active {
  width: 24px;
  background: var(--color-primary);
  border-color: var(--color-primary);
}


.stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-12);
  overflow-x: auto;
  padding-bottom: var(--sp-2);
}
.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
  min-width: 60px;
  position: relative;
}
.stepper-step::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--color-surface-3);
  transition: background var(--t-slow);
  z-index: 0;
}
.stepper-step:last-child::before { display: none; }
.stepper-step.completed::before { background: var(--color-primary); }

.stepper-dot {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-subtle);
  position: relative;
  z-index: 1;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.stepper-step.active .stepper-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #080D1A;
  box-shadow: var(--shadow-primary);
}
.stepper-step.completed .stepper-dot {
  background: var(--color-success);
  border-color: var(--color-success);
  color: #080D1A;
}
.stepper-dot svg { width: 16px; height: 16px; }

.stepper-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  text-align: center;
  line-height: 1.3;
  max-width: 72px;
  transition: color var(--t-base);
}
.stepper-step.active .stepper-label   { color: var(--color-primary); font-weight: 600; }
.stepper-step.completed .stepper-label { color: var(--color-success); }

@media (max-width: 640px) {
  .stepper-label { display: none; }
  .stepper-step { min-width: 40px; }
}


.tabs {
  display: flex;
  gap: var(--sp-1);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--r-md) var(--r-md) 0 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  margin-bottom: -1px;
  cursor: pointer;
}
.tab-btn:hover { color: var(--color-text); background: var(--color-surface-2); }
.tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.tab-btn .tab-count {
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  background: var(--color-surface-3);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  animation: fadeIn 0.2s ease;
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border-hover);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.25s ease;
  scrollbar-width: thin;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
}
.modal-title { font-size: 1.1rem; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-subtle);
  background: var(--color-surface-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.modal-close:hover { color: var(--color-text); background: var(--color-surface-3); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body { padding: var(--sp-6); }
.modal-footer {
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--color-border);
}


.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
  gap: var(--sp-4);
}
.empty-state-icon {
  width: 64px; height: 64px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-subtle);
  margin-bottom: var(--sp-2);
}
.empty-state-icon svg { width: 28px; height: 28px; }
.empty-state-title { font-size: 1.1rem; font-weight: 700; }
.empty-state-text { font-size: 0.9rem; color: var(--color-text-muted); max-width: 36ch; }
.empty-state-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-top: var(--sp-2); }


.spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.spinner-lg { width: 40px; height: 40px; border-width: 3px; }

.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-surface-2) 25%,
    var(--color-surface-3) 50%,
    var(--color-surface-2) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-md);
}


.order-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.order-item:hover { border-color: var(--color-border-hover); }
.order-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  flex-wrap: wrap;
}
.order-item-id   { font-size: 0.8rem; color: var(--color-text-subtle); font-family: monospace; }
.order-item-title { font-weight: 600; font-size: 0.95rem; }
.order-item-meta { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.order-item-body {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-5) var(--sp-6);
  display: none;
}
.order-item.expanded .order-item-body { display: block; }
.order-chevron {
  transition: transform var(--t-base);
  color: var(--color-text-subtle);
}
.order-item.expanded .order-chevron { transform: rotate(180deg); }
.order-chevron svg { width: 16px; height: 16px; }


.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}
.filter-chip:hover { border-color: var(--color-border-hover); color: var(--color-text); }
.filter-chip.active {
  background: var(--color-primary-dim);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.filter-chip svg { width: 12px; height: 12px; }


.load-more-wrapper {
  display: flex;
  justify-content: center;
  padding-top: var(--sp-8);
}


.summary-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.summary-panel-title { font-size: 0.85rem; font-weight: 600; color: var(--color-text-subtle); letter-spacing: 0.08em; text-transform: uppercase; }
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: 0.9rem;
}
.summary-row-label { color: var(--color-text-muted); }
.summary-row-value { font-weight: 600; }
.summary-divider { height: 1px; background: var(--color-border); margin-block: var(--sp-2); }
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--color-border);
}
.summary-total-label { font-size: 0.9rem; font-weight: 600; }
.summary-total-value { font-size: 1.5rem; font-weight: 900; color: var(--color-accent); letter-spacing: -0.02em; }
.summary-vat-note { font-size: 0.75rem; color: var(--color-text-subtle); }


.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  font-size: 0.88rem;
  line-height: 1.5;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-info    { background: var(--color-info-bg);    color: var(--color-info);    border-color: rgba(59,130,246,0.2); }
.alert-success { background: var(--color-success-bg); color: var(--color-success); border-color: rgba(16,185,129,0.2); }
.alert-warning { background: var(--color-warning-bg); color: var(--color-warning); border-color: rgba(245,158,11,0.2); }
.alert-error   { background: var(--color-error-bg);   color: var(--color-error);   border-color: rgba(239,68,68,0.2); }


.section-header {
  max-width: 640px;
  margin-bottom: var(--sp-12);
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--sp-4);
  max-width: none;
}


.page-hero {
  padding-top: calc(var(--header-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,211,238,0.06), transparent);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow { margin-bottom: var(--sp-3); }
.page-hero h1 { margin-bottom: var(--sp-4); }
.page-hero p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 55ch;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}


.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  transition: border-color var(--t-base);
}
.cart-item:hover { border-color: var(--color-border-hover); }
.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.cart-item-image-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
.cart-item-sport-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.cart-item-body { flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.cart-item-title { font-size: 0.95rem; font-weight: 700; }
.cart-item-package { font-size: 0.8rem; color: var(--color-text-muted); }
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.cart-item-price { font-size: 1.1rem; font-weight: 800; color: var(--color-accent); }
.cart-item-remove {
  font-size: 0.78rem;
  color: var(--color-text-subtle);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  cursor: pointer;
  transition: color var(--t-fast);
}
.cart-item-remove:hover { color: var(--color-error); }
.cart-item-remove svg { width: 13px; height: 13px; }


.stat-block { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text);
  display: block;
}
.stat-number .stat-suffix { color: var(--color-primary); }
.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
  max-width: none;
}


.process-steps { display: flex; flex-direction: column; gap: var(--sp-6); }
.process-step {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}
.process-step-num {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--color-primary-dim);
  border: 2px solid var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step-connector {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(var(--sp-6) + 24px);
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}
.process-step-body { padding-top: var(--sp-1); }
.process-step-title { font-size: 1rem; font-weight: 700; margin-bottom: var(--sp-2); }
.process-step-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; max-width: none; }


.nav-promo-bell { position: relative; }
.promo-bell-badge {
  position: absolute;
  top: -4px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  animation: bellPulse 2s ease infinite;
}
@keyframes bellPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.18); }
}


.promo-popup {
  position: fixed;
  top: calc(var(--header-h) + var(--sp-4));
  right: var(--sp-5);
  width: 300px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-hover);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(251,191,36,0.08);
  padding: var(--sp-5);
  z-index: calc(var(--z-sticky) + 20);
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.promo-popup.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.promo-popup-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.promo-popup-close:hover { background: var(--color-surface-2); color: var(--color-text); }
.promo-popup-close svg  { width: 14px; height: 14px; }
.promo-popup-emoji      { font-size: 1.8rem; margin-bottom: var(--sp-3); line-height: 1; }
.promo-popup-content    { display: flex; flex-direction: column; gap: var(--sp-2); }
.promo-popup-label      { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.promo-popup-title      { font-size: 1rem; font-weight: 800; line-height: 1.3; color: var(--color-text); }
.promo-popup-desc       { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.55; }
.promo-popup-codebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface-2);
  border: 1px dashed var(--color-accent);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  margin-top: var(--sp-1);
}
.promo-popup-code-label { font-size: 0.72rem; color: var(--color-text-muted); font-weight: 600; }
.promo-popup-code       { font-size: 0.95rem; font-weight: 900; letter-spacing: 0.08em; color: var(--color-accent); font-family: var(--font-mono,'Courier New',monospace); }
.promo-popup-claim      { width: 100%; justify-content: center; margin-top: var(--sp-2); gap: var(--sp-2); }
.promo-popup-claim svg  { width: 15px; height: 15px; }
.promo-popup-expire     { font-size: 0.72rem; color: var(--color-text-subtle); text-align: center; margin-top: var(--sp-1); }


.promos-list            { display: flex; flex-direction: column; gap: var(--sp-4); }
.promo-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  transition: border-color var(--t-base);
}
.promo-item.active      { border-color: rgba(251,191,36,0.4); }
.promo-item.used        { opacity: 0.55; }
.promo-item.expired     { opacity: 0.45; }
.promo-item-emoji       { font-size: 1.5rem; line-height: 1; flex-shrink: 0; padding-top: 2px; }
.promo-item-body        { flex: 1; min-width: 0; }
.promo-item-header      { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-1); flex-wrap: wrap; }
.promo-item-code        { font-size: 0.9rem; font-weight: 900; letter-spacing: 0.06em; color: var(--color-accent); font-family: var(--font-mono,'Courier New',monospace); background: rgba(251,191,36,0.1); padding: 2px 8px; border-radius: var(--r-sm); }
.promo-item-title       { font-size: 0.88rem; font-weight: 700; color: var(--color-text); }
.promo-item-desc        { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: var(--sp-2); line-height: 1.5; }
.promo-item-meta        { display: flex; align-items: center; gap: var(--sp-4); font-size: 0.75rem; color: var(--color-text-subtle); flex-wrap: wrap; }
.promo-status-badge     { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: var(--r-full); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; }
.promo-status-active    { background: rgba(34,197,94,0.15); color: var(--color-success); }
.promo-status-used      { background: rgba(148,163,184,0.15); color: var(--color-text-muted); }
.promo-status-expired   { background: rgba(239,68,68,0.15); color: var(--color-error); }


.checkout-promo-section { margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--color-border); }
.checkout-promo-label   { font-size: 0.82rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: var(--sp-3); }
.checkout-promo-row     { display: flex; gap: var(--sp-2); align-items: flex-start; }
.checkout-promo-row .form-control { flex: 1; font-family: var(--font-mono,monospace); letter-spacing: 0.05em; text-transform: uppercase; }
.checkout-promo-row .btn { flex-shrink: 0; height: 46px; }
.checkout-promo-applied {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: var(--color-success);
  margin-top: var(--sp-2);
}
.checkout-promo-applied svg { width: 14px; height: 14px; flex-shrink: 0; }
.summary-row-discount   { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--color-success); padding: var(--sp-1) 0; }
.summary-row-discount .summary-row-label { color: var(--color-success); font-size: 0.8rem; }
.summary-row-discount .summary-row-value { color: var(--color-success); font-weight: 700; }


.promo-suggestions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-1);
}
.promo-suggestion-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-surface-2);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  text-align: left;
  width: 100%;
}
.promo-suggestion-btn:hover {
  border-color: var(--color-accent);
  background: rgba(251,191,36,0.06);
}
.promo-suggestion-code {
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  font-family: var(--font-mono,'Courier New',monospace);
  flex-shrink: 0;
}
.promo-suggestion-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex: 1;
}
.promo-suggestion-apply {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}
