:root{
  --bg:#05060b;
  --bg2:#0b1020;
  --card:#111827;
  --text:#f8fafc;
  --muted:#a8b3c7;
  --line:rgba(255,255,255,.12);
  --blue:#4f8cff;
  --violet:#8b5cf6;
  --gold:#f8c76b;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(79,140,255,.22), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(139,92,246,.18), transparent 40%),
    linear-gradient(180deg, #05060b 0%, #0b1020 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:18px 6vw;
  background:rgba(5,6,11,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:linear-gradient(135deg,var(--blue),var(--violet));
  box-shadow:0 0 30px rgba(79,140,255,.35);
}

.brand strong{display:block;font-size:15px;letter-spacing:.04em}
.brand small{display:block;color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.18em}

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
}

.nav a.active,
.nav a:hover{color:#fff}

.lang-toggle{
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
}

.hero{
  min-height:88vh;
  display:grid;
  align-items:center;
  padding:80px 6vw;
  position:relative;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(5,6,11,.96) 0%, rgba(5,6,11,.74) 45%, rgba(5,6,11,.35) 100%),
    url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=1800&q=80') center/cover;
  z-index:-2;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 70% 50%, rgba(79,140,255,.20), transparent 35%);
  z-index:-1;
}

.kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

h1{
  font-size:clamp(46px,7vw,96px);
  line-height:.93;
  margin:0 0 24px;
  max-width:980px;
  letter-spacing:-.06em;
}

.hero p{
  color:var(--muted);
  max-width:760px;
  font-size:clamp(18px,2vw,24px);
  line-height:1.5;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid var(--line);
}

.btn.primary{
  background:linear-gradient(135deg,var(--blue),var(--violet));
  color:#fff;
  box-shadow:0 0 35px rgba(79,140,255,.32);
}

.btn.secondary{
  background:rgba(255,255,255,.07);
}

.section{
  padding:90px 6vw;
  border-top:1px solid var(--line);
}

.section-title{
  max-width:850px;
  margin-bottom:38px;
}

.section-title h2{
  font-size:clamp(34px,5vw,64px);
  line-height:1;
  margin:0 0 18px;
  letter-spacing:-.04em;
}

.section-title p{
  color:var(--muted);
  font-size:19px;
  line-height:1.6;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  min-height:280px;
  box-shadow:0 20px 80px rgba(0,0,0,.22);
}

.card .tag{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
}

.card h3{
  font-size:30px;
  margin:18px 0 12px;
  letter-spacing:-.03em;
}

.card p{
  color:var(--muted);
  line-height:1.6;
}

