/* ═══════════════════════════════════════════════
   BASE THEME
   ═══════════════════════════════════════════════ */
:root {
  color-scheme: only light;
  font-family: 'Shamel', 'Shamel Sans', Tahoma, Arial, sans-serif;

  /* Colors */
  --bg:            #f0fdf9;
  --surface:       #ffffff;
  --surface-soft:  #e0f8f3;
  --text:          #1e2438;
  --muted:         #5a6282;
  --primary:       #aa50b0;
  --secondary:     #f15a37;
  --accent:        #fcb300;
  --accent-soft:   #fff1ac;
  --heading:        #3a1e66;
  --heading-mark:   #00cca4;
  --heading-mark-bg: rgba(0, 204, 164, 0.18);
  --border:        rgba(155, 77, 202, 0.18);
  --shadow:        0 24px 70px rgba(88, 46, 145, 0.14);

  /* Layout — side padding grows with viewport, caps content at 1440px */
  --sp: max(24px, calc((100vw - 1440px) / 2 + 48px));

  /* Header height */
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
  background: radial-gradient(circle at top left,  rgba(252, 200, 80, 0.18), transparent 24%),
              radial-gradient(circle at bottom right, rgba(155, 77, 202, 0.12), transparent 28%),
              var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img, video {
  max-width: 100%;
  display: block;
  border-radius: 32px;
}

picture {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════════════
   PAGE SHELL — full-width wrapper
   ═══════════════════════════════════════════════ */
.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
}

button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(155, 77, 202, 0.35);
  outline-offset: 4px;
}

.btn-primary {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(155, 77, 202, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(155, 77, 202, 0.28);
  filter: brightness(1.04);
}

.btn-secondary {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-radius: 999px;
  border: 1.5px solid rgba(155, 77, 202, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(155, 77, 202, 0.14);
  background: #fff;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155, 77, 202, 0.10);
  box-shadow: 0 2px 24px rgba(88, 46, 145, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--sp);
  height: var(--header-h);
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  max-width: 112px;
  display: block;
  border-radius: 0 !important;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-partner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex-shrink: 1;
}

.brand-divider {
  color: var(--heading-mark);
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 900;
  opacity: 0.9;
  flex-shrink: 0;
}

.partner-logo {
  height: 38px;
  width: auto;
  max-width: 112px;
  display: block;
  object-fit: contain;
  border-radius: 0 !important;
  filter: drop-shadow(0 8px 14px rgba(58, 30, 102, 0.12));
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  overflow: hidden;
  padding: 8px 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: auto 16px 5px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -60%;
  width: 44%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary);
  background: rgba(155, 77, 202, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(155, 77, 202, 0.10);
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav-link.nav-playing-1 { animation: nav-hop 0.46s cubic-bezier(0.34,1.56,0.64,1) !important; }
.nav-link.nav-playing-2 { animation: nav-sway 0.50s ease !important; }
.nav-link.nav-playing-3 { animation: nav-pop 0.42s cubic-bezier(0.34,1.56,0.64,1) !important; }
.nav-link.nav-playing-4 { animation: nav-slide 0.48s ease !important; }
.nav-link.nav-playing-5 { animation: nav-spark 0.52s ease !important; }

.nav-link[class*="nav-playing-"]::after {
  animation: nav-shine 0.55s ease forwards;
}

@keyframes nav-hop {
  0%, 100% { transform: translateY(-2px) scale(1); }
  45%      { transform: translateY(-8px) scale(1.05); }
  72%      { transform: translateY(0) scale(0.98); }
}

@keyframes nav-sway {
  0%, 100% { transform: translateY(-2px) rotate(0); }
  28%      { transform: translateY(-4px) rotate(-3deg); }
  58%      { transform: translateY(-4px) rotate(3deg); }
}

@keyframes nav-pop {
  0%, 100% { transform: translateY(-2px) scale(1); }
  44%      { transform: translateY(-4px) scale(1.1); }
  70%      { transform: translateY(-1px) scale(0.98); }
}

@keyframes nav-slide {
  0%, 100% { transform: translateY(-2px) translateX(0); }
  30%      { transform: translateY(-2px) translateX(-5px); }
  62%      { transform: translateY(-2px) translateX(5px); }
}

@keyframes nav-spark {
  0%, 100% { transform: translateY(-2px) scale(1) rotate(0); }
  35%      { transform: translateY(-6px) scale(1.06) rotate(-2deg); }
  70%      { transform: translateY(-3px) scale(1.03) rotate(2deg); }
}

@keyframes nav-shine {
  from { inset-inline-start: -60%; opacity: 0; }
  35%  { opacity: 1; }
  to   { inset-inline-start: 120%; opacity: 0; }
}

/* Header end — CTA + hamburger */
.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta {
  padding: 11px 24px;
  font-size: 0.9rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(155, 77, 202, 0.07);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(155, 77, 202, 0.13);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X */
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav-panel {
  display: none;
  flex-direction: column;
  padding: 12px var(--sp) 20px;
  gap: 2px;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid rgba(155, 77, 202, 0.08);
}

.nav-open .mobile-nav-panel {
  display: flex;
}

.mob-nav-link {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 13px 16px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
}

.mob-nav-link:hover {
  background: rgba(155, 77, 202, 0.07);
  color: var(--primary);
  transform: translateX(-4px);
  box-shadow: inset 4px 0 0 rgba(241, 90, 55, 0.32);
}

.mob-nav-link.mob-nav-playing {
  animation: mob-nav-tap 0.42s cubic-bezier(0.34,1.56,0.64,1) !important;
}

@keyframes mob-nav-tap {
  0%, 100% { transform: translateX(-4px) scale(1); }
  45%      { transform: translateX(-8px) scale(1.03); }
  70%      { transform: translateX(-2px) scale(0.99); }
}

.mob-cta {
  margin-top: 10px;
  text-align: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--header-h));
  padding: 72px var(--sp) 86px;
  background:
    radial-gradient(circle at 12% 18%, rgba(252, 179, 0, 0.34) 0 9%, transparent 10%),
    radial-gradient(circle at 88% 22%, rgba(241, 90, 55, 0.26) 0 11%, transparent 12%),
    radial-gradient(circle at 20% 82%, rgba(115, 206, 221, 0.30) 0 12%, transparent 13%),
    radial-gradient(circle at 78% 78%, rgba(155, 77, 202, 0.24) 0 10%, transparent 11%),
    linear-gradient(135deg, #fff8d8 0%, #e8faf6 38%, #f5e8ff 72%, #ffe9dd 100%);
  box-shadow: 0 28px 90px rgba(88, 46, 145, 0.14);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 3px, transparent 4px) 0 0 / 78px 78px,
    radial-gradient(circle, rgba(155, 77, 202, 0.22) 0 5px, transparent 6px) 24px 22px / 118px 118px,
    radial-gradient(circle, rgba(241, 90, 55, 0.20) 0 4px, transparent 5px) 42px 12px / 96px 96px,
    radial-gradient(circle, rgba(252, 179, 0, 0.22) 0 6px, transparent 7px) 12px 48px / 132px 132px;
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-4deg);
  z-index: -2;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 24px var(--sp) 28px;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(155, 77, 202, 0.11) 50%, transparent 0) 0 12% / 34px 3px repeat-x,
    linear-gradient(90deg, rgba(241, 90, 55, 0.12) 50%, transparent 0) 0 88% / 38px 3px repeat-x,
    radial-gradient(circle at 7% 35%, rgba(255,255,255,0.68) 0 22px, transparent 23px),
    radial-gradient(circle at 93% 42%, rgba(255,255,255,0.60) 0 26px, transparent 27px),
    radial-gradient(circle at 44% 8%, rgba(255,255,255,0.44) 0 34px, transparent 35px),
    radial-gradient(circle at 55% 93%, rgba(255,255,255,0.40) 0 44px, transparent 45px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(155, 77, 202, 0.08);
  opacity: 0.82;
  pointer-events: none;
  z-index: -1;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-firework,
.hero-rocket,
.hero-trail {
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero-firework {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff8d8;
  box-shadow:
    0 -46px 0 0 #fcb300,
    32px -32px 0 0 #f15a37,
    48px 0 0 0 #9b4dca,
    34px 34px 0 0 #73cedd,
    0 50px 0 0 #00cca4,
    -34px 34px 0 0 #fcb300,
    -50px 0 0 0 #f15a37,
    -32px -32px 0 0 #9b4dca,
    0 -78px 0 -3px rgba(252, 179, 0, 0.92),
    56px -56px 0 -3px rgba(241, 90, 55, 0.86),
    82px 0 0 -3px rgba(155, 77, 202, 0.82),
    58px 58px 0 -3px rgba(115, 206, 221, 0.86),
    0 84px 0 -3px rgba(0, 204, 164, 0.84),
    -58px 58px 0 -3px rgba(252, 179, 0, 0.84),
    -84px 0 0 -3px rgba(241, 90, 55, 0.78),
    -56px -56px 0 -3px rgba(155, 77, 202, 0.82);
  opacity: 0;
  transform: scale(0.08) rotate(0deg);
  animation: hero-firework-pop 4.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  filter:
    drop-shadow(0 10px 18px rgba(252, 179, 0, 0.26))
    drop-shadow(0 18px 32px rgba(155, 77, 202, 0.18));
}

.hero-firework::before,
.hero-firework::after {
  content: '';
  position: absolute;
  inset: -58px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.25);
  animation: hero-firework-ring 4.2s ease-out infinite;
}

.hero-firework::before {
  background:
    conic-gradient(from 0deg,
      transparent 0 9deg, rgba(252, 179, 0, 0.96) 9deg 13deg,
      transparent 13deg 39deg, rgba(241, 90, 55, 0.95) 39deg 43deg,
      transparent 43deg 80deg, rgba(155, 77, 202, 0.90) 80deg 84deg,
      transparent 84deg 126deg, rgba(115, 206, 221, 0.92) 126deg 130deg,
      transparent 130deg 174deg, rgba(0, 204, 164, 0.92) 174deg 178deg,
      transparent 178deg 220deg, rgba(252, 179, 0, 0.92) 220deg 224deg,
      transparent 224deg 268deg, rgba(241, 90, 55, 0.90) 268deg 272deg,
      transparent 272deg 318deg, rgba(155, 77, 202, 0.90) 318deg 322deg,
      transparent 322deg 360deg);
  mask: radial-gradient(circle, transparent 0 48%, #000 49% 54%, transparent 55%);
  -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 49% 54%, transparent 55%);
}

.hero-firework::after {
  inset: -84px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 58%);
  animation-name: hero-firework-glow;
}

.hero-firework-1 { top: 19%; left: 12%; animation-delay: 0s; }
.hero-firework-2 { top: 18%; right: 13%; animation-delay: 1.05s; }
.hero-firework-3 { bottom: 20%; left: 15%; animation-delay: 2.05s; }
.hero-firework-4 { bottom: 18%; right: 17%; animation-delay: 3.05s; }

.hero-firework-2::before,
.hero-firework-2::after { animation-delay: 1.05s; }
.hero-firework-3::before,
.hero-firework-3::after { animation-delay: 2.05s; }
.hero-firework-4::before,
.hero-firework-4::after { animation-delay: 3.05s; }

.hero-rocket {
  --rocket-rotate: 22deg;
  width: 3px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.90), rgba(252,179,0,0.72), transparent);
  opacity: 0;
  transform: rotate(var(--rocket-rotate)) translateY(40px);
  animation: hero-rocket-rise 4.2s ease-out infinite;
  filter: blur(0.2px) drop-shadow(0 0 8px rgba(252, 179, 0, 0.45));
}

.hero-rocket-1 {
  bottom: 10%;
  left: 22%;
  animation-delay: 0s;
}

.hero-rocket-2 {
  --rocket-rotate: -22deg;
  bottom: 12%;
  right: 23%;
  animation-delay: 1.05s;
}

.hero-trail {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.56);
  opacity: 0.58;
  animation: hero-orbit 18s linear infinite;
}

.hero-trail::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 46%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fcb300;
  box-shadow: 0 0 0 8px rgba(252, 179, 0, 0.16);
}

.hero-trail-1 {
  top: -58px;
  right: 9%;
}

.hero-trail-2 {
  bottom: -78px;
  left: 8%;
  width: 260px;
  height: 260px;
  border-color: rgba(115, 206, 221, 0.42);
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-trail-2::before {
  background: #9b4dca;
  box-shadow: 0 0 0 8px rgba(155, 77, 202, 0.14);
}

@keyframes hero-firework-pop {
  0%, 18% {
    opacity: 0;
    transform: scale(0.08) rotate(0deg);
  }
  26% {
    opacity: 1;
    transform: scale(1) rotate(18deg);
  }
  42% {
    opacity: 0;
    transform: scale(1.42) rotate(32deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.42) rotate(32deg);
  }
}

@keyframes hero-firework-ring {
  0%, 18% {
    opacity: 0;
    transform: scale(0.22) rotate(0deg);
  }
  27% {
    opacity: 0.9;
    transform: scale(1) rotate(16deg);
  }
  48% {
    opacity: 0;
    transform: scale(1.38) rotate(28deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.38) rotate(28deg);
  }
}

@keyframes hero-firework-glow {
  0%, 18% {
    opacity: 0;
    transform: scale(0.2);
  }
  26% {
    opacity: 0.56;
    transform: scale(1);
  }
  44%, 100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes hero-rocket-rise {
  0%, 8% {
    opacity: 0;
    transform: rotate(var(--rocket-rotate)) translate3d(0, 72px, 0);
  }
  16% {
    opacity: 0.95;
  }
  28% {
    opacity: 0;
    transform: rotate(var(--rocket-rotate)) translate3d(0, -128px, 0);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--rocket-rotate)) translate3d(0, -128px, 0);
  }
}

