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

:root {
  --black:   #080808;
  --off:     #111110;
  --paper:   #f9f8f5;
  --cream:   #f0ede6;
  --g100:    #e8e4dc;
  --g300:    #b8b4ac;
  --g500:    #787470;
  --g700:    #3a3936;
  --gold:    #c9a96e;
  --gold-lt: #e2c99a;
  --gold-dk: #9a7d4e;
  --serif:   'Bodoni Moda', 'Didot', Georgia, serif;
  --display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --sans:    'Jost', 'Futura', 'Century Gothic', -apple-system, sans-serif;
  --ease:    cubic-bezier(.4, 0, .2, 1);
  --ease-out:cubic-bezier(0, 0, .2, 1);
}

html { scroll-behavior: auto; font-size: 16px; -webkit-font-smoothing: subpixel-antialiased; }
body { background: var(--black); color: var(--paper); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }

/* ═══════════════════════════════
   LOADER
═══════════════════════════════ */
#loader {
  position: fixed; inset: 0; background: var(--black);
  z-index: 8000; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-logo { font-family: var(--serif); font-size: 18px; letter-spacing: .3em; text-transform: uppercase; font-weight: 400; color: var(--paper); animation: ldFade .7s .1s both; }
.ld-bar { width: 0; height: 1px; background: var(--gold); margin-top: 20px; animation: ldBar 1.4s .3s var(--ease-out) both; }
@keyframes ldFade { from { opacity:0; transform:translateY(8px) } to { opacity:1; transform:none } }
@keyframes ldBar  { from { width:0 } to { width: 100px } }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 700;
  height: 68px; display: flex; align-items: center; padding: 0 40px;
  background: rgba(8,8,8,.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.nav-logo { font-family: var(--serif); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--paper); text-decoration: none; font-weight: 400; flex-shrink: 0; animation: navFade .6s .4s both; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); animation: navFade .6s .5s both; }
.nav-links a { font-size: 15px; letter-spacing: .02em; font-weight: 400; color: rgba(249,248,245,.9); text-decoration: none; transition: color .25s; white-space: nowrap; position: relative; padding-bottom: 2px; }
.nav-links a[data-page="abo"] { color: var(--gold); font-weight: 500; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: auto; font-size: 13px; letter-spacing: .05em; font-weight: 500; color: var(--black); background: var(--paper); padding: 11px 30px; border-radius: 980px; text-decoration: none; white-space: nowrap; transition: background .25s, transform .15s; animation: navFade .6s .6s both; box-shadow: 0 2px 12px rgba(249,248,245,.15); }
.nav-cta:hover { background: var(--gold); transform: scale(1.02); }
@keyframes navFade { from { opacity:0 } to { opacity:1 } }

/* ═══════════════════════════════
   PAGE SYSTEM
═══════════════════════════════ */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }
.page-enter { animation: pgIn .4s var(--ease-out) both; }
@keyframes pgIn { from { opacity:0; transform:translateY(12px) } to { opacity:1; transform:none } }