.feature{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.panel{
  background:linear-gradient(135deg,rgba(79,140,255,.18),rgba(139,92,246,.14));
  border:1px solid var(--line);
  border-radius:34px;
  padding:36px;
}

.calendar{
  display:grid;
  gap:14px;
}

.calendar-item{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.calendar-item strong{font-size:18px}
.calendar-item span{color:var(--muted)}

.site-footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:42px 6vw;
  border-top:1px solid var(--line);
  color:var(--muted);
  background:#030409;
}

.site-footer strong{color:#fff}

.es{display:none}
.show-es .en{display:none}
.show-es .es{display:initial}

@media(max-width:900px){
  .site-header{align-items:flex-start;flex-direction:column}
  .nav{flex-wrap:wrap}
  .grid,.feature{grid-template-columns:1fr}
  .hero{min-height:unset}
}

/* ===== CINEMATIC MOTION LAYER ===== */

body{
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-10;
  background:
    radial-gradient(circle at 10% 20%, rgba(79,140,255,.12), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(139,92,246,.14), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(248,199,107,.08), transparent 26%);
  animation: ambientShift 12s ease-in-out infinite alternate;
}

@keyframes ambientShift{
  0%{filter:hue-rotate(0deg) brightness(1); transform:scale(1)}
  100%{filter:hue-rotate(10deg) brightness(1.18); transform:scale(1.05)}
}

.site-header{
  animation: slideDown .8s ease both;
}

@keyframes slideDown{
  from{opacity:0; transform:translateY(-20px)}
  to{opacity:1; transform:translateY(0)}
}

.brand-mark{
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow{
  0%,100%{box-shadow:0 0 25px rgba(79,140,255,.35)}
  50%{box-shadow:0 0 48px rgba(139,92,246,.65)}
}

.hero:before{
  transform:scale(1.08);
  animation: heroMove 18s ease-in-out infinite alternate;
}

@keyframes heroMove{
  from{transform:scale(1.08) translateX(0)}
  to{transform:scale(1.16) translateX(-24px)}
}

.hero > div{
  animation: heroReveal 1.15s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroReveal{
  from{opacity:0; transform:translateY(34px) scale(.98)}
  to{opacity:1; transform:translateY(0) scale(1)}
}

.kicker{
  position:relative;
  display:inline-block;
}

.kicker:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  animation: lineScan 2.2s ease-in-out infinite;
}

@keyframes lineScan{
  0%,100%{opacity:.35; transform:scaleX(.45); transform-origin:left}
  50%{opacity:1; transform:scaleX(1)}
}

h1{
  text-shadow:0 0 40px rgba(79,140,255,.18);
}

.btn{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.28);
}

.btn.primary:hover{
  box-shadow:0 0 55px rgba(79,140,255,.55);
}

.card{
  position:relative;
  overflow:hidden;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  animation: cardRise .9s ease both;
}

.card:nth-child(2){animation-delay:.12s}
.card:nth-child(3){animation-delay:.24s}

@keyframes cardRise{
  from{opacity:0; transform:translateY(28px)}
  to{opacity:1; transform:translateY(0)}
}

.card:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg,transparent,rgba(79,140,255,.22),transparent);
  transform:translateX(-100%);
  transition:transform .8s ease;
}

.card:hover{
  transform:translateY(-10px);
  border-color:rgba(255,255,255,.25);
  box-shadow:0 30px 90px rgba(0,0,0,.38), 0 0 45px rgba(79,140,255,.16);
}

.card:hover:before{
  transform:translateX(100%);
}

.panel{
  position:relative;
  overflow:hidden;
  animation: panelFloat 5s ease-in-out infinite;
}

@keyframes panelFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

.panel:before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  right:-70px;
  top:-70px;
  background:radial-gradient(circle,rgba(248,199,107,.25),transparent 68%);
  animation: orbFloat 7s ease-in-out infinite alternate;
}

@keyframes orbFloat{
  from{transform:translate(0,0) scale(1)}
  to{transform:translate(-30px,40px) scale(1.25)}
}

.calendar-item{
  transition:padding-left .25s ease, background .25s ease;
}

.calendar-item:hover{
  padding-left:16px;
  background:rgba(255,255,255,.035);
}

.section{
  position:relative;
}

.section:before{
  content:"";
  position:absolute;
  left:6vw;
  top:0;
  width:120px;
  height:1px;
  background:linear-gradient(90deg,var(--blue),transparent);
  opacity:.8;
}

.section-title,
.grid,
.feature,
.calendar{
  animation: softAppear 1s ease both;
}

@keyframes softAppear{
  from{opacity:0; transform:translateY(20px)}
  to{opacity:1; transform:translateY(0)}
}

/* Floating cinematic particles */
main:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    radial-gradient(circle,rgba(255,255,255,.35) 1px, transparent 1px),
    radial-gradient(circle,rgba(79,140,255,.25) 1px, transparent 1px);
  background-size:90px 90px, 140px 140px;
  background-position:0 0, 40px 60px;
  opacity:.18;
  animation: particlesDrift 24s linear infinite;
}

@keyframes particlesDrift{
  from{background-position:0 0, 40px 60px}
  to{background-position:180px 240px, 260px 320px}
}

/* Language transition */
.en,.es{
  transition:opacity .25s ease, transform .25s ease;
}

.show-es .es{
  animation: langIn .35s ease both;
}

body:not(.show-es) .en{
  animation: langIn .35s ease both;
}