@keyframes hero-orbit {
  to { transform: rotate(360deg); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin-inline: auto;
  text-align: center;
}

.hero-brand-lockup {
  position: relative;
  width: fit-content;
  max-width: min(100%, 420px);
  margin: -4px auto 18px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 20% 15%, rgba(0, 204, 164, 0.22), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(155, 77, 202, 0.20), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 45px rgba(58, 30, 102, 0.12),
    0 0 0 0 rgba(0, 204, 164, 0.0);
  backdrop-filter: blur(14px);
  overflow: hidden;
  cursor: pointer;
  transform-origin: center;
  /* حركة دائمة أجمل: Pulse + Tilt 3D خفيف */
  animation: hero-lockup-pulse-tilt 3.8s cubic-bezier(0.34,1.56,0.64,1) infinite;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-brand-lockup::before {
  content: "";
  position: absolute;
  inset: -55% -34%;
  background:
    /* pop shimmer قوي */
    linear-gradient(
      110deg,
      transparent 30%,
      rgba(255, 255, 255, 0.92) 45%,
      rgba(252, 179, 0, 0.70) 52%,
      rgba(241, 90, 55, 0.40) 58%,
      transparent 66%
    ),
    /* نبض ألوان داخل الإطار */
    radial-gradient(circle at 18% 25%, rgba(0, 204, 164, 0.32), transparent 42%),
    radial-gradient(circle at 86% 78%, rgba(155, 77, 202, 0.34), transparent 40%);
  transform: translateX(62%) rotate(-8deg);
  opacity: 0.86;
  pointer-events: none;
  animation: hero-lockup-shimmer-pop 2.4s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-brand-lockup::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(0, 204, 164, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.hero-brand-lockup:hover,
.hero-brand-lockup:focus-visible,
.hero-brand-lockup.is-playing {
  transform: perspective(900px) translateY(-6px) rotateX(4deg) rotateY(-4deg) scale(1.045);
  border-color: rgba(0, 204, 164, 0.42);
  box-shadow: 0 26px 66px rgba(58, 30, 102, 0.20), 0 0 0 7px rgba(0, 204, 164, 0.09);
}

.hero-brand-lockup:hover::after,
.hero-brand-lockup:focus-visible::after,
.hero-brand-lockup.is-playing::after {
  animation: hero-lockup-ring 0.72s ease-out forwards;
}

.hero-lockup-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  object-fit: contain;
  border-radius: 0 !important;
  filter: drop-shadow(0 10px 16px rgba(58, 30, 102, 0.13));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.hero-brand-lockup:hover .hero-lockup-logo,
.hero-brand-lockup:focus-visible .hero-lockup-logo,
.hero-brand-lockup.is-playing .hero-lockup-logo {
  filter: drop-shadow(0 12px 18px rgba(58, 30, 102, 0.18));
}

.hero-brand-lockup:hover .hero-lockup-logo-woosh,
.hero-brand-lockup:focus-visible .hero-lockup-logo-woosh,
.hero-brand-lockup.is-playing .hero-lockup-logo-woosh {
  transform: rotate(-2deg) translateY(-2px);
}

.hero-brand-lockup:hover .hero-lockup-logo-colors,
.hero-brand-lockup:focus-visible .hero-lockup-logo-colors,
.hero-brand-lockup.is-playing .hero-lockup-logo-colors {
  transform: rotate(2deg) translateY(-2px);
}

.hero-lockup-logo-woosh {
  height: 58px;
  max-width: 158px;
}

.hero-lockup-logo-colors {
  height: 58px;
  max-width: 150px;
}

.hero-lockup-divider {
  position: relative;
  z-index: 1;
  color: var(--heading-mark);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  animation: hero-lockup-divider-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-lockup-pulse-tilt {
  0%, 100% {
    translate: 0 0;
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1);
    filter: saturate(1) brightness(1);
  }
  35% {
    translate: 0 -6px;
    transform: perspective(900px) rotateX(6deg) rotateY(-6deg) scale(1.03);
    filter: saturate(1.1) brightness(1.04);
  }
  65% {
    translate: 0 -4px;
    transform: perspective(900px) rotateX(-4deg) rotateY(5deg) scale(1.02);
    filter: saturate(1.08) brightness(1.03);
  }
}

@keyframes hero-lockup-shimmer-pop {
  0% {
    transform: translateX(70%) rotate(-10deg);
    opacity: 0.0;
    filter: blur(0px);
  }
  18% {
    opacity: 0.95;
    transform: translateX(34%) rotate(-10deg);
  }
  48% {
    opacity: 0.65;
    transform: translateX(-6%) rotate(-10deg) scale(1.02);
    filter: blur(0.2px);
  }
  70% {
    opacity: 0.95;
    transform: translateX(-40%) rotate(-10deg);
  }
  100% {
    opacity: 0.0;
    transform: translateX(-78%) rotate(-10deg);
  }
}

@keyframes hero-lockup-ring {
  0% { opacity: 0.65; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes hero-lockup-divider-pulse {
  0%, 100% { transform: scale(1); color: var(--heading-mark); }
  50% { transform: scale(1.22) rotate(8deg); color: #f15a37; }
}

.eyebrow {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 204, 164, 0.12);
  color: #007d65;
  border: 1px solid rgba(0, 204, 164, 0.25);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section h1 {
  margin: 14px auto 20px;
  max-width: 980px;
  font-size: clamp(2.45rem, 5vw, 5.35rem);
  line-height: 1.32;
  color: var(--heading);
}

.text-highlight {
  display: inline-block;
  color: var(--heading-mark);
  background: linear-gradient(135deg, var(--heading-mark-bg), rgba(155, 77, 202, 0.10));
  padding: 0 10px 4px;
  border-radius: 14px;
  line-height: 1.08;
  vertical-align: baseline;
}

.hero-text {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 1120px;
  margin-inline: auto;
}

.hero-pill {
  --pill-a: var(--primary);
  --pill-b: var(--secondary);
  --pill-soft: rgba(155, 77, 202, 0.14);
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.84), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    linear-gradient(135deg, var(--pill-a), var(--pill-b));
  background-size: 130% 130%;
  background-position: 45% 50%;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52), 0 14px 32px var(--pill-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.35s ease;
}

.hero-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255,255,255,0.58) 42%, transparent 56% 100%);
  transform: translateX(115%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.hero-pill::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  left: 10px;
  bottom: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pill-b), transparent 68%);
  opacity: 0.22;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hero-pill:hover {
  transform: translateY(-5px) scale(1.02);
  background-position: 100% 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.74), 0 18px 38px var(--pill-soft);
}

.hero-pill:hover::before {
  transform: translateX(-115%);
}

.hero-pill:hover::after {
  transform: scale(1.9);
  opacity: 0.34;
}

.hero-pill:nth-child(1) { --pill-a: #f15a37; --pill-b: #fcb300; --pill-soft: rgba(241, 90, 55, 0.18); }
.hero-pill:nth-child(2) { --pill-a: #9b4dca; --pill-b: #f15a37; --pill-soft: rgba(155, 77, 202, 0.18); }
.hero-pill:nth-child(3) { --pill-a: #00cca4; --pill-b: #73cedd; --pill-soft: rgba(0, 204, 164, 0.18); }
.hero-pill:nth-child(4) { --pill-a: #73cedd; --pill-b: #9b4dca; --pill-soft: rgba(115, 206, 221, 0.18); }
.hero-pill:nth-child(5) { --pill-a: #fcb300; --pill-b: #f15a37; --pill-soft: rgba(252, 179, 0, 0.18); }
.hero-pill:nth-child(6) { --pill-a: #00cca4; --pill-b: #9b4dca; --pill-soft: rgba(0, 204, 164, 0.18); }

/* Countdown */
.hero-countdown {
  margin: 24px auto 0;
  max-width: 760px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(155, 77, 202, 0.12);
  border: 1.5px solid rgba(241, 90, 55, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.countdown-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.cd-icon {
  font-size: 1.05rem;
}

.cd-label-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cd-label-date {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--secondary);
  background: rgba(241, 90, 55, 0.10);
  padding: 2px 10px;
  border-radius: 999px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-sep {
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 18px; /* align with numbers, above labels */
  opacity: 0.7;
}

.countdown-item {
  flex: 1;
  padding: 12px 8px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(54, 24, 104, 0.18);
  transition: transform 0.22s ease;
  min-width: 0;
}

.countdown-item:hover { transform: translateY(-3px); }

.countdown-item strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  margin-bottom: 5px;
}

.countdown-item small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.92;
  letter-spacing: 0.03em;
}

.countdown-days    { background: linear-gradient(135deg, #9b4dca, #c490e0); }
.countdown-hours   { background: linear-gradient(135deg, #73cedd, #9edce8); }
.countdown-minutes { background: linear-gradient(135deg, #f15a37, #f8956e); }
.countdown-seconds { background: linear-gradient(135deg, #fcb300, #e6a000); }

.countdown-item.pulse { animation: pulse-scale 0.32s ease; }

@keyframes pulse-scale {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.thank-you-page .hero-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  min-height: auto;
  text-align: start;
}

.thank-you-page .hero-copy {
  text-align: start;
}

.thank-you-page .hero-visual {
  position: relative;
  z-index: 1;
}

.thank-you-page .hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 64px rgba(88, 46, 145, 0.16);
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0px) !important;
}

/* ═══════════════════════════════════════════════
   TICKET STRIP
   ═══════════════════════════════════════════════ */
.ticket-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 32px var(--sp);
}

.ticket-card {
  background: linear-gradient(135deg, rgba(255, 246, 210, 0.95), rgba(255, 245, 255, 0.95));
  border-radius: 24px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(88, 46, 145, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(88, 46, 145, 0.14);
}

.ticket-label {
  display: block;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.ticket-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

/* ═══════════════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════════════ */
.section {
  padding: 72px var(--sp);
  position: relative;
}

@supports (content-visibility: auto) {
  main > .section {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 204, 164, 0.14), rgba(115, 206, 221, 0.12));
  color: #00a88a;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  margin: 0;
  line-height: 1.38;
  color: var(--heading);
}

.section-header p {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.8;
  font-size: 1.02rem;
}

/* ═══════════════════════════════════════════════
   PASSPORT / STAMPS
   ═══════════════════════════════════════════════ */
.stamps-grid {
  counter-reset: stamp-card;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin-inline: auto;
}

.stamp-card {
  --stamp-accent: var(--primary);
  --stamp-accent-2: var(--secondary);
  --stamp-soft: rgba(155, 77, 202, 0.10);
  --stamp-bg: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86));
  counter-increment: stamp-card;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 112px;
  border-radius: 18px;
  padding: 26px 18px 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.58), transparent 34%),
    radial-gradient(circle at 88% 82%, var(--stamp-soft), transparent 42%),
    var(--stamp-bg);
  background-size: 130% 130%;
  background-position: 50% 50%;
  border: 1px solid rgba(155, 77, 202, 0.10);
  box-shadow: 0 16px 36px rgba(88, 46, 145, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-position 0.35s ease;
  cursor: pointer;
  text-align: center;
  isolation: isolate;
}

.stamp-card::before {
  content: '';
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--stamp-accent), var(--stamp-accent-2));
  opacity: 0.78;
  transition: inset 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

.stamp-card::after {
  content: '';
  position: absolute;
  width: 122px;
  height: 122px;
  top: -50px;
  right: -42px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.44), transparent 34%),
    radial-gradient(circle, var(--stamp-soft), transparent 70%);
  transform: scale(0.7);
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}

.stamp-card:nth-child(1) { --stamp-accent: #00cca4; --stamp-accent-2: #73cedd; --stamp-soft: rgba(0, 204, 164, 0.20); --stamp-bg: linear-gradient(135deg, #e4fff8, #d7f8ff 52%, #ffffff); }
.stamp-card:nth-child(2) { --stamp-accent: #f15a37; --stamp-accent-2: #fcb300; --stamp-soft: rgba(241, 90, 55, 0.18); --stamp-bg: linear-gradient(135deg, #fff0ea, #fff5d2 55%, #ffffff); }
.stamp-card:nth-child(3) { --stamp-accent: #9b4dca; --stamp-accent-2: #73cedd; --stamp-soft: rgba(155, 77, 202, 0.19); --stamp-bg: linear-gradient(135deg, #f3e8ff, #e2f8ff 55%, #ffffff); }
.stamp-card:nth-child(4) { --stamp-accent: #fcb300; --stamp-accent-2: #f15a37; --stamp-soft: rgba(252, 179, 0, 0.22); --stamp-bg: linear-gradient(135deg, #fff7dc, #ffe8df 55%, #ffffff); }
.stamp-card:nth-child(5) { --stamp-accent: #73cedd; --stamp-accent-2: #00cca4; --stamp-soft: rgba(115, 206, 221, 0.20); --stamp-bg: linear-gradient(135deg, #e6faff, #dffcf4 55%, #ffffff); }
.stamp-card:nth-child(6) { --stamp-accent: #9b4dca; --stamp-accent-2: #f15a37; --stamp-soft: rgba(155, 77, 202, 0.18); --stamp-bg: linear-gradient(135deg, #f4e8ff, #ffe8df 56%, #ffffff); }
.stamp-card:nth-child(7) { --stamp-accent: #f15a37; --stamp-accent-2: #fcb300; --stamp-soft: rgba(241, 90, 55, 0.18); --stamp-bg: linear-gradient(135deg, #ffe8df, #fff3c6 58%, #ffffff); }
.stamp-card:nth-child(8) { --stamp-accent: #00cca4; --stamp-accent-2: #9b4dca; --stamp-soft: rgba(0, 204, 164, 0.19); --stamp-bg: linear-gradient(135deg, #dffcf4, #f0e5ff 56%, #ffffff); }

/* unique color accent per card on hover */
.stamp-card:hover,
.stamp-card:focus-visible {
  transform: translateY(-6px);
  background-position: 100% 0;
  border-color: color-mix(in srgb, var(--stamp-accent) 38%, transparent);
  box-shadow: 0 24px 48px rgba(88, 46, 145, 0.14);
}

.stamp-card:hover::before,
.stamp-card:focus-visible::before {
  inset-inline: 0;
  height: 6px;
  opacity: 1;
}

.stamp-card:hover::after,
.stamp-card:focus-visible::after {
  transform: scale(1.18);
  opacity: 1;
}

.stamp-card h3::before {
  content: counter(stamp-card, decimal);
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--stamp-accent), var(--stamp-accent-2));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px var(--stamp-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stamp-card:hover h3::before,
.stamp-card:focus-visible h3::before {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 14px 28px var(--stamp-soft);
}

/* stamp-card specific game animations — each card its own move */
@keyframes sc-1-anim {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  20%  { transform: translateY(-20px) rotate(-6deg) scale(1.08); }
  45%  { transform: translateY(-14px) rotate(4deg) scale(1.06); }
  65%  { transform: translateY(-18px) rotate(-3deg) scale(1.07); }
  85%  { transform: translateY(-12px) rotate(2deg) scale(1.05); }
  100% { transform: translateY(-12px) rotate(0deg) scale(1.06); }
}
@keyframes sc-2-anim {
  0%   { transform: scale(1) rotate(0deg); }
  15%  { transform: scale(0.88) rotate(-4deg); }
  40%  { transform: scale(1.14) rotate(5deg); }
  60%  { transform: scale(1.1) rotate(-3deg); }
  80%  { transform: scale(1.12) rotate(2deg); }
  100% { transform: scale(1.08) rotate(0deg); }
}
@keyframes sc-3-anim {
  0%   { transform: translateX(0) scaleX(1); }
  18%  { transform: translateX(-10px) scaleX(0.9); }
  38%  { transform: translateX(8px) scaleX(1.1); }
  55%  { transform: translateX(-5px) scaleY(1.06) translateY(-8px); }
  75%  { transform: translateX(3px) translateY(-10px) scale(1.06); }
  100% { transform: translateX(0) translateY(-10px) scale(1.06); }
}
@keyframes sc-4-anim {
  0%   { transform: translateY(0) scale(1); }
  12%  { transform: translateY(8px) scaleY(0.85) scaleX(1.15); }
  35%  { transform: translateY(-22px) scaleY(1.1) scaleX(0.92); }
  55%  { transform: translateY(-16px) scale(1.07); }
  75%  { transform: translateY(-20px) scale(1.08); }
  100% { transform: translateY(-14px) scale(1.07); }
}
@keyframes sc-5-anim {
  0%   { transform: rotate(0deg) scale(1); }
  10%  { transform: rotate(-8deg) scale(1.05); }
  25%  { transform: rotate(7deg) scale(1.1); }
  40%  { transform: rotate(-5deg) scale(1.08); }
  55%  { transform: rotate(4deg) scale(1.09); }
  70%  { transform: rotate(-2deg) scale(1.07); }
  100% { transform: rotate(0deg) scale(1.07); }
}
@keyframes sc-6-anim {
  0%   { transform: scale(1) translateY(0); }
  25%  { transform: scale(1.16) translateY(-10px) rotate(3deg); }
  45%  { transform: scale(0.94) translateY(-6px) rotate(-2deg); }
  65%  { transform: scale(1.1) translateY(-12px) rotate(1deg); }
  85%  { transform: scale(1.06) translateY(-10px); }
  100% { transform: scale(1.07) translateY(-10px); }
}

.stamp-card.sc-playing-1 { animation: sc-1-anim 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.stamp-card.sc-playing-2 { animation: sc-2-anim 0.52s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.stamp-card.sc-playing-3 { animation: sc-3-anim 0.5s  cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.stamp-card.sc-playing-4 { animation: sc-4-anim 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.stamp-card.sc-playing-5 { animation: sc-5-anim 0.52s ease forwards !important; }
.stamp-card.sc-playing-6 { animation: sc-6-anim 0.5s  cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.stamp-card.sc-playing-7 { animation: sc-2-anim 0.52s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.stamp-card.sc-playing-8 { animation: sc-3-anim 0.5s  cubic-bezier(0.34,1.56,0.64,1) forwards !important; }

/* stamp-icon animates independently on hover */
.stamp-card.sc-playing-1 .stamp-icon,
.stamp-card.sc-playing-4 .stamp-icon { animation: gm-icon-spin   0.55s ease forwards !important; }
.stamp-card.sc-playing-2 .stamp-icon,
.stamp-card.sc-playing-5 .stamp-icon { animation: gm-icon-bounce 0.52s ease forwards !important; }
.stamp-card.sc-playing-3 .stamp-icon,
.stamp-card.sc-playing-6 .stamp-icon { animation: gm-icon-flip   0.5s  ease forwards !important; }


.stamp-number {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  transition: font-size 0.25s ease, transform 0.25s ease, color 0.25s ease;
  z-index: 2;
}

@keyframes sn-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(2.2) rotate(-8deg); }
  60%  { transform: scale(1.8) rotate(5deg); }
  80%  { transform: scale(2.0) rotate(-2deg); }
  100% { transform: scale(1.9) rotate(0deg); }
}

.stamp-card:is(.sc-playing-1,.sc-playing-2,.sc-playing-3,
              .sc-playing-4,.sc-playing-5,.sc-playing-6) .stamp-number {
  animation: sn-pop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards !important;
}

/* color per card on hover */
.stamp-card:nth-child(1):is(.sc-playing-1) .stamp-number { color: #f15a37; }
.stamp-card:nth-child(2):is(.sc-playing-2) .stamp-number { color: #9b4dca; }
.stamp-card:nth-child(3):is(.sc-playing-3) .stamp-number { color: #00cca4; }
.stamp-card:nth-child(4):is(.sc-playing-4) .stamp-number { color: #f15a37; }
.stamp-card:nth-child(5):is(.sc-playing-5) .stamp-number { color: #e6a000; }
.stamp-card:nth-child(6):is(.sc-playing-6) .stamp-number { color: #73cedd; }

.stamp-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(241, 90, 55, 0.30), rgba(155, 77, 202, 0.24));
  font-size: 1.65rem;
}

.stamp-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 900;
  line-height: 1.45;
  transition: color 0.25s ease, transform 0.25s ease;
}

.stamp-card:hover h3,
.stamp-card:focus-visible h3 {
  color: var(--stamp-accent);
  transform: translateY(-1px);
}
.stamp-card p  { margin: 0; color: var(--muted); line-height: 1.75; font-size: 0.95rem; }

.passport-note {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ═══════════════════════════════════════════════
   INCLUDED
   ═══════════════════════════════════════════════ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.included-card {
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(88, 46, 145, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 52px rgba(88, 46, 145, 0.14);
}

.included-card:nth-child(1) { background: linear-gradient(180deg, rgba(255, 241, 238, 0.96), rgba(255, 216, 208, 1)); }
.included-card:nth-child(2) { background: linear-gradient(180deg, rgba(228, 248, 255, 0.96), rgba(195, 236, 252, 1)); }
.included-card:nth-child(3) { background: linear-gradient(180deg, rgba(228, 255, 248, 0.96), rgba(198, 252, 238, 1)); }
.included-card:nth-child(4) { background: linear-gradient(180deg, rgba(255, 249, 220, 0.96), rgba(255, 232, 168, 1)); }

.included-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.20), rgba(241, 90, 55, 0.20));
  font-size: 1.7rem;
}

.included-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.included-card p  { margin: 0; color: var(--muted); line-height: 1.75; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════
   IMAGE SHOWCASE
   ═══════════════════════════════════════════════ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.showcase-card {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 239, 250, 0.8));
  box-shadow: 0 22px 52px rgba(88, 46, 145, 0.10);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.showcase-card::before {
  content: 'تكبير';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(88, 46, 145, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.showcase-card:hover::before,
.showcase-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.showcase-card h3 {
  margin: 14px 18px 16px;
  color: var(--text);
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(20, 12, 34, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(92vw, 1120px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.image-lightbox.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  position: fixed;
  bottom: 22px;
  margin: 0;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--heading);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--heading);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

/* overlay glow that appears on hover */
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.showcase-card:nth-child(1)::after { background: linear-gradient(135deg, rgba(241, 90, 55,0.18), rgba(155, 77, 202,0.14)); }
.showcase-card:nth-child(2)::after { background: linear-gradient(135deg, rgba(115, 206, 221,0.18), rgba(0, 204, 164,0.14)); }
.showcase-card:nth-child(3)::after { background: linear-gradient(135deg, rgba(241, 90, 55,0.18), rgba(252, 179, 0,0.2)); }
.showcase-card:hover::after { opacity: 1; }

/* unique per-card hover shadows */
.showcase-card:nth-child(1):hover { box-shadow: 0 32px 64px rgba(241, 90, 55,0.3), 0 0 0 3px rgba(241, 90, 55,0.35); }
.showcase-card:nth-child(2):hover { box-shadow: 0 32px 64px rgba(115, 206, 221,0.3), 0 0 0 3px rgba(115, 206, 221,0.35); }
.showcase-card:nth-child(3):hover { box-shadow: 0 32px 64px rgba(241, 90, 55,0.3), 0 0 0 3px rgba(241, 90, 55,0.35); }

/* showcase animations */
@keyframes sc-zoom-tilt {
  0%   { transform: scale(1) rotate(0deg); }
  20%  { transform: scale(1.06) rotate(-3deg) translateY(-8px); }
  45%  { transform: scale(1.09) rotate(2deg) translateY(-14px); }
  70%  { transform: scale(1.07) rotate(-1deg) translateY(-12px); }
  100% { transform: scale(1.08) rotate(0deg) translateY(-12px); }
}
@keyframes sc-slide-up {
  0%   { transform: translateY(0) scaleY(1); }
  15%  { transform: translateY(6px) scaleY(0.92) scaleX(1.06); }
  40%  { transform: translateY(-22px) scaleY(1.08) scaleX(0.96); }
  65%  { transform: translateY(-16px) scale(1.05); }
  82%  { transform: translateY(-19px) scale(1.06); }
  100% { transform: translateY(-16px) scale(1.06); }
}
@keyframes sc-perspective {
  0%   { transform: perspective(600px) rotateY(0deg) scale(1); }
  30%  { transform: perspective(600px) rotateY(-14deg) scale(1.06) translateY(-10px); }
  60%  { transform: perspective(600px) rotateY(8deg) scale(1.07) translateY(-12px); }
  80%  { transform: perspective(600px) rotateY(-4deg) scale(1.07) translateY(-11px); }
  100% { transform: perspective(600px) rotateY(0deg) scale(1.07) translateY(-12px); }
}

/* img zoom on card animate */
@keyframes sc-img-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}
@keyframes sc-img-blur-in {
  0%   { filter: brightness(1) saturate(1); }
  50%  { filter: brightness(1.2) saturate(1.4); }
  100% { filter: brightness(1.1) saturate(1.25); }
}
@keyframes sc-title-rise {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.showcase-card.sc-anim-1 { animation: sc-zoom-tilt   0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.showcase-card.sc-anim-2 { animation: sc-slide-up    0.52s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.showcase-card.sc-anim-3 { animation: sc-perspective 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }

.showcase-card.sc-anim-1 img,
.showcase-card.sc-anim-2 img,
.showcase-card.sc-anim-3 img { animation: sc-img-zoom 0.55s ease forwards, sc-img-blur-in 0.55s ease forwards !important; }

.showcase-card.sc-anim-1 h3,
.showcase-card.sc-anim-2 h3,
.showcase-card.sc-anim-3 h3 { animation: sc-title-rise 0.4s ease forwards !important; }

/* ═══════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ── 🔥 Offer / urgency bar ── */
.offer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 760px;
  margin: 0 auto 26px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(100deg, #9b4dca, #f15a37 55%, #fcb300);
  color: #fff;
  box-shadow: 0 14px 34px rgba(241, 90, 55, 0.32);
  position: relative;
  overflow: hidden;
  text-align: center;

  /* حركة دائمة مميزة وقوية للعرض */
  animation: offer-bar-strong 2.8s cubic-bezier(0.34,1.56,0.64,1) infinite;
}
.offer-bar::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.62), rgba(252, 179, 0, 0.55), transparent);
  transform: skewX(-18deg);
  opacity: 0.9;
  animation: offer-shine 2.2s ease-in-out infinite;
}

/* ring نبضي قوي جدًا */
.offer-bar::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.45), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(0,204,164,0.28), transparent 60%),
              radial-gradient(circle at 50% 50%, rgba(252,179,0,0.30), transparent 60%);
  opacity: 0.0;
  pointer-events: none;
  animation: offer-ring-pop 2.8s ease-in-out infinite;
}

@keyframes offer-ring-pop {
  0%   { opacity: 0.0; transform: scale(0.98); filter: blur(0px); }
  18%  { opacity: 0.8; transform: scale(1.01); filter: blur(1px); }
  55%  { opacity: 0.35; transform: scale(1.02); filter: blur(2px); }
  100% { opacity: 0.0; transform: scale(1.03); filter: blur(3px); }
}

@keyframes offer-shine {
  0%, 60% { inset-inline-start: -40%; opacity: 0.0; }
  10%      { opacity: 1; }
  100%    { inset-inline-start: 140%; opacity: 0; }
}

@keyframes offer-bar-strong {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: saturate(1) brightness(1);
  }
  35% {
    transform: translateY(-4px) scale(1.02);
    filter: saturate(1.18) brightness(1.06);
  }
  70% {
    transform: translateY(-2px) scale(1.01);
    filter: saturate(1.12) brightness(1.03);
  }
}
.offer-flame {
  font-size: 1.25rem;
  animation: offer-flicker 1.3s ease-in-out infinite;
}
@keyframes offer-flicker {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.18) rotate(-4deg); }
}
.offer-text { font-size: 0.98rem; }
.offer-text strong { font-weight: 800; }
.offer-chip {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card {
  --pc: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(88, 46, 145, 0.08);
  overflow: hidden;
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.34s ease;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--pc);
}
/* shine sweep on hover */
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -65%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px color-mix(in srgb, var(--pc) 24%, rgba(88, 46, 145, 0.12));
}
.price-card:hover::after { animation: pc-shine 0.9s ease forwards; }
@keyframes pc-shine {
  from { inset-inline-start: -65%; opacity: 0; }
  30%  { opacity: 1; }
  to   { inset-inline-start: 135%; opacity: 0; }
}

.price-card:nth-child(1) { background: linear-gradient(180deg, rgba(255, 248, 240, 0.96), rgba(255, 226, 210, 1)); }
.price-card:nth-child(2) { background: linear-gradient(180deg, rgba(243, 237, 255, 0.96), rgba(223, 214, 255, 1)); }
.price-card:nth-child(3) { background: linear-gradient(180deg, rgba(228, 255, 248, 0.96), rgba(193, 252, 238, 1)); }

.pc-head h3        { margin: 0 0 4px; font-size: 1.22rem; }
.price-label       { font-size: 0.95rem; color: var(--muted); font-weight: 600; margin: 0; }

/* ── Price typography ── */
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--border);
}
.pc-old {
  position: relative;
  font-size: 1.7rem;
  color: var(--muted);
  opacity: 0.85;
  font-weight: 700;
}
/* clear diagonal strike so the price difference is obvious */
.pc-old::after {
  content: "";
  position: absolute;
  inset-inline: -3px;
  top: 52%;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transform: rotate(-12deg);
}
.pc-amount {
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 800;
  color: var(--pc);
}
.pc-meta { display: flex; flex-direction: column; line-height: 1.2; }
.pc-cur { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.pc-per { font-size: 0.8rem; color: var(--muted); }

/* ── "save" badge — sits beside the price ── */
.pc-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: center;
  margin-inline-start: auto;
  background: color-mix(in srgb, var(--secondary) 14%, #fff);
  color: var(--secondary);
  border: 1px solid color-mix(in srgb, var(--secondary) 35%, transparent);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pc-save::before { content: '🏷️'; font-size: 0.8rem; }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
  font-size: 0.95rem;
}
.price-card ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 10px;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--pc);
  font-weight: 800;
}
/* lunch meal highlight */
.price-card ul li.pc-meal {
  color: var(--text);
  font-weight: 700;
}
.price-card ul li.pc-meal::before {
  content: '🍱';
  font-size: 0.95rem;
}

.pc-cta { margin-top: 4px; text-align: center; justify-content: center; }

/* ── package actions: primary + WhatsApp ── */
.pc-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.pc-actions .pc-cta { margin-top: 0; }
.pc-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0c7a63;
  background: rgba(37, 211, 102, 0.10);
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  border-radius: 14px;
  padding: 11px 14px;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.pc-wa svg { width: 18px; height: 18px; flex-shrink: 0; color: #25d366; }
.pc-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}
.pc-wa:hover svg { animation: wa-wiggle 0.6s ease; }

.price-card-hot {
  border: 2px solid color-mix(in srgb, var(--accent) 70%, transparent);
  transform: scale(1.03);
}
.price-card-hot:hover { transform: scale(1.03) translateY(-10px); }

.hot-ribbon {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 8px 20px rgba(252, 179, 0, 0.45);
  animation: hot-pulse 1.8s ease-in-out infinite;
}
@keyframes hot-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(252, 179, 0, 0.40); }
  50%      { box-shadow: 0 8px 28px rgba(252, 179, 0, 0.75); }
}

.pricing-note {
  max-width: 680px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.pay-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}
.pay-logo svg,
.pay-logo img {
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
/* uniform optical sizing per brand (wordmarks vs. stacked lockup) */
.pay-logo[data-pay="mada"] img   { height: 40px; }
.pay-logo[data-pay="visa"] img   { height: 30px; }
.pay-logo[data-pay="tamara"] img { height: 30px; }

.pay-logo:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(88, 46, 145, 0.22));
}

/* distinctive per-logo play animation (on hover) */
.pay-logo.pay-playing-1 { animation: pay-pop   0.5s cubic-bezier(0.34,1.56,0.64,1) !important; }
.pay-logo.pay-playing-2 { animation: pay-swing 0.55s ease !important; }
.pay-logo.pay-playing-3 { animation: pay-beat  0.5s ease !important; }
@keyframes pay-pop {
  0%   { transform: translateY(-5px) scale(1.05) rotate(0); }
  40%  { transform: translateY(-11px) scale(1.13) rotate(-2deg); }
  70%  { transform: translateY(-4px) scale(1.04) rotate(1deg); }
  100% { transform: translateY(-5px) scale(1.05) rotate(0); }
}
@keyframes pay-swing {
  0%,100% { transform: translateY(-5px) scale(1.05) rotate(0); }
  30%     { transform: translateY(-5px) scale(1.05) rotate(5deg); }
  60%     { transform: translateY(-5px) scale(1.05) rotate(-5deg); }
  80%     { transform: translateY(-5px) scale(1.05) rotate(2deg); }
}
@keyframes pay-beat {
  0%,100% { transform: translateY(-5px) scale(1.05); }
  35%     { transform: translateY(-7px) scale(1.14); }
  60%     { transform: translateY(-5px) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .pay-logo[class*="pay-playing-"] { animation: none !important; }
  .pay-logo:hover::after { animation: none; }
}

/* ── Price cards — distinctive per-card play animations (on hover) ── */
.price-card.pc-playing-1 { animation: pcp-1 0.60s cubic-bezier(0.34,1.56,0.64,1) !important; }
.price-card.pc-playing-2 { animation: pcp-2 0.62s cubic-bezier(0.34,1.56,0.64,1) !important; }
.price-card.pc-playing-3 { animation: pcp-3 0.60s cubic-bezier(0.34,1.56,0.64,1) !important; }
/* keep the hot card's scale baseline during its animation */
.price-card-hot.pc-playing-2 { animation: pcp-2-hot 0.62s cubic-bezier(0.34,1.56,0.64,1) !important; }

@keyframes pcp-1 {
  0%   { transform: translateY(-10px) scale(1) rotate(0); }
  35%  { transform: translateY(-18px) scale(1.03) rotate(-1.5deg); }
  65%  { transform: translateY(-7px) scale(1.01) rotate(1deg); }
  100% { transform: translateY(-10px) scale(1) rotate(0); }
}
@keyframes pcp-2 {
  0%,100% { transform: translateY(-10px) scale(1); }
  30%     { transform: translateY(-17px) scale(1.05); }
  60%     { transform: translateY(-6px) scale(0.99); }
}
@keyframes pcp-2-hot {
  0%,100% { transform: translateY(-10px) scale(1.03); }
  30%     { transform: translateY(-18px) scale(1.08); }
  60%     { transform: translateY(-6px) scale(1.02); }
}
@keyframes pcp-3 {
  0%,100% { transform: translateY(-10px) rotate(0); }
  25%     { transform: translateY(-12px) rotate(2deg); }
  55%     { transform: translateY(-12px) rotate(-2deg); }
  80%     { transform: translateY(-11px) rotate(1deg); }
}
/* price number pops when its card plays */
.price-card[class*="pc-playing-"] .pc-amount {
  animation: pc-amount-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) !important;
}
@keyframes pc-amount-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.22) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .offer-bar,
  .offer-bar::before,
  .offer-bar::after,
  .offer-flame,
  .hot-ribbon { animation: none !important; }
  .price-card[class*="pc-playing-"],
  .price-card[class*="pc-playing-"] .pc-amount { animation: none !important; }
}

/* ═══════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card {
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(88, 46, 145, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 52px rgba(88, 46, 145, 0.14);
}

.trust-card:nth-child(1) { background: linear-gradient(180deg, rgba(255, 250, 236, 0.96), rgba(255, 236, 214, 1)); }
.trust-card:nth-child(2) { background: linear-gradient(180deg, rgba(236, 247, 255, 0.96), rgba(217, 236, 255, 1)); }
.trust-card:nth-child(3) { background: linear-gradient(180deg, rgba(255, 241, 238, 0.96), rgba(255, 213, 206, 1)); }

.trust-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(252, 179, 0, 0.20), rgba(155, 77, 202, 0.18));
  font-size: 1.7rem;
}

.trust-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.trust-card p  { margin: 0; color: var(--muted); line-height: 1.75; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(88, 46, 145, 0.10);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* color overlay per gallery card */
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.gallery-card:nth-child(1)::before { background: linear-gradient(160deg, rgba(155, 77, 202,0.22), rgba(241, 90, 55,0.16)); }
.gallery-card:nth-child(2)::before { background: linear-gradient(160deg, rgba(0, 204, 164,0.2),  rgba(115, 206, 221,0.18)); }
.gallery-card:nth-child(3)::before { background: linear-gradient(160deg, rgba(241, 90, 55,0.22), rgba(252, 179, 0,0.2)); }
.gallery-card:hover::before { opacity: 1; }

.gallery-card:nth-child(1):hover { box-shadow: 0 32px 64px rgba(155, 77, 202,0.3), 0 0 0 3px rgba(155, 77, 202,0.35); }
.gallery-card:nth-child(2):hover { box-shadow: 0 32px 64px rgba(0, 204, 164,0.3),  0 0 0 3px rgba(0, 204, 164,0.35);  }
.gallery-card:nth-child(3):hover { box-shadow: 0 32px 64px rgba(241, 90, 55,0.3), 0 0 0 3px rgba(241, 90, 55,0.35); }

/* gallery card animations */
@keyframes gc-flip-x {
  0%   { transform: perspective(700px) rotateX(0deg) scale(1); }
  25%  { transform: perspective(700px) rotateX(12deg) scale(1.04) translateY(-6px); }
  50%  { transform: perspective(700px) rotateX(-8deg) scale(1.08) translateY(-14px); }
  75%  { transform: perspective(700px) rotateX(4deg) scale(1.07) translateY(-12px); }
  100% { transform: perspective(700px) rotateX(0deg) scale(1.07) translateY(-12px); }
}
@keyframes gc-spin-scale {
  0%   { transform: scale(1) rotate(0deg); }
  18%  { transform: scale(0.9) rotate(-6deg); }
  42%  { transform: scale(1.12) rotate(5deg) translateY(-10px); }
  65%  { transform: scale(1.08) rotate(-2deg) translateY(-13px); }
  85%  { transform: scale(1.09) rotate(1deg) translateY(-12px); }
  100% { transform: scale(1.08) rotate(0deg) translateY(-12px); }
}
@keyframes gc-slam {
  0%   { transform: translateY(-30px) scale(1.1); opacity: 0.7; }
  35%  { transform: translateY(6px) scale(0.96); opacity: 1; }
  55%  { transform: translateY(-10px) scale(1.04); }
  75%  { transform: translateY(-6px) scale(1.06); }
  100% { transform: translateY(-8px) scale(1.06); }
}

/* img effects inside gallery */
@keyframes gc-img-saturate {
  0%   { filter: brightness(1) saturate(1) contrast(1); }
  50%  { filter: brightness(1.15) saturate(1.5) contrast(1.05); }
  100% { filter: brightness(1.1) saturate(1.3) contrast(1.02); }
}
@keyframes gc-img-scale {
  0%   { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.gallery-card.gc-anim-1 { animation: gc-flip-x    0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.gallery-card.gc-anim-2 { animation: gc-spin-scale 0.52s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.gallery-card.gc-anim-3 { animation: gc-slam       0.5s  cubic-bezier(0.34,1.56,0.64,1) forwards !important; }

.gallery-card.gc-anim-1 img,
.gallery-card.gc-anim-2 img,
.gallery-card.gc-anim-3 img { animation: gc-img-scale 0.55s ease forwards, gc-img-saturate 0.55s ease forwards !important; }

/* ═══════════════════════════════════════════════
   PARENT CONCERNS
   ═══════════════════════════════════════════════ */
.concerns-section {
  background: #fff;
}

.concerns-section .section-tag {
  background: transparent;
  border: 0;
  color: #ff6f61;
  padding: 0;
  font-size: 0.98rem;
}

.concerns-section .section-header h2 {
  color: var(--heading);
}

.concerns-section .section-header p {
  display: none;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin-inline: auto;
}

.concern-card {
  position: relative;
  min-height: 292px;
  border-radius: 16px;
  padding: 54px 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(145deg, #3a1e66, #462371);
  color: #fff;
  box-shadow: 0 24px 60px rgba(60, 30, 105, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* individual card backgrounds */
.concern-card:nth-child(1),
.concern-card:nth-child(2),
.concern-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 18%, rgba(252, 179, 0, 0.18), transparent 22%),
    linear-gradient(145deg, #3a1e66, #462371);
  color: #fff;
}

/* glowing border on hover */
.concern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(60, 30, 105, 0.28);
}

/* animated gradient sweep inside card */
.concern-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.concern-card:nth-child(1)::after,
.concern-card:nth-child(2)::after,
.concern-card:nth-child(3)::after { background: radial-gradient(circle at 30% 40%, rgba(252, 179, 0,0.18) 0%, transparent 70%); }
.concern-card:hover::after { opacity: 1; }

.concern-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease;
}

.concern-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.35s ease;
}

.concern-body h3 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--accent);
  line-height: 1.4;
}
.concern-body p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.9;
}

.concern-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 99px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.concern-card:nth-child(1) .concern-tag { background: rgba(155, 77, 202,0.35); color: #ddb8f0; }
.concern-card:nth-child(2) .concern-tag { background: rgba(0, 204, 164,0.3);  color: #80eedc; }
.concern-card:nth-child(3) .concern-tag { background: rgba(115, 206, 221,0.3); color: #a8e4ef; }
.concern-card:nth-child(4) .concern-tag { background: rgba(241, 90, 55,0.3); color: #f9a07a; }

/* ── New game animations ── */
@keyframes cc-shield-pulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(155, 77, 202,0.5); }
  20%  { transform: scale(0.95); box-shadow: 0 0 0 12px rgba(155, 77, 202,0.3); }
  45%  { transform: scale(1.1) translateY(-16px); box-shadow: 0 0 0 24px rgba(155, 77, 202,0.1); }
  65%  { transform: scale(1.07) translateY(-13px); box-shadow: 0 0 0 0 rgba(155, 77, 202,0); }
  85%  { transform: scale(1.09) translateY(-15px); }
  100% { transform: scale(1.08) translateY(-14px); }
}
@keyframes cc-rise-strong {
  0%   { transform: translateY(0) scaleY(1) scaleX(1); }
  10%  { transform: translateY(8px) scaleY(0.88) scaleX(1.1); }
  30%  { transform: translateY(-24px) scaleY(1.12) scaleX(0.92); }
  52%  { transform: translateY(-17px) scaleY(1.05); }
  72%  { transform: translateY(-20px) scaleY(1.07); }
  100% { transform: translateY(-18px) scale(1.07); }
}
@keyframes cc-orbit {
  0%   { transform: scale(1) rotate(0deg) translateY(0); }
  22%  { transform: scale(1.06) rotate(-8deg) translateY(-10px); }
  44%  { transform: scale(1.1) rotate(6deg) translateY(-18px); }
  66%  { transform: scale(1.08) rotate(-3deg) translateY(-15px); }
  88%  { transform: scale(1.09) rotate(1deg) translateY(-17px); }
  100% { transform: scale(1.08) rotate(0deg) translateY(-16px); }
}

/* icon animations per card */
@keyframes cc-icon-shield {
  0%   { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 rgba(155, 77, 202,0)); }
  30%  { transform: scale(1.6) rotate(-10deg); filter: drop-shadow(0 0 12px rgba(155, 77, 202,0.9)); }
  60%  { transform: scale(1.4) rotate(6deg); filter: drop-shadow(0 0 8px rgba(155, 77, 202,0.7)); }
  100% { transform: scale(1.45) rotate(0deg); filter: drop-shadow(0 0 6px rgba(155, 77, 202,0.6)); }
}
@keyframes cc-icon-handshake {
  0%   { transform: scale(1) translateY(0); filter: drop-shadow(0 0 0 rgba(0, 204, 164,0)); }
  25%  { transform: scale(0.8) translateY(4px); }
  50%  { transform: scale(1.7) translateY(-8px); filter: drop-shadow(0 0 14px rgba(0, 204, 164,0.9)); }
  75%  { transform: scale(1.45) translateY(-5px); filter: drop-shadow(0 0 8px rgba(0, 204, 164,0.7)); }
  100% { transform: scale(1.5) translateY(-6px); filter: drop-shadow(0 0 6px rgba(0, 204, 164,0.6)); }
}
@keyframes cc-icon-balance {
  0%   { transform: scale(1) rotate(0deg); }
  20%  { transform: scale(1.3) rotate(-20deg); filter: drop-shadow(0 0 10px rgba(115, 206, 221,0.8)); }
  40%  { transform: scale(1.5) rotate(15deg); filter: drop-shadow(0 0 14px rgba(115, 206, 221,0.9)); }
  60%  { transform: scale(1.4) rotate(-8deg); filter: drop-shadow(0 0 10px rgba(115, 206, 221,0.7)); }
  80%  { transform: scale(1.45) rotate(4deg); }
  100% { transform: scale(1.45) rotate(0deg); filter: drop-shadow(0 0 6px rgba(115, 206, 221,0.6)); }
}

/* icon animation card 4 */
@keyframes cc-icon-notify {
  0%   { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 rgba(241, 90, 55,0)); }
  20%  { transform: scale(1.3) rotate(-15deg); }
  40%  { transform: scale(1.6) rotate(10deg); filter: drop-shadow(0 0 14px rgba(241, 90, 55,0.9)); }
  60%  { transform: scale(1.45) rotate(-5deg); filter: drop-shadow(0 0 10px rgba(241, 90, 55,0.7)); }
  80%  { transform: scale(1.5) rotate(3deg); }
  100% { transform: scale(1.45) rotate(0deg); filter: drop-shadow(0 0 6px rgba(241, 90, 55,0.6)); }
}

/* all 4 cards use the same card animation */
.concern-card.cc-anim-1,
.concern-card.cc-anim-2,
.concern-card.cc-anim-3,
.concern-card.cc-anim-4 { animation: cc-shield-pulse 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }

/* icons each have their own unique animation */
.concern-card.cc-anim-1 .concern-icon { animation: cc-icon-shield    0.6s  ease forwards !important; }
.concern-card.cc-anim-2 .concern-icon { animation: cc-icon-handshake 0.58s ease forwards !important; }
.concern-card.cc-anim-3 .concern-icon { animation: cc-icon-balance   0.62s ease forwards !important; }
.concern-card.cc-anim-4 .concern-icon { animation: cc-icon-notify    0.6s  ease forwards !important; }

@media (max-width: 960px) {
  .concerns-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .concerns-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .concern-card { padding: 24px 18px; }
  .concern-icon-wrap { width: 54px; height: 54px; }
  .concern-icon { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  position: relative;
  border-radius: 28px;
  padding: 28px 24px 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(88, 46, 145, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

/* shimmer top border */
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #9b4dca, #f15a37, #fcb300, #9b4dca);
  background-size: 200% 100%;
  animation: rv-border-shimmer 3s linear infinite;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.review-card:hover::before { opacity: 1; }

@keyframes rv-border-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* featured card */
.review-card-featured {
  background: linear-gradient(160deg, #edfaf7 0%, #edfaf7 100%);
  box-shadow: 0 20px 56px rgba(155, 77, 202, 0.16);
  transform: translateY(-6px);
}
.review-card-featured::before { opacity: 1; height: 5px; }

.review-stars {
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: #fcb300;
  text-shadow: 0 2px 10px rgba(252, 179, 0, 0.5);
  display: block;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.review-text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155, 77, 202,0.12), rgba(241, 90, 55,0.12));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.review-author small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.review-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(155, 77, 202, 0.09);
  border-radius: 99px;
  padding: 4px 12px;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

/* hover glows */
.review-card:nth-child(1):hover { box-shadow: 0 28px 60px rgba(155, 77, 202,0.22), 0 0 0 2px rgba(155, 77, 202,0.2); }
.review-card:nth-child(2):hover { box-shadow: 0 28px 60px rgba(241, 90, 55,0.22), 0 0 0 2px rgba(241, 90, 55,0.2); }
.review-card:nth-child(3):hover { box-shadow: 0 28px 60px rgba(241, 90, 55,0.22), 0 0 0 2px rgba(241, 90, 55,0.2); }

/* game animations */
/* ── Card body animations ── */
@keyframes rv-card-1 {
  0%   { transform: translateY(0)    scale(1)    rotate(0deg); }
  18%  { transform: translateY(-22px) scale(1.07) rotate(-3deg); }
  40%  { transform: translateY(-16px) scale(1.09) rotate(2deg); }
  62%  { transform: translateY(-20px) scale(1.08) rotate(-1deg); }
  100% { transform: translateY(-18px) scale(1.08) rotate(0deg); }
}
@keyframes rv-card-2 {
  0%   { transform: scale(1)    translateY(0); }
  12%  { transform: scale(0.9)  translateY(8px); }
  35%  { transform: scale(1.12) translateY(-18px); }
  55%  { transform: scale(1.08) translateY(-14px); }
  75%  { transform: scale(1.11) translateY(-16px); }
  100% { transform: scale(1.09) translateY(-16px); }
}
@keyframes rv-card-3 {
  0%   { transform: perspective(700px) rotateY(0deg)   scale(1)    translateY(0); }
  25%  { transform: perspective(700px) rotateY(-12deg) scale(1.07) translateY(-12px); }
  50%  { transform: perspective(700px) rotateY(8deg)   scale(1.09) translateY(-18px); }
  75%  { transform: perspective(700px) rotateY(-4deg)  scale(1.08) translateY(-16px); }
  100% { transform: perspective(700px) rotateY(0deg)   scale(1.08) translateY(-16px); }
}

/* ── Stars animations — each card different ── */
@keyframes rv-stars-1 {
  0%   { transform: scale(1)   translateY(0);     font-size: 1.6rem; letter-spacing: 4px; }
  30%  { transform: scale(1.9) translateY(-4px);  font-size: 1.6rem; letter-spacing: 8px; }
  55%  { transform: scale(1.7) translateY(-2px);  }
  80%  { transform: scale(1.85) translateY(-3px); }
  100% { transform: scale(1.8) translateY(-3px);  letter-spacing: 6px; }
}
@keyframes rv-stars-2 {
  0%   { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0px #fcb300); }
  25%  { transform: scale(0.8) rotate(-8deg); filter: drop-shadow(0 0 4px #fcb300); }
  50%  { transform: scale(2.0) rotate(5deg); filter: drop-shadow(0 0 18px #fcb300) drop-shadow(0 0 30px rgba(252, 179, 0,0.6)); }
  75%  { transform: scale(1.7) rotate(-2deg); filter: drop-shadow(0 0 12px #fcb300); }
  100% { transform: scale(1.8) rotate(0deg); filter: drop-shadow(0 0 10px rgba(252, 179, 0,0.7)); }
}
@keyframes rv-stars-3 {
  0%   { transform: translateX(0) scale(1); opacity: 1; }
  20%  { transform: translateX(-6px) scale(1.3); opacity: 0.6; }
  40%  { transform: translateX(6px) scale(1.8); opacity: 1; letter-spacing: 10px; }
  60%  { transform: translateX(-3px) scale(1.9); letter-spacing: 8px; }
  80%  { transform: translateX(2px) scale(1.85); }
  100% { transform: translateX(0) scale(1.8); letter-spacing: 7px; }
}

/* ── Avatar animations ── */
@keyframes rv-avatar-1 {
  0%   { transform: scale(1) rotate(0deg); }
  40%  { transform: scale(1.5) rotate(-15deg) translateY(-6px); }
  70%  { transform: scale(1.3) rotate(8deg) translateY(-4px); }
  100% { transform: scale(1.35) rotate(0deg) translateY(-4px); }
}
@keyframes rv-avatar-2 {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.6) translateY(-8px); }
  55%  { transform: scale(1.35) translateY(-4px); }
  80%  { transform: scale(1.5) translateY(-6px); }
  100% { transform: scale(1.4) translateY(-5px); }
}
@keyframes rv-avatar-3 {
  0%   { transform: rotateY(0deg) scale(1); }
  50%  { transform: rotateY(180deg) scale(1.4); }
  100% { transform: rotateY(360deg) scale(1.35); }
}

/* ── Apply animations ── */
.review-card.rv-anim-1 { animation: rv-card-1 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.review-card.rv-anim-2 { animation: rv-card-2 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.review-card.rv-anim-3 { animation: rv-card-3 0.58s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }

.review-card.rv-anim-1 .review-stars { animation: rv-stars-1 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.review-card.rv-anim-2 .review-stars { animation: rv-stars-2 0.65s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.review-card.rv-anim-3 .review-stars { animation: rv-stars-3 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }

.review-card.rv-anim-1 .review-avatar { animation: rv-avatar-1 0.55s ease forwards !important; }
.review-card.rv-anim-2 .review-avatar { animation: rv-avatar-2 0.5s  ease forwards !important; }
.review-card.rv-anim-3 .review-avatar { animation: rv-avatar-3 0.55s ease forwards !important; }

/* responsive */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .review-card-featured { transform: none; }
}
@media (max-width: 480px) {
  .review-card { padding: 22px 18px; }
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: linear-gradient(180deg, #ffffff, #f0fdf9);
  border-radius: 22px;
  border: 1px solid rgba(155, 77, 202, 0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-list details:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(155, 77, 202, 0.08);
}

.faq-list details:nth-child(1) { border-color: rgba(241, 90, 55, 0.18); }
.faq-list details:nth-child(2) { border-color: rgba(252, 179, 0, 0.22); }
.faq-list details:nth-child(3) { border-color: rgba(155, 77, 202, 0.18); }
.faq-list details:nth-child(4) { border-color: rgba(115, 206, 221, 0.18); }
.faq-list details:nth-child(5) { border-color: rgba(0, 204, 164, 0.18); }

.faq-list summary {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
  list-style: none;
  font-size: 1rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details:nth-child(1) summary { background: rgba(241, 90, 55, 0.07); }
.faq-list details:nth-child(2) summary { background: rgba(252, 179, 0, 0.10); }
.faq-list details:nth-child(3) summary { background: rgba(155, 77, 202, 0.08); }
.faq-list details:nth-child(4) summary { background: rgba( 115, 206, 221, 0.10); }
.faq-list details:nth-child(5) summary { background: rgba(0, 204, 164, 0.10); }

.faq-list summary::after {
  content: '+';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after { content: '−'; }

.faq-list p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
}

.faq-list p a {
  color: var(--primary);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta-card {
  border-radius: 32px;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.42), rgba(241, 90, 55, 0.34));
  box-shadow: 0 28px 60px rgba(88, 46, 145, 0.18);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 72px rgba(88, 46, 145, 0.22);
}

.badge-soft {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.final-cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 16px;
  color: var(--heading);
}

.final-cta-card p {
  margin: 0 auto 28px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  font-size: 1.02rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.60);
  border-top: 1px solid rgba(155, 77, 202, 0.10);
}

.footer-inner {
  padding: 40px var(--sp) 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.9;
}

.site-footer a {
  color: var(--primary);
  font-weight: 700;
}

.footer-payments {
  width: min(760px, 100%);
  margin: 24px auto 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(240, 253, 249, 0.72));
  border: 1px solid rgba(155, 77, 202, 0.12);
  box-shadow: 0 14px 34px rgba(88, 46, 145, 0.08);
}

.footer-payments-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: right;
  color: var(--text);
}

.footer-payments-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.12), rgba(241, 90, 55, 0.12));
  box-shadow: inset 0 0 0 1px rgba(155, 77, 202, 0.10);
}

.footer-payments-copy strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.35;
}

.footer-payments-copy small {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-payments-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-pay-logo {
  min-width: 76px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(155, 77, 202, 0.10);
  box-shadow: 0 8px 20px rgba(88, 46, 145, 0.06);
}

.footer-pay-logo[data-pay="mada"] img { height: 28px; }
.footer-pay-logo[data-pay="visa"] img { height: 22px; }
.footer-pay-logo[data-pay="tamara"] img { height: 22px; }

.footer-note {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1200px (large tablet / small desktop)
   ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-section {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .stamps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 820px;
  }

  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 960px (tablet landscape)
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --sp: max(20px, calc((100vw - 960px) / 2 + 32px)); }

  .nav-toggle { display: flex; }
  .site-nav   { display: none; }

  .hero-section {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .stamps-grid   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ticket-strip  { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .schedule-card { width: 160px; }

  .section { padding-top: 56px; padding-bottom: 56px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 680px (tablet portrait / large phone)
   ═══════════════════════════════════════════════ */
@media (max-width: 680px) {
  :root {
    --sp: 18px;
    --header-h: 64px;
  }

  .brand-logo    { height: 31px; max-width: 92px; }
  .brand-partner { gap: 7px; }
  .brand-divider { font-size: 1rem; }
  .partner-logo  { height: 31px; max-width: 92px; }
  .header-cta    { padding: 10px 18px; font-size: 0.85rem; }

  .hero-section h1 { font-size: clamp(2rem, 7vw, 2.8rem); line-height: 1.42; }

  .hero-firework-3,
  .hero-firework-4,
  .hero-rocket-2 {
    display: none;
  }

  .hero-firework {
    width: 9px;
    height: 9px;
  }

  .hero-trail {
    width: 170px;
    height: 170px;
    opacity: 0.42;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-pill { padding: 11px 10px; font-size: 0.82rem; }

  .countdown-grid { gap: 8px; }
  .countdown-item { padding: 16px 8px; border-radius: 20px; }
  .countdown-item strong { font-size: 1.8rem; }

  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .trust-grid    { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .showcase-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .stamps-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section { padding-top: 48px; padding-bottom: 48px; }

  .final-cta-card { padding: 36px 22px; }
  .final-actions  { flex-direction: column; align-items: stretch; }
  .final-actions .btn { text-align: center; justify-content: center; }

  .footer-payments {
    flex-direction: column;
    align-items: center;
    padding: 18px;
    gap: 16px;
  }

  .footer-payments-copy {
    text-align: center;
    justify-content: center;
  }

  .footer-payments-logos {
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px (mobile)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --sp: 16px;
    --header-h: 60px;
  }

  .schedule-card { width: 148px; padding: 16px 12px; }
  .sc-icon { font-size: 1.8rem; }
  .sc-body h4 { font-size: 0.88rem; }
  .sc-body p { font-size: 0.7rem; }
  .schedule-connector { width: 18px; }

  .brand-logo    { height: 25px; max-width: 76px; }
  .brand-partner { gap: 5px; }
  .brand-divider { font-size: 0.85rem; }
  .partner-logo  { height: 25px; max-width: 78px; }
  .header-cta    { padding: 9px 16px; font-size: 0.82rem; }

  .hero-section { padding-top: 36px; padding-bottom: 44px; }
  .hero-section h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); line-height: 1.5; }
  .hero-brand-lockup { gap: 9px; padding: 9px 13px; margin-bottom: 14px; }
  .hero-lockup-logo-woosh,
  .hero-lockup-logo-colors { height: 38px; max-width: 104px; }
  .hero-lockup-divider { font-size: 1.05rem; }

  .hero-firework {
    animation-duration: 5.8s;
  }

  .hero-firework-1 { top: 13%; left: 14%; }
  .hero-firework-2 { top: 13%; right: 14%; }
  .hero-rocket-1 { bottom: 8%; left: 20%; }
  .hero-trail-1 { top: -70px; right: -42px; }
  .hero-trail-2 { bottom: -92px; left: -58px; }

  .stamp-card {
    min-height: 86px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .hero-actions .btn,
  .final-actions .btn,
  .pc-cta,
  .mob-cta {
    white-space: normal;
    line-height: 1.45;
  }

  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero-pill { padding: 12px 14px; font-size: 0.85rem; }

  .countdown-grid { gap: 4px; }
  .countdown-sep { font-size: 1.2rem; margin-bottom: 16px; }
  .countdown-item { padding: 10px 6px; border-radius: 12px; }
  .countdown-item strong { font-size: clamp(1.3rem, 6vw, 1.6rem); }

  .ticket-strip { grid-template-columns: 1fr; padding-top: 20px; padding-bottom: 20px; }

  .stamps-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .included-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }

  .stamp-card,
  .included-card,
  .price-card,
  .trust-card { padding: 20px; border-radius: 22px; }

  .stamp-card {
    min-height: 96px;
    padding: 24px 10px 18px;
    border-radius: 16px;
  }

  .showcase-card img,
  .gallery-card img { height: 200px; }

  .section { padding-top: 40px; padding-bottom: 40px; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(1.45rem, 6vw, 1.9rem); }

  .faq-list summary { padding: 14px 16px; font-size: 0.93rem; }
  .faq-list summary::after { left: 16px; }
  .faq-list p { padding: 0 16px 14px; }

  .final-cta-card { padding: 28px 18px; border-radius: 24px; }

  .footer-payments-copy {
    flex-direction: column;
    gap: 8px;
  }

  .footer-pay-logo {
    min-width: 68px;
    min-height: 38px;
    padding: 7px 10px;
  }

  .footer-pay-logo[data-pay="mada"] img { height: 24px; }
  .footer-pay-logo[data-pay="visa"] img { height: 20px; }
  .footer-pay-logo[data-pay="tamara"] img { height: 20px; }

  .footer-inner { padding-top: 28px; padding-bottom: 36px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 360px (small mobile)
   ═══════════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero-section h1  { font-size: 1.65rem; }
  .hero-brand-lockup { gap: 7px; padding-inline: 10px; }
  .hero-lockup-logo-woosh,
  .hero-lockup-logo-colors { height: 32px; max-width: 88px; }
  .section-header h2 { font-size: 1.35rem; }
  .countdown-item strong { font-size: 1.55rem; }
  .stamp-card h3 { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════
   DAILY SCHEDULE
   ═══════════════════════════════════════════════ */
.daily-section { background: transparent; }

/* ── Horizontal scroll timeline ── */
.schedule-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 12px 40px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.schedule-track::-webkit-scrollbar { display: none; }

.schedule-connector { display: flex; }

.schedule-card {
  flex-shrink: 0;
  width: 175px;
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  scroll-snap-align: start;
  cursor: default;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.28s ease;
  background: rgba(255,255,255,0.18);
}
.schedule-card:hover { transform: translateY(-8px) scale(1.04); }
.schedule-card:hover::before { opacity: 1; }

/* color themes */
.schedule-card[data-color="purple"] { background: linear-gradient(145deg, #9b4dca, #c490e0); box-shadow: 0 8px 28px rgba(155, 77, 202,0.28); }
.schedule-card[data-color="pink"]   { background: linear-gradient(145deg, #f15a37, #f57d60); box-shadow: 0 8px 28px rgba(241, 90, 55,0.28); }
.schedule-card[data-color="blue"]   { background: linear-gradient(145deg, #73cedd, #9edce8); box-shadow: 0 8px 28px rgba(115, 206, 221,0.28); }
.schedule-card[data-color="orange"] { background: linear-gradient(145deg, #f15a37, #f57d5a); box-shadow: 0 8px 28px rgba(241, 90, 55,0.28); }
.schedule-card[data-color="green"]  { background: linear-gradient(145deg, #00cca4, #33d9b8); box-shadow: 0 8px 28px rgba(0, 204, 164,0.28); }
.schedule-card[data-color="teal"]   { background: linear-gradient(145deg, #00cca4, #73cedd); box-shadow: 0 8px 28px rgba(0, 204, 164,0.28); }
.schedule-card[data-color="yellow"] { background: linear-gradient(145deg, #e6a000, #fcb300); box-shadow: 0 8px 28px rgba(230, 160, 0,0.28); }

.sc-time {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  background: rgba(0,0,0,0.14);
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.sc-icon {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  transition: transform 0.3s ease;
}
.schedule-card:hover .sc-icon { transform: scale(1.18) rotate(-5deg); }

.sc-body h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}
.sc-body p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}

/* scroll hint arrow on desktop */
.schedule-track::after {
  content: '';
  flex-shrink: 0;
  width: 1px;
}

/* wrap — fade edges always visible */
.schedule-wrap {
  position: relative;
}
.schedule-wrap::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 100px;
  background: linear-gradient(to left, var(--bg) 10%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.schedule-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 60px;
  background: linear-gradient(to right, var(--bg) 10%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* scroll hint — always visible */
.schedule-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 10px 0 2px;
}
.hint-icon {
  font-size: 1.1rem;
  animation: hint-bounce 1.4s ease-in-out infinite;
}
.hint-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.75;
}
.hint-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.hint-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.35;
  animation: hint-dot 1.4s ease-in-out infinite;
}
.hint-dots span:nth-child(2) { animation-delay: 0.18s; }
.hint-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes hint-bounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-7px); }
}
@keyframes hint-dot {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.35); }
}

/* ═══════════════════════════════════════════════
   GAME ANIMATIONS
   ═══════════════════════════════════════════════ */

/* --- Keyframes --- */
@keyframes gm-bounce {
  0%   { transform: translateY(0) scale(1); }
  25%  { transform: translateY(-14px) scale(1.06) rotate(-2deg); }
  55%  { transform: translateY(-9px) scale(1.03) rotate(1.5deg); }
  75%  { transform: translateY(-12px) scale(1.05) rotate(-1deg); }
  100% { transform: translateY(-10px) scale(1.04); }
}
@keyframes gm-pop {
  0%   { transform: scale(1) rotate(0deg); }
  30%  { transform: scale(1.15) rotate(-3deg); }
  55%  { transform: scale(0.93) rotate(2deg); }
  75%  { transform: scale(1.07) rotate(-1deg); }
  100% { transform: scale(1.04) rotate(0deg); }
}
@keyframes gm-wobble {
  0%   { transform: rotate(0deg) scale(1); }
  12%  { transform: rotate(-6deg) scale(1.06); }
  28%  { transform: rotate(5deg) scale(1.05); }
  44%  { transform: rotate(-3deg) scale(1.04); }
  60%  { transform: rotate(2.5deg) scale(1.03); }
  75%  { transform: rotate(-1.5deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1.04); }
}
@keyframes gm-shake {
  0%   { transform: translateX(0) rotate(0deg); }
  12%  { transform: translateX(-7px) rotate(-2deg); }
  25%  { transform: translateX(6px) rotate(2deg); }
  37%  { transform: translateX(-5px) rotate(-1.5deg); }
  50%  { transform: translateX(4px) rotate(1deg); }
  62%  { transform: translateX(-3px) rotate(-0.5deg); }
  75%  { transform: translateX(2px); }
  100% { transform: translateX(0); }
}
@keyframes gm-rubber {
  0%   { transform: scaleX(1)    scaleY(1); }
  25%  { transform: scaleX(1.2)  scaleY(0.85); }
  45%  { transform: scaleX(0.88) scaleY(1.14); }
  65%  { transform: scaleX(1.07) scaleY(0.95); }
  80%  { transform: scaleX(0.97) scaleY(1.03); }
  100% { transform: scaleX(1.03) scaleY(1.03); }
}
@keyframes gm-jump {
  0%   { transform: translateY(0)    scaleY(1)    scaleX(1); }
  10%  { transform: translateY(5px)  scaleY(0.88) scaleX(1.12); }
  32%  { transform: translateY(-18px) scaleY(1.12) scaleX(0.92) rotate(-5deg); }
  60%  { transform: translateY(-11px) scaleY(1.05) rotate(2deg); }
  80%  { transform: translateY(-2px)  scaleY(0.97); }
  100% { transform: translateY(-8px)  scale(1.04); }
}
@keyframes gm-tada {
  0%   { transform: scale(1) rotate(0deg); }
  8%   { transform: scale(0.9) rotate(-3deg); }
  18%  { transform: scale(1.12) rotate(3deg); }
  28%  { transform: scale(1.12) rotate(-3deg); }
  38%  { transform: scale(1.12) rotate(3deg); }
  48%  { transform: scale(1.12) rotate(-3deg); }
  58%  { transform: scale(1.12) rotate(2deg); }
  70%  { transform: scale(1.08) rotate(-1deg); }
  100% { transform: scale(1.05) rotate(0deg); }
}
@keyframes gm-icon-spin {
  0%   { transform: scale(1)   rotate(0deg); }
  50%  { transform: scale(1.5) rotate(180deg); }
  100% { transform: scale(1.2) rotate(360deg); }
}
@keyframes gm-icon-bounce {
  0%   { transform: translateY(0)    scale(1); }
  35%  { transform: translateY(-10px) scale(1.35); }
  65%  { transform: translateY(-5px)  scale(1.2); }
  85%  { transform: translateY(-8px)  scale(1.28); }
  100% { transform: translateY(-6px)  scale(1.2); }
}
@keyframes gm-icon-flip {
  0%   { transform: rotateY(0deg)   scale(1); }
  50%  { transform: rotateY(180deg) scale(1.4); }
  100% { transform: rotateY(360deg) scale(1.2); }
}
@keyframes gm-particle-fly {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--pdx), var(--pdy)) scale(0); opacity: 0; }
}
@keyframes gm-float-idle {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* --- Animation trigger classes (toggled by JS) --- */
.gm-bounce { animation: gm-bounce 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.gm-pop    { animation: gm-pop    0.4s  cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.gm-wobble { animation: gm-wobble 0.5s  ease forwards !important; }
.gm-shake  { animation: gm-shake  0.5s  ease forwards !important; }
.gm-rubber { animation: gm-rubber 0.45s ease forwards !important; }
.gm-jump   { animation: gm-jump   0.5s  cubic-bezier(0.34,1.56,0.64,1) forwards !important; }
.gm-tada   { animation: gm-tada   0.62s ease forwards !important; }

/* icon sub-animations */
.gm-bounce .stamp-number,
.gm-bounce .trust-icon    { animation: gm-icon-bounce 0.5s ease forwards !important; }
.gm-pop    .included-icon { animation: gm-icon-spin   0.5s ease forwards !important; }
.gm-jump   .sc-icon       { animation: gm-icon-flip   0.5s ease forwards !important; }
.gm-tada   .price-amount  { animation: gm-icon-bounce 0.5s ease forwards !important; }

/* hover glow for non-coloured cards */
.stamp-card:hover,
.included-card:hover,
.trust-card:hover { box-shadow: 0 20px 48px rgba(0, 204, 164,0.24), 0 0 0 2px rgba(0, 204, 164,0.28) !important; }

/* particles */
.gm-particle {
  position: fixed;
  width: 9px; height: 9px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: gm-particle-fly 0.65s ease-out forwards;
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 16px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(160deg, #25d366 0%, #1ebe59 60%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation: wa-bob 2.6s ease-in-out infinite;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}
@keyframes wa-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* attention pulse ring */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: wa-ring 2.2s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-icon { width: 30px; height: 30px; display: block; }

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}
.wa-float:hover .wa-icon { animation: wa-wiggle 0.6s ease; }
@keyframes wa-wiggle {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-12deg) scale(1.08); }
  50%      { transform: rotate(10deg) scale(1.08); }
  75%      { transform: rotate(-6deg); }
}

/* tooltip label */
.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  background: var(--text);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 22px rgba(30, 36, 56, 0.22);
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--text);
  border-radius: 2px;
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* play burst/press feedback */
.wa-float:active { transform: scale(0.94); }

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
  .wa-pulse { animation: none; opacity: 0; }
  .wa-float:hover .wa-icon { animation: none; }
  .hero-firework,
  .hero-firework::before,
  .hero-firework::after,
  .hero-rocket,
  .hero-trail,
  .hero-pill::before {
    animation: none;
    transition: none;
  }
  .hero-firework {
    opacity: 0.42;
    transform: scale(0.8);
  }
  .hero-rocket {
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════
   COUNTRIES STRIP — 6 flag cards (passport section)
   ═══════════════════════════════════════════════ */
.countries-block {
  margin-top: 52px;
}

.countries-head {
  text-align: center;
  margin-bottom: 30px;
}

.countries-kicker {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.countries-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--heading);
  background: linear-gradient(135deg, var(--heading), var(--heading-mark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 28px rgba(155, 77, 202, 0.16);
}
.countries-title span { color: var(--heading-mark); }

.countries-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.7;
}

.countries-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.country-card {
  --cc: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 22px 14px 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: 0 14px 34px rgba(88, 46, 145, 0.08);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.34s ease, border-color 0.34s ease;
}

/* top accent bar (country color) */
.country-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--cc);
  opacity: 0.9;
}

/* shine sweep on hover */
.country-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -65%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.country-card:hover,
.country-card:focus-visible {
  transform: translateY(-9px);
  border-color: color-mix(in srgb, var(--cc) 55%, transparent);
  box-shadow: 0 28px 54px color-mix(in srgb, var(--cc) 26%, rgba(88, 46, 145, 0.12));
}
.country-card:hover::after,
.country-card:focus-visible::after {
  animation: cc-shine 0.9s ease forwards;
}
@keyframes cc-shine {
  from { inset-inline-start: -65%; opacity: 0; }
  30%  { opacity: 1; }
  to   { inset-inline-start: 135%; opacity: 0; }
}

.cc-week {
  font-size: 0.72rem;
  color: var(--cc);
  background: color-mix(in srgb, var(--cc) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--cc) 25%, transparent);
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.cc-flag {
  width: 86px;
  height: 58px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
  will-change: transform;
}
.cc-flag svg { width: 100%; height: 100%; display: block; }

.country-card:hover .cc-flag,
.country-card:focus-visible .cc-flag {
  transform: scale(1.07);
  animation: cc-wave 1.1s ease-in-out;
}
@keyframes cc-wave {
  0%   { transform: scale(1.07) rotate(0deg); }
  20%  { transform: scale(1.07) rotate(-3.2deg); }
  40%  { transform: scale(1.07) rotate(2.6deg); }
  60%  { transform: scale(1.07) rotate(-2deg); }
  80%  { transform: scale(1.07) rotate(1deg); }
  100% { transform: scale(1.07) rotate(0deg); }
}

.cc-name {
  font-size: 1.12rem;
  color: var(--text);
}

.cc-dates {
  font-size: 0.85rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cc-dates::before { content: "📅"; font-size: 0.82rem; }

.cc-go {
  font-size: 0.78rem;
  color: var(--cc);
  margin-top: 2px;
  max-height: 0;
  opacity: 0;
  transform: translateY(4px);
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.34s ease, transform 0.34s ease;
}
.cc-go::after { content: " ↩"; }
.country-card:hover .cc-go,
.country-card:focus-visible .cc-go {
  max-height: 28px;
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .countries-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .countries-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cc-flag { width: 74px; height: 50px; }
  .cc-name { font-size: 1.02rem; }
}
@media (max-width: 360px) {
  .countries-strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .country-card,
  .cc-flag,
  .cc-go { transition: none; }
  .country-card:hover .cc-flag,
  .country-card:focus-visible .cc-flag { animation: none; transform: scale(1.04); }
  .country-card:hover::after,
  .country-card:focus-visible::after { animation: none; }
}

/* ── Country cards — distinctive per-country play animations (on hover) ── */
.country-card.cc-playing-1 { animation: ccp-jp 0.70s cubic-bezier(0.34,1.56,0.64,1) !important; }
.country-card.cc-playing-2 { animation: ccp-fr 0.80s ease !important; }
.country-card.cc-playing-3 { animation: ccp-it 0.60s cubic-bezier(0.34,1.56,0.64,1) !important; }
.country-card.cc-playing-4 { animation: ccp-es 0.60s ease !important; }
.country-card.cc-playing-5 { animation: ccp-uk 0.75s ease-in-out !important; }
.country-card.cc-playing-6 { animation: ccp-in 0.70s cubic-bezier(0.34,1.56,0.64,1) !important; }

/* Japan — zen bob + rising-sun flag flip */
@keyframes ccp-jp {
  0%,100% { transform: translateY(-9px) rotate(0); }
  25%     { transform: translateY(-19px) rotate(-3deg); }
  55%     { transform: translateY(-6px) rotate(3deg); }
  80%     { transform: translateY(-12px) rotate(-1deg); }
}
/* France — elegant waltz sway */
@keyframes ccp-fr {
  0%,100% { transform: translateY(-9px) rotate(0); }
  20%     { transform: translateY(-11px) rotate(-4deg); }
  50%     { transform: translateY(-11px) rotate(4deg); }
  80%     { transform: translateY(-11px) rotate(-2deg); }
}
/* Italy — festa pop */
@keyframes ccp-it {
  0%   { transform: translateY(-9px) scale(1); }
  35%  { transform: translateY(-17px) scale(1.05); }
  60%  { transform: translateY(-6px) scale(0.98); }
  100% { transform: translateY(-9px) scale(1); }
}
/* Spain — olé flamenco stomp/shake */
@keyframes ccp-es {
  0%,100% { transform: translateY(-9px) translateX(0) rotate(0); }
  15%     { transform: translateY(-9px) translateX(-6px) rotate(-2deg); }
  30%     { transform: translateY(-9px) translateX(6px) rotate(2deg); }
  45%     { transform: translateY(-9px) translateX(-5px); }
  60%     { transform: translateY(-9px) translateX(4px); }
  78%     { transform: translateY(-9px) translateX(-2px); }
}
/* UK — Big Ben pendulum swing */
@keyframes ccp-uk {
  0%,100% { transform: translateY(-9px) rotate(0); }
  25%     { transform: translateY(-9px) rotate(5deg); }
  50%     { transform: translateY(-9px) rotate(-5deg); }
  75%     { transform: translateY(-9px) rotate(3deg); }
}
/* India — rangoli bloom */
@keyframes ccp-in {
  0%   { transform: translateY(-9px) scale(1) rotate(0); }
  40%  { transform: translateY(-16px) scale(1.04) rotate(3deg); }
  70%  { transform: translateY(-8px) scale(1.01) rotate(-2deg); }
  100% { transform: translateY(-9px) scale(1) rotate(0); }
}

/* Flag sub-animations during play (override the hover wave) */
.country-card.cc-playing-1 .cc-flag { animation: ccf-spin  0.70s ease !important; }
.country-card.cc-playing-2 .cc-flag { animation: ccf-wave2 0.80s ease !important; }
.country-card.cc-playing-3 .cc-flag,
.country-card.cc-playing-6 .cc-flag { animation: ccf-pop   0.60s ease !important; }
.country-card.cc-playing-4 .cc-flag { animation: ccf-shake 0.55s ease !important; }
.country-card.cc-playing-5 .cc-flag { animation: ccf-swing 0.75s ease !important; transform-origin: top center; }

@keyframes ccf-spin  { from { transform: scale(1.07) rotateY(0); } to { transform: scale(1.07) rotateY(360deg); } }
@keyframes ccf-wave2 {
  0%,100% { transform: scale(1.07) skewX(0); }
  25%     { transform: scale(1.07) skewX(-9deg); }
  50%     { transform: scale(1.07) skewX(9deg); }
  75%     { transform: scale(1.07) skewX(-4deg); }
}
@keyframes ccf-pop {
  0%   { transform: scale(1.07) rotate(0); }
  40%  { transform: scale(1.22) rotate(-5deg); }
  70%  { transform: scale(1.04) rotate(3deg); }
  100% { transform: scale(1.07) rotate(0); }
}
@keyframes ccf-shake {
  0%,100% { transform: scale(1.07) rotate(0); }
  20%     { transform: scale(1.07) rotate(-7deg); }
  40%     { transform: scale(1.07) rotate(7deg); }
  60%     { transform: scale(1.07) rotate(-4deg); }
  80%     { transform: scale(1.07) rotate(2deg); }
}
@keyframes ccf-swing {
  0%,100% { transform: scale(1.07) rotate(0); }
  30%     { transform: scale(1.07) rotate(9deg); }
  60%     { transform: scale(1.07) rotate(-9deg); }
}

@media (prefers-reduced-motion: reduce) {
  .country-card[class*="cc-playing-"],
  .country-card[class*="cc-playing-"] .cc-flag { animation: none !important; }
}

/* ═══════════════════════════════════════════════
   PROFESSIONAL REFINEMENT OVERRIDES
   ═══════════════════════════════════════════════ */
:root {
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  --bg: #f4f1eb;
  --surface: #ffffff;
  --surface-soft: #f8f6f1;
  --text: #242628;
  --muted: #696b70;
  --primary: #aa50b0;
  --secondary: #7e3a84;
  --accent: #b79a64;
  --accent-soft: #efe7d8;
  --heading: #2f2630;
  --heading-mark: #aa50b0;
  --heading-mark-bg: rgba(170, 80, 176, 0.12);
  --border: rgba(36, 38, 40, 0.12);
  --shadow: 0 18px 48px rgba(36, 38, 40, 0.08);
}

body {
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-header,
.mobile-nav-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(36, 38, 40, 0.06);
}

.nav-link,
.mob-nav-link,
.hero-text,
.section-header p,
.countries-subtitle,
.pricing-note,
.final-cta-card p {
  color: var(--muted);
}

.nav-link::before,
.hero-sky,
.hero-section::before,
.hero-section::after,
.hero-firework,
.hero-rocket,
.hero-trail {
  display: none !important;
}

.hero-section {
  min-height: auto;
  padding: 78px var(--sp) 72px;
  background: #f7f4ee;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
}

.hero-section h1,
.section-header h2,
.countries-title,
.final-cta-card h2 {
  color: var(--heading);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  letter-spacing: 0;
}

.text-highlight {
  color: var(--secondary);
  background: transparent;
  padding: 0;
}

.eyebrow,
.section-tag,
.countries-kicker,
.badge-soft,
.offer-chip,
.cc-week {
  color: var(--primary);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero-brand-lockup,
.hero-pill,
.included-card,
.stamp-card,
.country-card,
.concern-card,
.price-card,
.faq-list details,
.final-cta-card,
.pay-logo {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stamp-card,
.included-card {
  --stamp-accent: var(--primary) !important;
  --stamp-accent-2: var(--secondary) !important;
  --stamp-soft: rgba(36, 38, 40, 0.06) !important;
  --stamp-bg: #fff !important;
  border-radius: 16px;
}

.stamp-card::before,
.stamp-card::after,
.included-card::before,
.included-card::after {
  display: none;
}

.stamp-card h3,
.included-card h3 {
  color: var(--heading);
}

.stamp-number {
  background: var(--surface-soft) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
  border: 1px solid var(--border);
}

.stamp-card h3::before {
  background: var(--surface-soft) !important;
  color: var(--primary) !important;
  border: 1px solid var(--border);
  box-shadow: none !important;
}

.hero-brand-lockup {
  animation: none;
  border-radius: 18px;
}

.hero-meta {
  gap: 10px;
}

.hero-pill {
  border-radius: 12px;
  color: var(--text);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(170, 80, 176, 0.20);
}

.btn-secondary,
.pc-wa {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.price-card:hover,
.country-card:hover,
.country-card:focus-visible,
.included-card:hover,
.concern-card:hover,
.faq-list details:hover,
.final-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 38, 40, 0.10);
}

.section {
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: #faf8f3;
}

.included-icon,
.concern-icon-wrap {
  background: var(--surface-soft);
  color: var(--primary);
  box-shadow: none;
}

.included-card:nth-child(1),
.included-card:nth-child(2),
.included-card:nth-child(3),
.included-card:nth-child(4),
.faq-list details:nth-child(n) {
  background: #fff !important;
}

.included-icon,
.concern-icon-wrap {
  display: none;
}

.included-card,
.concern-card {
  text-align: center;
}

.countries-title {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.country-card {
  border-radius: 16px;
}

.country-card::before {
  background: var(--primary);
  opacity: 1;
}

.cc-week,
.cc-go {
  color: var(--primary);
}

.cc-dates::before,
.cc-go::after {
  content: none;
}

.offer-bar {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: none;
}

.offer-bar::before,
.offer-bar::after,
.price-card::after,
.country-card::after,
.nav-link::after {
  display: none;
}

.price-card,
.price-card:nth-child(1),
.price-card:nth-child(2),
.price-card:nth-child(3) {
  --pc: var(--primary) !important;
  background: #fff;
  border-radius: 18px;
}

.price-card::before {
  background: var(--primary);
}

.price-card ul li::before,
.price-card ul li.pc-meal::before {
  content: "✓" !important;
  color: var(--primary) !important;
}

.price-card-hot {
  transform: none;
  border-color: rgba(170, 80, 176, 0.28);
}

.hot-ribbon,
.pc-save {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.pc-amount,
.pc-old {
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  direction: ltr;
  unicode-bidi: plaintext;
}

.pc-amount {
  color: var(--heading);
}

.pc-cur,
.pc-per,
.price-label {
  color: var(--muted);
}

.concerns-section {
  background: #faf8f3;
}

.concerns-section .section-header h2 {
  color: var(--heading);
}

.concern-card:nth-child(1),
.concern-card:nth-child(2),
.concern-card:nth-child(3) {
  background: #fff;
}

.concern-body h3,
.concern-body p {
  color: var(--text);
}

.faq-list summary {
  color: var(--heading);
  background: #fff !important;
  border-bottom-color: var(--border);
}

/* Distinct card treatments so non-pricing sections do not look like packages */
.stamps-grid {
  align-items: stretch;
}

.stamp-card {
  min-height: 92px;
  padding: 18px 20px;
  align-items: flex-start;
  justify-content: center;
  text-align: start;
  background: transparent !important;
  border: 0;
  border-inline-start: 4px solid var(--primary);
  border-radius: 0;
  box-shadow: none;
}

.stamp-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.stamp-card h3::before {
  position: static;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  content: counter(stamp-card, decimal);
  background: rgba(170, 80, 176, 0.08) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(170, 80, 176, 0.22);
  box-shadow: none !important;
  transform: none;
}

.included-grid {
  gap: 18px;
}

.included-card,
.included-card:nth-child(1),
.included-card:nth-child(2),
.included-card:nth-child(3),
.included-card:nth-child(4) {
  min-height: 180px;
  padding: 26px 24px;
  text-align: start;
  background: #fbfaf7 !important;
  border: 1px solid rgba(170, 80, 176, 0.16);
  border-radius: 6px;
  box-shadow: none;
}

.included-card h3 {
  position: relative;
  padding-top: 18px;
}

.included-card h3::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.country-card {
  padding: 18px 16px;
  border-radius: 8px;
  background: #fff !important;
  box-shadow: none;
  border: 1px solid rgba(36, 38, 40, 0.12);
}

.country-card::before {
  inset: 0 auto 0 0;
  width: 5px;
  height: auto;
}

.cc-flag {
  border-radius: 8px;
}

.concerns-grid {
  gap: 18px;
}

.concern-card,
.concern-card:nth-child(1),
.concern-card:nth-child(2),
.concern-card:nth-child(3) {
  padding: 28px 24px;
  text-align: start;
  background: #f7f4ee;
  border: 0;
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  box-shadow: none;
}

.concern-card::after {
  display: none;
}

.concern-card .concern-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--primary);
  background: rgba(170, 80, 176, 0.09);
  border: 1px solid rgba(170, 80, 176, 0.18);
}

.concern-card .concern-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}

.concern-body h3 {
  margin-top: 0;
}

.final-cta-section {
  background: #f4f1eb;
}

.final-cta-card {
  background: #fff;
}

.wa-float {
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(170, 80, 176, 0.24);
  animation: none;
}

.wa-pulse {
  display: none;
}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .btn-primary,
  .btn-secondary,
  .pc-wa {
    border-radius: 10px;
  }
}

/* ═══════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════ */
.thank-you-page .site-header {
  position: sticky;
}

.thank-you-page svg {
  display: block;
}

.thank-hero {
  position: relative;
  overflow: hidden;
  padding: 76px var(--sp) 66px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(247,244,238,0.88)),
    radial-gradient(circle at 12% 18%, rgba(170, 80, 176, 0.13), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(183, 154, 100, 0.18), transparent 30%);
  border-bottom: 1px solid var(--border);
}

.thank-hero-inner {
  width: min(1160px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 42px;
}

.thank-copy {
  text-align: start;
}

.thank-copy h1 {
  margin: 14px 0 18px;
  max-width: 780px;
  color: var(--heading);
  font-size: clamp(2.15rem, 5.2vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.thank-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.95;
  font-weight: 600;
}

.thank-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.thank-actions .btn,
.contact-actions .btn {
  min-height: 52px;
  gap: 9px;
}

.thank-actions svg,
.contact-actions svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.thank-confirmation {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid rgba(36, 38, 40, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(36, 38, 40, 0.10);
}

.thank-confirmation::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--primary);
}

.success-mark {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(170, 80, 176, 0.22);
}

.success-mark svg {
  width: 34px;
  height: 34px;
}

.confirm-kicker {
  display: block;
  margin-top: 22px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.thank-confirmation h2,
.thank-section-head h2,
.thank-info-panel h2,
.thank-contact-panel h2 {
  margin: 8px 0 10px;
  color: var(--heading);
  letter-spacing: 0;
}

.thank-confirmation h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.thank-confirmation p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 600;
}

.confirm-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.confirm-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.confirm-list dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.confirm-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.thank-band {
  padding: 64px var(--sp);
  background: var(--bg);
}

.thank-section-head {
  width: min(780px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.thank-section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.thank-steps {
  width: min(1100px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.thank-step {
  min-height: 218px;
  padding: 28px 24px;
  text-align: start;
  background: #fff;
  border: 1px solid rgba(36, 38, 40, 0.12);
  border-radius: 6px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.thank-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 38, 40, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  padding: 0 12px;
  color: var(--primary);
  background: rgba(170, 80, 176, 0.08);
  border: 1px solid rgba(170, 80, 176, 0.18);
  border-radius: 999px;
  font-weight: 900;
  direction: ltr;
}

.thank-step h3 {
  margin: 18px 0 10px;
  color: var(--heading);
  font-size: 1.18rem;
}

.thank-step p,
.thank-info-panel p,
.thank-contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 600;
}

.thank-info-section {
  padding: 66px var(--sp) 74px;
  background: #faf8f3;
}

.thank-info-grid {
  width: min(1100px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 22px;
}

.thank-info-panel,
.thank-contact-panel {
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.thank-info-panel {
  border-inline-start: 5px solid var(--primary);
}

.thank-contact-panel {
  background: #f7f4ee;
  border-top: 3px solid var(--primary);
}

.thank-checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.thank-checklist li {
  position: relative;
  padding-inline-start: 32px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.75;
}

.thank-checklist li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.08em;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 900;
}

.thank-you-page .footer-payments-icon svg {
  width: 22px;
  height: 22px;
}

.thank-you-page .wa-float {
  bottom: 22px;
}

@media (max-width: 980px) {
  .thank-hero-inner,
  .thank-info-grid {
    grid-template-columns: 1fr;
  }

  .thank-confirmation {
    max-width: 620px;
  }

  .thank-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .thank-hero {
    padding: 48px var(--sp) 52px;
  }

  .thank-copy h1 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .thank-actions .btn,
  .contact-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .thank-band,
  .thank-info-section {
    padding-block: 48px;
  }

  .thank-confirmation,
  .thank-info-panel,
  .thank-contact-panel,
  .thank-step {
    padding: 26px 22px;
  }

  .confirm-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .confirm-list dd {
    text-align: start;
  }
}

/* ═══════════════════════════════════════════════
   COUPON CODE UI
   ═══════════════════════════════════════════════ */

/* الكود المدمج في شريط العرض */
.coupon-inline-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: #7c2dac;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  padding: 4px 14px;
  border-radius: 8px;
  border: 2px dashed #7c2dac;
  margin: 0 8px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(124, 45, 172, 0.18);
}

/* صندوق الكوبون في بطاقات الأسعار */
.coupon-box {
  margin: 14px 0 10px;
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, rgba(170, 80, 176, 0.06) 0%, rgba(252, 179, 0, 0.07) 100%);
  border: 1.5px dashed rgba(170, 80, 176, 0.45);
  border-radius: 14px;
  text-align: center;
}

.coupon-box-label {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.5;
}

.coupon-box-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.coupon-code-text {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--primary);
  background: #fff;
  padding: 6px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(170, 80, 176, 0.25);
  box-shadow: 0 2px 10px rgba(170, 80, 176, 0.10);
  user-select: all;
  cursor: text;
}

.coupon-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 15px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(170, 80, 176, 0.25);
}

.coupon-copy-btn:hover {
  background: #8f3baf;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(170, 80, 176, 0.32);
}

.coupon-copy-btn:active {
  transform: translateY(0);
}

.coupon-copy-btn.copied {
  background: #16a34a;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* الكود المدمج في ملاحظة الأسعار */
.pricing-note-code {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(170, 80, 176, 0.1);
  border: 1px dashed rgba(170, 80, 176, 0.4);
  border-radius: 6px;
  padding: 1px 9px;
}

@media (max-width: 480px) {
  .coupon-code-text { font-size: 1.3rem; letter-spacing: 0.18em; }
  .coupon-inline-pill { font-size: 0.85rem; }
}
