/* ===============================
   SpinHub Arena — 2026 Sport UI
   Cinematic • Minimal • Smooth
   Clean build — single source of truth
   =============================== */

/* -------------------------------
   TOKENS / THEME
   ------------------------------- */
:root{
  --bg:#0b1220;
  --bg2:#0a1020;

  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.12);

  --txt:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.74);
  --muted2:rgba(255,255,255,.56);

  --accent:#2cc7b8;
  --accent2:#ff7f50;

  --font:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --fontH:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;

  --r12:12px;
  --r16:16px;
  --r18:18px;
  --r20:20px;
  --r22:22px;

  --shadow:0 18px 55px rgba(0,0,0,.45);
  --shadow2:0 10px 30px rgba(0,0,0,.28);

  --ease:cubic-bezier(.2,.9,.2,1);
  --t1:140ms var(--ease);
  --t2:260ms var(--ease);
  --t3:520ms var(--ease);

  --container: min(1120px, calc(100% - 40px));
  --headerH: 74px;

  /* MOBILE NAV tuning (linear as requested) */
  --nav-ease: linear;
  --nav-in: 640ms;
  --nav-out: 560ms;
  --nav-fade: 520ms;

  --burger-ease: linear;
  --burger-dur: 420ms;

  --glass: rgba(10,16,32,.72);
  --glass-border: rgba(255,255,255,.10);

  --btn-bg: rgba(255,255,255,.05);
  --btn-bg-h: rgba(255,255,255,.08);
  --btn-br: rgba(255,255,255,.12);

  --ring: rgba(44,199,184,.55);
  --ring-soft: rgba(44,199,184,.12);
}

/* -------------------------------
   BASE / RESET
   ------------------------------- */
*{ box-sizing:border-box; -webkit-tap-highlight-color: transparent; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--txt);
  background:
    radial-gradient(900px 520px at 75% 15%, rgba(44,199,184,.10), transparent 60%),
    radial-gradient(900px 520px at 20% 70%, rgba(255,127,80,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }
button, a{ -webkit-user-select:none; user-select:none; -webkit-touch-callout:none; }

.container{ width:var(--container); margin:0 auto; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation:none!important; transition:none!important; scroll-behavior:auto!important; }
  :root{ --nav-in:1ms; --nav-out:1ms; --nav-fade:1ms; --burger-dur:1ms; }
}

/* ============================
   SPLASH (video + quote)
============================ */
#splash{
  position:fixed;
  inset:0;
  z-index:20000;
  background: var(--bg);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:1;
  pointer-events:all;
  transition: opacity 900ms ease;
  isolation:isolate;
}

#splash.splash-hide{
  opacity:0;
  pointer-events:none;
}

#splash .splash-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
  filter: saturate(1.06) contrast(1.08);
  z-index:0;
}

#splash .splash-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 520px at 70% 30%, rgba(44,199,184,.14), transparent 62%),
    radial-gradient(900px 520px at 25% 80%, rgba(255,127,80,.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.78));
}

/* Content */
#splash .splash-content{
  position:relative;
  z-index:2;
  text-align:center;
  width:min(720px, calc(100% - 48px));
  opacity:0;
  transform: translateY(18px);
  animation: splashFadeIn 900ms ease forwards;
}

@keyframes splashFadeIn{
  to{ opacity:1; transform: translateY(0); }
}

#splash .splash-quote{
  margin:0;
  font-family: var(--fontH);
  font-weight:700;
  letter-spacing: -.01em;
  line-height:1.25;
  font-size: clamp(18px, 2.2vw, 26px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 38px rgba(0,0,0,.55);
}

#splash .splash-sub{
  margin:14px 0 0;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  #splash{ transition:none; }
  #splash .splash-content{ animation:none; opacity:1; transform:none; }
  #splash .splash-video{ transform:none; filter:none; }
}

/* scroll lock only while splash is visible */
html.is-splash,
body.is-splash{
  overflow: hidden !important;
  height: 100%;
}

/* -------------------------------
   LOGO
   ------------------------------- */
.logo{
  width:100%;
  height:100%;
  object-fit:contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.25));
  border-radius: 50%;
}
.logo--header{ width:64px; height:64px; }
.logo--drawer{ width:70px; height:70px; }
.logo--footer{ width:90px; height:90px; }
.logo--xl{ width:140px; height:140px; }

/* -------------------------------
   HEADER / NAV
   ------------------------------- */
