/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg2:       #f8f5f7;
  --bg3:       #f2eef1;
  --blue:      #c8176e;
  --blue-dim:  #9e1258;
  --blue-glow: rgba(200,23,110,.22);
  --cyan:      #7c28a0;
  --ps-blue:   #1a1060;
  --white:     #111827;
  --muted:     #6b7280;
  --border:    rgba(200,23,110,.14);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --r:         6px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── LANGUAGE SWITCHING ─────────────────────────────────── */
[data-lang="en"] [data-ru]:not([data-en]),
[data-lang="ru"] [data-en]:not([data-ru]) { display: none; }
.lang-en, .lang-ru { display: none; }
[data-lang="en"] .lang-en  { display: block; }
[data-lang="ru"] .lang-ru  { display: block; }
[data-lang="en"] .lang-en-inline { display: inline; }
[data-lang="ru"] .lang-ru-inline { display: inline; }
.lang-en-inline, .lang-ru-inline { display: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── GRID LINES BG ──────────────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,23,110,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,23,110,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,23,110,.1);
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  /* slight contrast boost so logo reads crisply at small size */
  filter: contrast(1.05);
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img { opacity: .8; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: .82rem; letter-spacing: .08em; font-weight: 500;
  text-transform: uppercase;
}
.nav-links a {
  color: #374151;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--blue);
  transition: width .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex; align-items: center; gap: .35rem;
  background: var(--bg2);
  border: 1px solid rgba(200,23,110,.15);
  border-radius: 30px;
  padding: 3px;
  font-family: var(--font-head);
  font-size: .68rem; letter-spacing: .1em;
}
.lang-btn {
  padding: 4px 12px; border-radius: 24px;
  cursor: pointer; border: none; background: transparent;
  color: #6b7280; font-family: inherit;
  font-size: inherit; letter-spacing: inherit;
  transition: all .2s;
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 12px var(--blue-glow);
}
.nav-cta {
  padding: 8px 22px;
  background: var(--blue);
  color: #fff; font-family: var(--font-head);
  font-size: .72rem; letter-spacing: .1em;
  border-radius: var(--r);
  border: none; cursor: pointer;
  box-shadow: 0 0 20px var(--blue-glow);
  transition: all .2s;
  white-space: nowrap;
  font-weight: 700;
}
.nav-cta:hover {
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(124,40,160,.45);
  transform: translateY(-1px);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #111827; border-radius: 2px;
  transition: all .3s;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,23,110,.1);
  padding: 1.5rem 2.5rem;
  flex-direction: column; gap: 1.2rem;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a,
.mobile-nav button {
  font-family: var(--font-head);
  font-size: .8rem; letter-spacing: .08em;
  color: #374151; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  text-align: left; padding: 0; font-weight: 600;
}
.mobile-nav a:hover,
.mobile-nav button:hover { color: var(--blue); }

.mobile-lang {
  display: flex;
  gap: .5rem;
}
.mobile-lang .lang-active { color: var(--blue) !important; }
.mobile-lang-sep { color: var(--border); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 2.5rem 4rem;
  overflow: hidden;
  background:
    linear-gradient(
      to right,
      rgba(10,0,20,.88) 0%,
      rgba(10,0,20,.65) 50%,
      rgba(10,0,20,.15) 100%
    ),
    url('Logo/Cover 2.png') center center / cover no-repeat;
}
.hero .grid-bg { opacity: .08; }

/* Text overrides for dark hero */
.hero h1 { color: #fff; }
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}
.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.18);
  color: #fff;
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.hero-sub { color: rgba(255,255,255,.78) !important; }
.hero-stats .stat-num { color: #fff; }
.hero-stats .stat-label { color: rgba(255,255,255,.6); }
.hero-badge {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.1);
}

.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(200,23,110,.012) 3px,
    rgba(200,23,110,.012) 4px
  );
  animation: scanlines 8s linear infinite;
}
@keyframes scanlines {
  0%   { background-position: 0 0; }
  100% { background-position: 0 400px; }
}

