/* ===== İxir E-Spor Cafe — Light Esports Theme ===== */

:root {
  --bg: #f4f7fc;
  --bg-alt: #e8eef8;
  --surface: #ffffff;
  --surface-2: #f0f4ff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --cyan: #00b4d8;
  --cyan-bright: #00e5ff;
  --cyan-neon: #00f0ff;
  --cyan-glow: rgba(0, 180, 216, 0.25);
  --purple: #7c3aed;
  --purple-neon: #a855f7;
  --purple-light: #a78bfa;
  --purple-glow: rgba(124, 58, 237, 0.2);
  --pink: #ec4899;
  --pink-neon: #ff2d95;
  --orange: #f97316;

  --gold: #d97706;
  --gold-bg: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  --platinum: #6366f1;
  --platinum-bg: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  --elite: #0ea5e9;
  --elite-bg: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);

  --border: rgba(15, 23, 42, 0.08);
  --border-accent: rgba(0, 180, 216, 0.35);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.1);
  --radius: 12px;
  --radius-lg: 20px;

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;

  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  pointer-events: none;
}

.bg-glow--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: var(--cyan-glow);
}

.bg-glow--2 {
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: -200px;
  background: var(--purple-glow);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  overflow: visible;
  transition: box-shadow 0.3s;
  background: transparent;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.12) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s, backdrop-filter 0.3s;
}

.header--scrolled::before {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header--scrolled {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05), 0 12px 32px rgba(15, 23, 42, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  padding: 0 6px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-btn {
  --cart-accent: var(--cyan);
  --cart-accent-2: var(--purple);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px 0 12px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.cart-btn__ring {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.85), rgba(168, 85, 247, 0.85));
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.22),
    0 0 28px rgba(168, 85, 247, 0.14);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.cart-btn__ring::before {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 55%, #eef2ff 100%);
  clip-path: polygon(11px 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
}

.cart-btn__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.25));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.cart-btn__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: inherit;
}

.cart-btn:hover {
  transform: translateY(-2px);
}

.cart-btn:hover .cart-btn__ring {
  box-shadow:
    0 0 22px rgba(0, 229, 255, 0.45),
    0 0 36px rgba(168, 85, 247, 0.28);
  filter: brightness(1.05);
}

.cart-btn:hover .cart-btn__icon {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.55));
}

.cart-btn--active .cart-btn__ring {
  animation: cartRingPulse 2.4s ease-in-out infinite;
}

.cart-btn--active .cart-btn__icon {
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.cart-btn--pulse {
  animation: cartPulse 0.45s ease;
}

@keyframes cartRingPulse {
  0%, 100% {
    box-shadow:
      0 0 16px rgba(0, 229, 255, 0.3),
      0 0 24px rgba(168, 85, 247, 0.18);
  }
  50% {
    box-shadow:
      0 0 26px rgba(0, 229, 255, 0.55),
      0 0 40px rgba(168, 85, 247, 0.35);
  }
}

@keyframes cartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.cart-btn__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 2;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #00e5ff 0%, #7c3aed 100%);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow:
    0 2px 12px rgba(0, 180, 216, 0.5),
    0 0 16px rgba(124, 58, 237, 0.35);
}

.cart-btn__badge[hidden] {
  display: none !important;
}

.header:not(.header--scrolled) .cart-btn {
  color: #fff;
}

.header:not(.header--scrolled) .cart-btn__ring {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.95), rgba(168, 85, 247, 0.9));
  box-shadow:
    0 0 20px rgba(0, 229, 255, 0.35),
    0 0 32px rgba(168, 85, 247, 0.22);
}

.header:not(.header--scrolled) .cart-btn__ring::before {
  background: linear-gradient(160deg, rgba(12, 18, 38, 0.82) 0%, rgba(22, 28, 52, 0.72) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header:not(.header--scrolled) .cart-btn:hover {
  color: #00f0ff;
}

.header:not(.header--scrolled) .cart-btn:hover .cart-btn__icon {
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.85));
}

.header--scrolled .cart-btn {
  color: #0e7490;
}

.header--scrolled .cart-btn__ring::before {
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
}