.header{
  position:sticky;
  top:0;
  z-index:900;
  height:var(--headerH);
  display:flex;
  align-items:center;
  background:rgba(10,16,32,.62);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
}
.brand__mark{
  width:64px; height:64px;
  display:grid;
  place-items:center;
}
.brand__txt{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{
  font-family:var(--fontH);
  font-weight:700;
  letter-spacing:.02em;
  font-size:15px;
}
.brand__tag{
  font-size:12px;
  color:var(--muted2);
  margin-top:3px;
}

.nav--desktop{ display:flex; align-items:center; gap:10px; }
.nav__link{
  padding:10px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.86);
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  transition: background var(--t2), transform var(--t2), border-color var(--t2);
}
@media (hover:hover) and (pointer:fine){
  .nav__link:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.08);
  }
}
.nav__link.is-active{
  background:rgba(44,199,184,.10);
  border-color:rgba(44,199,184,.20);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  font-weight:700;
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
  will-change: transform;
}
@media (hover:hover) and (pointer:fine){
  .btn:hover{ transform:translateY(-1px); }
}
.btn:active{ transform:translateY(0) scale(.99); }
.btn--primary{
  background:linear-gradient(135deg, rgba(44,199,184,.92), rgba(255,127,80,.84));
  color:#06101a;
  border-color:transparent;
  box-shadow:0 12px 30px rgba(0,0,0,.28);
}
.btn--ghost{ background:rgba(255,255,255,.04); }
@media (hover:hover) and (pointer:fine){
  .btn--ghost:hover{ background:rgba(255,255,255,.06); border-color:rgba(44,199,184,.18); }
}
.btn--small{ padding:10px 12px; border-radius:12px; font-size:13px; }
.btn--wide{ width:100%; }

/* -------------------------------
   MOBILE NAV (Burger + Drawer)
   ------------------------------- */
@media (max-width: 980px){
  .nav--desktop{ display:none !important; }
}

.burger{
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid var(--btn-br);
  background: var(--btn-bg);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
  color: rgba(255,255,255,.94);
  outline:none;
  position:relative;
  overflow:hidden;
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
}
@media (max-width: 980px){ .burger{ display:flex; } }

.burger:focus{ outline:none; }
.burger:focus-visible{
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ring-soft);
}

.burger__lines{ width:22px; height:16px; position:relative; display:block; }
.burger__lines span{
  position:absolute;
  left:0;
  top:50%;
  width:100%;
  height:2px;
  border-radius:999px;
  background: currentColor;
  transform-origin:50% 50%;
  will-change: transform, opacity;
  transition: transform var(--burger-dur) var(--burger-ease), opacity 200ms var(--burger-ease);
}
.burger__lines span:nth-child(1){ transform: translateY(calc(-50% - 7px)); }
.burger__lines span:nth-child(2){ transform: translateY(-50%); }
.burger__lines span:nth-child(3){ transform: translateY(calc(-50% + 7px)); }

.burger.is-open .burger__lines span:nth-child(1){ transform: translateY(-50%) rotate(45deg); }
.burger.is-open .burger__lines span:nth-child(2){ opacity:0; transform: translateY(-50%) scaleX(.65); }
.burger.is-open .burger__lines span:nth-child(3){ transform: translateY(-50%) rotate(-45deg); }

.mnav{
  position:fixed;
  inset:0;
  z-index:9990;
  pointer-events:none;
}
.mnav[data-state="open"]{ pointer-events:auto; }

.mnav__backdrop{
  position:absolute;
  inset:0;
  border:0;
  padding:0;
  background: rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
  opacity:0;
  pointer-events:auto;
  transition: opacity var(--nav-fade) var(--nav-ease);
}
.mnav[data-state="open"] .mnav__backdrop{ opacity:1; }
.mnav[data-state="closing"] .mnav__backdrop{ opacity:0; }

.mnav__panel{
  position:fixed;
  top:0; right:0;
  height:100dvh;
  width:min(420px, 90vw);
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-left: 1px solid var(--glass-border);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  transform: translate3d(110%,0,0);
  will-change: transform;
  pointer-events:auto;
  display:flex;
  flex-direction:column;
  padding:16px;
  transition: transform var(--nav-in) var(--nav-ease);
  touch-action: pan-y;
}
.mnav[data-state="open"] .mnav__panel{
  transform: translate3d(0,0,0);
  transition-duration: var(--nav-in);
}
.mnav[data-state="closing"] .mnav__panel{
  transform: translate3d(110%,0,0);
  transition-duration: var(--nav-out);
}

.mnav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:6px 2px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.mnav__close{
  width:44px; height:44px;
  border-radius:16px;
  border:1px solid var(--btn-br);
  background: var(--btn-bg);
  cursor:pointer;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.92);
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
}
.mnav__close:active{ transform: scale(.985); }

.mnav__close .xIcon{
  width:22px; height:22px;
  display:block;
  position:relative;
}
.mnav__close .xIcon::before,
.mnav__close .xIcon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:22px;
  height:2px;
  border-radius:999px;
  background: currentColor;
}
.mnav__close .xIcon::before{ transform: translate(-50%,-50%) rotate(45deg); }
.mnav__close .xIcon::after { transform: translate(-50%,-50%) rotate(-45deg); }

.mnav__links{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px 2px 12px;
}
.mnav__link{
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight:800;
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
}
.mnav__link:active{ transform: scale(.99); }
.mnav__link--cta{
  background: linear-gradient(135deg, rgba(44,199,184,.92), rgba(255,127,80,.84));
  border-color: transparent;
  color:#06101a;
}