@keyframes langIn{
  from{opacity:0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
}

@media (prefers-reduced-motion: reduce){
  *,*:before,*:after{
    animation:none!important;
    transition:none!important;
  }
}

.global-hero:before{
  background:
    linear-gradient(90deg, rgba(5,6,11,.96) 0%, rgba(5,6,11,.70) 48%, rgba(5,6,11,.32) 100%),
    url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.auditorium-card{
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:
    linear-gradient(180deg, rgba(5,6,11,.15), rgba(5,6,11,.86)),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.price-card{
  position:relative;
  padding:28px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  min-height:260px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.price-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,.28);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.price-card span{
  color:var(--muted);
  font-size:14px;
}

.price-card strong{
  display:block;
  font-size:48px;
  margin:18px 0;
  letter-spacing:-.05em;
}

.price-card em{
  display:inline-block;
  color:#05060b;
  background:var(--gold);
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-style:normal;
  font-weight:900;
  margin-bottom:12px;
}

.price-card p{
  color:var(--muted);
  line-height:1.5;
}

.price-card.popular{
  border-color:rgba(248,199,107,.55);
  box-shadow:0 0 60px rgba(248,199,107,.12);
}

@media(max-width:1100px){
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:640px){
  .pricing-grid{grid-template-columns:1fr}
}

/* ===== PREMIUM PRICING TABLE ===== */

.pricing-table-wrap{
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:32px;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  box-shadow:0 30px 100px rgba(0,0,0,.32);
}

.pricing-table{
  min-width:980px;
  display:grid;
  grid-template-columns:1.25fr repeat(4,1fr);
}

.pricing-cell.empty,
.pricing-cta.empty{
  background:rgba(255,255,255,.02);
}

.pricing-plan{
  position:relative;
  min-height:210px;
  padding:28px 18px;
  border-left:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  background:rgba(255,255,255,.03);
}

.pricing-plan span{
  color:var(--muted);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
}

.pricing-plan strong{
  font-size:48px;
  line-height:1;
  letter-spacing:-.06em;
}

.pricing-plan small{
  color:var(--muted);
  line-height:1.3;
}

.pricing-plan em{
  position:absolute;
  top:18px;
  left:18px;
  color:#05060b;
  background:var(--gold);
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-style:normal;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.pricing-plan.featured{
  background:
    radial-gradient(circle at 50% 10%, rgba(248,199,107,.25), transparent 45%),
    linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.035));
  box-shadow:inset 0 0 0 1px rgba(248,199,107,.45);
}

.feature-name{
  padding:18px 22px;
  color:#fff;
  border-top:1px solid var(--line);
  font-weight:700;
  background:rgba(255,255,255,.025);
}

.check,
.dash{
  display:grid;
  place-items:center;
  padding:18px;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  font-size:22px;
}

.check{
  color:var(--gold);
  text-shadow:0 0 22px rgba(248,199,107,.35);
  font-weight:900;
}

.dash{
  color:rgba(255,255,255,.25);
}

.pricing-cta{
  display:grid;
  place-items:center;
  min-height:72px;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  background:rgba(255,255,255,.055);
  font-weight:900;
  transition:background .25s ease, transform .25s ease;
}

.pricing-cta:hover{
  background:rgba(79,140,255,.25);
}

.pricing-cta.featured{
  background:linear-gradient(135deg,var(--blue),var(--violet));
}

@media(max-width:700px){
  .pricing-table-wrap{
    border-radius:22px;
  }
}

/* ===== DIRECTOR-FRIENDLY PRICING CARDS ===== */

.director-pricing{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  align-items:stretch;
}

.director-plan{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:24px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
  min-height:560px;
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.director-plan:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,.28);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.director-plan.recommended{
  border-color:rgba(248,199,107,.7);
  box-shadow:0 0 65px rgba(248,199,107,.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(248,199,107,.20), transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.04));
}

.ribbon{
  position:absolute;
  top:18px;
  right:18px;
  background:var(--gold);
  color:#07080d;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:8px 11px;
  border-radius:999px;
}

.plan-label{
  display:inline-block;
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  margin-bottom:18px;
}

.director-plan h3{
  font-size:27px;
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.035em;
}

.director-plan strong{
  display:block;
  font-size:54px;
  line-height:1;
  letter-spacing:-.07em;
  margin-bottom:18px;
}

.director-plan p{
  color:var(--muted);
  line-height:1.5;
  margin:0;
}

.director-plan ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:13px;
}