/* ═══════════════════════════════
   REVEAL
═══════════════════════════════ */
.rv    { opacity:0; transform:translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.up { opacity:1; transform:none; }
.rv-l  { opacity:0; transform:translateX(-28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv-l.up { opacity:1; transform:none; }
.rv-r  { opacity:0; transform:translateX(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv-r.up { opacity:1; transform:none; }
.dl1 { transition-delay: .1s !important; }
.dl2 { transition-delay: .2s !important; }
.dl3 { transition-delay: .3s !important; }
.dl4 { transition-delay: .4s !important; }

/* ═══════════════════════════════
   SHARED
═══════════════════════════════ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.lbl { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; }
.h1 { font-family: var(--display); font-size: clamp(52px, 8vw, 110px); font-weight: 400; line-height: .92; letter-spacing: -.02em; color: var(--paper); }
.h2 { font-family: var(--serif); font-size: clamp(36px, 5vw, 70px); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; color: var(--paper); }
.h3 { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; color: var(--paper); }
.h2 em, .h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.body-lg { font-size: 16px; line-height: 1.95; color: rgba(249,248,245,.9); }
.body-sm { font-size: 15px; line-height: 1.9; color: rgba(249,248,245,.9); }

.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 13px; letter-spacing: .01em; font-weight: 500; text-decoration: none; cursor: pointer; transition: all .2s var(--ease); white-space: nowrap; border: none; -webkit-font-smoothing: antialiased; }
.btn-white { background: var(--paper); color: var(--black); padding: 14px 32px; border-radius: 980px; }
.btn-white:hover { background: var(--gold-lt); transform: scale(1.015); }
.btn-outline { background: rgba(249,248,245,.08); color: var(--paper); padding: 12px 28px; border-radius: 980px; border: 1px solid rgba(249,248,245,.2); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(249,248,245,.14); border-color: rgba(249,248,245,.4); }
.btn-gold { background: var(--gold); color: var(--black); padding: 13px 32px; border-radius: 980px; font-weight: 600; }
.btn-gold:hover { background: var(--gold-lt); transform: scale(1.015); }
.btn-dark { background: rgba(249,248,245,.1); color: var(--paper); padding: 13px 28px; border-radius: 980px; border: 1px solid rgba(249,248,245,.15); backdrop-filter: blur(8px); }
.btn-dark:hover { background: rgba(249,248,245,.16); border-color: rgba(249,248,245,.55); }
.divider { border: none; border-top: 1px solid rgba(249,248,245,.07); margin: 0; }

/* ═══════════════════════════════
   HOME — HERO
═══════════════════════════════ */
.hero { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.hero-video { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1574015974293-817f0ebebb74?w=2400&q=90&auto=format&fit=crop'); background-size: cover; background-position: center 18%; background-repeat: no-repeat; animation: hZoom 20s ease-out forwards; }
@keyframes hZoom { from { transform: scale(1.06) } to { transform: scale(1) } }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,.75) 0%, rgba(8,8,8,.58) 20%, rgba(8,8,8,.60) 40%, rgba(8,8,8,.65) 60%, rgba(8,8,8,.82) 80%, rgba(8,8,8,.98) 100%); }
.hero-grad::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,.25) 0%, transparent 40%, rgba(8,8,8,.25) 100%); }
.hero-body { position: absolute; z-index: 2; top: 50%; left: 0; right: 0; transform: translateY(-38%); text-align: center; padding: 0 24px; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: #ffffff; margin-bottom: 24px; animation: hIn .7s .8s both; }
.hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 7vw, 100px); line-height: 1.05; letter-spacing: -.025em; margin-bottom: 20px; animation: hIn .9s 1s both; color: #ffffff; }
.hero-title em { font-style: italic; display: block; margin-top: 4px; }
.hero-sub { font-size: 14px; letter-spacing: .04em; color: #ffffff; margin-bottom: 36px; max-width: 400px; line-height: 1.8; animation: hIn .7s 1.2s both; }
.hero-cta { animation: hIn .7s 1.4s both; }
@keyframes hIn { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:none } }

/* TICKER */
.ticker-wrap { overflow: hidden; border-top: 1px solid rgba(249,248,245,.06); border-bottom: 1px solid rgba(249,248,245,.06); padding: 15px 0; }
.ticker-track { display: flex; animation: tick 60s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(249,248,245,.75); white-space: nowrap; padding: 0 40px; font-weight: 400; }
.ticker-track .ta { color: var(--gold); padding: 0 20px; opacity: .6; }
@keyframes tick { from { transform:translateX(0) } to { transform:translateX(-50%) } }

/* AS SEEN IN */
.seen { padding: 64px 0; background: var(--off); border-top: 1px solid rgba(249,248,245,.05); border-bottom: 1px solid rgba(249,248,245,.05); }
.seen-label { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: rgba(249,248,245,.5); text-align: center; margin-bottom: 32px; font-weight: 400; }
.seen-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.seen-item { font-family: var(--serif); font-size: clamp(18px, 2.5vw, 26px); font-weight: 400; font-style: italic; color: rgba(249,248,245,.82); letter-spacing: .06em; white-space: nowrap; transition: color .4s; cursor: pointer; }
.seen-item:hover { color: rgba(249,248,245,.9); }

/* MEMBERSHIP PREVIEW */
.mem-preview { padding: 120px 0; background: var(--black); }
.mem-prev-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.mem-prev-left .h2 { margin: 16px 0 28px; }
.mem-prev-left .body-lg { margin-bottom: 36px; max-width: 440px; }
.mem-prev-right { background: var(--off); border: 1px solid rgba(249,248,245,.08); padding: 48px 44px; }
.mp-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.mp-price { font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1.15; }
.mp-cur { font-size: 16px; color: var(--g300); align-self: flex-end; padding-bottom: 6px; }
.mp-period { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: rgba(249,248,245,.6); margin-bottom: 28px; margin-top: 0; }
.mp-list { list-style: none; margin-bottom: 36px; }
.mp-list li { padding: 12px 0; border-bottom: 1px solid rgba(249,248,245,.05); font-size: 13px; color: rgba(249,248,245,.88); display: flex; align-items: center; }
.mp-note { font-size: 11px; color: rgba(249,248,245,.7); line-height: 1.7; margin-top: 14px; text-align: center; }

/* ═══════════════════════════════
   STATS STRIP
═══════════════════════════════ */
.stats-strip { padding: 80px 0; background: var(--off); border-top: 1px solid rgba(249,248,245,.05); border-bottom: 1px solid rgba(249,248,245,.05); }
.stats-grid { display: flex; gap: 0; }
.stat-item { flex: 1; text-align: center; padding: 0 24px; border-right: 1px solid rgba(249,248,245,.06); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.1; color: var(--paper); margin-bottom: 10px; }
.stat-l { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(249,248,245,.92); }

/* ═══════════════════════════════
   DESPRE
═══════════════════════════════ */
.despre-hero { padding: 140px 0 100px; background: var(--paper); color: var(--black); border-bottom: 1px solid rgba(8,8,8,.08); }
.despre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.dp-left .lbl { color: rgba(8,8,8,.45); }
.dp-left .h2 { margin: 16px 0 32px; color: var(--black); }
.dp-left .h2 em { color: var(--gold-dk); }
.dp-body { font-size: 15px; line-height: 1.95; color: rgba(8,8,8,.75); margin-bottom: 20px; }
.dp-right-img { aspect-ratio: 3/4; background: var(--g100); position: relative; overflow: hidden; }
.dp-right-img::after { content: 'DG'; position: absolute; bottom: -10px; right: -6px; font-family: var(--serif); font-style: italic; font-size: 140px; color: rgba(8,8,8,.06); line-height: 1; pointer-events: none; }

.story-section { padding: 100px 0; background: var(--black); }
.story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }

