:root {
  --navy:          #07101e;
  --navy-card:     #0c1829;
  --royal:         #1e3a8a;
  --royal-mid:     #1d4ed8;
  --royal-light:   #3b6fd4;
  --amber:         #b45309;
  --amber-light:   #d97706;
  --amber-gold:    #f59e0b;
  --crimson:       #991b1b;
  --crimson-light: #dc2626;
  --green:         #166534;
  --green-light:   #16a34a;
  --slate-bg:      #f1f5f9;
  --slate-dark:    #1e293b;
  --slate-mid:     #475569;
  --text:          #0f172a;
  --white:         #ffffff;
  --announce-h:    38px;
  --nav-h:         66px;
  --ticker-h:      82px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR — 100k simpatizanți
══════════════════════════════════════════ */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1300;
  height: var(--announce-h);
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 50%, var(--amber) 100%);
  background-size: 200% 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem; font-size: 0.76rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.1px; padding: 0 1.5rem; overflow: hidden; flex-wrap: nowrap;
}
.ann-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.85); flex-shrink: 0;
  animation: dotPulse 2.2s ease-in-out infinite;
}
.ann-link {
  color: var(--white); font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5); white-space: nowrap;
  transition: border-color 0.2s; flex-shrink: 0;
}
.ann-link:hover { border-color: var(--white); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: var(--announce-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(7, 16, 30, 0.95);
  backdrop-filter: blur(18px) saturate(1.4);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(7,16,30,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo-mark { width: 30px; height: 30px; }
.nav-logo-text { font-size: 1.05rem; font-weight: 900; letter-spacing: 3px; color: var(--white); }
.nav-logo-text span { color: var(--amber-gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.79rem; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.2s; padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); border-bottom-color: var(--amber-gold); }

.nav-cta {
  background: var(--amber); color: var(--white);
  padding: 0.52rem 1.4rem; border-radius: 4px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(180,83,9,0.35);
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(180,83,9,0.5); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding-top: calc(var(--announce-h) + var(--nav-h) + var(--ticker-h) + 70px);
  padding-bottom: 90px;
  padding-left: 5%; padding-right: 5%;

  background:
    linear-gradient(to bottom,
      rgba(7,16,30,0.78)  0%,
      rgba(7,16,30,0.44) 38%,
      rgba(7,16,30,0.60) 65%,
      rgba(7,16,30,0.95) 100%
    ),
    linear-gradient(135deg, rgba(180,83,9,0.32) 0%, rgba(7,16,30,0.05) 58%),
    radial-gradient(ellipse 70% 60% at 12% 82%, rgba(245,158,11,0.15) 0%, transparent 65%),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
}

#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 250px;
  mix-blend-mode: overlay; opacity: 0.5;
}

#heroCanvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
}

.hero-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 1;
  background: linear-gradient(90deg, transparent 0%, var(--royal-mid) 30%, var(--amber-gold) 70%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}

.hero-brand {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-bottom: 2.4rem;
}
.hero-brand-mark { width: 52px; height: 52px; }
.hero-brand-name {
  font-size: 1.35rem; font-weight: 900; letter-spacing: 5px;
  color: var(--white); text-align: left; line-height: 1;
}
.hero-brand-name span { color: var(--amber-gold); }
.hero-brand-sub {
  font-size: 0.65rem; color: rgba(255,255,255,0.72);
  letter-spacing: 2.5px; text-transform: uppercase; margin-top: 0.25rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  padding: 0.42rem 1.15rem; border-radius: 3px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.8rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-gold);
  box-shadow: 0 0 6px var(--amber-gold);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.8)} }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5);
}
.hero-title .t-amber {
  color: var(--amber-gold);
  white-space: nowrap;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}
.hero-title .t-grad {
  color: #ffffff;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.9vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 0 auto 2.4rem;
  line-height: 1.8;
}