.director-plan li{
  color:#e8eefc;
  line-height:1.35;
  padding-left:28px;
  position:relative;
}

.director-plan li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:900;
  text-shadow:0 0 20px rgba(248,199,107,.35);
}

.director-plan .btn{
  width:100%;
  margin-top:auto;
}

@media(max-width:1180px){
  .director-pricing{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:680px){
  .director-pricing{
    grid-template-columns:1fr;
  }

  .director-plan{
    min-height:auto;
  }
}

/* FORCE VERTICAL PRICING COLUMNS */
.director-pricing{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(220px,1fr)) !important;
  gap:22px !important;
  align-items:stretch !important;
}

.director-plan{
  width:100% !important;
  min-height:620px !important;
  display:flex !important;
  flex-direction:column !important;
}

.director-plan ul{
  display:flex !important;
  flex-direction:column !important;
  gap:14px !important;
}

@media(max-width:1180px){
  .director-pricing{
    grid-template-columns:repeat(2,minmax(260px,1fr)) !important;
  }
}

@media(max-width:680px){
  .director-pricing{
    grid-template-columns:1fr !important;
  }
}

/* ===== MEZEL GLOBAL V2 CLEAN ===== */

.mg-hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  padding:90px 6vw;
  background:
    linear-gradient(90deg,rgba(3,5,12,.96),rgba(3,5,12,.72),rgba(3,5,12,.35)),
    url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1800&q=80') center/cover;
  position:relative;
  overflow:hidden;
}

.mg-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 70% 35%,rgba(79,140,255,.30),transparent 34%);
  animation:mgPulse 6s ease-in-out infinite alternate;
}

@keyframes mgPulse{
  from{opacity:.45;transform:scale(1)}
  to{opacity:1;transform:scale(1.08)}
}

.mg-hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
  animation:mgReveal .9s ease both;
}

@keyframes mgReveal{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}

.mg-kicker,
.mg-title span,
.mg-copy span{
  color:var(--gold);
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
}

.mg-hero h1{
  font-size:clamp(48px,7vw,96px);
  line-height:.92;
  letter-spacing:-.06em;
  margin:18px 0 24px;
}

.mg-hero p{
  color:var(--muted);
  max-width:760px;
  font-size:clamp(18px,2vw,24px);
  line-height:1.5;
}

.mg-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.mg-btn,
.mg-small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
}

.mg-primary{
  background:linear-gradient(135deg,var(--blue),var(--violet));
  box-shadow:0 0 45px rgba(79,140,255,.35);
}

.mg-secondary,
.mg-small-btn{
  background:rgba(255,255,255,.07);
}

.mg-section{
  padding:95px 6vw;
  border-top:1px solid rgba(255,255,255,.12);
}

.mg-title{
  max-width:880px;
  margin-bottom:42px;
}

.mg-title h2,
.mg-copy h2{
  font-size:clamp(36px,5vw,68px);
  line-height:1;
  letter-spacing:-.05em;
  margin:16px 0;
}

.mg-title p,
.mg-copy p{
  color:var(--muted);
  font-size:20px;
  line-height:1.6;
}

.mg-three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.mg-three div{
  min-height:280px;
  padding:32px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
}

.mg-three strong{
  color:var(--gold);
  font-size:13px;
}

.mg-three h3{
  font-size:30px;
  margin:18px 0 12px;
}

.mg-three p{
  color:var(--muted);
  line-height:1.6;
}

.mg-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}

.mg-visual{
  min-height:500px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(5,6,11,.08),rgba(5,6,11,.90)),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1300&q=80') center/cover;
  padding:34px;
  display:flex;
  align-items:flex-end;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 100px rgba(0,0,0,.35);
}