.hero-spotlight {
  position: absolute;
  top: -20%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(200,23,110,.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 6px 16px;
  border: 1.5px solid var(--blue);
  border-radius: 30px;
  font-size: .7rem; letter-spacing: .12em;
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
  background: rgba(200,23,110,.06);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: fadeUp .65s .1s ease both;
}
.hero h1 .accent { color: var(--blue); display: block; }
.hero h1 .stroke {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  display: block;
}
.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: #4b5563;
  font-weight: 400;
  max-width: 460px;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp .75s .3s ease both;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  padding: 14px 36px;
  background: var(--blue);
  color: #fff; font-family: var(--font-head);
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase;
  border: none; border-radius: var(--r);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 0 28px var(--blue-glow), 0 4px 16px rgba(0,0,0,.15);
  transition: all .25s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .4s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--cyan);
  box-shadow: 0 0 40px rgba(124,40,160,.4), 0 6px 20px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 14px 32px;
  background: transparent;
  color: var(--white); font-family: var(--font-head);
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .25s;
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 16px var(--blue-glow);
}

/* ─── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual {
  display: none;
}
@keyframes floatY {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%      { transform: translateY(-50%) translateY(-18px); }
}
.ps5-art {
  width: 100%;
  filter: drop-shadow(0 8px 40px rgba(200,23,110,.25));
}

/* ─── HERO STATS ──────────────────────────────────────────── */
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp .8s .4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat-num .text-cyan { color: var(--cyan); }
.stat-label {
  font-size: .72rem;
  color: #6b7280;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
  font-weight: 600;
}

/* ─── SECTION COMMONS ────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section-tag {
  font-family: var(--font-head);
  font-size: .65rem; letter-spacing: .2em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: .7rem; font-weight: 700;
}
.section-tag::before { content: '//'; margin-right: .5rem; opacity: .5; }
h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.15;
}
h2.section-title span { color: var(--blue); }
.section-desc {
  font-size: .95rem;
  color: #6b7280;
  font-weight: 400;
  max-width: 520px;
  margin-top: .8rem;
  line-height: 1.7;
}

/* ─── GAME LIBRARY MARQUEE ──────────────────────────────── */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.games-marquee-section {
  background: #fff;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

.games-marquee-label {
  text-align: center;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 1.4rem;
}

.games-marquee-track-wrap {
  position: relative;
  overflow: hidden;
}

/* Soft fade on left & right edges */
.games-marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.games-marquee-fade-left  { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.games-marquee-fade-right { right: 0; background: linear-gradient(to left,  #fff, transparent); }

.games-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

/* Pause on hover */
.games-marquee-track-wrap:hover .games-marquee-track {
  animation-play-state: paused;
}

.game-cover {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  transition: transform .25s, box-shadow .25s;
}
.game-cover:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 10px 32px rgba(200,23,110,.22);
}
.game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── WHATSAPP SHARED ────────────────────────────────────── */
@keyframes wa-float {
  0%, 100% { transform: translateY(0px);  box-shadow: 0 8px 30px rgba(37,211,102,.35); }
  50%       { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(37,211,102,.55); }
}
@keyframes wa-sticky-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

.wa-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 2rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: 50px;
  animation: wa-float 2.8s ease-in-out infinite;
  transition: filter .2s;
}
.wa-btn:hover { filter: brightness(1.1); }

/* ─── WHATSAPP INLINE (after pricing) ───────────────────── */
.wa-inline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem 1rem 3rem;
  text-align: center;
}
.wa-inline-nudge {
  font-size: .95rem;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* ─── WHATSAPP STICKY FLOAT (bottom-right) ───────────────── */
.wa-sticky {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.3rem .75rem 1rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: wa-sticky-float 3s ease-in-out infinite;
  transition: filter .2s, padding .25s;
  overflow: hidden;
  max-width: 220px;
}
.wa-sticky:hover { filter: brightness(1.1); }
.wa-sticky .wa-icon { width: 1.5rem; height: 1.5rem; }
.wa-sticky-label {
  white-space: nowrap;
}

/* collapse label to icon-only on very small screens */
@media (max-width: 400px) {
  .wa-sticky { padding: .75rem; max-width: 52px; }
  .wa-sticky-label { display: none; }
}

/* ─── SERVICES ───────────────────────────────────────────── */
#services {
  padding: 7rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg2) 100%);
}
#services .section-inner > .header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0; transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(200,23,110,.12);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(200,23,110,.08);
  border: 1px solid rgba(200,23,110,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 26px; height: 26px; }