.press-section { padding: 100px 0; background: var(--paper); color: var(--black); }
.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(8,8,8,.08); margin-top: 48px; }
.press-card { background: var(--paper); padding: 40px 36px; transition: background .3s; }
.press-card:hover { background: var(--cream); }
.press-pub { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--black); margin-bottom: 12px; font-weight: 400; }
.press-title { font-size: 13px; line-height: 1.7; color: rgba(8,8,8,.68); margin-bottom: 16px; }
.press-date { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(8,8,8,.45); }
.press-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dk); text-decoration: none; transition: gap .25s; }
.press-link:hover { gap: 10px; }

/* ═══════════════════════════════
   PORTOFOLIU
═══════════════════════════════ */
.port-hero { padding: 140px 0 80px; background: var(--black); }
.port-hero .h2 { margin-top: 16px; }
.port-filter { display: flex; gap: 4px; margin-top: 48px; flex-wrap: wrap; }
.pf-btn { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 8px 20px; border-radius: 980px; cursor: pointer; background: transparent; border: 1px solid rgba(249,248,245,.12); color: rgba(249,248,245,.92); transition: all .25s; font-family: var(--sans); }
.pf-btn.on, .pf-btn:hover { background: rgba(249,248,245,.06); color: var(--paper); border-color: rgba(249,248,245,.55); }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2px; }
.port-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #111; cursor: pointer; }
.port-card:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
.port-card:nth-child(7) { grid-row: span 2; aspect-ratio: auto; }
.port-img { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a18, #111); display: flex; align-items: center; justify-content: center; transition: transform .8s var(--ease); position: relative; }
.port-card:hover .port-img { transform: scale(1.05); }
.port-num { font-family: var(--serif); font-style: italic; font-size: 80px; color: rgba(249,248,245,.04); user-select: none; pointer-events: none; }
.port-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; background: linear-gradient(to top, rgba(8,8,8,.92) 0%, rgba(8,8,8,.4) 60%, transparent 100%); transform: translateY(100%); transition: transform .4s var(--ease); }
.port-card:hover .port-overlay { transform: none; }
.port-name { font-family: var(--serif); font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.port-meta { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════════════
   ABONAMENT
═══════════════════════════════ */
.abo-hero { padding: 140px 0 100px; background: var(--paper); color: var(--black); }
.abo-hero .lbl { color: rgba(8,8,8,.45); }
.abo-hero .h2 { color: var(--black); margin-top: 16px; }
.abo-hero .h2 em { color: var(--gold-dk); }
.abo-lead { font-size: 15px; line-height: 1.9; color: rgba(8,8,8,.5); max-width: 540px; margin-top: 28px; }
.abo-main { padding: 100px 0; background: var(--black); }
.ben-group { margin-bottom: 56px; }
.ben-group-title { font-size: 9px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(249,248,245,.06); }
.ben-item { padding: 20px 0; border-bottom: 1px solid rgba(249,248,245,.05); display: flex; gap: 20px; align-items: flex-start; }
.ben-icon { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid rgba(201,169,110,.2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--gold); margin-top: 2px; }
.ben-title { font-size: 15px; color: var(--paper); margin-bottom: 6px; font-weight: 500; }
.ben-desc { font-size: 13px; line-height: 1.8; color: rgba(249,248,245,.92); }
.abo-disclaimer { margin-top: 40px; padding: 24px 28px; border: 1px solid rgba(249,248,245,.06); font-size: 12px; line-height: 1.8; color: rgba(249,248,245,.7); }
.abo-disclaimer strong { color: rgba(249,248,245,.88); font-weight: 400; }
.abo-card { position: sticky; top: 100px; background: var(--off); border: 1px solid rgba(249,248,245,.07); padding: 44px 36px; }
.ac-badge { display: inline-block; padding: 5px 14px; background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.2); font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.ac-name { font-family: var(--serif); font-size: 22px; font-style: italic; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(249,248,245,.06); }
.ac-price-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.ac-amount { font-family: var(--serif); font-size: 52px; font-weight: 400; line-height: 1.15; }
.ac-cur { font-size: 16px; color: var(--g300); align-self: flex-end; padding-bottom: 5px; }
.ac-period { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(249,248,245,.6); margin-bottom: 28px; margin-top: 0; }
.ac-list { list-style: none; margin-bottom: 28px; }
.ac-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 12px; color: rgba(249,248,245,.92); border-bottom: 1px solid rgba(249,248,245,.04); }
.ac-list li::before { content: '✓'; color: var(--gold); font-size: 10px; flex-shrink: 0; }
.btn-pay { display: block; width: 100%; padding: 15px; text-align: center; background: var(--gold); color: var(--black); font-family: var(--sans); font-size: 11px; letter-spacing: .06em; font-weight: 500; text-decoration: none; border-radius: 980px; cursor: pointer; transition: background .25s, transform .15s; border: none; }
.btn-pay:hover { background: var(--gold-lt); transform: scale(1.02); }
.ac-cancel { font-size: 10px; color: rgba(249,248,245,.5); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ═══════════════════════════════
   FAQ ACCORDION
═══════════════════════════════ */
.faq-section { padding: 64px 0 48px; background: var(--black); border-top: 1px solid rgba(249,248,245,.06); }
.faq-section .lbl { color: var(--gold); }
.faq-list { margin-top: 32px; border-top: 1px solid rgba(249,248,245,.07); }
.faq-item { border-bottom: 1px solid rgba(249,248,245,.07); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 24px;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  color: var(--paper); text-align: left; letter-spacing: .01em;
  transition: color .25s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(249,248,245,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold); line-height: 1;
  transition: transform .35s var(--ease), background .25s, border-color .25s;
  font-family: var(--sans); font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,169,110,.1); border-color: rgba(201,169,110,.3); }
.faq-a {
  font-size: 13px; line-height: 1.85; color: rgba(249,248,245,.7);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .35s var(--ease);
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ═══════════════════════════════
   APLICĂ
═══════════════════════════════ */
.aplica-hero { padding: 140px 0 80px; background: var(--black); }
.aplica-hero .h2 { margin-top: 16px; }
.aplica-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; padding-bottom: 120px; }
.steps-bar { display: flex; align-items: center; margin-bottom: 60px; }
.st-dot { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(249,248,245,.18); display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(249,248,245,.55); flex-shrink: 0; transition: all .4s; }
.st-dot.on  { border-color: var(--paper); color: var(--paper); }
.st-dot.done { background: var(--gold); border-color: var(--gold); color: var(--black); }
.st-lbl { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(249,248,245,.55); margin-left: 8px; transition: color .4s; white-space: nowrap; }
.st-lbl.on { color: var(--paper); }
.st-lbl.done { color: var(--gold); }
.st-line { flex: 1; height: 1px; background: rgba(249,248,245,.07); margin: 0 16px; transition: background .5s; }
.st-line.done { background: var(--gold); }
.aplica-left .h3 { margin: 16px 0 20px; }
.aplica-note { font-size: 13px; line-height: 1.9; color: rgba(249,248,245,.82); margin-bottom: 32px; }
.aplica-meta { border-top: 1px solid rgba(249,248,245,.07); padding-top: 28px; }
.aplica-meta p { font-size: 8px; letter-spacing: .32em; text-transform: uppercase; color: rgba(249,248,245,.55); margin-bottom: 14px; }
.aplica-meta ul { list-style: none; }
.aplica-meta li { font-size: 12px; color: rgba(249,248,245,.55); padding: 8px 0; border-bottom: 1px solid rgba(249,248,245,.04); display: flex; align-items: center; }

/* Form */
.fld { margin-bottom: 20px; }
.fld-lbl { display: block; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(249,248,245,.85); margin-bottom: 9px; font-weight: 500; }
.fld-input, .fld-sel, .fld-area { width: 100%; background: rgba(249,248,245,.06); border: 1px solid rgba(249,248,245,.12); color: #ffffff; font-family: var(--sans); font-size: 15px; font-weight: 400; padding: 14px 16px; outline: none; transition: border-color .3s, background .3s, box-shadow .3s; border-radius: 8px; -webkit-appearance: none; }
.fld-input:focus, .fld-sel:focus, .fld-area:focus { background: rgba(249,248,245,.08); border-color: rgba(201,169,110,.5); box-shadow: 0 0 0 3px rgba(201,169,110,.1); }
.fld-area::placeholder, .fld-sel { color: rgba(249,248,245,.6); }
.fld-input::placeholder { color: rgba(249,248,245,.7); }
.fld-area { resize: none; height: 100px; }
.fld-sel option { background: #1a1a18; color: var(--paper); }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fld-upload { position: relative; }
.fld-file { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.fld-upload-ui { border: 1px dashed rgba(249,248,245,.2); padding: 32px 20px; text-align: center; transition: border-color .25s, background .25s; border-radius: 8px; background: rgba(249,248,245,.03); }
.fld-upload:hover .fld-upload-ui { border-color: rgba(201,169,110,.5); background: rgba(201,169,110,.05); }
.fld-upload-ui .icon { font-size: 20px; margin-bottom: 10px; opacity: .3; }
.fld-upload-ui p { font-size: 12px; color: rgba(249,248,245,.55); line-height: 1.6; }
.fld-upload-ui span { font-size: 10px; color: var(--gold); display: block; margin-top: 4px; }
.btn-form { width: 100%; padding: 16px; margin-top: 12px; background: var(--paper); color: var(--black); font-family: var(--sans); font-size: 13px; letter-spacing: .04em; font-weight: 600; border: none; border-radius: 980px; cursor: pointer; transition: background .25s, transform .15s; }
.btn-form:hover { background: var(--gold); }
.fld-privacy { font-size: 10px; color: rgba(249,248,245,.5); margin-top: 12px; line-height: 1.7; text-align: center; }

/* STEP 2 */
.s2-wrap { animation: pgIn .5s both; }
.s2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding-bottom: 120px; }
.s2-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.22); font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.s2-title { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 400; line-height: 1.05; margin-bottom: 6px; }
.s2-title em { font-style: italic; color: var(--gold); }
.s2-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(249,248,245,.6); margin-bottom: 32px; }
.s2-bar { width: 40px; height: 1px; background: rgba(201,169,110,.35); margin-bottom: 28px; }
.s2-pitch { font-size: 14px; line-height: 1.9; color: rgba(249,248,245,.92); margin-bottom: 18px; }
.s2-pitch strong { color: var(--paper); font-weight: 400; font-family: var(--serif); font-style: italic; font-size: 16px; }
.s2-bens { list-style: none; margin-bottom: 32px; }
.s2-bens li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(249,248,245,.05); font-size: 13px; color: rgba(249,248,245,.88); }
.s2-ico { width: 30px; height: 30px; background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--gold); }
.s2-btitle { font-size: 12px; color: var(--paper); margin-bottom: 2px; font-weight: 400; }
.s2-pay { background: var(--off); border: 1px solid rgba(249,248,245,.07); padding: 44px 36px; position: sticky; top: 100px; }
.sp-lbl { font-size: 8px; letter-spacing: .38em; text-transform: uppercase; color: rgba(249,248,245,.6); margin-bottom: 16px; }
.sp-name { font-family: var(--serif); font-style: italic; font-size: 20px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(249,248,245,.06); }
.sp-pr { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sp-amount { font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: 1.15; }
.sp-cur { font-size: 15px; color: var(--g300); align-self: flex-end; padding-bottom: 4px; }
.sp-period { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(249,248,245,.6); margin-bottom: 24px; margin-top: 0; }
.sp-inc { margin-bottom: 24px; }
.sp-inc p { font-size: 8px; letter-spacing: .25em; text-transform: uppercase; color: rgba(249,248,245,.5); margin-bottom: 10px; }
.sp-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 12px; color: rgba(249,248,245,.88); border-bottom: 1px solid rgba(249,248,245,.04); }
.sp-row::before { content: '✓'; color: var(--gold); font-size: 9px; flex-shrink: 0; }
.sp-cancel { font-size: 10px; color: rgba(249,248,245,.5); text-align: center; margin-top: 10px; line-height: 1.6; }

