.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 8px 8px 24px;
  background: var(--gold);
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.005em;
}

.btn:hover {
  background: var(--gold-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn:active {
  transform: scale(0.98);
}

.btn__text {
  display: inline-block;
  padding: 12px 0;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-glass);
  backdrop-filter: var(--blur-sm);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-strong);
  box-shadow: none;
}

.btn--light {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn--light:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow-card);
}

.btn--lg {
  padding: 10px 10px 10px 28px;
  font-size: var(--fs-base);
}

.btn--lg .btn__text {
  padding: 14px 0;
}

.btn--sm {
  padding: 6px 6px 6px 18px;
  font-size: var(--fs-xs);
}

.btn--sm .btn__text {
  padding: 8px 0;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.icon-circle svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.btn:hover .icon-circle {
  transform: rotate(-45deg);
}

.btn--lg .icon-circle {
  width: 44px;
  height: 44px;
}

.btn--lg .icon-circle svg {
  width: 18px;
  height: 18px;
}

.btn--sm .icon-circle {
  width: 28px;
  height: 28px;
}

.btn--sm .icon-circle svg {
  width: 12px;
  height: 12px;
}

.icon-circle--outline {
  background: transparent;
  border: 1px solid var(--border-glass-strong);
  color: var(--white);
}

.icon-circle--outline.btn--light,
.btn--light .icon-circle--outline {
  border-color: var(--border-light);
  color: var(--text-dark);
}

.icon-circle--dark {
  background: var(--bg-primary);
  color: var(--white);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-base);
  backdrop-filter: var(--blur-sm);
}

.icon-btn:hover {
  background: var(--white);
  color: var(--text-dark);
  transform: scale(1.05);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.icon-btn--light {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.icon-btn--light:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow-card);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  backdrop-filter: var(--blur-sm);
}

.badge--gold {
  background: rgba(201, 167, 77, 0.12);
  border-color: rgba(201, 167, 77, 0.3);
  color: var(--gold);
}

.badge--light {
  background: var(--bg-white);
  border-color: var(--border-light);
  color: var(--text-dark);
}

.badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.badge__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

.card-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  box-shadow: var(--shadow-soft), var(--shadow-inset);
}

.card-glass--strong {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-glass-strong);
}

.card-light {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.stat-card__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.stat-card__value {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.045em;
}

.stat-card__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  margin-top: var(--space-1);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 720px;
}

.section-header--center {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.section-header--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: var(--space-12);
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-frame:hover img {
  transform: scale(1.05);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
  border: none;
  margin: 0;
}