.service-card .card-body { padding: 2rem; }
.card-eyebrow {
  font-family: var(--font-head);
  font-size: .6rem; letter-spacing: .2em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: .5rem; font-weight: 700;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .8rem;
}
.card-desc {
  font-size: .88rem; color: #4b5563;
  line-height: 1.65; font-weight: 400;
}
.card-list {
  margin-top: 1.2rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.card-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .85rem; color: #374151;
}
.card-list li::before {
  content: '▸';
  color: var(--blue); font-size: .7rem;
  margin-top: .25rem; flex-shrink: 0;
}
.card-footer-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-size: .68rem; letter-spacing: .12em;
  color: var(--blue); text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(200,23,110,.3);
  padding-bottom: 2px;
  transition: gap .2s, color .2s;
}
.card-footer-link:hover { gap: .8rem; color: var(--cyan); }
.card-footer-link .arrow { font-size: .9rem; }

.service-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card.featured .card-body { display: flex; flex-direction: column; justify-content: center; }
.card-visual {
  background: linear-gradient(135deg, var(--ps-blue) 0%, #7c28a0 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  min-height: 260px;
  position: relative; overflow: hidden;
}
.card-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 21px
  );
}
.ps5-icon {
  width: 180px; opacity: .9;
  filter: drop-shadow(0 8px 32px rgba(200,23,110,.3));
  position: relative; z-index: 1;
}
.card-ps5-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.4));
}

/* ─── PRICING ────────────────────────────────────────────── */
#pricing {
  padding: 7rem 0;
  background: var(--bg2);
}
#pricing .section-inner { text-align: center; }
#pricing .section-desc { margin: .8rem auto 0; }

/* Pricing table */
.pricing-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(200,23,110,.08);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  font-size: .92rem;
}
.pricing-table thead tr {
  background: var(--ps-blue);
  color: #fff;
}
.pricing-table thead th {
  padding: 1rem 1.4rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-table thead th:last-child { text-align: center; }

.pricing-table tbody tr {
  border-bottom: 1px solid #f0edf3;
  transition: background .18s;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: #fdf5fb; }

.pricing-table td {
  padding: .95rem 1.4rem;
  vertical-align: middle;
}

/* Duration cell */
.pt-days {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-weight: 700;
  color: #111827;
  font-size: .95rem;
}

/* Price cells */
.pt-price {
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  white-space: nowrap;
}
.pt-ppd {
  color: #6b7280;
  font-size: .85rem;
  white-space: nowrap;
}
.pt-ctrl {
  color: #374151;
  font-size: .88rem;
  white-space: nowrap;
}
.pt-free {
  color: #16a34a;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
}

/* Badge inside duration cell */
.pt-badge {
  display: inline-block;
  margin-top: .25rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  width: fit-content;
}
.pt-badge-top {
  background: var(--ps-blue);
}

/* Highlighted rows */
.pt-row-highlight {
  background: #fef6fb;
}
.pt-row-top {
  background: #f5f0ff;
}

/* Book button */
.pt-btn {
  display: block;
  margin: 0 auto;
  padding: .45rem 1.1rem;
  background: transparent;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.pt-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.pt-btn-filled {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 0 16px var(--blue-glow);
}
.pt-btn-filled:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

/* Note below table */
.pricing-note {
  margin-top: 1.2rem;
  font-size: .82rem;
  color: #9ca3af;
  text-align: center;
}

/* Hide on small screens */
@media (max-width: 560px) {
  .hide-sm { display: none; }
  .pricing-table thead th,
  .pricing-table td { padding: .8rem .9rem; }
}

/* ─── HAPPY CUSTOMERS ───────────────────────────────────── */
#customers {
  padding: 5rem 0 4rem;
  background: #fff;
}
#customers .section-title { text-align: center; }

/* Photo strip */
.cust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.cust-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  transition: transform .3s, box-shadow .3s;
}
.cust-photo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(200,23,110,.18);
}
.cust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Testimonial cards */
.cust-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cust-card {
  background: var(--bg2);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
  transition: transform .3s, box-shadow .3s;
}
.cust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(200,23,110,.1);
}
.cust-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--blue);
}
.cust-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: .1em;
}
.cust-quote {
  font-size: .88rem;
  color: #374151;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}
.cust-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 768px) {
  .cust-strip { grid-template-columns: repeat(2, 1fr); }
  .cust-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cust-strip { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
}

/* ─── REPAIR SECTION ─────────────────────────────────────── */
#repair {
  padding: 7rem 0;
  background: var(--bg);
}
#repair .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
#repair .section-title { font-size: 1.8rem; }
#repair .btn-primary   { margin-top: 2rem; }
#repair .repair-process { margin-top: 2rem; }