.mnav__meta{
  margin-top:auto;
  display:grid;
  gap:10px;
  padding:12px 2px 8px;
}

body.is-locked{ overflow:hidden; }

/* -------------------------------
   HERO (home) — used on homepage
   ------------------------------- */
.hero{
  position:relative;
  min-height:calc(100vh - var(--headerH));
  display:flex;
  align-items:center;
  padding:26px 0;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.72)),
    url("assets/hero-home.jpg") center/cover no-repeat;
  transform:scale(1.02);
  filter:saturate(1.02) contrast(1.02);
}
.hero__shade{
  position:absolute; inset:0;
  background:
    radial-gradient(720px 420px at 28% 28%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(720px 420px at 75% 70%, rgba(44,199,184,.10), transparent 60%);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.eyebrow{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
}
/* =========================
   HOME HERO — CINEMATIC KICKER
   ========================= */
.page-home .heroCine{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;

  border:1px solid rgba(44,199,184,.20);
  background:
    radial-gradient(420px 120px at 20% 30%, rgba(44,199,184,.14), transparent 62%),
    radial-gradient(420px 120px at 80% 70%, rgba(255,127,80,.10), transparent 62%),
    rgba(255,255,255,.04);

  box-shadow:
    0 14px 40px rgba(0,0,0,.40),
    0 0 0 6px rgba(44,199,184,.06);

  margin: 14px 0 16px;
  position:relative;
  overflow:hidden;
  backdrop-filter: blur(10px);
}

.page-home .heroCine::after{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.12) 35%,
    rgba(44,199,184,.14) 55%,
    transparent 100%);
  transform: rotate(14deg) translateX(-18%);
  opacity:.35;
  pointer-events:none;
  animation: heroCineShine 3.6s ease-in-out infinite;
}

@keyframes heroCineShine{
  0%   { transform: rotate(14deg) translateX(-22%); opacity:.12; }
  40%  { opacity:.35; }
  100% { transform: rotate(14deg) translateX(22%); opacity:.10; }
}

.page-home .heroCine__label{
  font-family: var(--fontH);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 12px 34px rgba(0,0,0,.55);
}

.page-home .heroCine__dot{
  width:7px; height:7px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  box-shadow:
    0 0 0 4px rgba(44,199,184,.18),
    0 0 18px rgba(44,199,184,.30);
  opacity:.95;
}

.page-home .heroCine__date{
  font-family: var(--fontH);
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;

  /* subtle premium gradient text */
  background: linear-gradient(135deg, rgba(44,199,184,.95), rgba(255,127,80,.90));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;

  text-shadow: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page-home .heroCine::after{ animation:none; }
}

/* Mobile spacing */
@media (max-width: 560px){
  .page-home .heroCine{
    margin: 12px 0 14px;
    padding: 9px 12px;
  }
}

.hero__title{
  font-family:var(--fontH);
  font-weight:700;
  margin:14px 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height:1.06;
}
.hero__lead{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.65;
  max-width: 62ch;
}
.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.hero__facts{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
.fact{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px;
  box-shadow:var(--shadow2);
}
.fact__big{ font-family:var(--fontH); font-weight:700; }
.fact__small{ margin-top:4px; color:rgba(255,255,255,.70); font-size:12px; line-height:1.3; }

/* Media card */
.mediaCard{
  margin:0;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}
.mediaCard img{ width:100%; height:360px; object-fit:cover; }
.mediaCard figcaption{
  padding:10px 12px;
  color:rgba(255,255,255,.65);
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
}

/* -------------------------------
   SECTIONS / TYPO
   ------------------------------- */
.section{ padding:70px 0; }
.section--tight{ padding:62px 0; }
.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.h2{
  font-family:var(--fontH);
  font-weight:700;
  margin:0 0 10px;
  font-size: clamp(22px, 2.3vw, 32px);
}
.p{ margin:0; color:rgba(255,255,255,.78); line-height:1.65; }
.p--muted{ color:var(--muted2); }

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}

.listGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.listItem{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px;
}
.listItem__t{ font-weight:700; }
.listItem__d{ margin-top:6px; color:rgba(255,255,255,.70); font-size:14px; line-height:1.55; }

.imageStack{ display:flex; flex-direction:column; gap:10px; }
.imageStack__img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}

/* Cards */
.headRow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.card__badge{
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  margin-bottom:10px;
}
.card h3{ margin:0 0 6px; font-family:var(--fontH); font-weight:700; font-size:18px; }
.card p{ margin:0; color:rgba(255,255,255,.72); line-height:1.6; }

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