/* ── Hero 5 piloni ── */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 0 auto 2rem;
  max-width: 100%;
}
.hero-pillar {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.85rem 0.9rem;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: background 0.22s, border-color 0.22s;
}
.hero-pillar:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.5);
}
.hp-icon {
  font-size: 1.2rem; flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(180,83,9,0.18);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 9px;
}
.hp-title {
  font-size: 0.82rem; font-weight: 800;
  color: var(--amber-gold); line-height: 1.2; margin-bottom: 0.25rem;
}
.hp-sub {
  font-size: 0.72rem; color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .hero-pillars { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
}
@media (max-width: 768px) {
  .hero-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-pillars { grid-template-columns: 1fr; }
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 3.5rem;
}
.btn-primary {
  background: var(--amber); color: var(--white);
  padding: 0.95rem 2.5rem; border-radius: 4px;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: all 0.22s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(180,83,9,0.4);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(180,83,9,0.55); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.95rem 2.3rem; border-radius: 4px;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.22s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }

.hero-stats-bar {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hstat {
  flex: 1; min-width: 140px; max-width: 220px;
  padding: 0 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-size: 2.1rem; font-weight: 900; line-height: 1;
  color: var(--amber-gold);
  font-variant-numeric: tabular-nums;
}
.hstat-num.danger { color: #fca5a5; }
.hstat-num.cyan   { color: #67e8f9; }
.hstat-label {
  font-size: 0.68rem; color: rgba(255,255,255,0.68);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-top: 0.3rem; line-height: 1.45;
}
.hstat-sub {
  font-size: 0.68rem; color: var(--amber-gold);
  font-weight: 600; margin-top: 0.15rem; opacity: 0.85;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.28);
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer;
  animation: scrollBounce 2.6s ease-in-out infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.6); }
@keyframes scrollBounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%    { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════ */
section { padding: 88px 5%; }
.section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--royal-mid); margin-bottom: 0.7rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  font-weight: 900; color: var(--text); line-height: 1.14;
  margin-bottom: 0.9rem;
}
.section-lead {
  font-size: 1.02rem; color: var(--slate-mid); max-width: 680px; line-height: 1.78;
  margin-bottom: 2.8rem;
}

/* ══════════════════════════════════════════
   PROIECTE — GRID 2×3
══════════════════════════════════════════ */
#proiecte { background: var(--navy); }
#proiecte .section-tag { color: var(--amber-gold); }
#proiecte .section-title { color: var(--white); }
#proiecte .section-lead { color: rgba(255,255,255,0.75); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1100px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .projects-grid { grid-template-columns: 1fr; } }

.pcard {
  display: flex; flex-direction: column;
  background: var(--navy-card);
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  border-color: rgba(180,83,9,0.35);
}
.pcard-img {
  background-size: cover; background-position: center;
  position: relative; min-height: 190px;
}
.pcard-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,24,41,0.1) 0%, rgba(12,24,41,0.55) 100%);
}
.pcard-num-badge {
  position: absolute; top: 1rem; left: 1.4rem; z-index: 1;
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.12); letter-spacing: -2px;
  pointer-events: none;
}
.pcard-cat {
  position: absolute; bottom: 1.2rem; left: 1.4rem; z-index: 1;
  background: var(--amber); color: var(--white);
  padding: 0.32rem 0.9rem; border-radius: 3px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(180,83,9,0.45);
}
.pcard-body {
  background: var(--navy-card); padding: 1.8rem 2rem;
  display: flex; flex-direction: column; flex: 1;
}
.pcard-title {
  font-size: 1.15rem; font-weight: 800;
  color: var(--amber-gold); line-height: 1.25; margin-bottom: 0.7rem;
}
.pcard-lead {
  font-size: 0.88rem; color: rgba(255,255,255,0.72);
  line-height: 1.6; margin-bottom: 0.75rem; font-weight: 500;
}
.pcard-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  line-height: 1.72; margin-bottom: 1.2rem;
}
.pcard-items { list-style: none; margin-top: auto; }
.pcard-items li {
  font-size: 0.8rem; color: rgba(255,255,255,0.72); padding: 0.32rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 1.2rem; position: relative;
}
.pcard-items li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-size: 0.72rem; }

/* ══════════════════════════════════════════
   CINE SUNTEM
══════════════════════════════════════════ */
#cine-suntem { background: #09132a; }
#cine-suntem .section-tag   { color: var(--amber-gold); }
#cine-suntem .section-title { color: var(--white); }
#cine-suntem .section-lead  { color: rgba(255,255,255,0.75); }
.cine-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 0.5rem;
}
.cine-photo-wrap {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.cine-photo-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.55s ease;
}
.cine-photo-wrap:hover .cine-photo-bg { transform: scale(1.04); }
.cine-quote {
  font-size: 1.18rem; font-weight: 600; line-height: 1.68;
  color: var(--white); margin-bottom: 1.5rem;
  border-left: 3px solid var(--amber); padding-left: 1.4rem;
  font-style: italic;
}
.cine-desc { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.2rem; }
.cine-profiles {
  display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 0.6rem;
}
.cine-profile {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.1);
}
.cine-profile-icon { font-size: 1.1rem; }

/* ══════════════════════════════════════════
   DIFERENTIATORI — strip
══════════════════════════════════════════ */
.differentiators-strip {
  padding: 0 !important;
  background: var(--navy);
  border-bottom: 2px solid rgba(180,83,9,0.35);
}
.diff-inner {
  display: flex; align-items: stretch;
}
.diff-item {
  flex: 1; padding: 3rem 2.8rem; text-align: center;
  position: relative; transition: background 0.25s;
}
.diff-item:hover { background: rgba(255,255,255,0.03); }
.diff-icon { font-size: 2.6rem; margin-bottom: 0.9rem; display: block; }
.diff-title {
  font-size: 1.08rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.6rem; line-height: 1.28;
}
.diff-title span { color: var(--amber-gold); }
.diff-text {
  font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.68;
  max-width: 290px; margin: 0 auto;
}
.diff-divider {
  width: 1px; background: rgba(255,255,255,0.08);
  flex-shrink: 0; margin: 2.2rem 0;
}

