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

:root {
  --pk-yellow: #FFCB05;
  --pk-red:    #CC0000;
  --pk-blue:   #3B4CCA;
  --green:     #25D366;
  --tg:        #2AABEE;
  --text:      #F0F0EF;
  --muted:     #A8A8A6;
  --border:    rgba(255,255,255,0.10);
  --bg:        #2C2C2B;
  --card-bg:   #363635;
  --card-bg2:  #3F3F3E;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 200;
  height: 66px;
  display: flex; align-items: center;
  padding: 0 28px;
  background: #2C2C2B;
  border-bottom: 1px solid #222221;
  box-shadow: 0 2px 16px rgba(0,0,0,0.30);
}

.nav-inner {
  width: 100%; max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 0;
}

/* Logo — right side */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}

.logo-ball {
  width: 32px; height: 32px; position: relative; flex-shrink: 0;
}
.logo-ball-top  { position:absolute;top:0;left:0;width:100%;height:50%;background:var(--pk-red);border-radius:32px 32px 0 0; }
.logo-ball-bot  { position:absolute;bottom:0;left:0;width:100%;height:50%;background:#d0d0d0;border-radius:0 0 32px 32px; }
.logo-ball-band { position:absolute;top:50%;left:0;width:100%;height:3px;background:#1a1a1a;transform:translateY(-50%);z-index:2; }
.logo-ball-btn  { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:9px;height:9px;border-radius:50%;background:#d0d0d0;border:2px solid #1a1a1a;z-index:3; }

.logo-text     { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.logo-text .pk { color: var(--pk-yellow); }
.logo-text .st { color: #fff; }

/* Nav links — centered */
.nav-links {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-family: 'Heebo', sans-serif;
  font-size: 16px; font-weight: 800;
  padding: 20px 18px;
  position: relative;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px;
  background: var(--pk-yellow);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; font-weight: 800; }
.nav-links a.active::after { transform: scaleX(1); }

/* Action buttons — left side */
.nav-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.nav-act-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Heebo', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 7px 15px; border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.nav-act-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-wa { background: #25D366; color: #fff; }
.nav-tg { background: #2AABEE; color: #fff; }

/* keep old .nav-cta selector working on other pages */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #FFCB05, #FFB800);
  color: #000; font-size: 14px; font-weight: 900;
  padding: 9px 20px; border-radius: 9px;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ─── PS HERO ─── */
.ps-hero {
  position: relative;
  min-height: 0;
  display: flex; align-items: center;
  overflow: hidden;
  background: #05060A;
}

.ps-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}

.ps-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 6, 20, 0.94) 0%,
    rgba(4, 6, 20, 0.82) 32%,
    rgba(4, 6, 20, 0.50) 55%,
    rgba(4, 6, 20, 0.10) 75%,
    transparent 90%
  );
}

.ps-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  direction: ltr;
  width: 100%;
}

/* ── TEXT ── */
.ps-text {
  display: flex; flex-direction: column; gap: 28px;
  direction: rtl; /* restore RTL for Hebrew text inside */
  max-width: 540px;
}

.ps-live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 99px;
  width: fit-content;
}

.ps-pulse {
  width: 8px; height: 8px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: ps-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes ps-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.ps-h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900; color: #fff;
  line-height: 0.95; letter-spacing: -4px;
}
.ps-h1 span { color: var(--pk-yellow); }

.ps-desc {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.ps-stats-row {
  display: inline-flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 24px;
  width: fit-content;
}
.ps-stat-item { text-align: center; }
.ps-stat-item b { display: block; font-size: 22px; font-weight: 900; color: var(--pk-yellow); line-height: 1.1; }
.ps-stat-item span { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.ps-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

.ps-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.ps-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 16px; font-weight: 800;
  padding: 15px 28px; border-radius: 13px;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ps-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,211,102,0.55); }

.ps-btn-outline {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px; font-weight: 700;
  padding: 15px 22px; border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  transition: all 0.2s;
}
.ps-btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

.ps-micro { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.3px; }

/* ── VISUAL ── */
.ps-visual {
  position: relative;
  height: 520px;
}

/* Card stack */
.ps-cardstack {
  position: absolute;
  top: 30px; right: 40px;
}

.ps-card {
  position: absolute;
  width: 158px; height: 220px;
  border-radius: 10px;
}