.repair-issues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.issue-chip {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.issue-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(200,23,110,.1);
}
.issue-icon { font-size: 1.4rem; margin-bottom: .4rem; }
.issue-name {
  font-family: var(--font-head);
  font-size: .7rem; letter-spacing: .06em;
  font-weight: 700; text-transform: uppercase;
  color: #111827;
}
.issue-price {
  font-size: .8rem; color: var(--blue);
  margin-top: .2rem; font-weight: 600;
}

.repair-process { margin-top: 2.5rem; }
.process-step {
  display: flex; gap: 1.2rem;
  margin-bottom: 1.5rem; align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: .7rem; font-weight: 700;
  color: var(--blue); flex-shrink: 0;
}
.step-content .step-title {
  font-family: var(--font-head);
  font-size: .78rem; letter-spacing: .06em;
  font-weight: 700; text-transform: uppercase;
  margin-bottom: .25rem;
}
.step-content p {
  font-size: .83rem; color: #6b7280;
  font-weight: 400;
}

/* ─── WHY US ─────────────────────────────────────────────── */
#why {
  padding: 6rem 0;
  background: var(--bg2);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
#why .section-inner { text-align: center; }
#why .section-desc { margin: .8rem auto 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
  text-align: left;
}
.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,23,110,.35);
  box-shadow: 0 8px 32px rgba(200,23,110,.08);
}
.why-num {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 900;
  color: rgba(200,23,110,.12);
  line-height: 1; margin-bottom: .8rem;
}
.why-title {
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.why-desc {
  font-size: .83rem; color: #6b7280;
  line-height: 1.65; font-weight: 400;
}

/* ─── BOOKING FORM ───────────────────────────────────────── */
#booking {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%);
}
.booking-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.booking-intro .section-desc {
  margin: .8rem auto 0;
}

.form-wrapper {
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(200,23,110,.08);
}
.form-header {
  background: linear-gradient(135deg, var(--ps-blue) 0%, #c8176e 100%);
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative; overflow: hidden;
}
.form-header::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(255,255,255,.03) 12px, rgba(255,255,255,.03) 13px
  );
}
.form-header-content { position: relative; z-index: 1; }
.form-header h3 {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: #fff;
}
.form-header p {
  font-size: .85rem; color: rgba(255,255,255,.7);
  font-weight: 400; margin-top: .3rem;
}

.form-body { padding: 2.5rem; }