.mg-screen{
  width:100%;
  padding:24px;
  border-radius:26px;
  background:rgba(5,6,11,.72);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.14);
}

.mg-screen span{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.18em;
  font-weight:900;
}

.mg-screen h3{
  font-size:32px;
  margin:14px 0 22px;
}

.mg-poll p,
.mg-poll small{
  color:var(--muted);
}

.mg-poll div{
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}

.mg-poll b{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
}

.mg-pricing-columns{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.mg-plan{
  position:relative;
  min-height:620px;
  padding:30px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.13);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 25px 80px rgba(0,0,0,.22);
}

.mg-plan.mg-best{
  border-color:rgba(248,199,107,.75);
  transform:translateY(-12px);
  background:
    radial-gradient(circle at 50% 0%,rgba(248,199,107,.22),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.04));
}

.mg-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:var(--gold);
  color:#05060b;
  border-radius:999px;
  padding:8px 12px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.mg-plan-head span{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.16em;
  font-weight:900;
}

.mg-plan h3{
  font-size:28px;
  line-height:1.05;
  margin:18px 0 16px;
}

.mg-price{
  font-size:56px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.07em;
  margin-bottom:18px;
}

.mg-plan p{
  color:var(--muted);
  line-height:1.5;
}

.mg-plan ul{
  list-style:none;
  padding:0;
  margin:26px 0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.mg-plan li{
  position:relative;
  padding-left:28px;
  line-height:1.35;
  color:#eef3ff;
}

.mg-plan li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:900;
}

.mg-small-btn{
  width:100%;
}

.mg-gold{
  background:linear-gradient(135deg,var(--gold),#fff2a8);
  color:#05060b;
}

.mg-calendar{
  display:grid;
  gap:14px;
}

.mg-calendar div{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}

.mg-calendar span{
  color:var(--muted);
}

@media(max-width:1100px){
  .mg-pricing-columns,
  .mg-three,
  .mg-split{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .mg-pricing-columns,
  .mg-three,
  .mg-split{
    grid-template-columns:1fr;
  }

  .mg-plan.mg-best{
    transform:none;
  }

  .mg-calendar div{
    flex-direction:column;
  }
}

/* ===== MEZEL GLOBAL PREMIERE EXPERIENCE ===== */

.premiere-hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  padding:90px 6vw;
  overflow:hidden;
  background:#03050d;
}

.premiere-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1800&q=80') center/cover;
  transform:scale(1.08);
  animation:premiereSlowZoom 20s ease-in-out infinite alternate;
}

@keyframes premiereSlowZoom{
  from{transform:scale(1.08)}
  to{transform:scale(1.18) translateX(-20px)}
}

.premiere-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(3,5,13,.97),rgba(3,5,13,.78),rgba(3,5,13,.38)),
    radial-gradient(circle at 70% 35%,rgba(79,140,255,.28),transparent 35%);
  z-index:1;
}

.premiere-content{
  position:relative;
  z-index:2;
  max-width:980px;
  animation:premiereFadeUp .9s ease both;
}

@keyframes premiereFadeUp{
  from{opacity:0;transform:translateY(26px)}
  to{opacity:1;transform:translateY(0)}
}

.premiere-label,
.premiere-heading span,
.auditorium-card span,
.auditorium-copy span{
  display:inline-block;
  color:#f8c76b;
  font-size:12px;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.premiere-content h1{
  max-width:980px;
  font-size:clamp(48px,7vw,98px);
  line-height:.92;
  margin:0 0 24px;
  letter-spacing:-.06em;
}

.premiere-content p{
  max-width:760px;
  color:#b8c2d8;
  font-size:clamp(18px,2vw,24px);
  line-height:1.5;
}

.premiere-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.premiere-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
}