.c3 {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(255,255,255,0.02) 9px, rgba(255,255,255,0.02) 10px),
    repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,0.02) 9px, rgba(255,255,255,0.02) 10px),
    linear-gradient(135deg, #3A0000, #700010);
  border: 2px solid rgba(204,0,0,0.4);
  transform: rotate(-16deg) translate(-72px, 48px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 20px rgba(204,0,0,0.15);
}
.c2 {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(255,255,255,0.02) 9px, rgba(255,255,255,0.02) 10px),
    repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,0.02) 9px, rgba(255,255,255,0.02) 10px),
    linear-gradient(135deg, #001040, #002580);
  border: 2px solid rgba(59,76,202,0.45);
  transform: rotate(-7deg) translate(-36px, 24px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.55), 0 0 20px rgba(59,76,202,0.15);
}
.c1 {
  background: #f8f8f0;
  border: 2px solid transparent;
  background-clip: padding-box;
  outline: 2px solid rgba(255,203,5,0.6);
  outline-offset: -2px;
  transform: rotate(3deg);
  box-shadow: 0 28px 72px rgba(0,0,0,0.65), 0 0 40px rgba(255,203,5,0.2);
  overflow: hidden; z-index: 3;
}

/* energy rings behind card stack */
.ps-cardstack::before,
.ps-cardstack::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ps-ring 3s ease-out infinite;
}
.ps-cardstack::before {
  width: 260px; height: 260px;
  border-color: rgba(255,203,5,0.15);
  animation-delay: 0s;
}
.ps-cardstack::after {
  width: 340px; height: 340px;
  border-color: rgba(255,203,5,0.07);
  animation-delay: 1s;
}
@keyframes ps-ring {
  0%   { transform: translate(-50%,-50%) scale(0.85); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(1.15); opacity: 0; }
}