/* ══════════════════════════════════════════
   PROBLEMS
══════════════════════════════════════════ */
#probleme { background: var(--navy); }
#probleme .section-tag   { color: var(--amber-gold); }
#probleme .section-title { color: var(--white); }
#probleme .section-lead  { color: rgba(255,255,255,0.75); }
.problems-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}
.problem-card {
  background: var(--navy-card); border-radius: 10px;
  padding: 1.8rem; border-left: 3px solid var(--crimson-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.35);
  transition: transform 0.22s, box-shadow 0.22s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.5); }
.problem-card.gold { border-left-color: var(--amber); }
.problem-card.blue { border-left-color: var(--royal-mid); }
.problem-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.problem-title { font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 0.55rem; }
.problem-text { font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.72; }
.problem-data {
  margin-top: 1rem; padding: 0.6rem 0.9rem;
  background: rgba(255,255,255,0.05); border-radius: 5px;
  font-size: 0.78rem; font-weight: 700; color: var(--crimson-light);
}
.problem-card.gold .problem-data { color: var(--amber-gold); }
.problem-card.blue .problem-data { color: #93c5fd; }

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-section {
  position: fixed;
  top: calc(var(--announce-h) + var(--nav-h));
  left: 0; right: 0;
  z-index: 950;
  background: linear-gradient(90deg, #0f1f3d 0%, #1a3a72 40%, #0f1f3d 100%);
  border-top: 3px solid var(--amber-gold);
  border-bottom: 3px solid var(--amber-gold);
  box-shadow: 0 4px 32px rgba(245,158,11,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}
.ticker-wrap {
  height: 76px;
  overflow: hidden;
  display: flex; align-items: center;
  cursor: pointer;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: tickerScroll 260s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 1.12rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
  padding: 0 3.2rem;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--amber-gold); }
.ticker-item.active-desc { color: var(--amber-gold); }
.ticker-item::after {
  content: '◆';
  position: absolute; right: 0;
  color: var(--amber-gold);
  font-size: 0.7rem;
  top: 50%; transform: translateY(-50%);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Ticker description panel ── */
.ticker-desc {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: rgba(10, 22, 48, 0.98);
  border-top: 1px solid rgba(245,158,11,0.25);
  padding: 0 5%;
  position: relative;
}
.ticker-desc.open {
  max-height: 120px;
  padding: 0.9rem 5%;
}
.ticker-desc-close {
  position: absolute; top: 0.6rem; right: 1.2rem;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 0.85rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.ticker-desc-close:hover { color: var(--amber-gold); }
.ticker-desc-label {
  display: block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber-gold);
  margin-bottom: 0.35rem;
}
.ticker-desc-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.78);
  line-height: 1.6; max-width: 860px;
}

/* ══════════════════════════════════════════
   POVARA FISCALA
══════════════════════════════════════════ */
#povara { background: var(--navy-card); color: var(--white); }
#povara .section-tag { color: var(--amber-gold); }
#povara .section-title { color: var(--white); }
#povara .section-lead { color: rgba(255,255,255,0.75); }
.tax-visual {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 3.5rem; margin-top: 1rem;
}
.tax-chart { position: relative; width: 210px; height: 210px; }
.tax-chart svg { width: 100%; height: 100%; }
.tax-chart-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.tax-chart-label .big { font-size: 2.2rem; font-weight: 900; color: var(--amber-gold); }
.tax-chart-label .small {
  font-size: 0.68rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1px;
}
.tax-breakdown { display: flex; flex-direction: column; gap: 0.9rem; max-width: 440px; }
.tax-row-label {
  font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.8); margin-bottom: 0.2rem;
}
.tax-row { display: flex; align-items: center; gap: 1rem; }
.tax-name { min-width: 130px; font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.tax-bar-wrap { flex: 1; height: 30px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.tax-bar { height: 100%; border-radius: 4px; display: flex; align-items: center; padding-left: 10px; font-size: 0.78rem; font-weight: 700; }
.tax-bar.state  { background: linear-gradient(90deg, var(--crimson), #f87171); color: white; }
.tax-bar.tva    { background: linear-gradient(90deg, var(--amber), var(--amber-gold)); color: white; }
.tax-bar.worker { background: linear-gradient(90deg, var(--green), #4ade80); color: white; }
.tax-insight {
  margin-top: 1.2rem; padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 7px; border-left: 3px solid var(--amber-gold);
  font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.75;
}
.tax-insight strong { color: var(--amber-gold); }
.tax-insight b { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════════
   DATORIE — photo background
══════════════════════════════════════════ */
#datorie {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,16,30,0.91) 0%, rgba(12,24,41,0.86) 100%),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  color: var(--white);
}
#datorie .section-tag { color: var(--amber-gold); }
#datorie .section-title { color: var(--white); }
.debt-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.debt-number {
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 900;
  color: #fca5a5; line-height: 1;
  text-shadow: 0 0 40px rgba(239,68,68,0.3);
}
.debt-number span { font-size: 1.4rem; color: rgba(255,255,255,0.45); }
.debt-context { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin-top: 1.2rem; }
.debt-context strong { color: var(--white); }
.debt-timeline { display: flex; flex-direction: column; gap: 0.9rem; }
.debt-timeline-title {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.3rem;
}
.timeline-item {
  display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
}
.timeline-year { min-width: 52px; font-weight: 800; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.timeline-bar-wrap { flex: 1; height: 16px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.timeline-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--royal-mid), #fca5a5); }
.timeline-value { min-width: 88px; text-align: right; font-weight: 700; font-size: 0.8rem; color: #fca5a5; }

/* ══════════════════════════════════════════
   SOLUTII
══════════════════════════════════════════ */
#solutii { background: #09132a; }
#solutii .section-tag   { color: var(--amber-gold); }
#solutii .section-title { color: var(--white); }
#solutii .section-lead  { color: rgba(255,255,255,0.75); }
.solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.4rem;
}
.solution-card {
  border-radius: 10px; padding: 1.9rem;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.22s; position: relative; overflow: hidden;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--royal-mid), var(--amber));
}
.solution-card:hover { border-color: rgba(29,78,216,0.4); box-shadow: 0 10px 36px rgba(0,0,0,0.5); transform: translateY(-4px); }
.solution-number { font-size: 2.6rem; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 0.5rem; }
.solution-title { font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 0.65rem; }
.solution-text { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.72; }
.solution-tag {
  display: inline-block; margin-top: 1rem;
  background: rgba(29,78,216,0.18); color: #93c5fd;
  padding: 0.25rem 0.8rem; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  border: 1px solid rgba(29,78,216,0.25);
}

/* ══════════════════════════════════════════
   STRUCTURA
══════════════════════════════════════════ */
#structura { background: var(--navy); }
#structura .section-tag   { color: var(--amber-gold); }
#structura .section-title { color: var(--white); }
#structura .section-lead  { color: rgba(255,255,255,0.75); }
.structure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.structure-text { display: flex; flex-direction: column; gap: 1.4rem; }
.struct-item { display: flex; gap: 1rem; align-items: flex-start; }
.struct-icon { font-size: 1.6rem; min-width: 40px; }
.struct-title { font-weight: 800; font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 0.35rem; }
.struct-desc { font-size: 0.85rem; color: rgba(255,255,255,0.70); line-height: 1.68; }

/* ── Org Diagram — redesign ── */
.org-diagram {
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
}

/* Stratul cetățeni */
.od-citizens {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-gold) 100%);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 6px 28px rgba(180,83,9,0.35);
  position: relative; overflow: hidden;
}
.od-citizens::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.od-citizens-icon { font-size: 2.2rem; flex-shrink: 0; }
.od-citizens-body { flex: 1; }
.od-citizens-title {
  font-size: 1rem; font-weight: 900; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase; line-height: 1.2;
}
.od-citizens-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.82);
  margin-top: 0.25rem; line-height: 1.5;
}
.od-citizens-tags {
  display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 0.7rem;
  width: 100%;
}
.od-citizens-tags span {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 20px; letter-spacing: 0.5px;
}

/* Flow arrows */
.od-flow {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 1.5rem; justify-content: center;
}
.od-flow-line {
  flex: 1; height: 2px; max-width: 60px;
  background: linear-gradient(90deg, transparent, var(--royal-mid));
  position: relative;
}
.od-flow-line:last-child {
  background: linear-gradient(90deg, var(--royal-mid), transparent);
}
.od-flow-line::after {
  content: '▼';
  position: absolute; bottom: -14px; right: -4px;
  font-size: 0.65rem; color: var(--royal-mid);
  animation: flowPulse 1.8s ease-in-out infinite;
}
.od-flow-line:last-child::after { display: none; }
.od-flow-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--royal-mid);
  white-space: nowrap;
}
@keyframes flowPulse { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0.3;transform:translateY(3px)} }