.header--scrolled .cart-btn:hover {
  color: var(--cyan);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 4px;
}

.logo__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00f0ff 0%, #00e5ff 30%, #a855f7 62%, #ff2d95 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoNeonPulse 3s ease-in-out infinite;
}

.logo__sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #00f0ff;
  text-shadow:
    0 0 10px rgba(0, 240, 255, 0.95),
    0 0 22px rgba(0, 229, 255, 0.55),
    0 0 36px rgba(168, 85, 247, 0.35);
}

@keyframes logoNeonPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px rgba(0, 240, 255, 0.85))
      drop-shadow(0 0 18px rgba(168, 85, 247, 0.55))
      drop-shadow(0 0 28px rgba(255, 45, 149, 0.3));
  }
  50% {
    filter:
      drop-shadow(0 0 14px rgba(0, 240, 255, 1))
      drop-shadow(0 0 28px rgba(168, 85, 247, 0.75))
      drop-shadow(0 0 42px rgba(255, 45, 149, 0.45));
  }
}

.header--scrolled .logo__brand {
  background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: none;
  filter:
    drop-shadow(0 0 6px rgba(6, 182, 212, 0.45))
    drop-shadow(0 0 14px rgba(139, 92, 246, 0.3));
}

.header--scrolled .logo__sub {
  color: #06b6d4;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.header:not(.header--scrolled) .nav__link {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(15, 23, 42, 0.65);
}

.header:not(.header--scrolled) .nav__link:hover {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.12);
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.55);
}

.header:not(.header--scrolled) .nav-toggle span {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.45);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav__mobile-head,
.nav__mobile-foot {
  display: none;
}

.nav--mobile {
  display: none;
}