.premiere-btn.primary{
  background:linear-gradient(135deg,#4f8cff,#8b5cf6);
  box-shadow:0 0 45px rgba(79,140,255,.35);
}

.premiere-btn.secondary{
  background:rgba(255,255,255,.08);
}

.premiere-status{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
  color:#b8c2d8;
  font-size:14px;
}

.premiere-status span:first-child{
  color:#f8c76b;
}

.premiere-section{
  padding:95px 6vw;
  border-top:1px solid rgba(255,255,255,.12);
}

.premiere-heading{
  max-width:880px;
  margin-bottom:44px;
}

.premiere-heading h2,
.auditorium-copy h2{
  font-size:clamp(36px,5vw,68px);
  line-height:1;
  letter-spacing:-.05em;
  margin:0 0 18px;
}

.premiere-heading p,
.auditorium-copy p{
  color:#b8c2d8;
  font-size:20px;
  line-height:1.6;
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.experience-card{
  min-height:270px;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
}

.experience-card strong{
  color:#f8c76b;
}

.experience-card h3{
  font-size:28px;
  margin:18px 0 12px;
}

.experience-card p{
  color:#b8c2d8;
  line-height:1.55;
}

.premiere-auditorium{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:38px;
  align-items:center;
}

.auditorium-window{
  min-height:520px;
  border-radius:38px;
  padding:32px;
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(180deg,rgba(3,5,13,.05),rgba(3,5,13,.88)),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1400&q=80') center/cover;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 100px rgba(0,0,0,.35);
}

.auditorium-card{
  width:100%;
  padding:28px;
  border-radius:28px;
  background:rgba(3,5,13,.76);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.14);
}

.auditorium-card h2{
  font-size:42px;
  margin:0 0 22px;
  letter-spacing:-.04em;
}

.auditorium-ui{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:22px;
}

.auditorium-ui div{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
}

.auditorium-ui small{
  display:block;
  color:#b8c2d8;
  margin-bottom:6px;
}

.poll-box{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
}

.poll-box p,
.poll-box small{
  color:#b8c2d8;
}

.poll-bar{
  height:12px;
  background:rgba(255,255,255,.14);
  border-radius:999px;
  overflow:hidden;
  margin:10px 0;
}

.poll-bar span{
  display:block;
  width:68%;
  height:100%;
  background:linear-gradient(90deg,#4f8cff,#f8c76b);
  border-radius:999px;
}

.poster-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.poster{
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg,rgba(3,5,13,.10),rgba(3,5,13,.90)),
    radial-gradient(circle at 20% 10%,rgba(79,140,255,.35),transparent 40%),
    linear-gradient(135deg,#111827,#05060b);
}

.poster span{
  color:#f8c76b;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.poster h3{
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.04em;
  margin:14px 0 0;
}

.clean-pricing{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.clean-plan{
  position:relative;
  min-height:480px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:28px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.13);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
}

.clean-plan.best{
  border-color:rgba(248,199,107,.7);
  box-shadow:0 0 60px rgba(248,199,107,.13);
}

.clean-plan em{
  position:absolute;
  top:18px;
  right:18px;
  background:#f8c76b;
  color:#05060b;
  border-radius:999px;
  padding:7px 11px;
  font-size:11px;
  font-style:normal;
  font-weight:900;
  text-transform:uppercase;
}

.clean-plan span{
  color:#f8c76b;
  font-size:12px;
  letter-spacing:.16em;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:18px;
}

.clean-plan h3{
  font-size:56px;
  margin:0 0 18px;
  letter-spacing:-.07em;
}

.clean-plan p{
  color:#b8c2d8;
  line-height:1.5;
  min-height:70px;
}

.clean-plan ul{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:flex;
  flex-direction:column;
  gap:13px;
}

.clean-plan li{
  position:relative;
  padding-left:26px;
  color:#eef3ff;
}

.clean-plan li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:#f8c76b;
  font-weight:900;
}

.center-cta{
  display:flex;
  justify-content:center;
  margin-top:38px;
}

@media(max-width:1100px){
  .experience-grid,
  .poster-grid,
  .clean-pricing{
    grid-template-columns:repeat(2,1fr);
  }

  .premiere-auditorium{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .experience-grid,
  .poster-grid,
  .clean-pricing,
  .auditorium-ui{
    grid-template-columns:1fr;
  }

  .premiere-hero{
    min-height:auto;
  }
}