.c1-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px 5px;
}
.c1-namebar { width: 72px; height: 9px; background: #1a1a3e; border-radius: 3px; }
.c1-hp { font-size: 9px; font-weight: 900; color: var(--pk-red); font-family: monospace; }
.c1-hp strong { font-size: 11px; }

.c1-art {
  margin: 2px 8px;
  height: 98px; border-radius: 6px;
  background: linear-gradient(135deg, #0a0028 0%, #000845 40%, #1a0040 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.c1-art::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(255,203,5,0.055) 0deg, transparent 9deg);
  animation: ps-spin 14s linear infinite;
}
.c1-orb {
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fffacc, #FFCB05 35%, #FF8C00 65%, #CC0000 100%);
  box-shadow:
    0 0 0 6px rgba(255,203,5,0.15),
    0 0 0 12px rgba(255,203,5,0.07),
    0 0 28px rgba(255,203,5,0.8),
    0 0 60px rgba(255,140,0,0.4);
  position: relative; z-index: 2;
}
.c1-rays { display: none; }
@keyframes ps-spin { to { transform: rotate(360deg); } }

.c1-footer { padding: 8px 10px; display: flex; flex-direction: column; gap: 6px; }
.c1-body { padding: 7px 10px; display: flex; flex-direction: column; gap: 5px; }
.c1-bar { height: 5px; background: #e5e7eb; border-radius: 3px; }
.c1-bar-s { width: 60%; }
.c1-bar-xs { width: 35%; }
.c1-atk {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; padding-top: 6px;
  border-top: 1px solid #e5e7eb;
}
.c1-cost { font-size: 10px; }
.c1-atkbar { flex: 1; height: 5px; background: #d1d5db; border-radius: 3px; margin: 0 8px; }
.c1-dmg { font-size: 14px; font-weight: 900; color: #0d0d1a; }

.c1-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 45%,
    rgba(255,255,255,0) 55%,
    rgba(255,255,255,0.03) 100%
  );
  pointer-events: none;
}

/* Booster box */
.ps-booster {
  position: absolute;
  bottom: 52px; left: 24px;
}
.bst-lid {
  width: 110px; height: 16px;
  background: linear-gradient(90deg, #AA0000, #EE1515, #AA0000);
  border-radius: 5px 5px 0 0;
}
.bst-face {
  width: 110px; height: 108px;
  background: linear-gradient(160deg, #EE1515 0%, #CC0000 40%, #AA0000 100%);
  border-radius: 0 0 6px 6px;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.6), 0 0 20px rgba(204,0,0,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
}
.bst-tape {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #FFCB05, #FFB800, #FFCB05);
}
.bst-label { text-align: center; margin-top: 6px; }
.bst-l1 { font-size: 7px; font-weight: 900; color: rgba(255,255,255,0.7); letter-spacing: 3px; }
.bst-l2 { font-size: 13px; font-weight: 900; color: #fff; letter-spacing: 3px; line-height: 1.1; }
.bst-stars { font-size: 10px; color: #FFCB05; letter-spacing: 2px; margin-top: 3px; }
.bst-icon { font-size: 30px; line-height: 1; margin-top: 2px; }
.bst-side {
  position: absolute;
  width: 14px; height: 108px;
  background: linear-gradient(90deg, #880000, #AA0000);
  left: -12px; bottom: 0;
  border-radius: 4px 0 0 4px;
  box-shadow: inset -2px 0 6px rgba(0,0,0,0.4);
}

/* Tags */
.ps-tag {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 900; font-size: 13px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  animation: ps-float 3.5s ease-in-out infinite;
  cursor: default;
}
.t1 {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #CC0000, #FF3333);
  color: #fff; font-size: 14px;
  top: 8px; left: 8px;
  animation-delay: 0s;
}
.t2 {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #FFCB05, #FF8C00);
  color: #000; font-size: 10px;
  top: 190px; left: -6px;
  animation-delay: 1.1s;
}
.t3 {
  width: 50px; height: 50px;
  background: #0d0d1a;
  border: 2px solid rgba(255,203,5,0.4);
  color: var(--pk-yellow); font-size: 10px;
  bottom: 100px; left: 70px;
  animation-delay: 0.6s;
}
@keyframes ps-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Bolts */
.ps-bolt {
  position: absolute;
  filter: drop-shadow(0 0 6px rgba(255,203,5,0.7));
  animation: ps-bolt-anim 2.8s ease-in-out infinite;
}
.b1 { width: 26px; top: 50px; right: 8px; animation-delay: 0.2s; }
.b2 { width: 18px; top: 220px; right: -4px; animation-delay: 1s; }
.b3 { width: 14px; bottom: 110px; right: 24px; animation-delay: 0.5s; filter: drop-shadow(0 0 5px rgba(255,68,68,0.8)); }
@keyframes ps-bolt-anim {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-7px) scale(1.05); }
}

/* Dots */
.ps-dot {
  position: absolute; border-radius: 50%;
  animation: ps-float 4s ease-in-out infinite;
}
.pd1 { width:6px; height:6px; background:#FFCB05; opacity:.5; top:22px; right:90px; animation-delay:.1s; }
.pd2 { width:4px; height:4px; background:#fff;    opacity:.3; top:110px; right:170px; animation-delay:.9s; }
.pd3 { width:5px; height:5px; background:#FF4444; opacity:.4; top:165px; right:120px; animation-delay:1.7s; }
.pd4 { width:6px; height:6px; background:#FFCB05; opacity:.4; bottom:70px; right:100px; animation-delay:.4s; }
.pd5 { width:4px; height:4px; background:#fff;    opacity:.25; bottom:30px; right:60px; animation-delay:1.3s; }
.pd6 { width:5px; height:5px; background:#FFCB05; opacity:.3; top:290px; right:80px; animation-delay:.7s; }

/* hero responsive */
@media (max-width: 900px) {
  .ps-inner { padding: 60px 24px; }
  .ps-text { max-width: 100%; }
  .ps-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(4,6,20,0.92) 0%,
      rgba(4,6,20,0.75) 60%,
      rgba(4,6,20,0.55) 100%
    );
  }
  .ps-h1 { font-size: clamp(44px, 10vw, 72px); }
}

/* legacy hero classes (kept for other pages) */
.hero-image-wrap { display: none; }
.hero-cta-strip  { display: none; }
.hero-headline, .hero-chips, .hero-btns, .chip { display: none; }

/* ─── BUTTONS ─── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 17px; font-weight: 800;
  padding: 15px 32px; border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.btn-wa-lg { font-size: 18px; padding: 16px 36px; }

.btn-tg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--tg); color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 17px; font-weight: 800;
  padding: 15px 32px; border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(42,171,238,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(42,171,238,0.6); }
.btn-tg-lg { font-size: 18px; padding: 16px 36px; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: #1E1E1D;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: stretch;
}
.stat {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 48px;
  border-left: 1px solid rgba(255,255,255,0.07);
  flex: 1; position: relative;
}
.stat:last-child { border-left: none; }

.stat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.stat:nth-child(1) .stat-icon { background: rgba(107,128,255,0.15); }
.stat:nth-child(2) .stat-icon { background: rgba(255,85,85,0.15); }
.stat:nth-child(3) .stat-icon { background: rgba(255,203,5,0.15); }

.stat-body { display: flex; flex-direction: column; gap: 3px; }

.stat-num-row { display: flex; align-items: baseline; gap: 1px; line-height: 1; }

.stat-n { font-size: 38px; font-weight: 900; line-height: 1; }
.stat:nth-child(1) .stat-n { color: #6B80FF; }
.stat:nth-child(2) .stat-n { color: #FF5555; }
.stat:nth-child(3) .stat-n { color: var(--pk-yellow); }

.stat-suf { font-size: 22px; font-weight: 900; }
.stat:nth-child(1) .stat-suf { color: #6B80FF; }
.stat:nth-child(2) .stat-suf { color: #FF5555; }
.stat:nth-child(3) .stat-suf { color: var(--pk-yellow); }

.stat small { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ─── TICKER ─── */
.ticker {
  background: linear-gradient(90deg, var(--pk-red), #990000);
  padding: 11px 0;
  overflow: hidden; white-space: nowrap;
  position: relative;
  display: flex; align-items: center;
  direction: ltr; /* חיוני — מבטיח לופ חלק ללא תלות ב-RTL */
  padding-right: 200px; /* מקום לתווית הקבועה */
}
.ticker-label {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  display: flex; align-items: center;
  background: linear-gradient(to left, #CC0000 65%, transparent);
  padding: 0 18px 0 48px;
  font-size: 12px; font-weight: 900; color: #fff;
  letter-spacing: 0.5px; white-space: nowrap;
  z-index: 2;
  direction: rtl;
}
.ticker-track {
  display: inline-flex; gap: 64px;
  animation: ticker-scroll 120s linear infinite;
  flex-shrink: 0;
}
.ticker-track span { color: #fff; font-weight: 800; font-size: 14px; letter-spacing: 0.3px; direction: rtl; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.sec { padding: 52px 24px; }
/* alternating: features=light, steps=dark */
.sec-white { background: #F4F4F3; }
.sec-gray  { background: #2C2C2B; }
.sec-dark  { background: #2C2C2B; }

/* text override for light sections */
.sec-white .section-title { color: #111; }
.sec-white .section-tag, .sec-white .section-label {
  background: #FEF3C7; color: #92400E; border-color: #FDE68A;
}

/* ── Light section accordion overrides ── */
.sec-white .feat-accordion { counter-reset: feat-num; }
.sec-white .feat-item {
  background: #fff;
  border: 1.5px solid #E8E8E6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
  border-right: 4px solid rgba(0,0,0,0.07);
  counter-increment: feat-num;
}
.sec-white .feat-item::before {
  content: counter(feat-num, decimal-leading-zero);
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 900; letter-spacing: 1px; color: #D0D0CE;
  pointer-events: none;
}
.sec-white .feat-header { position: relative; padding-left: 56px; }
.sec-white .feat-item:hover:not(.open) {
  transform: translateX(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}
.sec-white .feat-title { color: #111; font-size: 17px; }
.sec-white .feat-body  { color: #6B7280; }
.sec-white .feat-arrow { color: #BEBEBB; font-size: 14px; }

/* Light icons */
.sec-white .feat-emoji {
  width: 52px; height: 52px; border-radius: 14px; font-size: 26px;
  background: #F3F4F6;
}
.sec-white .feat-v1 .feat-emoji, .sec-white .feat-v4 .feat-emoji {
  background: linear-gradient(135deg, #FEE2E2, #FECACA);
}
.sec-white .feat-v2 .feat-emoji, .sec-white .feat-v6 .feat-emoji {
  background: linear-gradient(135deg, #FEF9C3, #FDE68A);
}
.sec-white .feat-v3 .feat-emoji, .sec-white .feat-v5 .feat-emoji {
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
}

/* Light item colored side border per variant */
.sec-white .feat-v1, .sec-white .feat-v4 { border-right-color: rgba(204,0,0,0.3); }
.sec-white .feat-v2, .sec-white .feat-v6 { border-right-color: rgba(217,119,6,0.35); }
.sec-white .feat-v3, .sec-white .feat-v5 { border-right-color: rgba(59,76,202,0.3); }

/* Light open states */
.sec-white .feat-v1.open, .sec-white .feat-v4.open {
  background: linear-gradient(135deg, #FFF5F5 0%, #fff 60%);
  border-color: #FECACA; border-right-color: var(--pk-red);
  box-shadow: 0 8px 32px rgba(204,0,0,0.12);
}
.sec-white .feat-v1.open .feat-title, .sec-white .feat-v4.open .feat-title { color: var(--pk-red); }
.sec-white .feat-v1.open .feat-arrow, .sec-white .feat-v4.open .feat-arrow { color: var(--pk-red); }

.sec-white .feat-v2.open, .sec-white .feat-v6.open {
  background: linear-gradient(135deg, #FFFBEB 0%, #fff 60%);
  border-color: #FDE68A; border-right-color: #D97706;
  box-shadow: 0 8px 32px rgba(217,119,6,0.12);
}
.sec-white .feat-v2.open .feat-title, .sec-white .feat-v6.open .feat-title { color: #92400E; }
.sec-white .feat-v2.open .feat-arrow, .sec-white .feat-v6.open .feat-arrow { color: #D97706; }

.sec-white .feat-v3.open, .sec-white .feat-v5.open {
  background: linear-gradient(135deg, #EEF0FF 0%, #fff 60%);
  border-color: #C7D2FE; border-right-color: var(--pk-blue);
  box-shadow: 0 8px 32px rgba(59,76,202,0.12);
}
.sec-white .feat-v3.open .feat-title, .sec-white .feat-v5.open .feat-title { color: var(--pk-blue); }
.sec-white .feat-v3.open .feat-arrow, .sec-white .feat-v5.open .feat-arrow { color: var(--pk-blue); }

/* text override for dark sections */
.sec-gray .section-title, .sec-gray h2 { color: var(--text); }
.sec-gray .step-h h3 { color: var(--text); }
.sec-gray .step-h p  { color: var(--muted); }

/* group cards on light background */
.sec-white .section-title { color: #111; }
.sec-white .section-title span { color: var(--pk-red); }
.sec-white .group-card { background: #fff; border-color: #E5E7EB; }
.sec-white .group-card.gc-main {
  background: linear-gradient(160deg, #FFFBEB, #FEF3C7);
  border-color: var(--pk-yellow);
}
.sec-white .group-name  { color: #111; }
.sec-white .group-desc  { color: #6B7280; }
.sec-white .group-count { color: #6B7280; }
.sec-white .group-count span { color: var(--pk-red); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag, .section-label {
  display: inline-block;
  background: rgba(255,203,5,0.15); color: var(--pk-yellow);
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,203,5,0.3);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: var(--text);
  margin-bottom: 48px; text-align: center;
  letter-spacing: -1px; line-height: 1.2;
}
.section-title span { color: var(--pk-red); }

/* ─── FEATURES ACCORDION ─── */
.feat-accordion {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}

.feat-item {
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--card-bg2);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.25s, background 0.25s;
}
.feat-item:hover:not(.open) {
  transform: translateX(-3px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* Red: v1, v4 */
.feat-v1.open, .feat-v4.open {
  background: #3A1A1A;
  border-color: var(--pk-red);
  box-shadow: 0 6px 28px rgba(204,0,0,0.22);
}
.feat-v1.open .feat-title, .feat-v4.open .feat-title { color: #FF6666; }
.feat-v1.open .feat-arrow, .feat-v4.open .feat-arrow { color: var(--pk-red); }

/* Yellow: v2, v6 */
.feat-v2.open, .feat-v6.open {
  background: #342A10;
  border-color: var(--pk-yellow);
  box-shadow: 0 6px 28px rgba(255,203,5,0.18);
}
.feat-v2.open .feat-title, .feat-v6.open .feat-title { color: var(--pk-yellow); }
.feat-v2.open .feat-arrow, .feat-v6.open .feat-arrow { color: var(--pk-yellow); }

/* Blue: v3, v5 */
.feat-v3.open, .feat-v5.open {
  background: #1A1E3A;
  border-color: #6B80FF;
  box-shadow: 0 6px 28px rgba(59,76,202,0.22);
}
.feat-v3.open .feat-title, .feat-v5.open .feat-title { color: #8899FF; }
.feat-v3.open .feat-arrow, .feat-v5.open .feat-arrow { color: #6B80FF; }

.feat-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  user-select: none;
}

.feat-emoji {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; background: rgba(255,255,255,0.07);
}
.feat-v1 .feat-emoji, .feat-v4 .feat-emoji { background: rgba(204,0,0,0.18); }
.feat-v2 .feat-emoji, .feat-v6 .feat-emoji { background: rgba(255,203,5,0.15); }
.feat-v3 .feat-emoji, .feat-v5 .feat-emoji { background: rgba(59,76,202,0.18); }

.feat-title { font-size: 17px; font-weight: 800; color: var(--text); flex: 1; transition: color 0.2s; }
.feat-arrow { font-size: 12px; color: var(--muted); transition: transform 0.28s, color 0.25s; flex-shrink: 0; }
.feat-item.open .feat-arrow { transform: rotate(180deg); }

.feat-body {
  max-height: 0; overflow: hidden;
  padding: 0 24px 0 84px;
  font-size: 15px; color: var(--muted); line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.feat-item.open .feat-body { max-height: 180px; padding: 0 24px 22px 84px; }

.feat-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; user-select: none;
}

.feat-emoji {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; background: var(--bg);
}
.feat-v1 .feat-emoji, .feat-v4 .feat-emoji { background: #FEE2E2; }
.feat-v2 .feat-emoji, .feat-v6 .feat-emoji { background: #FEF9C3; }
.feat-v3 .feat-emoji, .feat-v5 .feat-emoji { background: #E0E7FF; }

.feat-title { font-size: 17px; font-weight: 800; color: var(--text); flex: 1; transition: color 0.2s; }
.feat-arrow { font-size: 12px; color: #9CA3AF; transition: transform 0.28s, color 0.25s; flex-shrink: 0; }
.feat-item.open .feat-arrow { transform: rotate(180deg); }

.feat-body {
  max-height: 0; overflow: hidden;
  padding: 0 24px 0 84px;
  font-size: 15px; color: var(--muted); line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.feat-item.open .feat-body { max-height: 180px; padding: 0 24px 22px 84px; }

/* ─── BENTO GRID ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
}
.bc-wide { grid-column: span 2; }
.bc-community { grid-column: span 3; min-height: 140px !important; }

.bento-card {
  border-radius: 24px;
  padding: 30px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.bento-card:hover { transform: translateY(-5px); }

.bento-card::after {
  content: ''; position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.bc-red    { background: linear-gradient(135deg, #CC0000, #FF3B3B); box-shadow: 0 8px 32px rgba(204,0,0,0.28); }
.bc-yellow { background: linear-gradient(135deg, #C27803, #FFCB05); box-shadow: 0 8px 32px rgba(194,120,3,0.28); }
.bc-blue   { background: linear-gradient(135deg, #2537BB, #4B61FF); box-shadow: 0 8px 32px rgba(37,55,187,0.28); }

.bc-community {
  background: #fff;
  border: 2px solid #F3F4F6;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  flex-direction: row; align-items: center; gap: 32px;
  min-height: unset !important;
  padding: 28px 36px;
}
.bc-community:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }

.bc-num {
  position: absolute; top: 22px; left: 22px;
  font-size: 11px; font-weight: 900; letter-spacing: 1.5px;
  background: rgba(255,255,255,0.22);
  color: #fff; padding: 4px 10px; border-radius: 99px;
}

.bc-emoji { font-size: 42px; margin-bottom: auto; padding-bottom: 16px; line-height: 1; }
.bc-community .bc-emoji { font-size: 52px; margin-bottom: 0; padding-bottom: 0; flex-shrink: 0; }

.bento-card h3 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -0.3px; }
.bc-wide h3 { font-size: 22px; }
.bento-card p { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.65; }
.bc-wide p { font-size: 15px; }

.bc-community h3 { color: var(--text); font-size: 20px; }
.bc-community p  { color: var(--muted); font-size: 14px; }
.bc-comm-text { flex: 1; }
.bc-comm-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.bc-comm-btns .btn-wa,
.bc-comm-btns .btn-tg { font-size: 15px; padding: 13px 24px; }

/* ─── HORIZONTAL STEPS ─── */
.steps-h {
  display: flex; align-items: flex-start;
  max-width: 860px; margin: 0 auto;
}

.step-h {
  flex: 1; text-align: center; padding: 0 24px;
}

.step-h-num {
  font-size: 64px; font-weight: 900; line-height: 1;
  color: var(--pk-red); margin-bottom: 14px;
  opacity: 0.18;
  display: block;
}

.step-h h3 { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.step-h p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

.step-sep {
  width: 80px; flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pk-yellow), var(--pk-red));
  margin-top: 32px;
  border-radius: 99px;
}

/* ─── PAGE HERO (other pages) ─── */
.page-hero {
  padding: 52px 24px 40px;
  text-align: center;
  background: linear-gradient(160deg, #06000D, #130028);
  border-bottom: 3px solid var(--pk-yellow);
}
.ph-red, .ph-blue, .ph-green, .ph-purple, .ph-yellow {
  background: linear-gradient(160deg, #06000D, #130028);
  border-bottom: 3px solid var(--pk-yellow);
}

.page-hero h1 {
  font-size: clamp(36px,6vw,64px);
  font-weight: 900; color: #fff;
  letter-spacing: -2px; margin-bottom: 14px;
}
.page-hero p { font-size: clamp(15px,2vw,18px); color: rgba(255,255,255,0.6); max-width:560px; margin:0 auto; line-height:1.65; }

/* ─── DEAL CARDS ─── */
.deal-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--card-bg2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.deal-card:hover { transform: translateX(-3px); box-shadow: 0 6px 22px rgba(0,0,0,0.09); border-color: #D1D5DB; }
.deal-emoji { font-size: 36px; flex-shrink: 0; }
.deal-info h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.deal-info p  { font-size: 13px; color: var(--muted); }
.deal-badge {
  font-weight: 800; font-size: 12px;
  padding: 5px 13px; border-radius: 99px;
  white-space: nowrap; margin-right: auto;
}
.badge-r { background: #FEE2E2; color: var(--pk-red); }
.badge-y { background: #FEF9C3; color: #92400E; }
.badge-g { background: #DCFCE7; color: #15803D; }
.badge-b { background: #E0E7FF; color: var(--pk-blue); }

/* ─── HOW STEPS (how.html) ─── */
.how-steps {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.how-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-card:hover { transform: translateX(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.how-num {
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how-body h3 { font-size: 17px; font-weight: 900; color: #111; margin-bottom: 8px; }
.how-body p  { font-size: 14px; color: #6B7280; line-height: 1.75; }

/* ─── STEPS ─── */
.steps { max-width: 680px; margin: 0 auto; }
.step-row {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sn1 { background: #FEF9C3; color: #92400E; border: 2px solid #FDE68A; }
.sn2 { background: #FEE2E2; color: var(--pk-red); border: 2px solid #FECACA; }
.sn3 { background: #E0E7FF; color: var(--pk-blue); border: 2px solid #C7D2FE; }
.sn4 { background: #FEF9C3; color: #92400E; border: 2px solid #FDE68A; }
.step-text h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.step-text p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── FAQ ─── */
.faq { max-width: 680px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg2); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 10px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.faq-item:hover { border-color: #D1D5DB; }
.faq-item.open { border-color: var(--pk-red); box-shadow: 0 4px 18px rgba(204,0,0,0.08); }
.faq-q { display:flex; justify-content:space-between; align-items:center; font-weight:800; font-size:15px; color: var(--text); }
.faq-arrow { color: var(--pk-red); font-size:13px; transition:transform 0.2s; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a { display:none; margin-top:12px; color: var(--muted); line-height:1.7; font-size:14px; }
.faq-item.open .faq-a { display:block; }

/* ─── GROUP CARDS ─── */
.group-card {
  background: var(--card-bg2); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 36px 26px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.22s, box-shadow 0.22s;
}
.group-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.group-card.gc-main {
  border-color: var(--pk-yellow);
  background: linear-gradient(160deg, #2E2A14, #3A3210);
  box-shadow: 0 4px 24px rgba(255,203,5,0.15);
}
.group-icon  { font-size: 52px; margin-bottom: 14px; line-height: 1; }
.group-name  { font-size: 19px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.group-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.group-count { font-weight: 700; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.group-count span { color: var(--pk-red); font-weight: 900; }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 88px 24px; text-align: center;
  background: linear-gradient(135deg, #FFCB05 0%, #FFB800 50%, #FFCB05 100%);
  border-top: none; border-bottom: none;
}
.cta-section h2 {
  font-size: clamp(28px,4.5vw,48px);
  font-weight: 900; color: #111;
  letter-spacing: -1.5px; margin-bottom: 12px;
}
.cta-section p { font-size: 17px; color: rgba(0,0,0,0.55); margin-bottom: 32px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ─── FOOTER ─── */
.footer {
  background: #0a0a0a; padding: 44px 24px 36px; text-align: center;
  border-top: 3px solid var(--pk-yellow);
}
.footer-logo { font-size: 24px; font-weight: 900; margin-bottom: 18px; }
.footer-logo .pk { color: var(--pk-yellow); }
.footer-logo .st { color: #fff; }
.footer-links { display:flex; justify-content:center; gap:22px; margin-bottom:18px; flex-wrap:wrap; }
.footer-links a { color: rgba(255,255,255,0.35); text-decoration:none; font-size:14px; font-weight:600; transition:color 0.2s; }
.footer-links a:hover { color: var(--pk-yellow); }
.footer-disc { color: rgba(255,255,255,0.2); font-size: 12px; line-height: 1.7; max-width: 460px; margin: 0 auto; }

/* ─── HAMBURGER MENU ─── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 4px;
  background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.85); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0;
  background: #2C2C2B;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 199;
  flex-direction: column;
  padding: 12px 0 20px;
  transform: translateY(-8px); opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-mobile.open {
  transform: translateY(0); opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  display: block; padding: 13px 24px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 15px; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile-btns {
  display: flex; gap: 10px; padding: 16px 24px 0;
}
.nav-mobile-btns .nav-act-btn { flex: 1; font-size: 14px; padding: 10px 12px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .steps-h { flex-direction: column; align-items: center; gap: 32px; }
  .step-sep { width: 2px; height: 40px; margin: 0; }
}

@media (max-width: 768px) {
  /* ── Navbar ── */
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-burger  { display: flex; }
  .nav-mobile  { display: flex; }
  .nav-inner   { justify-content: space-between; }

  /* ── Hero ── */
  .ps-hero-overlay {
    background: linear-gradient(180deg,
      rgba(4,6,20,0.88) 0%,
      rgba(4,6,20,0.72) 60%,
      rgba(4,6,20,0.50) 100%
    );
  }
  .ps-inner {
    padding: 44px 20px;
    direction: rtl;
    justify-content: center;
  }
  .ps-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .ps-h1 { font-size: clamp(38px, 11vw, 58px); letter-spacing: -2px; }
  .ps-desc { font-size: 15px; }
  .ps-live-badge { align-self: center; }
  .ps-stats-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }
  .ps-actions { flex-direction: column; width: 100%; }
  .ps-btn-primary, .ps-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .ps-micro { text-align: center; }

  /* ── Stats bar ── */
  .stats-inner { flex-direction: column; }
  .stat {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .stat:last-child { border-bottom: none; }
  .stat-icon { width: 40px; height: 40px; font-size: 20px; border-radius: 10px; }
  .stat-n { font-size: 28px; }

  /* ── Sections ── */
  .sec { padding: 40px 18px; }
  .section-title { font-size: clamp(22px, 6vw, 32px); margin-bottom: 28px; text-align: center; }
  .section-inner { text-align: center; }

  /* ── Features accordion ── */
  .feat-accordion { gap: 8px; }
  .sec-white .feat-header { padding-left: 24px; }
  .feat-header { text-align: right; }

  /* ── Steps (homepage) ── */
  .steps-h { flex-direction: column; align-items: center; gap: 24px; }
  .step-h { text-align: center; padding: 0 8px; }
  .step-sep { width: 2px; height: 32px; margin: 0; }

  /* ── How page steps ── */
  .how-steps { gap: 10px; }
  .how-card { padding: 18px 18px; gap: 14px; text-align: right; }
  .how-num { width: 40px; height: 40px; font-size: 17px; flex-shrink: 0; }

  /* ── FAQ ── */
  .faq { text-align: right; }
  .faq-item { padding: 14px 16px; }

  /* ── Join group cards ── */
  .group-card { padding: 24px 18px; }

  /* ── CTA ── */
  .cta-btns { flex-direction: column; align-items: center; }

  /* ── Page hero ── */
  .page-hero { padding: 36px 18px 28px; text-align: center; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 40px); }
  .page-hero p  { font-size: 14px; }

  /* ── Deals ── */
  .d-title { font-size: 13px; }
  .d-card { gap: 12px; padding: 12px 14px; }

  /* ── Footer ── */
  .footer-links { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .footer-links a { font-size: 12px; }

  /* ── Terms / Disclosure ── */
  .terms-wrap, .disc-wrap { text-align: right; }
  .terms-wrap h2, .disc-wrap h2 { font-size: 17px; }
  .disc-box { padding: 18px 16px; }
}

.no-cookie-popup {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 99999;
  max-width: 390px;
  width: calc(100% - 36px);
}

.no-cookie-card {
  position: relative;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  padding: 20px 20px 18px;
  font-family: inherit;
}

.no-cookie-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #111827;
}

.no-cookie-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

.no-cookie-ok {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  background: #ffcb05;
  color: #1f2937;
}

.no-cookie-close {
  position: absolute;
  top: 10px;
  left: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}

@media (max-width: 600px) {
  .no-cookie-popup {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }
}