/* Stratul consiliu + specialiști */
.od-bodies {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.7rem; align-items: stretch;
}
.od-body {
  background: var(--navy-card);
  border-radius: 12px; padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center; transition: border-color 0.25s;
}
.od-body:hover { border-color: rgba(29,78,216,0.5); }
.od-body.accent {
  border-color: rgba(245,158,11,0.25);
  background: linear-gradient(135deg, #0c1829 0%, #11213a 100%);
}
.od-body.accent:hover { border-color: rgba(245,158,11,0.6); }
.od-body-icon { font-size: 1.7rem; margin-bottom: 0.5rem; display: block; }
.od-body-title {
  font-size: 0.9rem; font-weight: 800; color: var(--white);
  margin-bottom: 0.4rem; line-height: 1.25;
}
.od-body.accent .od-body-title { color: var(--amber-gold); }
.od-body-sub { font-size: 0.72rem; color: rgba(255,255,255,0.68); line-height: 1.55; }
.od-bodies-sep {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--slate-mid);
  padding: 0 0.3rem;
}

/* Stratul grupuri domeniu */
.od-groups {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.55rem;
}
.od-group {
  background: var(--navy-card);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 9px; padding: 0.75rem 0.8rem;
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.82);
  text-align: center; display: flex; align-items: center;
  justify-content: center; gap: 0.45rem;
  transition: all 0.22s; cursor: default;
}
.od-group:hover {
  border-color: var(--royal-mid);
  box-shadow: 0 3px 14px rgba(29,78,216,0.18);
  transform: translateY(-2px);
}
.od-group span { font-size: 1rem; }