.priceCard{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:20px;
  padding:16px;
  box-shadow:var(--shadow2);
}
.priceCard__top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.priceBadge{
  display:inline-block;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.priceBadge--accent{
  border-color:rgba(44,199,184,.22);
  background:rgba(44,199,184,.10);
  color:rgba(255,255,255,.86);
}
.priceCard__title{ margin:0; font-family:var(--fontH); font-weight:700; font-size:40px; letter-spacing:.02em; }
.priceCard__sub{ margin:4px 0 12px; color:rgba(255,255,255,.70); letter-spacing:.10em; text-transform:uppercase; font-size:12px; }
.priceCard__list{ margin:0 0 14px; padding:0 0 0 18px; color:rgba(255,255,255,.72); line-height:1.6; }
.priceCard--featured{
  background: linear-gradient(180deg, rgba(44,199,184,.10), rgba(255,127,80,.06));
  border-color:rgba(44,199,184,.18);
}

/* =========================
   3D CAROUSEL (scoped)
   ========================= */
.g3dCarousel{
  --dur: 650ms;
  --ease3d: cubic-bezier(.2,.9,.2,1);
  --diam: clamp(320px, 62vw, 860px);
  --itemW: clamp(220px, 32vw, 560px);
  --itemH: clamp(160px, 22vw, 340px);
  --persp: 1100px;

  position: relative;
  margin-top: 14px;
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
  overflow: hidden;
  isolation: isolate;
}

.g3dCarousel::before{
  content:"";
  position:absolute;
  inset:-25%;
  background:
    radial-gradient(560px 280px at 20% 35%, rgba(44,199,184,.14), transparent 60%),
    radial-gradient(560px 280px at 80% 70%, rgba(255,127,80,.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.45));
  filter: blur(14px);
  opacity: .95;
  pointer-events: none;
  z-index: 0;
}

.g3dCarousel__viewport{
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--diam);
  display: grid;
  place-items: center;
  perspective: var(--persp);
  perspective-origin: 50% 24%;
  user-select: none;
  touch-action: pan-y;
}

.g3dCarousel__ring{
  --r: calc(var(--diam) / 2);
  list-style: none;
  width: var(--diam);
  height: var(--diam);
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--r) * -1)) rotateY(var(--rot, 0deg));
  transition: transform var(--dur) var(--ease3d);
  will-change: transform;
}

.g3dCarousel.is-dragging .g3dCarousel__ring{ transition: none; }

.g3dCarousel__item{
  --step: calc(360deg / var(--n));
  --ang: calc(var(--step) * var(--i));

  position: absolute;
  left: calc(var(--r) - var(--itemW) / 2);
  top:  calc(var(--r) - var(--itemH) / 2);
  width: var(--itemW);
  height: var(--itemH);

  transform-style: preserve-3d;
  transform: rotateY(var(--ang)) translateZ(var(--r));
  transition: transform var(--dur) var(--ease3d);
  z-index: 1;
}

/* glow halo (behind card) */
.g3dCarousel__item::after{
  content:"";
  position: absolute;
  inset: -18px;
  border-radius: 28px;
  background:
    radial-gradient(160px 120px at 30% 30%, rgba(44,199,184,.26), transparent 62%),
    radial-gradient(180px 140px at 70% 70%, rgba(255,127,80,.18), transparent 64%);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.g3dCarousel__card{
  width: 100%;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background-color: rgba(255,255,255,.06);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  cursor: pointer;

  filter: grayscale(35%) saturate(1.05) contrast(1.05);
  transform: scale(1);
  transition: transform 240ms ease, filter 240ms ease, box-shadow 240ms ease;
  box-shadow:
    0 26px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);
  will-change: transform, filter, box-shadow;
}

/* reflection */
.g3dCarousel__item::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background-image:
    linear-gradient(to top, rgba(10,16,32,.22) 0%, rgba(10,16,32,1) 74%),
    var(--img);
  background-size: cover;
  background-position: center;

  transform-origin: center bottom;
  transform: rotateX(90deg) rotateZ(180deg) rotateY(180deg);
  filter: blur(4px) grayscale(45%);
  opacity: .55;
  pointer-events: none;
  transition: opacity 240ms ease, filter 240ms ease;
}