.nav__links {
  display: flex;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.nav__link:hover {
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(15, 23, 42, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
  pointer-events: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.offcanvas-backdrop--open {
  background: rgba(15, 23, 42, 0.45);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .header {
  z-index: 100;
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .header {
  z-index: 90;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.35s ease;
  pointer-events: none;
}

.cart-backdrop--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 170;
  width: min(420px, 94vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-left: 1px solid var(--border-accent);
  box-shadow: -16px 0 56px rgba(15, 23, 42, 0.14);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer--open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 20px 18px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cart-drawer__close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-drawer__empty {
  padding: 36px 16px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cart-item:hover {
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.08);
}

.cart-item--game {
  background: linear-gradient(135deg, #fff 0%, rgba(6, 182, 212, 0.03) 100%);
}

.cart-item__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  align-self: start;
}

.cart-item__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.cart-item__thumb {
  display: block;
  width: 96px;
  aspect-ratio: 460 / 215;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--surface);
}

.cart-item__thumb--service {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.18), rgba(6, 182, 212, 0.08));
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.cart-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-item__tag--archive {
  background: rgba(6, 182, 212, 0.12);
  color: #0e7490;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.cart-item__tag--service {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.cart-item__tag--quote {
  background: rgba(99, 102, 241, 0.1);
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.cart-item__type {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cart-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.cart-item__qty-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.cart-item__price--free {
  color: var(--gold);
}

.cart-item__remove {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-item__remove:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.cart-drawer__foot {
  padding: 18px 16px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.04);
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-drawer__total strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--cyan);
}

.cart-drawer__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.cart-drawer__cta {
  width: 100%;
  text-align: center;
}

.cart-drawer__cta--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.order-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  min-height: 100vh;
}

.order-page__head {
  margin-bottom: 32px;
}

.order-header__back {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.order-summary__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.order-form-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.order-form-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.order-empty {
  max-width: 480px;
  margin: 40px auto 0;
  padding: 48px 24px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.order-empty__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.order-empty__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.order-empty__text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.order-success-card[hidden] {
  display: none !important;
}

.order-success-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 12px 4px 4px;
}

.order-success-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 180, 216, 0.22);
}

.order-success-card__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.order-success-card__text {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 38ch;
  font-size: 0.98rem;
}

.order-success-card__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.order-success-card__notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.order-success-card__notice strong {
  color: var(--cyan);
}

.order-success-card__map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.order-success-card__map:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.order-success-card__hours {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.order-success-card__hours strong {
  color: var(--text);
}

.order-success-card__home {
  width: 100%;
  margin-top: 6px;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

.service-detail__card {
  padding: 28px 24px;
  background: var(--gold-bg);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-detail__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-detail__card--gold .service-offer-card__list li {
  color: #b45309;
}

.service-detail__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail__info {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-detail__info-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-detail__info-text {
  color: var(--text-muted);
  line-height: 1.6;
}

.service-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail__actions .btn {
  width: 100%;
}

/* Game store catalog */
.game-store {
  padding: calc(var(--header-h) + 40px) 0 80px;
  min-height: 100vh;
}

.game-store__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.game-store__cta {
  padding: 22px 20px;
  background: var(--gold-bg);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.game-store__cta-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.game-store__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-store__cta-actions .btn {
  width: 100%;
}

.game-store__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.game-store__search-wrap {
  position: relative;
  flex: 1;
  min-width: min(100%, 320px);
  max-width: 520px;
}

.game-store__search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s ease;
}

.game-store__search-wrap:focus-within .game-store__search-icon {
  color: var(--cyan);
}

.game-store__search {
  width: 100%;
  padding: 14px 44px 14px 44px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.game-store__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.game-store__search:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.game-store__search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  color: var(--text-muted);
  background: var(--surface-2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.game-store__search-clear svg {
  width: 15px;
  height: 15px;
}

.game-store__search-clear:hover {
  color: #fff;
  background: var(--cyan);
}

.game-store__search-clear[hidden] {
  display: none;
}

.game-store__count {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.game-store__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 4px;
}

.game-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.game-filter:hover {
  border-color: var(--border-accent);
  color: var(--cyan);
}

.game-filter--active {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #0096c7);
  border-color: transparent;
  box-shadow: 0 4px 16px var(--cyan-glow);
}

.game-store__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.game-store__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

.game-store__grid[hidden] {
  display: none !important;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.game-card--featured {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.12);
}

.game-card--featured:hover {
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.18);
}

.game-card__featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.35);
}

.game-card__media {
  position: relative;
  aspect-ratio: 460 / 215;
  min-height: 168px;
  background: #0b1220;
  overflow: hidden;
  isolation: isolate;
}

.game-card__media--fallback {
  background: linear-gradient(135deg, #78350f 0%, #d97706 55%, #92400e 100%);
}

.game-card__media--genre .game-card__cover {
  object-fit: cover;
}

.game-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: contrast(1.14) saturate(1.28) brightness(1.06);
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.45s ease, filter 0.45s ease;
  will-change: transform;
}

.game-card:hover .game-card__cover {
  filter: contrast(1.2) saturate(1.38) brightness(1.1);
  transform: scale(1.08);
}

.game-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.game-card__placeholder[hidden] {
  display: none !important;
}

.game-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.game-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.game-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.game-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.game-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.game-card__price-note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.game-card__add-btn {
  flex-shrink: 0;
  padding: 10px 14px !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  color: #07111f !important;
  background: linear-gradient(135deg, #ffd166, #f59e0b) !important;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.22) inset !important;
}

.game-card__add-btn:hover,
.game-card__add-btn:focus-visible {
  color: #07111f !important;
  background: linear-gradient(135deg, #ffe08a, #fbbf24) !important;
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.28) inset !important;
}

.game-card__category {
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
  border-radius: 2px;
}

.game-card__platform {
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
  color: #fff;
}

.game-card__platform--steam { background: #1b2838; }
.game-card__platform--epic { background: #2a2a2a; }
.game-card__platform--riot { background: #d13639; }
.game-card__platform--ea { background: #ff4747; }
.game-card__platform--bnet { background: #148eff; }
.game-card__platform--ubisoft { background: #0070ff; }
.game-card__platform--minecraft { background: #62a840; }
.game-card__platform--roblox { background: #e2231a; }
.game-card__platform--hoyo { background: #4fc3f7; color: #0f172a; }
.game-card__platform--other { background: #64748b; }
.game-card__platform--archive { background: linear-gradient(135deg, #0ea5e9, #6366f1); }

.game-store__sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.game-store__sidebar-card {
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.game-store__sidebar-card--note {
  background: var(--surface-2);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.game-store__sidebar-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.game-store__sidebar-list {
  gap: 8px !important;
}

.game-store__sidebar-list li {
  color: var(--text) !important;
  font-size: 0.9rem !important;
}

.game-store__empty {
  margin-top: 24px;
  padding: 32px 20px;
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 3px;
}

.game-store__empty[hidden] {
  display: none !important;
}

.game-store .btn {
  clip-path: none;
  border-radius: 3px;
}

.checkout-summary {
  padding: 18px;
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.checkout-summary__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.checkout-summary__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.checkout-summary__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.checkout-summary__item--game {
  background: linear-gradient(135deg, #fff 0%, rgba(6, 182, 212, 0.03) 100%);
}

.checkout-summary__media {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.checkout-summary__thumb {
  display: block;
  width: 72px;
  aspect-ratio: 460 / 215;
  height: auto;
  object-fit: cover;
  background: var(--surface);
}

.checkout-summary__thumb--service {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.18), rgba(6, 182, 212, 0.08));
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.checkout-summary__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-summary__item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.checkout-summary__item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.checkout-summary__remove {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.checkout-summary__remove:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.checkout-summary__item-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  min-width: 0;
}

.checkout-summary__item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}

.checkout-summary__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.checkout-summary__tag {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-summary__tag--archive {
  background: rgba(6, 182, 212, 0.12);
  color: #0e7490;
}

.checkout-summary__tag--service {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.checkout-summary__tag--quote {
  background: rgba(99, 102, 241, 0.1);
  color: #4338ca;
}

.checkout-summary__qty {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.checkout-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-weight: 700;
}

.checkout-summary__total strong {
  font-family: var(--font-display);
  color: var(--cyan);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.checkout-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form__field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checkout-form__field input,
.checkout-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form__field input:focus,
.checkout-form__field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.checkout-form__field textarea {
  resize: vertical;
  min-height: 88px;
}

.checkout-form__field--phone input {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.checkout-form__error {
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}

.checkout-form__error[hidden] {
  display: none !important;
}

.checkout-form__submit {
  width: 100%;
}

.contact-info__hours {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-info__hours strong {
  color: var(--text);
}

/* SweetAlert — sepet */
.swal-cart {
  padding: 28px 24px 22px !important;
  border: 1px solid var(--border-accent) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-body) !important;
}

.swal-cart__title {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
}

.swal-cart__body {
  margin: 0 !important;
  padding: 0 0 4px !important;
}

.swal-cart__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.swal-cart__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.swal-cart__icon.swal2-icon {
  border-color: rgba(0, 180, 216, 0.35) !important;
  color: var(--cyan) !important;
}

.swal-cart__icon .swal2-success-ring {
  border-color: rgba(0, 180, 216, 0.25) !important;
}

.swal-cart__icon .swal2-success-line {
  background-color: var(--cyan) !important;
}

.swal-cart__actions {
  gap: 10px !important;
  width: 100% !important;
  margin-top: 18px !important;
}

.swal-cart__btn {
  flex: 1;
  margin: 0 !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%) !important;
}

.swal-cart__btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--cyan) 0%, #0096c7 50%, var(--purple) 100%) !important;
  border: none !important;
  box-shadow: 0 4px 20px var(--cyan-glow) !important;
}

.swal-cart__btn--primary:hover {
  transform: translateY(-2px) !important;
}

.swal-cart__btn--outline {
  color: var(--text) !important;
  background: var(--surface) !important;
  border: 2px solid var(--border-accent) !important;
}

.swal-cart__btn--outline:hover {
  border-color: var(--cyan) !important;
  color: var(--cyan) !important;
}

.swal-cart--platform {
  width: min(100%, 520px) !important;
}

.platform-picker__lead {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: left;
}

.platform-picker__loading,
.platform-picker__error {
  margin: 8px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.platform-picker__error {
  color: #b45309;
}

.platform-picker__list {
  display: grid;
  gap: 10px;
}

.platform-picker__option {
  display: block;
  cursor: pointer;
}

.platform-picker__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.platform-picker__option-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.platform-picker__option input:checked + .platform-picker__option-inner {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.platform-picker__option:not(.platform-picker__option--disabled):hover .platform-picker__option-inner {
  transform: translateY(-1px);
  border-color: var(--border-accent);
}

.platform-picker__option--disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.platform-picker__name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.platform-picker__match {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
}

.platform-picker__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.platform-picker__option--steam .platform-picker__name { color: #1b2838; }
.platform-picker__option--epic .platform-picker__name { color: #2a2a2a; }
.platform-picker__option--archive .platform-picker__name { color: #0ea5e9; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan) 0%, #0096c7 50%, var(--purple) 100%);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--cyan-glow), 0 0 0 2px rgba(0, 180, 216, 0.3);
}

.btn--outline {
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--border-accent);
  box-shadow: var(--shadow);
}

.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.08) brightness(1.02);
}

.hero__slide--fallback {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #312e81 100%);
}

.hero__slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(244, 247, 252, 0.42) 0%, rgba(244, 247, 252, 0.18) 38%, transparent 58%),
    linear-gradient(180deg, transparent 0%, transparent 75%, rgba(244, 247, 252, 0.22) 100%);
  pointer-events: none;
}

.hero__slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero__slider-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.hero__slider-dot--active {
  width: 28px;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.hero__slider-dot:hover {
  opacity: 0.9;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

/* Hero typography — crisp, eye-friendly, no background boxes */
.hero__badges .badge {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.hero__badges .badge--live {
  color: #15803d;
  border-color: rgba(21, 128, 61, 0.25);
  background: rgba(240, 253, 244, 0.9);
  box-shadow: none;
}

.hero__badges .badge--lan {
  color: #6d28d9;
  border-color: rgba(109, 40, 217, 0.25);
  background: rgba(245, 243, 255, 0.9);
  box-shadow: none;
}

.hero__badges .badge--tournament {
  color: #c2410c;
  border-color: rgba(194, 65, 12, 0.25);
  background: rgba(255, 247, 237, 0.9);
  box-shadow: none;
}

.hero__title-line {
  display: block;
  color: #0f172a;
  -webkit-text-stroke: 0.6px rgba(255, 255, 255, 0.95);
  paint-order: stroke fill;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.hero__title-line--accent {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  filter: none;
  -webkit-text-stroke: 0.6px rgba(15, 23, 42, 0.35);
  paint-order: stroke fill;
  text-shadow:
    0 1px 3px rgba(15, 23, 42, 0.55),
    0 2px 8px rgba(15, 23, 42, 0.35);
}

.hero__desc {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow:
    0 1px 3px rgba(15, 23, 42, 0.55),
    0 2px 8px rgba(15, 23, 42, 0.35);
}

.hero__desc strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow:
    0 1px 3px rgba(15, 23, 42, 0.55),
    0 2px 8px rgba(15, 23, 42, 0.35);
}

.hero__actions .btn--primary {
  background: linear-gradient(135deg, #0891b2 0%, #6366f1 100%);
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.3);
}

.hero__actions .btn--primary:hover {
  box-shadow: 0 6px 22px rgba(99, 102, 241, 0.35);
}

.hero__actions .btn--outline {
  color: #0e7490;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid #0e7490;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  text-shadow: none;
}

.hero__actions .btn--outline:hover {
  color: #0f766e;
  background: rgba(255, 255, 255, 0.9);
  border-color: #0f766e;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.hero__stats .stat__value {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.5px rgba(15, 23, 42, 0.35);
  paint-order: stroke fill;
  text-shadow:
    0 1px 3px rgba(15, 23, 42, 0.5),
    0 2px 8px rgba(15, 23, 42, 0.3);
}

.hero__stats .stat__unit,
.hero__stats .stat__label {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.4px rgba(15, 23, 42, 0.3);
  paint-order: stroke fill;
  text-shadow:
    0 1px 3px rgba(15, 23, 42, 0.45),
    0 2px 6px rgba(15, 23, 42, 0.25);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.badge--live {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.5);
  background: rgba(22, 163, 74, 0.15);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.25);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.badge--lan {
  color: var(--purple-neon);
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(124, 58, 237, 0.15);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.3);
}

.badge--tournament {
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.55);
  background: rgba(249, 115, 22, 0.15);
  box-shadow: 0 0 16px rgba(251, 146, 60, 0.25);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat__unit {
  font-size: 1rem;
}

.stat__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual card */
.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg), 0 0 60px var(--cyan-glow);
  overflow: hidden;
}

.hero-card__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--cyan);
  z-index: 2;
}

.hero-card__corner--tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.hero-card__corner--br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.hero-card__inner {
  padding: 32px;
}

.hero-card__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 20px;
}

.hero-card__screen {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.hero-card__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 255, 0.03) 2px,
    rgba(0, 229, 255, 0.03) 4px
  );
  pointer-events: none;
}

.hero-card__hud {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.hud-tag {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan-bright);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 3px;
}

.hud-tag--ping {
  background: rgba(124, 58, 237, 0.2);
  color: var(--purple-light);
  border-color: rgba(124, 58, 237, 0.4);
}

.hero-card__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 3px;
  animation: barFill 2s ease-out;
}

@keyframes barFill {
  from { width: 0 !important; }
}

.hero-card__tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  text-align: center;
}

.hero-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-card__specs span {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--text-muted);
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section#paketler {
  background: linear-gradient(135deg, #fffaf2 0%, #f5f1ff 100%);
  position: relative;
}

.section#paketler::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 180, 216, 0.06), transparent 35%, rgba(124, 58, 237, 0.06));
  pointer-events: none;
}

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section__desc {
  margin-top: 16px;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section__desc--small {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.section__cta {
  text-align: center;
  margin-top: 40px;
}

/* Service offer cards (tarife stili) */
.service-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-offer-card--cyan {
  background: var(--elite-bg);
  border-color: rgba(14, 165, 233, 0.2);
}

.service-offer-card--purple {
  background: var(--platinum-bg);
  border-color: rgba(99, 102, 241, 0.2);
}

.service-offer-card--gold {
  background: var(--gold-bg);
  border-color: rgba(217, 119, 6, 0.2);
}

.service-offer-card--featured {
  transform: scale(1.04);
  border: 2px solid var(--platinum);
  box-shadow: var(--shadow-lg), 0 0 40px var(--purple-glow);
  z-index: 1;
}

.service-offer-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.service-offer-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 20px;
}

.service-offer-card__ribbon {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.service-offer-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.service-offer-card--cyan .service-offer-card__title { color: var(--elite); }
.service-offer-card--purple .service-offer-card__title { color: var(--platinum); }
.service-offer-card--gold .service-offer-card__title { color: var(--gold); }

.service-offer-card__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 4.8em;
}

.service-offer-card__desc em {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.service-offer-card--gold .service-offer-card__desc em {
  color: #b45309;
}

.service-offer-card__divider {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}

.service-offer-card__list-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.service-offer-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.service-offer-card__list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}

.service-offer-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.service-offer-card--cyan .service-offer-card__list li { color: #0e7490; }
.service-offer-card--cyan .service-offer-card__list li::before { background: var(--elite); }

.service-offer-card--purple .service-offer-card__list li { color: #4338ca; }
.service-offer-card--purple .service-offer-card__list li::before { background: var(--platinum); }

.service-offer-card--gold .service-offer-card__list li { color: #b45309; }
.service-offer-card--gold .service-offer-card__list li::before { background: var(--gold); }

.service-offer-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}

.service-offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.service-offer-card__price-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.service-offer-card--cyan .service-offer-card__price-val { color: var(--elite); }
.service-offer-card--purple .service-offer-card__price-val { color: var(--platinum); }

.service-offer-card__price-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.service-offer-card__cart-btn {
  flex: 1;
  max-width: 180px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-offer-card--cyan .service-offer-card__cart-btn {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}

.service-offer-card--purple .service-offer-card__cart-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.service-offer-card--gold .service-offer-card__cart-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.service-offer-card__cart-btn:hover {
  transform: translateY(-2px);
}

.service-offer-card__cart-btn--quote {
  max-width: none;
  width: 100%;
}

/* Hardware showcase */
.hardware-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  margin-bottom: 24px;
}

.hardware-hero__main,
.hardware-hero__stats {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.hardware-hero__main {
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(0, 180, 216, 0.14) 0%, rgba(124, 58, 237, 0.12) 100%);
  border-color: rgba(0, 180, 216, 0.24);
}

.hardware-hero__badge {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hardware-hero__title {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}

.hardware-hero__text {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

.hardware-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hardware-hero__chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.hardware-hero__stats {
  display: grid;
  gap: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(232, 241, 255, 0.95) 100%);
}

.hardware-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hardware-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.hardware-stat__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.hardware-stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.hardware-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hardware-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
}

.hardware-card--highlight {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
  border-color: rgba(0, 180, 216, 0.24);
}

.hardware-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  box-shadow: 0 10px 24px rgba(0, 180, 216, 0.18);
}

.hardware-card h4 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.hardware-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.hardware-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.hardware-card__list li {
  padding-left: 14px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
}

.hardware-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--gold { background: var(--gold-bg); border-color: rgba(217, 119, 6, 0.2); }
.pricing-card--platinum { background: var(--platinum-bg); border-color: rgba(99, 102, 241, 0.2); }
.pricing-card--elite { background: var(--elite-bg); border-color: rgba(14, 165, 233, 0.2); }

.pricing-card--featured {
  transform: scale(1.04);
  border: 2px solid var(--platinum);
  box-shadow: var(--shadow-lg), 0 0 40px var(--purple-glow);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 20px;
}

.pricing-card__ribbon {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card--gold .pricing-card__tier { color: var(--gold); }
.pricing-card--platinum .pricing-card__tier { color: var(--platinum); }
.pricing-card--elite .pricing-card__tier { color: var(--elite); }

.pricing-card__price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__specs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.spec-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info__text {
  color: var(--text-muted);
  margin: 16px 0 32px;
  font-size: 1.1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-link:hover {
  border-color: var(--cyan);
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.contact-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  box-shadow: 0 10px 24px rgba(0, 180, 216, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link__icon i {
  font-size: 1rem;
  line-height: 1;
}

.contact-link:hover .contact-link__icon {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 180, 216, 0.24);
}

.contact-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 32px 28px;
  background: #fafcfd;
  border: 1px solid #dbe7ee;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Speedtest-style gauge */
.speedtest {
  width: 100%;
  text-align: center;
}

.speedtest__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a2b3c;
  margin-bottom: 4px;
}

.speedtest__server {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7b8da0;
  margin-bottom: 8px;
}

.speedtest__gauge-wrap {
  position: relative;
  width: min(280px, 100%);
  margin: 0 auto 20px;
  aspect-ratio: 1;
}

.speedtest__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.speedtest__track,
.speedtest__ring {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
}

.speedtest__track {
  stroke: #e4edf2;
  stroke-dasharray: 434 578;
  stroke-dashoffset: 0;
}

.speedtest__ring {
  stroke-dasharray: 434 578;
  stroke-dashoffset: 434;
  transition: stroke 0.3s ease;
}

.speedtest__go {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border: none;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(145deg, #1cb0a0 0%, #00a0d8 100%);
  box-shadow: 0 8px 28px rgba(28, 176, 160, 0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  z-index: 2;
}

.speedtest__go:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 10px 32px rgba(28, 176, 160, 0.5);
}

.speedtest--running .speedtest__go,
.speedtest--done .speedtest__go {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
}

.speedtest__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  z-index: 1;
}

.speedtest__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: #1a2b3c;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.speedtest--running .speedtest__value,
.speedtest--done .speedtest__value {
  opacity: 1;
}

.speedtest__phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b8da0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.speedtest--running .speedtest__phase,
.speedtest--done .speedtest__phase {
  opacity: 1;
}

.speedtest__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e4edf2;
}

.speedtest__result {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.speedtest__result-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9bab;
}

.speedtest__result-data {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.speedtest__result-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1;
}

.speedtest__result--down .speedtest__result-val {
  color: #1cb0a0;
}

.speedtest__result--up .speedtest__result-val {
  color: #7c5cff;
}

.speedtest__result-unit {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a9bab;
}

.speedtest--done .speedtest__result-val {
  animation: speedPop 0.4s ease;
}

@keyframes speedPop {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  width: min(480px, 100%);
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal--open .modal__box {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.modal__text {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 960px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .order-header__back {
    display: none;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .game-store__hero,
  .game-store__layout {
    grid-template-columns: 1fr;
  }

  .game-store__sidebar {
    position: static;
    order: -1;
  }

  .game-store__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .game-card__footer {
    flex-wrap: wrap;
  }

  .game-card__add-btn {
    width: 100%;
    text-align: center;
  }

  .game-filter {
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .hero__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hardware-hero,
  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured,
  .service-offer-card--featured {
    transform: none;
  }

  .service-offer-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .service-offer-card__cart-btn {
    max-width: none;
    width: 100%;
  }

  .pricing-card--featured:hover,
  .service-offer-card--featured:hover {
    transform: translateY(-4px);
  }

  .nav--desktop {
    display: none;
  }

  .nav--mobile {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 160;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border: none;
    box-shadow: none;
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav--mobile.nav--open {
    transform: translateX(0);
  }

  .nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 20px 20px;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .nav__mobile-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 2px;
  }

  .nav__mobile-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav__mobile-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #06b6d4;
  }

  .nav__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text-muted);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .nav__close:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.06);
  }

  .nav__links {
    flex-direction: column;
    gap: 6px;
    padding: 20px 16px;
    flex: 1;
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid transparent;
    border-radius: 10px;
    transform: translateX(12px);
    transition: transform 0.3s ease, background 0.2s, border-color 0.2s, color 0.2s;
  }

  .nav--open .nav__link {
    transform: translateX(0);
  }

  .nav--mobile.nav--open .nav__link:nth-child(1) { transition-delay: 0.05s; }
  .nav--mobile.nav--open .nav__link:nth-child(2) { transition-delay: 0.09s; }
  .nav--mobile.nav--open .nav__link:nth-child(3) { transition-delay: 0.13s; }
  .nav--mobile.nav--open .nav__link:nth-child(4) { transition-delay: 0.17s; }
  .nav--mobile.nav--open .nav__link:nth-child(5) { transition-delay: 0.21s; }
  .nav--mobile.nav--open .nav__link:nth-child(6) { transition-delay: 0.25s; }

  .nav__link:hover {
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.15);
  }

  .nav__mobile-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 16px calc(28px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    margin-top: auto;
  }

  .nav__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--text-muted);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s, color 0.2s;
  }

  .nav__contact:hover {
    color: var(--cyan);
    border-color: var(--border-accent);
  }

  .nav-toggle {
    display: flex;
    z-index: 140;
    position: relative;
  }

  .nav-toggle--open {
    visibility: hidden;
    pointer-events: none;
  }

  .header__actions {
    gap: 6px;
  }

  .cart-btn {
    min-width: 46px;
    height: 46px;
    padding: 0 10px;
  }

  .cart-btn__label {
    display: none;
  }

  .cart-btn__icon {
    width: 20px;
    height: 20px;
  }

  .header:not(.header--scrolled) .nav__link {
    color: var(--text);
    text-shadow: none;
  }

  .nav__link {
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
  }

  .hero__stats {
    gap: 20px;
  }

  .stat__value {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }

  .hero__slide:not(.hero__slide--active) {
    display: none;
  }

  .hero__slider-overlay {
    background: var(--bg);
  }

  .logo__brand {
    animation: none;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .feature-strip__item {
    width: 100%;
    justify-content: center;
  }

  .contact-visual {
    padding: 24px 16px;
  }

  .speedtest__results {
    gap: 8px;
  }

  .speedtest__result-val {
    font-size: 1.05rem;
  }
}