@media (max-width: 900px) {
  .structure-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .od-bodies { grid-template-columns: 1fr; }
  .od-bodies-sep { display: none; }
  .od-groups { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .od-groups { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   EUROPA — photo section
══════════════════════════════════════════ */
#europa {
  position: relative; overflow: hidden; color: var(--white);
  background:
    linear-gradient(to bottom, rgba(7,16,30,0.88) 0%, rgba(14,28,55,0.82) 100%),
    url('https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat fixed;
}
#europa .section-tag { color: var(--amber-gold); }
#europa .section-title { color: var(--white); }
#europa .section-lead { color: rgba(255,255,255,0.75); }
.eu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem; margin-top: 1rem; }
@media (max-width: 1100px) { .eu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .eu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .eu-grid { grid-template-columns: 1fr; } }
.eu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 9px; padding: 1.7rem;
  transition: all 0.22s;
  backdrop-filter: blur(6px);
}
.eu-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.eu-card-icon { font-size: 1.9rem; margin-bottom: 0.75rem; }
.eu-card-title { font-weight: 800; font-size: 0.95rem; color: var(--amber-gold); margin-bottom: 0.55rem; }
.eu-card-text { font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ══════════════════════════════════════════
   ALATURA-TE — photo section
══════════════════════════════════════════ */
#alatura-te {
  position: relative; overflow: hidden;
  color: var(--white); text-align: center;
  background:
    linear-gradient(to bottom, rgba(7,16,30,0.88) 0%, rgba(7,16,30,0.82) 100%),
    url('https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
}
#alatura-te .section-tag { color: var(--amber-gold); }
#alatura-te .section-title { color: var(--white); }
.join-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.join-perks { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; margin: 2.2rem 0; }
.perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.87rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.perk-icon { font-size: 1.1rem; }

.progress-wrap { max-width: 560px; margin: 0 auto 2.5rem; }

.counter-display {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.45rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.counter-num {
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  color: var(--amber-gold); font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.counter-sep {
  font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,0.3);
}
.counter-goal {
  font-size: 1.4rem; font-weight: 800; color: rgba(255,255,255,0.55);
}
.counter-label {
  width: 100%; text-align: center;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px; text-transform: uppercase; margin-top: -0.3rem;
}

.progress-bar { height: 10px; background: rgba(255,255,255,0.08); border-radius: 7px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--royal-mid), var(--amber));
  border-radius: 7px; transition: width 1.6s ease;
}
.progress-caption {
  text-align: center; margin-top: 0.6rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.38);
}

.join-form {
  max-width: 520px; margin: 0 auto;
  display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center;
}
.join-form input {
  flex: 1; min-width: 190px;
  padding: 0.9rem 1.1rem; border-radius: 4px; border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.92rem; background: rgba(255,255,255,0.08);
  color: var(--white); outline: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.join-form input::placeholder { color: rgba(255,255,255,0.35); }
.join-form input:focus {
  background: rgba(255,255,255,0.14);
  border-color: var(--amber-gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}
.btn-join {
  background: var(--amber); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 4px; border: none;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-join:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(180,83,9,0.4); }
.join-note { margin-top: 1rem; font-size: 0.74rem; color: rgba(255,255,255,0.35); }

.input-full { flex: 1 0 100% !important; }

/* ── Specialist toggle ── */
.specialist-toggle {
  max-width: 520px; margin: 1.2rem auto 0;
}
.specialist-check-label {
  display: inline-flex; align-items: center; gap: 0.65rem;
  cursor: pointer; font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 0.7rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.specialist-check-label:hover { border-color: var(--amber-gold); background: rgba(245,158,11,0.06); }
.specialist-check-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--amber-gold); cursor: pointer;
}

/* ── Specialist section (expandable) ── */
.specialist-section {
  max-width: 520px; margin: 0 auto;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.3s ease;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.specialist-section.open {
  max-height: 500px; opacity: 1; margin-top: 0.8rem;
}
.specialist-section-header {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 7px; padding: 0.85rem 1rem;
  text-align: left;
}
.specialist-section-title {
  display: block; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--amber-gold); margin-bottom: 0.25rem;
}
.specialist-section-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.68); line-height: 1.55;
}
.specialist-section select,
.specialist-section textarea {
  width: 100%; padding: 0.85rem 1rem;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.88rem; background: rgba(255,255,255,0.08);
  color: var(--white); outline: none; font-family: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.specialist-section select option { background: var(--navy); color: var(--white); }
.specialist-section select:focus,
.specialist-section textarea:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--amber-gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}
.specialist-section textarea {
  resize: vertical; min-height: 110px; line-height: 1.6;
}
.specialist-section textarea::placeholder { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════
   VIDEO — Hero play button
══════════════════════════════════════════ */
.btn-video {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  padding: 0.88rem 1.8rem; border-radius: 4px;
  font-weight: 600; font-size: 0.86rem; letter-spacing: 0.3px;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: all 0.22s; cursor: pointer; text-decoration: none;
  backdrop-filter: blur(6px);
}
.btn-video:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }
.btn-video-soon {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.35);
  padding: 0.88rem 1.8rem; border-radius: 4px;
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.3px;
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: default; user-select: none;
}
.btn-video-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(180,83,9,0.45);
  transition: transform 0.2s;
}
.btn-video:hover .btn-video-icon { transform: scale(1.12); }

