/* =====================================================
   TrendLift Styles — Montserrat Light & Bold (CLEAN)
   ===================================================== */

:root { color-scheme: dark; }

/* ---------- Base ---------- */
body{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background-color:#0a0a0a;
  color:#fff;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{
  font-weight:700;
  letter-spacing:-0.02em;
}
button, .nav-link{
  font-weight:700;
  letter-spacing:0.03em;
}

/* ---------- HERO (FĂRĂ VIDEO) ---------- */
.hero-video{
  position:relative;
  height:100vh;
  overflow:hidden;
}

/* background base */
.hero-base{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(800px 500px at 10% 20%, rgba(120,83,160,0.22), rgba(0,0,0,0) 60%),
    radial-gradient(700px 500px at 85% 40%, rgba(216,143,29,0.18), rgba(0,0,0,0) 65%),
    radial-gradient(900px 700px at 50% 90%, rgba(255,255,255,0.05), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 65%, #060606 100%);
}

/* Canvas shapes */
.hero-shapes{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
  opacity:1;
  mix-blend-mode:screen;
}

/* overlay (contrast cinematic) */
.hero-overlay{
  z-index:2;
  background:
    radial-gradient(circle at 50% 35%, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.70) 72%),
    linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.86) 100%);
}

/* CTA */
.hero-cta-text{
  display:flex;
  justify-content:center;
  gap:2.5rem;
  margin-bottom:2.5rem;
  flex-wrap:wrap;
}
.cta-link{
  appearance:none;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;

  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-size:0.9rem;
  color:rgba(255,255,255,.85);

  position:relative;
  transition:color .25s ease, opacity .25s ease;
}
.cta-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:1px;
  background:linear-gradient(90deg,#7853a0,#d88f1d);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s ease;
  opacity:.9;
}
.cta-link:hover{ color:#fff; }
.cta-link:hover::after{ transform:scaleX(1); }
.cta-primary{ color:#fff; }
.cta-secondary{ opacity:.65; }
.cta-secondary:hover{ opacity:1; }

@media (max-width:640px){
  .hero-cta-text{ gap:1.6rem; }
  .cta-link{ font-size:0.85rem; }
}

/* Accent sweep */
.hero-accent{
  position:relative;
  display:inline-block;
  letter-spacing:.14em;
  text-transform:uppercase;

  background:linear-gradient(90deg,
    rgba(255,255,255,.25),
    rgba(255,255,255,.9),
    rgba(255,255,255,.25)
  );
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;

  text-shadow:
    0 0 12px rgba(255,200,60,.15),
    0 0 28px rgba(160,90,255,.08);

  animation:lightSweep 3.5s ease-in-out infinite;
}
@keyframes lightSweep{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

/* Navigation underline */
.nav-link{ position:relative; }
.nav-link::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#7853a0,#d88f1d);
  transition:width .28s ease;
}
.nav-link:hover::after{ width:100%; }

/* (restul CSS-ului tău rămâne la fel – portofoliu, modal, etc.) */


/* ---------- Section Divider ---------- */
.section-divider{
  height:2px;
  background:linear-gradient(90deg,transparent,#7853a0,#d88f1d,transparent);
  margin:4rem 0;
}

/* =====================================================
   Portfolio thumbs + overlay (9:16 / 16:9)
   ===================================================== */
.thumb-9x16{
  aspect-ratio:9/16;
  width:100%;
  background:#000;
  overflow:hidden;
}
.thumb-16x9{
  aspect-ratio:16/9;
  width:100%;
  background:#000;
  overflow:hidden;
}
.thumb-media{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  /* crisp */
  image-rendering:auto;
  transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  -webkit-transform:translateZ(0);

  transition:transform .25s ease, filter .25s ease, opacity .25s ease;
}

/* Global hover (doar pentru carduri normale, NU pack-media) */
@media (hover:hover){
  .project-card:hover .thumb-media{
    transform:scale(1.06);
    filter:brightness(.92);
  }
}

/* Overlay play for normal cards */
.play-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0);
  transition:background .22s ease;
}
.project-card:hover .play-overlay{
  background:rgba(0,0,0,.35);
}
.play-rect{
  width:56px;
  height:56px;
  border-radius:16px;
  background:rgba(10,10,10,.55);
  border:1px solid rgba(255,255,255,.14);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.play-rect i{ color:rgba(255,255,255,.92); }
.project-card:hover .play-rect{
  transform:translateY(-2px);
  border-color:rgba(216,143,29,.35);
  background:rgba(10,10,10,.72);
}

/* Badge pe media (ex: Music Video) */
.media-badge{
  position:absolute;
  left:14px;
  top:14px;
  z-index:3;

  padding:8px 10px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);

  background:rgba(10,10,10,.55);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

/* ---------- Gradient Text ---------- */
.gradient-text{
  background:linear-gradient(45deg,#7853a0,#d88f1d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.simple-text{ color:#fff; }

/* ---------- Forms ---------- */
.contact-input{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  transition:all .25s ease;
  outline:none;
  font-weight:300;
}
.contact-input:focus{
  border-color:rgba(216,143,29,0.9);
  background:rgba(255,255,255,0.07);
  box-shadow:0 0 0 2px rgba(216,143,29,0.18);
}

/* ---------- Stats ---------- */
.stats-number{
  font-size:3rem;
  font-weight:700;
  background:linear-gradient(45deg,#7853a0,#d88f1d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* =====================================================
   Modal (YouTube embed)
   ===================================================== */
.modal-hidden{ display:none; }

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.modal-wrap{
  position:fixed;
  inset:0;
  z-index:1000;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;

  padding:
    calc(12px + env(safe-area-inset-top))
    calc(12px + env(safe-area-inset-right))
    calc(12px + env(safe-area-inset-bottom))
    calc(12px + env(safe-area-inset-left));

  display:flex;
  align-items:center;
  justify-content:center;
}

.modal-panel{
  width:min(1100px, 100%);
  border-radius:18px;
  overflow:hidden;
  max-height:calc(100dvh - 24px);

  background:rgba(18,18,18,.94);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 90px rgba(0,0,0,.55);

  display:flex;
  flex-direction:column;
}

/* Header */
.modal-header{
  position:sticky;
  top:0;
  z-index:2;
  padding:14px 16px 12px 16px;

  background:rgba(18,18,18,.92);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.modal-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
  opacity:.88;
}
.modal-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:linear-gradient(90deg,#7853a0,#d88f1d);
}
.modal-label{
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
}

.modal-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.modal-title{
  font-weight:700;
  letter-spacing:-0.01em;
  font-size:18px;
  line-height:1.2;
  padding-right:8px;
}

.modal-close{
  border:0;
  background:transparent;
  color:rgba(255,255,255,.86);
  font-size:18px;
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease, color .2s ease;
}
.modal-close:hover{ background:rgba(255,255,255,.06); color:#fff; }
.modal-close:active{ transform:scale(.98); }

/* Body */
.modal-body{
  padding:14px 16px 16px 16px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.modal-grid{
  display:grid;
  grid-template-columns:1.35fr 0.85fr;
  gap:16px;
}

/* Video */
.modal-video-frame{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
  aspect-ratio:16/9;
}
#videoModal.is-vertical .modal-video-frame{
  aspect-ratio:9/16;
  max-height:72vh;
}
.modal-iframe{
  width:100%;
  height:100%;
  display:block;
}

/* tags */
.modal-tags{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.modal-tags span{
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
}

/* Details */
.modal-details{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  padding:14px;
}
.modal-desc{
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.65;
  margin-bottom:14px;
}
.modal-meta{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.modal-meta-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.modal-meta-row i{
  margin-top:2px;
  color:rgba(216,143,29,.85);
}
.modal-meta-label{
  font-weight:700;
  font-size:12px;
  color:rgba(255,255,255,.88);
  margin-bottom:2px;
}
.modal-meta-value{
  font-size:12px;
  color:rgba(255,255,255,.62);
  line-height:1.45;
}
.modal-footnote{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:11px;
  color:rgba(255,255,255,.46);
}

/* Modal responsive */
@media (max-width:980px){
  .modal-grid{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .modal-wrap{ align-items:flex-start; }
  .modal-panel{ border-radius:16px; }
  .modal-body{ padding:12px; }
  .modal-header{ padding:12px; }
  .modal-title{ font-size:17px; }
  #videoModal.is-vertical .modal-video-frame{ max-height:66vh; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:#0a0a0a; }
::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,rgba(29,29,29,0.7),rgba(41,41,41,0.7));
  border-radius:10px;
}

/* ---------- Responsive misc ---------- */
@media (max-width:768px){
  .hero-content{ padding:0 1rem; }
  .stats-number{ font-size:2rem; }
}

/* Ads stack spacing */
.ads-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =====================================================
   Reel Carousel (horizontal slider)
   ===================================================== */
.reel-carousel {
  position: relative;
  overflow: hidden;
}

.reel-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.reel-carousel__item {
  flex: 0 0 auto;
  width: calc((100% - 80px) / 6);
}

@media (max-width: 1200px) {
  .reel-carousel__item { width: calc((100% - 48px) / 4); }
}
@media (max-width: 768px) {
  .reel-carousel__item { width: calc((100% - 32px) / 3); }
}
@media (max-width: 540px) {
  /* pe mobil: scroll nativ orizontal, mai natural */
  .reel-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .reel-carousel::-webkit-scrollbar { display: none; }

  .reel-carousel__track {
    transition: none;
    gap: 12px;
  }

  .reel-carousel__item {
    width: 130px;
    scroll-snap-align: start;
  }

  /* play button mai mic pe mobil, mereu vizibil */
  .reel-carousel__item .play-overlay {
    background: rgba(0, 0, 0, 0.15);
  }
  .reel-carousel__item .play-rect {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .reel-carousel__item .play-rect i {
    font-size: 11px;
  }

  /* caption mai compact */
  .reel-carousel__item .p-4 {
    padding: 8px 10px;
  }
  .reel-carousel__item .p-4 h4 {
    font-size: 11px;
    line-height: 1.3;
  }
  .reel-carousel__item .p-4 p {
    font-size: 10px;
  }
}

.reel-carousel__btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.45);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.reel-carousel__btn:hover {
  background: rgba(10, 10, 10, 0.65);
  border-color: rgba(216, 143, 29, 0.3);
}

.reel-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* pe mobil ascundem butoanele (scroll nativ) */
@media (max-width: 540px) {
  .reel-carousel__btn { display: none; }
}

/* =====================================================
   PACK MEDIA (Reclame) — clean, no duplicates
   Main 16:9 + 2 reels side-by-side, same height
   ===================================================== */

.pack-media {
  /* controlăm înălțimea pack-ului ca să nu mai fie “uriaș” */
  --packH: clamp(220px, 26vw, 360px);

  display: flex;
  gap: 14px;
  align-items: stretch;

  padding: 14px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 18px;
}

/* variantă single (doar main) */
.pack-media.pack-single {
  --packH: clamp(220px, 26vw, 380px);
}

/* MAIN */
.pack-main {
  flex: 1 1 auto;
  height: var(--packH);

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  border-radius: 18px;
  overflow: hidden;

  position: relative;
  padding: 0;
  cursor: pointer;
}

/* Reels container = aceeași înălțime ca main */
.pack-reels {
  flex: 0 0 auto;
  height: var(--packH);

  display: flex;
  gap: 14px;
  align-items: stretch;
}

/* fiecare reel = vertical real (9:16) și umple înălțimea pack-ului */
.pack-reel {
  height: 100%;
  aspect-ratio: 9 / 16; /* AICI e “reel-ul”, nu pătrat */
  width: auto;

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  border-radius: 18px;
  overflow: hidden;

  position: relative;
  padding: 0;
  cursor: pointer;
}

/* dacă există wrappers thumb-16x9 / thumb-9x16 în HTML,
   le facem să umple frame-ul, nu să forțeze pătrat */
.pack-main .thumb-16x9,
.pack-reel .thumb-9x16 {
  width: 100%;
  height: 100%;
  aspect-ratio: auto !important;
}

/* imagini */
.pack-main img,
.pack-reel img,
.pack-main .thumb-media,
.pack-reel .thumb-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transform: none !important;
}

/* hover: doar dark overlay, fără zoom */
.pack-main::before,
.pack-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.22s ease;
  z-index: 2;
  pointer-events: none;
}

.pack-main:hover::before,
.pack-reel:hover::before {
  background: rgba(0, 0, 0, 0.32);
}

/* play badge */
.pack-play {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;

  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.pack-play.sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  left: 12px;
  bottom: 12px;
}

.pack-main:hover .pack-play,
.pack-reel:hover .pack-play {
  transform: translateY(-2px);
  border-color: rgba(216, 143, 29, 0.34);
  background: rgba(10, 10, 10, 0.74);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pack-media {
    flex-direction: column;
  }

  .pack-main {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .pack-reels {
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .pack-reel {
    height: auto;
    width: 150px;         /* reels vizibile ca reels */
    aspect-ratio: 9 / 16;
    flex: 0 0 auto;
  }
}

/* =========================
   TrendLift Slider (About)
   ========================= */

.tl-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* păstrează vibe-ul de poză pătrată ca înainte */
  background: #000;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .tl-slider {
    aspect-ratio: 4 / 5; /* un pic mai “portrait” pe ecrane mai mici */
  }
}

.tl-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1400ms ease;
  will-change: opacity, transform;
}

.tl-slider__slide.is-active {
  opacity: 1;
  transform: scale(1.06); /* subtle ken-burns */
}

.tl-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* vignette / cinematic contrast */
.tl-slider__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 85%),
    linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.08));
  pointer-events: none;
  z-index: 2;
}

/* caption */
.tl-slider__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;

  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(10,10,10,.48);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tl-slider__caption-title {
  margin: 0 0 4px 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.tl-slider__caption-sub {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.70);
  line-height: 1.4;
}

/* controls */
.tl-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;

  width: 44px;
  height: 44px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,10,10,.45);
  color: rgba(255,255,255,.90);
  cursor: pointer;

  display: grid;
  place-items: center;

  transition: background .2s ease, transform .2s ease, border-color .2s ease, opacity .2s ease;
  opacity: .85;
}