/* STEP 3 */
.s3-wrap { animation: pgIn .5s both; max-width: 520px; margin: 0 auto; text-align: center; padding: 40px 0 120px; }
.s3-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.28); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 20px; color: var(--gold); }
.s3-title { font-family: var(--serif); font-size: clamp(30px,4vw,48px); font-weight: 400; margin-bottom: 8px; }
.s3-title em { font-style: italic; color: var(--gold); }
.s3-sub { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: rgba(249,248,245,.6); margin-bottom: 32px; }
.s3-text { font-size: 13px; line-height: 1.9; color: rgba(249,248,245,.88); margin-bottom: 32px; }
.s3-next { border: 1px solid rgba(249,248,245,.07); padding: 24px; text-align: left; margin-bottom: 24px; }
.s3-next p { font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.s3-next li { font-size: 12px; color: rgba(249,248,245,.82); padding: 6px 0; list-style: none; display: flex; align-items: center; gap: 10px; }
.s3-next li::before { content: '→'; color: var(--gold); font-size: 10px; }

/* ═══════════════════════════════
   NOUTĂȚI
═══════════════════════════════ */
.noutati-hero { padding: 140px 0 80px; background: var(--black); }
.noutati-hero .h2 { margin-top: 16px; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; }
.news-card { background: var(--off); padding: 40px 36px; border: 1px solid rgba(249,248,245,.05); transition: background .3s, border-color .3s; cursor: pointer; position: relative; }
.news-card:hover { background: #161614; border-color: rgba(249,248,245,.1); }
.news-card:first-child { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.news-card:first-child .news-img { display: block; }
.news-img { display: none; aspect-ratio: 16/9; background: #1a1a18; overflow: hidden; margin-bottom: 0; }
.news-tag { display: inline-block; font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.news-date { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(249,248,245,.5); margin-bottom: 14px; }
.news-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--paper); line-height: 1.3; margin-bottom: 14px; }
.news-card:first-child .news-title { font-size: 28px; }
.news-excerpt { font-size: 14px; line-height: 1.8; color: rgba(249,248,245,.7); margin-bottom: 20px; }
.news-link { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap .25s; }
.news-link:hover { gap: 12px; }

/* ═══════════════════════════════
   COLABORĂRI
═══════════════════════════════ */
.colab-hero { padding: 140px 0 80px; background: var(--black); }
.colab-hero .h2 { margin-top: 16px; }
.colab-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; padding-bottom: 120px; }
.colab-intro { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.4; margin: 20px 0 28px; color: var(--paper); }
.colab-text { font-size: 15px; line-height: 1.9; color: rgba(249,248,245,.8); margin-bottom: 20px; }
.colab-types { list-style: none; margin-top: 36px; border-top: 1px solid rgba(249,248,245,.07); padding-top: 28px; }
.colab-types li { padding: 14px 0; border-bottom: 1px solid rgba(249,248,245,.05); font-size: 14px; color: rgba(249,248,245,.85); display: flex; align-items: center; }
.colab-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(249,248,245,.05); margin-top: 36px; }
.colab-stat { background: var(--black); padding: 28px 24px; text-align: center; }
.colab-stat-n { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--paper); line-height: 1; margin-bottom: 6px; }
.colab-stat-l { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(249,248,245,.6); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer { background: var(--off); border-top: 1px solid rgba(249,248,245,.05); padding: 60px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.foot-logo { font-family: var(--serif); font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--paper); margin-bottom: 12px; display: block; }
.foot-tagline { font-size: 12px; line-height: 1.7; color: rgba(249,248,245,.75); }
.foot-col h4 { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(249,248,245,.65); margin-bottom: 16px; font-weight: 500; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 13px; color: rgba(249,248,245,.75); text-decoration: none; transition: color .25s; }
.foot-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(249,248,245,.05); flex-wrap: wrap; gap: 12px; }
.foot-firma { font-size: 11px; color: rgba(249,248,245,.65); line-height: 1.7; }
.foot-copy { font-size: 11px; color: rgba(249,248,245,.6); }