/* ══════════════════════════════════════════
   VIDEO MODAL — lightbox
══════════════════════════════════════════ */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 2500;
  align-items: center; justify-content: center; padding: 1.5rem;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 920px;
  background: #000; border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}
.video-modal-inner video,
.video-modal-inner iframe {
  width: 100%; display: block;
  aspect-ratio: 16/9; border: none; background: #000;
}
.video-modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10;
  background: rgba(0,0,0,0.6); color: var(--white); border: none;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; font-weight: 700;
}
.video-modal-close:hover { background: var(--amber); }
.video-modal-title {
  padding: 1rem 1.4rem;
  background: var(--navy-card);
  font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 0.6rem;
}
.video-modal-title span { color: var(--amber-gold); }

/* ══════════════════════════════════════════
   VIDEO CARDS — in projects section
══════════════════════════════════════════ */
.videos-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.videos-row-title {
  grid-column: 1 / -1;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber-gold); opacity: 0.75;
  margin-bottom: -0.5rem;
}
.video-card {
  background: rgba(255,255,255,0.03);
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.5); border-color: rgba(180,83,9,0.4); }
.video-card-player {
  position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden;
}
.video-card-player video,
.video-card-player iframe {
  width: 100%; height: 100%; display: block; border: none; object-fit: cover;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #080f1d 0%, #0c1829 100%);
  gap: 0.9rem; cursor: pointer; transition: background 0.25s;
}
.video-placeholder:hover { background: linear-gradient(135deg, #0c1829 0%, #122040 100%); }
.vp-play {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  box-shadow: 0 4px 22px rgba(180,83,9,0.55);
  transition: transform 0.22s, box-shadow 0.22s;
}
.video-placeholder:hover .vp-play { transform: scale(1.1); box-shadow: 0 8px 32px rgba(180,83,9,0.75); }
.vp-label {
  font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.7);
  letter-spacing: 0.2px; text-align: center; padding: 0 1.5rem;
}
.vp-hint {
  font-size: 0.68rem; color: rgba(255,255,255,0.25);
  text-align: center; padding: 0 1.5rem; line-height: 1.5;
}
.video-card-meta {
  padding: 1.1rem 1.3rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.video-card-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.05rem; }
.video-card-title { font-size: 0.9rem; font-weight: 700; color: var(--amber-gold); line-height: 1.3; }
.video-card-sub { font-size: 0.74rem; color: rgba(255,255,255,0.38); margin-top: 0.2rem; }

/* ══════════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════════ */
.floating-cta {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 900;
  background: var(--amber); color: var(--white);
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 1.2px; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(180,83,9,0.55), 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(16px) scale(0.95); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
}
.floating-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta:hover { background: var(--amber-light); transform: translateY(-2px) scale(1); box-shadow: 0 8px 32px rgba(180,83,9,0.7); }
@media (max-width: 480px) {
  .floating-cta { bottom: 4.5rem; right: 1rem; padding: 0.75rem 1.4rem; font-size: 0.78rem; }
}

/* ══════════════════════════════════════════
   FAQ — elegant list
══════════════════════════════════════════ */
#faq { background: var(--navy); }
#faq .section-tag  { color: var(--amber-gold); }
#faq .section-title { color: var(--white); }
#faq .section-lead  { color: rgba(255,255,255,0.72); }

.faq-filters {
  display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 2.4rem;
}
.faq-filter {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: all 0.22s; font-family: inherit; letter-spacing: 0.2px;
}
.faq-filter:hover { color: var(--white); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.09); }
.faq-filter.active { background: var(--amber); border-color: var(--amber); color: var(--white); }
.faq-filter-count {
  background: rgba(255,255,255,0.18); border-radius: 50px;
  padding: 0 0.45rem; font-size: 0.68rem; font-weight: 800;
}
.faq-filter.active .faq-filter-count { background: rgba(255,255,255,0.28); }

.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.2rem;
}

.faq-item {
  background: var(--navy-card);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 4px solid var(--amber);
  padding: 1.6rem 1.8rem;
}

.faq-q {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.faq-q-badge {
  flex-shrink: 0; margin-top: 3px;
  font-size: 0.62rem; font-weight: 900; letter-spacing: 1.2px;
  color: var(--amber-gold);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 0.22rem 0.55rem; border-radius: 4px;
}
.faq-q-text {
  font-size: 1.02rem; font-weight: 800;
  color: #ffffff; line-height: 1.4;
}

.faq-a {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.faq-a-badge {
  flex-shrink: 0; margin-top: 3px;
  font-size: 0.62rem; font-weight: 900; letter-spacing: 1.2px;
  color: #93c5fd;
  background: rgba(29,78,216,0.18);
  border: 1px solid rgba(29,78,216,0.35);
  padding: 0.22rem 0.55rem; border-radius: 4px;
}
.faq-a-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.82);
  line-height: 1.82;
}