.tl-slider__btn:hover {
  background: rgba(10,10,10,.65);
  border-color: rgba(216,143,29,.30);
  opacity: 1;
}

.tl-slider__btn--prev { left: 12px; }
.tl-slider__btn--next { right: 12px; }

/* dots */
.tl-slider__dots {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 4;

  display: flex;
  gap: 8px;
}

.tl-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.tl-slider__dot.is-active {
  background: rgba(216,143,29,.65);
  border-color: rgba(216,143,29,.35);
  transform: scale(1.15);
}

/* mobile: butoane un pic mai mici */
@media (max-width: 640px) {
  .tl-slider__btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}


/* =========================
   Legal + Cookies (footer)
   ========================= */

.modal-open {
  overflow: hidden;
}

.legal-wrap {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 999;
}

.legal-panel {
  width: min(920px, 96vw);
  max-height: 88vh;
  background: rgba(15, 15, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.legal-body {
  padding: 16px;
  overflow: auto;
  max-height: calc(88vh - 62px);
}

.legal-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.legal-content b {
  color: rgba(255, 255, 255, 0.92);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 998;
}

.cookie-hidden {
  display: none;
}

.cookie-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(15, 15, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.cookie-btn {
  border: 1px solid rgba(216, 143, 29, 0.55);
  background: rgba(216, 143, 29, 0.18);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.cookie-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}

/* =========================
   Honeypot anti-spam (NU se afișează)
   ========================= */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hp-field * {
  display: none !important;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 20px;
  }
}

/* Card base */
.pricing-card {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pricing-card:hover {
  border-color: rgba(120, 83, 160, 0.35);
  transform: translateY(-3px);
}

/* Featured (Premium) */
.pricing-card--featured {
  border-color: rgba(216, 143, 29, 0.4);
  background:
    linear-gradient(180deg, rgba(216, 143, 29, 0.06) 0%, rgba(26, 26, 26, 1) 40%),
    #1a1a1a;
}

.pricing-card--featured:hover {
  border-color: rgba(216, 143, 29, 0.65);
}

/* "Recomandat" label */
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #7853a0, #d88f1d);
  box-shadow: 0 4px 18px rgba(216, 143, 29, 0.25);
}

/* Header */
.pricing-header {
  margin-bottom: 20px;
}

.pricing-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

.pricing-badge--featured {
  color: rgba(216, 143, 29, 0.95);
  background: rgba(216, 143, 29, 0.1);
  border-color: rgba(216, 143, 29, 0.25);
}

.pricing-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.pricing-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}

/* Price */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-amount {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-amount--custom {
  font-size: 26px;
  background: linear-gradient(90deg, #7853a0, #d88f1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-currency {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.pricing-price-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-old-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-old {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.pricing-discount {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(216, 143, 29, 0.2);
  border: 1px solid rgba(216, 143, 29, 0.35);
  white-space: nowrap;
  line-height: 1.4;
}

.pricing-promo {
  font-size: 11px;
  color: rgba(216, 143, 29, 0.7);
  font-weight: 300;
  font-style: italic;
  white-space: nowrap;
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.pricing-features li i {
  color: rgba(216, 143, 29, 0.8);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-features li strong {
  color: #fff;
}

/* CTA */
.pricing-cta {
  width: 100%;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(120, 83, 160, 0.4);
  transform: translateY(-1px);
}

.pricing-cta--featured {
  background: #d88f1d;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 24px rgba(216, 143, 29, 0.22);
}

.pricing-cta--featured:hover {
  background: #c5821a;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(216, 143, 29, 0.32);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */

/* Stare initiala — toate elementele reveal sunt invizibile */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Titluri — clip-path reveal (efect cinematic) */
.sr-title {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, clip-path, transform;
}

/* Carduri video — slide + fade cu stagger */
.sr-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Starea vizibila — se aplica cand elementul intra in viewport */
.sr.is-visible,
.sr-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sr-title.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0% 0);
  transform: translateY(0);
}

/* Delay-uri pentru stagger */
.sr-d1 { transition-delay: 0.05s; }
.sr-d2 { transition-delay: 0.12s; }
.sr-d3 { transition-delay: 0.19s; }
.sr-d4 { transition-delay: 0.26s; }
.sr-d5 { transition-delay: 0.33s; }
.sr-d6 { transition-delay: 0.40s; }
.sr-d7 { transition-delay: 0.47s; }
.sr-d8 { transition-delay: 0.54s; }

/* Reduce motion — respectam preferintele utilizatorului */
@media (prefers-reduced-motion: reduce) {
  .sr, .sr-title, .sr-card {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