/* ═══════════════════════════════
   HAMBURGER / MOBILE
═══════════════════════════════ */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--paper); transition: all .35s cubic-bezier(.4,0,.2,1); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }
.mobile-menu { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: rgba(8,8,8,.97); backdrop-filter: blur(20px); z-index: 699; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 22px; font-weight: 400; color: rgba(249,248,245,.88); text-decoration: none; padding: 14px 0; letter-spacing: -.01em; transition: color .25s; display: block; text-align: center; width: 100%; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--paper); }
.mobile-menu a[data-page="abo"] { color: var(--gold); }
.mobile-menu .mobile-cta { margin-top: 24px; background: var(--paper); color: var(--black); font-family: var(--sans); font-size: 13px; font-weight: 500; padding: 12px 40px; border-radius: 980px; letter-spacing: .04em; }

@media (max-width: 900px) {
  #nav { padding: 0 24px; height: 64px; }
  .hero-video { background-position: center 10%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .wrap { padding: 0 24px; }
  .despre-grid, .mem-prev-inner, .story-grid,
  .aplica-layout, .s2-grid, .colab-layout { grid-template-columns: 1fr; gap: 48px; }
  .abo-card { position: static; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:first-child { grid-column: auto; grid-template-columns: 1fr; }
  .news-card:first-child .news-img { display: block; margin-bottom: 24px; }
  .press-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .port-card:nth-child(4) { grid-column: auto; aspect-ratio: 3/4; }
  .port-card:nth-child(7) { grid-row: auto; }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(249,248,245,.06); padding: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fld-row { grid-template-columns: 1fr; }
  .s2-pay { position: static; }
  .btn { padding: 14px 32px; font-size: 13px; }
  .btn-white, .btn-gold, .btn-dark, .btn-outline { min-height: 48px; }
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .hero-sub { font-size: 14px; }
  .fld-input, .fld-sel, .fld-area { font-size: 16px; padding: 14px 0; }
  .btn-form { padding: 18px; font-size: 13px; min-height: 52px; }
  .nav-cta { display: none; }
  .stat-item { padding: 28px 16px; }
  .stat-n { font-size: 40px; }
  .mem-prev-inner { gap: 40px; }
  .mp-price { font-size: 44px; }
  .s2-pay { padding: 32px 24px; }
  .abo-card { padding: 36px 24px; }
  .port-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 6000;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(18,18,16,.92); color: #fff;
  border: 1px solid rgba(37,211,102,.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  animation: navFade .6s 2.2s both;
  backdrop-filter: blur(8px);
}
.wa-btn:hover { transform: scale(1.08); border-color: rgba(37,211,102,.6); box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: rgba(8,8,8,.92); color: var(--paper);
  font-size: 11px; letter-spacing: .04em; white-space: nowrap;
  padding: 7px 14px; border-radius: 980px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
@media (max-width: 900px) {
  .wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-tooltip { display: none; }
}

/* ═══════════════════════════════
   LEGAL MODAL
═══════════════════════════════ */
.legal-title { font-family:var(--serif);font-size:32px;font-weight:400;margin-bottom:8px;line-height:1.1; }
.legal-date { font-size:9px;letter-spacing:.3em;text-transform:uppercase;color:var(--g500);margin-bottom:40px;display:block; }
.legal-h2 { font-size:13px;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);margin:32px 0 12px;font-weight:400; }
.legal-p { font-size:13px;line-height:1.85;color:rgba(249,248,245,.45);margin-bottom:14px; }
.legal-p strong { color:rgba(249,248,245,.7);font-weight:400; }

/* ═══════════════════════════════
   GRID ABONAMENT — clasă responsivă
═══════════════════════════════ */
.abo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .abo-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .legal-modal-inner { padding: 40px 24px !important; }
}

/* ═══════════════════════════════
   LANGUAGE TOGGLE
═══════════════════════════════ */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  margin-left: 16px; flex-shrink: 0;
}
.lang-btn {
  font-size: 10px; letter-spacing: .12em; font-weight: 500;
  color: rgba(249,248,245,.45); background: none; border: none;
  cursor: pointer; font-family: var(--sans); padding: 4px 6px;
  transition: color .2s; text-transform: uppercase;
}
.lang-btn.active { color: var(--paper); }
.lang-sep { font-size: 10px; color: rgba(249,248,245,.2); }
@media (max-width: 900px) { .lang-toggle { margin-left: 8px; } }

/* ═══════════════════════════════
   ABONAMENT — CANCEL POLICY
═══════════════════════════════ */
.cancel-policy {
  margin-top: 24px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(249,248,245,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.cp-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(249,248,245,.75);
  line-height: 1.6;
}
.cp-check {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════
   COOKIE BANNER
═══════════════════════════════ */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 7000;
  background: rgba(8,8,8,.97);
  border-top: 1px solid rgba(249,248,245,.08);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cb-text {
  font-size: 13px;
  color: rgba(249,248,245,.72);
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}
.cb-text a { color: var(--gold); text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }
.cb-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cb-reject {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid rgba(249,248,245,.18);
  color: rgba(249,248,245,.72);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  border-radius: 980px;
  transition: all .2s;
  white-space: nowrap;
}
.cb-reject:hover { border-color: rgba(249,248,245,.4); color: var(--paper); }
.cb-accept {
  padding: 10px 22px;
  background: var(--gold);
  border: none;
  color: #080808;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 600;
  cursor: pointer;
  border-radius: 980px;
  transition: all .2s;
  white-space: nowrap;
}
.cb-accept:hover { background: var(--gold-lt); }
@media (max-width: 600px) {
  #cookieBanner { padding: 16px 20px; }
  .cb-btns { width: 100%; }
  .cb-reject, .cb-accept { flex: 1; text-align: center; justify-content: center; }
}

/* ═══════════════════════════════
   DESIGN REFRESH — polish editorial
═══════════════════════════════ */
::selection { background: rgba(201,169,110,.85); color: #080808; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #2a2924; border-radius: 8px; border: 2px solid #080808; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dk); }
a:focus-visible, button:focus-visible { outline: 1px solid rgba(201,169,110,.7); outline-offset: 3px; }

.h2 em, .h3 em {
  background: linear-gradient(115deg, var(--gold-lt) 0%, var(--gold) 45%, var(--gold-dk) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.dp-left .h2 em, .abo-hero .h2 em, .press-section .h2 em {
  background: linear-gradient(115deg, var(--gold) 0%, var(--gold-dk) 55%, #7a6138 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.btn, .btn-pay, .btn-form { position: relative; overflow: hidden; }
.btn::before, .btn-pay::before, .btn-form::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -75%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-22deg); transition: left .65s var(--ease); pointer-events: none;
}
.btn:hover::before, .btn-pay:hover::before, .btn-form:hover::before { left: 125%; }
.btn-gold:hover, .btn-pay:hover { box-shadow: 0 10px 34px rgba(201,169,110,.35); }
.btn-white:hover, .btn-form:hover, .nav-cta:hover { box-shadow: 0 10px 34px rgba(249,248,245,.18); }
.btn:active, .btn-pay:active, .btn-form:active { transform: scale(.97); }

#nav.scrolled { box-shadow: 0 1px 0 rgba(201,169,110,.10), 0 14px 44px rgba(0,0,0,.45); }
.nav-logo img { transition: opacity .3s; }
.nav-logo:hover img { opacity: .8; }
.mobile-menu a:hover { color: var(--gold-lt); }

.rv, .rv-l, .rv-r { filter: blur(7px); transition: opacity .95s var(--ease), transform .95s var(--ease), filter .95s var(--ease); }
.rv.up, .rv-l.up, .rv-r.up { filter: blur(0); }

.mem-prev-right, .abo-card, .s2-pay {
  position: relative;
  transition: opacity .95s var(--ease), filter .95s var(--ease), transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.mem-prev-right::before, .abo-card::before, .s2-pay::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.55), transparent);
}
.mem-prev-right:hover, .abo-card:hover, .s2-pay:hover {
  transform: translateY(-6px); border-color: rgba(201,169,110,.30);
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}

.ben-item { transition: opacity .95s var(--ease), transform .95s var(--ease), filter .95s var(--ease), padding-left .35s var(--ease), border-color .35s; }
.ben-item:hover { padding-left: 10px; border-bottom-color: rgba(201,169,110,.25); }
.ben-icon { transition: background .35s, border-color .35s, transform .35s var(--ease); }
.ben-item:hover .ben-icon { background: rgba(201,169,110,.12); border-color: rgba(201,169,110,.45); transform: rotate(-6deg) scale(1.05); }

.news-card { transition: opacity .95s var(--ease), filter .95s var(--ease), transform .55s var(--ease), background .3s, border-color .3s, box-shadow .55s var(--ease); }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.45); border-color: rgba(201,169,110,.22); }
.news-img img { transition: transform .9s var(--ease); }
.news-card:hover .news-img img { transform: scale(1.06); }

.press-card { transition: opacity .95s var(--ease), filter .95s var(--ease), transform .45s var(--ease), background .3s, box-shadow .45s var(--ease); }
.press-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(8,8,8,.12); }

a.seen-item { text-decoration: none; }
.seen-item:hover { color: var(--gold-lt); }

.stat-n { transition: color .4s, text-shadow .4s; }
.stat-item:hover .stat-n { color: var(--gold-lt); text-shadow: 0 0 30px rgba(201,169,110,.25); }
.stat-l { transition: color .4s; }
.stat-item:hover .stat-l { color: var(--gold); }

.faq-q:hover .faq-icon { border-color: rgba(201,169,110,.5); background: rgba(201,169,110,.08); }
.faq-item.open { border-bottom-color: rgba(201,169,110,.3); }
.pf-btn:hover { border-color: rgba(201,169,110,.5); color: var(--gold-lt); }
.pf-btn.on { background: rgba(201,169,110,.12); border-color: rgba(201,169,110,.55); color: var(--gold-lt); }

.foot-col a { position: relative; transition: color .25s, padding-left .3s var(--ease); }
.foot-col a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.foot-col a:hover { color: var(--gold-lt); padding-left: 16px; }
.foot-col a:hover::before { width: 10px; }

.wa-btn::after { content: ''; position: absolute; inset: -7px; border-radius: 50%; border: 1px solid rgba(201,169,110,.45); animation: waPulse 3s ease-out infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(.85); opacity: 0; } 35% { opacity: .8; } 100% { transform: scale(1.22); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-l, .rv-r { filter: none; }
  .wa-btn::after { animation: none; display: none; }
  .btn::before, .btn-pay::before, .btn-form::before { display: none; }
}

/* ═══════════════════════════════
   TIPOGRAFIE EDITORIALĂ — Bodoni Moda (Didone de revistă) + Jost (geometric Futura)
═══════════════════════════════ */
body { letter-spacing: .01em; }
.h1, .hero-title { font-weight: 400; letter-spacing: 0; font-optical-sizing: auto; }
.h1 { line-height: .98; }
.h2 { font-weight: 400; letter-spacing: 0; }
.h3 { font-weight: 400; }
/* Cifre — DM Serif Display: didonă de afiș cu trăsături solide, perfect lizibilă pe negru */
.stat-n, .mp-price, .ac-amount, .sp-amount, .colab-stat-n {
  font-family: 'DM Serif Display', var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: normal;
}
.news-title, .port-name { font-weight: 400; }
.abo-card { scroll-margin-top: 92px; }
.ld-logo { letter-spacing: .34em; }

.btn, .btn-pay, .btn-form, .nav-cta { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; }
.nav-links a { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