@media (max-width: 600px) {
  .faq-item { padding: 1.2rem 1.1rem; border-left-width: 3px; }
  .faq-q-text { font-size: 0.96rem; }
  .faq-a-text { font-size: 0.87rem; }
}

/* păstrăm clasele vechi neutilizate fără să strice nimic */
.faq-ei, .faq-ei-hd, .faq-ei-q, .faq-ei-btn, .faq-ei-ans, .faq-tag { all: unset; display: none; }


/* ══════════════════════════════════════════
   FORM 2 PAȘI
══════════════════════════════════════════ */
.step-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.8rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.42); font-weight: 500;
}
.step-badge {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.45);
}
.step-badge.active { background: var(--amber); border-color: var(--amber); color: var(--white); }
.step-badge.done { background: var(--green-light); border-color: var(--green-light); color: var(--white); }
.step-sep { color: rgba(255,255,255,0.2); margin: 0 0.2rem; }
.step2-actions {
  max-width: 520px; margin: 0.8rem auto 0;
  display: flex; gap: 0.8rem; align-items: stretch;
}
.step-back {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5); padding: 0.9rem 1.2rem; border-radius: 4px;
  cursor: pointer; font-size: 0.82rem; transition: all 0.2s; white-space: nowrap;
  font-family: inherit;
}
.step-back:hover { border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.8); }
.step2-submit { flex: 1; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #030810;
  color: rgba(255,255,255,0.35);
  padding: 2.5rem 5%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem;
  font-size: 0.78rem; line-height: 1.8;
}
.footer-brand { font-size: 1.1rem; font-weight: 900; letter-spacing: 4px; color: var(--amber-gold); }
.footer-center { text-align: center; }
.footer-right { text-align: right; }
footer a { color: var(--amber-gold); text-decoration: none; }

/* ══════════════════════════════════════════
   GDPR CONSENT CHECKBOX
══════════════════════════════════════════ */
.gdpr-consent {
  max-width: 520px; margin: 0.8rem auto 0;
}
.gdpr-label {
  display: flex; align-items: flex-start; gap: 0.65rem;
  cursor: pointer; font-size: 0.8rem; color: rgba(255,255,255,0.55);
  line-height: 1.55; text-align: left;
}
.gdpr-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--amber-gold); cursor: pointer;
}
.gdpr-label a { color: var(--amber-gold); text-decoration: underline; }

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 3000;
  background: #0c1829;
  border-top: 2px solid var(--amber);
  padding: 1rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text {
  font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.6; flex: 1;
}
.cookie-text strong { color: var(--white); }
.cookie-text a { color: var(--amber-gold); text-decoration: underline; margin-left: 0.3rem; }
.cookie-actions { display: flex; gap: 0.65rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--amber); color: var(--white);
  padding: 0.55rem 1.4rem; border-radius: 4px; border: none;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px;
  cursor: pointer; transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--amber-light); }
.cookie-btn-reject {
  background: transparent; color: rgba(255,255,255,0.45);
  padding: 0.55rem 1rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; cursor: pointer; transition: all 0.2s;
}
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════
   SOCIAL LINKS — footer
══════════════════════════════════════════ */
.footer-social { display: flex; gap: 0.9rem; justify-content: center; margin-top: 0.5rem; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.35); font-size: 0.76rem; text-decoration: none;
  padding: 0.3rem 0.7rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--amber-gold); border-color: var(--amber-gold); }