/* Active */
.g3dCarousel__item.is-active{ z-index: 3; }
.g3dCarousel__item.is-active::after{ opacity: 1; }
.g3dCarousel__item.is-active .g3dCarousel__card{
  filter: grayscale(0%) saturate(1.12) contrast(1.08);
  transform: scale(1.05);
  box-shadow:
    0 36px 110px rgba(0,0,0,.62),
    0 0 52px rgba(44,199,184,.16),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.g3dCarousel__item.is-active::before{
  opacity: .68;
  filter: blur(4px) grayscale(20%);
}

/* Hover (desktop) */
@media (hover:hover) and (pointer:fine){
  .g3dCarousel__item:hover{ z-index: 4; }
  .g3dCarousel__item:hover::after{ opacity: 1; }
  .g3dCarousel__item:hover .g3dCarousel__card{
    filter: grayscale(0%) saturate(1.14) contrast(1.08);
    transform: scale(1.06);
    box-shadow:
      0 42px 130px rgba(0,0,0,.66),
      0 0 58px rgba(44,199,184,.18),
      0 0 44px rgba(255,127,80,.10),
      inset 0 1px 0 rgba(255,255,255,.12);
  }
  .g3dCarousel__item:hover::before{
    opacity: .72;
    filter: blur(4px) grayscale(10%);
  }
}

/* Ground */
.g3dCarousel__ground{
  position: absolute;
  left: 0;
  top: 0;
  width: var(--diam);
  height: var(--diam);
  border-radius: 50%;
  transform: rotateX(90deg) translateZ(calc(var(--itemH) / -2));
  background: radial-gradient(rgba(0,0,0,.55) 14%, rgba(0,0,0,0) 60%);
  opacity: .65;
}

/* Buttons (NO jump on hover) */
.g3dCarousel__btn{
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 5;

  width: 46px;
  height: 56px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,32,.42);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);

  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;

  cursor: pointer;
  opacity: .85;
  box-shadow: 0 18px 50px rgba(0,0,0,.40);
  transition: background 220ms ease, border-color 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.g3dCarousel__btn--left{ left: 14px; }
.g3dCarousel__btn--right{ right: 14px; }

@media (hover:hover) and (pointer:fine){
  .g3dCarousel__btn:hover{
    background: rgba(255,255,255,.06);
    border-color: rgba(44,199,184,.20);
    opacity: 1;
    box-shadow:
      0 18px 50px rgba(0,0,0,.40),
      0 0 34px rgba(44,199,184,.14);
  }
}
.g3dCarousel__btn:active{ opacity: 1; }

@media (max-width: 560px){
  .g3dCarousel{ padding: 14px; }
  .g3dCarousel__btn{ width: 44px; height: 52px; border-radius: 16px; }
  .g3dCarousel__btn--left{ left: 10px; }
  .g3dCarousel__btn--right{ right: 10px; }
}

@media (prefers-reduced-motion: reduce){
  .g3dCarousel__ring,
  .g3dCarousel__item,
  .g3dCarousel__card{ transition: none !important; }
}

/* =========================
   LIGHTBOX (premium)
   ========================= */
.g3dLightbox{
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  padding: 18px;
  isolation: isolate;
}
.g3dLightbox[hidden]{ display:none; }

.g3dLightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  border: none;
  opacity: 0;
  transition: opacity 320ms ease;
}

.g3dLightbox__panel{
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 24px));
  max-height: min(84vh, 860px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,32,.50);
  box-shadow: 0 34px 120px rgba(0,0,0,.62);
  transform: translateY(10px) scale(.985);
  opacity: 0;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), opacity 420ms ease;
}

.g3dLightbox__img{
  width: 100%;
  height: 100%;
  max-height: min(84vh, 860px);
  object-fit: contain;
  display: block;
  background: rgba(0,0,0,.25);
}

.g3dLightbox__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,32,.58);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

.g3dLightbox.is-open .g3dLightbox__backdrop{ opacity: 1; }
.g3dLightbox.is-open .g3dLightbox__panel{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Mobile: fără glow pe imagini */
@media (hover:none) and (pointer:coarse){
  .g3dCarousel__item::after{ display:none; }

  .g3dCarousel__card{
    box-shadow:
      0 26px 80px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.10);
    transform: scale(1);
    filter: grayscale(20%) saturate(1.06) contrast(1.05);
  }

  /* chiar și dacă itemul e active, rămâne fără glow */
  .g3dCarousel__item.is-active .g3dCarousel__card{
    box-shadow:
      0 26px 80px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.10);
    transform: scale(1.02);
  }
}


/* -------------------------------
   PAGE HERO (program/contact)
   ------------------------------- */
.pageHero{
  position:relative;
  padding:34px 0 18px;
  min-height:52vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.pageHero__bg{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.78));
}
.pageHero__bg--program{
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.78)),
    url("assets/hero-program.jpg") center/cover no-repeat;
}
.pageHero__bg--contact{
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.78)),
    url("assets/hero-contact.jpg") center/cover no-repeat;
}
.pageHero__shade{
  position:absolute; inset:0;
  background:
    radial-gradient(680px 360px at 30% 30%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(680px 360px at 75% 70%, rgba(44,199,184,.10), transparent 60%);
}
.pageHero__inner{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
}
.pageHero__title{
  font-family:var(--fontH);
  font-weight:700;
  margin:12px 0 10px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.08;
}

/* -------------------------------
   CONTACT PAGE (premium + scoped)
   ------------------------------- */
.page-contact .contactQuick{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start; }

.page-contact .contactWrap{
  width:var(--container);
  margin:0 auto;
  padding: clamp(22px, 3.2vw, 44px) 0 56px;
}

.page-contact .contactHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

.page-contact .contactTitle{
  font-family:var(--fontH);
  font-weight:700;
  letter-spacing:-.02em;
  font-size: clamp(22px, 2.6vw, 32px);
  margin:0;
}

.page-contact .contactGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}