.service-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-bottom: 2rem;
}
.service-tab {
  padding: 1rem 1.2rem;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  display: flex; align-items: center; gap: .75rem;
}
.service-tab:hover { border-color: rgba(200,23,110,.35); }
.service-tab.active {
  border-color: var(--blue);
  background: rgba(200,23,110,.05);
  box-shadow: 0 4px 16px rgba(200,23,110,.1);
}
.tab-icon {
  width: 36px; height: 36px;
  background: rgba(200,23,110,.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.tab-info .tab-label {
  font-family: var(--font-head);
  font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; font-weight: 700;
  color: var(--white);
}
.tab-info .tab-sub {
  font-size: .75rem; color: #6b7280;
  margin-top: .1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .72rem; letter-spacing: .08em;
  color: var(--muted); text-transform: uppercase;
  font-family: var(--font-head); font-weight: 700;
}
.form-input,
.form-select,
.form-textarea {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--r);
  padding: 11px 14px;
  color: #111827;
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #9ca3af; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(200,23,110,.1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8176e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
}
.form-select option { background: #fff; }
.form-textarea { min-height: 110px; resize: vertical; }

.form-check {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: 1rem 1.2rem;
  background: rgba(200,23,110,.03);
  border: 1.5px solid rgba(200,23,110,.12);
  border-radius: var(--r);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--blue); flex-shrink: 0;
}
.form-check-text {
  font-size: .82rem; color: #6b7280; line-height: 1.5;
}
.form-check-text a { color: var(--blue); }

.form-submit-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.8rem; gap: 1rem; flex-wrap: wrap;
}
.form-note {
  font-size: .77rem; color: #6b7280; font-weight: 400;
}
.form-note span { color: var(--blue); font-weight: 600; }
.btn-submit {
  padding: 13px 40px;
  background: var(--blue);
  color: #fff; font-family: var(--font-head);
  font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700;
  border: none; border-radius: var(--r);
  cursor: pointer;
  box-shadow: 0 0 24px var(--blue-glow);
  transition: all .25s;
  display: flex; align-items: center; gap: .5rem;
}
.btn-submit:hover {
  background: var(--cyan);
  box-shadow: 0 0 36px rgba(124,40,160,.4);
  transform: translateY(-1px);
}
.btn-submit .icon { font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success .btn-ghost { margin-top: 1.5rem; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(200,23,110,.08);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 24px var(--blue-glow);
}
.success-title {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.success-desc {
  font-size: .88rem; color: var(--muted);
  margin-top: .5rem;
}

/* ─── FORM FIELD SHOW/HIDE ────────────────────────────────── */
.rent-fields, .repair-fields { transition: opacity .3s; }
.hidden-fields { display: none; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #111827;
  border-top: 1px solid #1f2937;
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1f2937;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 900;
  letter-spacing: .12em; margin-bottom: 1rem; color: #fff;
}
.footer-logo .glow { color: var(--cyan); }
.footer-brand-desc {
  font-size: .83rem; color: rgba(255,255,255,.35);
  line-height: 1.65; font-weight: 400;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: #fff; font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a,
.footer-col ul li {
  font-size: .83rem; color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-hours { margin-top: .5rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid #374151;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #6b7280;
  transition: all .2s;
}
.social-btn:hover {
  border-color: var(--blue); color: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* ─── CLIP DIVIDER ───────────────────────────────────────── */
.clip-divider {
  height: 60px; overflow: hidden;
  position: relative; z-index: 1;
}
.clip-divider svg { display: block; width: 100%; height: 100%; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .service-card.featured { grid-template-columns: 1fr; }
  .card-visual { min-height: 200px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; grid-template-columns: 1fr; }

  .repair-issues { grid-template-columns: 1fr 1fr; }
  #repair .section-inner { grid-template-columns: 1fr; gap: 3rem; }
  #repair .section-title { font-size: clamp(1.6rem, 4vw, 1.8rem); }
  .form-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-body { padding: 1.5rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }

  /* Hero — better portrait crop */
  .hero {
    background-position: 70% center;
    align-items: flex-end;
    padding-bottom: 5rem;
  }
  .hero-content { max-width: 100%; }

  /* Hero stats — wrap to 2 columns */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  .stat { align-items: center; text-align: center; }
  .stat-num { font-size: 1.5rem; }

  /* Game marquee — smaller cards */
  .game-cover { width: 140px; height: 90px; }
  .games-marquee-fade { width: 60px; }

  /* Pricing table — hide extra controller col on mobile */
  .pt-ctrl { display: none; }
  .pricing-table thead th:nth-child(4) { display: none; }

  /* Customers */
  .cust-strip { grid-template-columns: repeat(2, 1fr); }
  .cust-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { background-position: 65% center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 0.8rem; }
  .stat-num { font-size: 1.3rem; }
  .repair-issues { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: 1fr; }
  .nav { padding: 0 1.5rem; }
  .section-inner { padding: 0 1.5rem; }

  /* Hero — very small screens */
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .hero-sub { font-size: .85rem; }
  .hero-badge { font-size: .62rem; }

  /* Pricing table font */
  .pricing-table { font-size: .8rem; }
  .pt-days { font-size: .85rem; }
  .pt-price { font-size: .9rem; }
  .pt-btn { padding: .35rem .7rem; font-size: .68rem; }

  /* Game marquee — even smaller */
  .game-cover { width: 110px; height: 72px; }

  /* WA inline button */
  .wa-btn { font-size: .88rem; padding: .7rem 1.4rem; }
}