.footer-legal {
  margin-top: 0.5rem; font-size: 0.72rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal a:hover { color: var(--amber-gold); }

/* ══════════════════════════════════════════
   VIZIUNE
══════════════════════════════════════════ */
#viziune { background: var(--navy); }
#viziune .section-tag   { color: var(--amber-gold); }
#viziune .section-title { color: var(--white); }
#viziune .section-lead  { color: rgba(255,255,255,0.75); }

.vision-contrast {
  display: grid; grid-template-columns: 1fr auto 1fr;
  margin-bottom: 2.5rem;
  background: var(--navy-card);
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.vision-col { padding: 2.5rem 2.8rem; }
.vision-col-left { border-right: 1px solid rgba(255,255,255,0.06); }

.vision-col-header {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1.6rem;
}
.vision-col-indicator {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.vision-col-indicator.bad  { background: var(--crimson-light); box-shadow: 0 0 6px var(--crimson-light); }
.vision-col-indicator.good { background: var(--green-light);   box-shadow: 0 0 6px var(--green-light); }

.vision-items { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.4rem; }
.vision-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px; border: 1px solid rgba(220,38,38,0.12);
  transition: border-color 0.2s;
}
.vision-item:hover { border-color: rgba(220,38,38,0.3); }
.vi-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.vi-title { font-size: 0.87rem; font-weight: 800; color: rgba(255,255,255,0.85); margin-bottom: 0.2rem; }
.vi-text  { font-size: 0.79rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

.vision-stat {
  padding: 0.9rem 1rem;
  background: rgba(180,83,9,0.08);
  border-radius: 8px; border-left: 3px solid var(--amber);
  font-size: 0.8rem; color: rgba(255,255,255,0.72); line-height: 1.7; font-style: italic;
}

.vision-vs {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 0;
  font-size: 1.3rem; font-weight: 900; color: rgba(255,255,255,0.1);
  writing-mode: vertical-rl; letter-spacing: 10px; min-width: 44px;
  border-left: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.vision-who-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.4rem; }
.vision-who-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.9rem 1rem;
  background: rgba(29,78,216,0.07);
  border-radius: 8px; border: 1px solid rgba(29,78,216,0.18);
  transition: border-color 0.2s;
}
.vision-who-item:hover { border-color: rgba(29,78,216,0.4); }
.vision-who-item > span { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.vision-who-item strong { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.85); margin-bottom: 0.2rem; }
.vision-who-item p { font-size: 0.79rem; color: rgba(255,255,255,0.68); line-height: 1.65; margin: 0; }

.vision-who-answer {
  padding: 1.2rem 1.2rem;
  background: linear-gradient(135deg, rgba(29,78,216,0.14) 0%, rgba(180,83,9,0.1) 100%);
  border-radius: 10px; border: 1px solid rgba(29,78,216,0.25);
}
.vision-who-answer-title {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--amber-gold); margin-bottom: 0.6rem;
}
.vision-who-answer p { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.72; margin: 0; }

.vision-integrity {
  background: var(--navy-card);
  border: 1px solid rgba(29,78,216,0.2); border-left: 4px solid var(--royal-mid);
  border-radius: 12px; padding: 1.8rem 2rem;
}
.vision-integrity-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.vision-integrity-header span { font-size: 1.5rem; }
.vision-integrity-header strong { font-size: 1rem; color: var(--white); }
.vision-integrity p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0; }

@media (max-width: 900px) {
  .vision-contrast { grid-template-columns: 1fr; }
  .vision-col-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .vision-vs {
    writing-mode: horizontal-tb; padding: 0.7rem 2.8rem;
    letter-spacing: 6px; min-width: auto;
    border: none; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

/* ══════════════════════════════════════════
   MOBILE NAV — hamburger + slide-in panel
══════════════════════════════════════════ */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; width: 38px; height: 38px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
  position: fixed; top: 0; right: -100%; z-index: 1200;
  width: min(300px, 82vw); height: 100%;
  background: #07101e;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 50px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.mobile-nav-panel.open { right: 0; }

.mobile-nav-header {
  padding: calc(var(--announce-h) + var(--nav-h) + 0.8rem) 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--amber-gold);
}
.mobile-nav-links { flex: 1; padding: 0.4rem 0; }
.mobile-nav-links a {
  display: block; padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:active { color: var(--amber-gold); background: rgba(255,255,255,0.03); }
.mobile-nav-cta {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-cta a {
  display: block; text-align: center;
  background: var(--amber); color: var(--white);
  padding: 0.9rem; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s;
}
.mobile-nav-cta a:active { background: var(--amber-light); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .debt-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .structure-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cine-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --ticker-h: 64px; }

  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 60px 4%; }

  /* Hero */
  .hero-title .t-amber { white-space: normal; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats-bar { flex-direction: column; }
  .hstat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1rem; max-width: 100%; }
  .hstat:last-child { border-bottom: none; }

  /* Ticker */
  .ticker-item { padding: 0 2rem; font-size: 0.9rem; }
  .ticker-wrap { height: 64px; }
  .ticker-desc.open { max-height: 220px; padding: 0.9rem 4%; }

  /* Announcement */
  .announcement-bar { font-size: 0.68rem; gap: 0.5rem; padding: 0 1rem; }

  /* Proiecte */
  .pcard-body { padding: 1.4rem 1.2rem; }

  /* Differentiators */
  .diff-inner { flex-direction: column; }
  .diff-divider { width: auto; height: 1px; margin: 0 2rem; }
  .diff-item { padding: 2rem 1.6rem; }

  /* Vision */
  .vision-col { padding: 1.8rem 1.5rem; }

  /* Tax visual */
  .tax-visual { flex-direction: column; gap: 2rem; }

  /* Misc */
  .videos-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
}


@media (max-width: 480px) {
  :root { --announce-h: 0px; }
  .announcement-bar { display: none; }

  section { padding: 50px 4%; }
  .section-title { font-size: 1.55rem; }
  .section-lead { font-size: 0.92rem; }

  /* Hero */
  .hero-pillars { grid-template-columns: 1fr; }

  /* Proiecte */
  .pcard-img { min-height: 200px; }
  .pcard-title { font-size: 1.1rem; }
  .pcard-body { padding: 1.4rem 1.1rem; }
  .pcard-lead { font-size: 0.88rem; }

  /* Cine suntem */
  .cine-quote { font-size: 1rem; }

  /* Datorie */
  .debt-number { font-size: 3rem; }

  /* Join form */
  .join-form { flex-direction: column; }
  .join-form input { min-width: 0; width: 100%; }
  .btn-join { width: 100%; }

  /* Vision */
  .vision-col { padding: 1.4rem 1.1rem; }
  .vision-integrity { padding: 1.4rem 1.2rem; }
}