.page-contact .contactLeft{ display:grid; gap:12px; }
.page-contact .cRow{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }

.page-contact .cCard{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}

.page-contact .cCard__k{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted2);
}

.page-contact .cCard__v{
  margin-top:8px;
  color:rgba(255,255,255,.86);
  line-height:1.5;
}
.page-contact .cCard__v--muted{ color:rgba(255,255,255,.72); }

.page-contact .cCard__hint{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,.58);
  line-height:1.45;
}

.page-contact .cLink{
  color:rgba(255,255,255,.92);
  font-weight:700;
  text-decoration: underline;
  text-decoration-color: rgba(44,199,184,.35);
  text-underline-offset: 3px;
}
@media (hover:hover) and (pointer:fine){
  .page-contact .cLink:hover{ text-decoration-color: rgba(255,127,80,.45); }
}

.page-contact .cBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-top:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.92);
  font-weight:700;
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
}
@media (hover:hover) and (pointer:fine){
  .page-contact .cBtn:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.08);
    border-color:rgba(44,199,184,.18);
  }
}
.page-contact .cBtn:active{ transform:translateY(0) scale(.99); }

.page-contact .cBtn--grad{
  background:linear-gradient(135deg, rgba(44,199,184,.92), rgba(255,127,80,.84));
  color:#06101a;
  border-color:transparent;
}

/* Map */
/* Map */
.page-contact .mapCard{
  position:sticky;
  top: calc(var(--headerH) + 14px);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  backdrop-filter: blur(14px);
}

.page-contact .mapCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 14px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.page-contact .mapCard__k{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted2);
}

.page-contact .mapCard__v{
  font-family:var(--fontH);
  font-weight:700;
  margin-top:6px;
  color:rgba(255,255,255,.92);
}

.page-contact .mapOpen{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.92);
  font-weight:700;
  white-space:nowrap;
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
}
@media (hover:hover) and (pointer:fine){
  .page-contact .mapOpen:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.08);
    border-color:rgba(44,199,184,.18);
  }
}
.page-contact .mapOpen:active{ transform:translateY(0) scale(.99); }

.page-contact .mapFrame{
  position:relative;
  aspect-ratio: 16 / 12;
  background: rgba(0,0,0,.22);
  overflow:hidden;
}

.page-contact .mapFrame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  filter:saturate(1.05) contrast(1.05);
  pointer-events:auto; /* IMPORTANT: harta devine navigabilă */
}

/* IMPORTANT: dacă mai ai .mapClick în HTML, scoate-l.
   Dacă îl păstrezi, măcar anulează-l: */
.page-contact .mapClick{ display:none !important; }

/* Responsive */
@media (max-width: 980px){
  .page-contact .contactHead{ align-items:flex-start; flex-direction:column; }
  .page-contact .contactGrid{ grid-template-columns: 1fr; }
  .page-contact .mapCard{ position:relative; top:auto; }
}
@media (max-width: 720px){
  .page-contact .cRow{ grid-template-columns: 1fr; }
}

/* -------------------------------
   REVEAL
   ------------------------------- */
[data-reveal]{
  opacity:0;
  transform:translateY(12px);
  transition: opacity var(--t3), transform var(--t3);
}
.is-visible[data-reveal]{ opacity:1; transform:translateY(0); }

/* =========================
   FOOTER — Cinematic 
   ========================= */
.footer{
  position:relative;
  padding:64px 0 22px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(10,16,32,.42);
  overflow:hidden;
}

.footer__cinematic{
  position:absolute;
  inset:-12%;
  background:
    radial-gradient(640px 340px at 20% 35%, rgba(44,199,184,.18), transparent 60%),
    radial-gradient(640px 340px at 80% 70%, rgba(255,127,80,.14), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.34));
  filter: blur(12px);
  opacity:.95;
  pointer-events:none;
}

/* CTA bar */
.footer__cta{
  position:relative;
  z-index:1;

  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:16px;

  padding:18px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: 0 22px 60px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
}

.footer__ctaTxt{ min-width: 0; }

.footer__ctaTitle{
  font-family:var(--fontH);
  font-weight:800;
  font-size:18px;
  letter-spacing:-.01em;
}
.footer__ctaSub{
  margin-top:4px;
  color:rgba(255,255,255,.70);
  line-height:1.45;
}
.footer__ctaBtns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Grid: elegant cards */
.footer__grid{
  position:relative;
  z-index:1;

  margin-top:18px;
  display:grid;
  grid-template-columns: 1.2fr .7fr .8fr 1.2fr;
  gap:14px;
  align-items:stretch;
}

.footer__brand,
.footer__col{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius:20px;
  padding:16px;
  box-shadow: 0 14px 44px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);

  /* IMPORTANT: consistență vizuală */
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Brand block */
.footer__brand{
  align-items:flex-start;
}

.footer__mark{
  width:90px;
  height:90px;
  display:grid;
  place-items:center;
}

.footer__motto{
  margin:0;
  color:rgba(255,255,255,.74);
  line-height:1.5;
}

/* Headings */
.footer__h{
  font-family:var(--fontH);
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  margin:0 0 6px;
}

/* Links */
.footer__a{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);

  color:rgba(255,255,255,.82);
  transition: transform var(--t2), background var(--t2), border-color var(--t2);
}
@media (hover:hover) and (pointer:fine){
  .footer__a:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.06);
    border-color:rgba(44,199,184,.18);
  }
}

.footer__txt{
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.6;
}
.footer__txt strong{ color:rgba(255,255,255,.92); }

/* Social icons — ca în model */
.social{
  margin-top:4px;
  display:flex;
  gap:16px;
  align-items:center;
}

.social__a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:6px;
  border-radius:12px;

  background:transparent;
  border:none;

  color: rgba(255,255,255,.92);
  opacity:.88;

  transition: transform var(--t2), opacity var(--t2), filter var(--t2), background var(--t2);
}

.social__a svg{
  width:22px;
  height:22px;
  display:block;
  fill: currentColor;
}

@media (hover:hover) and (pointer:fine){
  .social__a:hover{
    opacity:1;
    transform: translateY(-1px);
    background: rgba(255,255,255,.04);
    filter: drop-shadow(0 10px 22px rgba(44,199,184,.22));
  }
}

.social__a:active{ transform: translateY(0); }

.social__a:focus-visible{
  outline:2px solid var(--ring);
  outline-offset:4px;
}

/* Bottom */
.footer__bottom{
  position:relative;
  z-index:1;

  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);

  color:rgba(255,255,255,.60);
  font-size:12px;

  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  text-align:center;
}
.sep{ opacity:.45; }

/* =========================
   FOOTER Responsive
   ========================= */
@media (max-width: 980px){
  .footer__cta{
    grid-template-columns: 1fr;
    text-align:center;
    justify-items:center;
    padding:18px 16px;
  }
  .footer__ctaBtns{
    justify-content:center;
  }

  .footer__grid{
    grid-template-columns: 1fr;
    justify-items:center;
  }

  .footer__brand,
  .footer__col{
    width: min(560px, 100%);
    text-align:center;
    align-items:center;        /* FIX: centrare perfectă în card */
  }

  .social{
    justify-content:center;
  }

  .footer__a{
    justify-content:center;
  }
}


/* -------------------------------
   RESPONSIVE
   ------------------------------- */
@media (max-width: 980px){
  .hero__inner,
  .split,
  .pageHero__inner{
    grid-template-columns:1fr;
  }

  .mediaCard img{ height:320px; }
  .hero__facts{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .pricing{ grid-template-columns:1fr; }
  .listGrid{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:1fr; grid-template-rows:auto; }
  .gallery__item--big{ grid-row:auto; }

  .footer__grid{ grid-template-columns:1fr 1fr; }
  .footer__cta{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 560px){
  :root{ --headerH:72px; }
  .brand__tag{ display:none; }
  .footer__grid{ grid-template-columns:1fr; }
  .splash__mark{ width:130px; height:130px; }
  .logo--header{ width:58px; height:58px; }
}

/* =========================
   PROGRAM — PREMIUM LAYOUT
   (scoped: does not affect other pages)
   ========================= */
.page-program .pageHero{
  min-height: clamp(420px, 56vh, 680px);
  padding: clamp(26px, 6vh, 64px) 0 22px;
}

.page-program .pageHero__inner{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(14px, 2.2vw, 26px);
  align-items: center;
}

.page-program .pageHero__title{
  letter-spacing: -.02em;
}

/* =========================
   PRICE TAG — FANCY RECOMMENDED
   (scoped)
   ========================= */

.page-program .priceTag{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 220px at 70% 10%, rgba(44,199,184,.10), transparent 60%),
    radial-gradient(520px 220px at 25% 85%, rgba(255,127,80,.08), transparent 62%),
    rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  overflow:hidden;
}

.page-program .priceTag::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:
    linear-gradient(135deg, rgba(44,199,184,.22), rgba(255,127,80,.10), rgba(255,255,255,.10));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  opacity:.55;
  pointer-events:none;
}

.page-program .priceTag__top{ text-align:center; }

.page-program .priceTag__k{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(255,255,255,.58);
}

.page-program .priceTag__grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.page-program .priceTag__item{
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border-radius: 14px;
  padding: 12px 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
}

.page-program .priceTag__item::after{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: radial-gradient(closest-side, rgba(255,255,255,.10), transparent 65%);
  opacity:.35;
  transform: rotate(18deg);
  pointer-events:none;
}

.page-program .priceTag__n{
  font-family: var(--fontH);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: rgba(255,255,255,.92);
}

.page-program .priceTag__n span{
  font-size: 13px;
  opacity: .9;
  margin-left: 4px;
}

.page-program .priceTag__s{
  margin-top: 6px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(255,255,255,.65);
}

.page-program .priceTag__line{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 14px 0 12px;
}

/* Bottom highlight: abonamentul e "hero" */
.page-program .priceTag__bottom{
  position:relative;
  text-align:center;
  padding: 14px 10px 10px;
  border-radius: 16px;
  background:
    radial-gradient(520px 220px at 50% 10%, rgba(44,199,184,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(44,199,184,.16);
  box-shadow:
    0 18px 50px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,255,255,.02) inset;
  overflow:hidden;
}

.page-program .priceTag__bottom::before{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(44,199,184,.18) 35%,
      rgba(255,127,80,.10) 60%,
      transparent 100%);
  transform: rotate(18deg);
  opacity:.45;
  pointer-events:none;
  animation: priceShine 3.4s ease-in-out infinite;
}

@keyframes priceShine{
  0%{ transform: translateX(-18%) rotate(18deg); opacity:.10; }
  35%{ opacity:.45; }
  60%{ opacity:.30; }
  100%{ transform: translateX(18%) rotate(18deg); opacity:.08; }
}

/* Recomandat badge: SUPER IMPORTANT */
.page-program .priceTag__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid rgba(44,199,184,.34);
  background:
    linear-gradient(135deg, rgba(44,199,184,.28), rgba(255,127,80,.18));
  color: rgba(255,255,255,.92);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight: 900;
  margin: 0 auto 10px;
  position:relative;
  box-shadow:
    0 14px 34px rgba(0,0,0,.40),
    0 0 0 6px rgba(44,199,184,.08),
    0 0 32px rgba(44,199,184,.18);
  transform: translateZ(0);
}

.page-program .priceTag__badge::before{
  content:"";
  width:8px; height:8px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  box-shadow:
    0 0 0 4px rgba(44,199,184,.20),
    0 0 18px rgba(44,199,184,.35);
}

.page-program .priceTag__badge::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
  opacity:.30;
  pointer-events:none;
}

/* micro pulse (foarte fin, premium) */
@media (prefers-reduced-motion: no-preference){
  .page-program .priceTag__badge{
    animation: badgePulse 2.4s ease-in-out infinite;
  }
  @keyframes badgePulse{
    0%,100%{ transform: translateY(0) scale(1); box-shadow:
      0 14px 34px rgba(0,0,0,.40),
      0 0 0 6px rgba(44,199,184,.08),
      0 0 32px rgba(44,199,184,.18);
    }
    50%{ transform: translateY(-1px) scale(1.01); box-shadow:
      0 18px 44px rgba(0,0,0,.44),
      0 0 0 8px rgba(44,199,184,.10),
      0 0 44px rgba(44,199,184,.22);
    }
  }
}

.page-program .priceTag__v2{
  margin-top: 8px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

/* Promo (Program page) */
.page-program .priceTag__promo{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.14);
  display: grid;
  gap: 6px;
}

.page-program .priceTag__promoLine{
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
}

.page-program .priceTag__promoLine strong{
  font-weight: 900;
  background: linear-gradient(135deg, rgba(44,199,184,.95), rgba(255,127,80,.90));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Highlight promo rows in infoPanel */
.page-program .infoPanel__row--promo span:last-child{
  font-weight: 900;
  background: linear-gradient(135deg, rgba(44,199,184,.95), rgba(255,127,80,.90));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* Responsive */
@media (max-width: 980px){
  .page-program .priceTag__grid{ grid-template-columns: 1fr; }
  .page-program .priceTag__n{ font-size: 36px; }
}


/* Orar */
.page-program .headRow{
  max-width: 980px;
  margin: 0 auto 18px;
}

.page-program .schedule{
  max-width: 980px;
  margin: 0 auto;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}

.page-program .schedule__row{
  padding: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.page-program .schedule__row:first-child{ border-top:none; }

.page-program .schedule__day{ font-weight: 800; }
.page-program .schedule__hours{
  margin-top: 6px;
  color: rgba(255,255,255,.90);
}

.page-program .schedule__right{
  color: rgba(255,255,255,.74);
  line-height: 1.55;
}

/* Countdown section */
.page-program .openBlock{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(14px, 2.2vw, 26px);
  align-items: start;
}

.page-program .openDate{
  font-family: var(--fontH);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 10px;
}

.page-program .countdown{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.page-program .countdown__box{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 14px 12px;
  text-align:center;
  box-shadow: var(--shadow2);
}

.page-program .countdown__n{
  font-family: var(--fontH);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.page-program .countdown__l{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

.page-program .openBlock__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Info panel */
.page-program .infoPanel{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

.page-program .infoPanel__h{
  margin: 14px 0 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.page-program .infoPanel__h:first-child{ margin-top: 0; }

.page-program .infoPanel__row{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
}

.page-program .infoPanel__row:first-of-type{ border-top:none; }

/* Responsive */
@media (max-width: 980px){
  .page-program .pageHero__inner{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-program .openBlock{
    grid-template-columns: 1fr;
  }

  .page-program .countdown{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
