/* ============================================================
   TOURIEL — Prezentare Parteneriat Strategic
   Design: Editorial premium, minimal motion
   ============================================================ */

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

:root {
  --navy:       #0a1828;
  --navy-mid:   #122038;
  --navy-card:  #1a2e48;
  --gold:       #c8a84b;
  --gold-light: #e6d29e;
  --gold-dim:   rgba(200,168,75,0.15);
  --cream:      #f8f5ef;
  --off-white:  #eef2f7;
  --white:      #ffffff;
  --text-dark:  #1a2332;
  --text-mid:   #3d5066;
  --text-light: #dde6f0;
  --text-muted: #7a90a8;
  --border-g:   rgba(200,168,75,0.25);
  --border-w:   rgba(255,255,255,0.10);
  --green:      #2a7a52;
  --green-bg:   #e8f5ee;
  --red:        #c0392b;
  --red-bg:     #fdecea;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --r:  8px;
  --rl: 16px;
  --shadow:  0 2px 16px rgba(0,0,0,0.07);
  --shadowm: 0 6px 32px rgba(0,0,0,0.12);
  --shadowd: 0 12px 48px rgba(0,0,0,0.28);

  --mw: 1160px;
  --sp: 96px 24px;
  --spm: 64px 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-g);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-badge.dark {
  color: var(--gold);
  border-color: var(--border-g);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-heading.white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-sub.white { color: var(--text-light); }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10, 24, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 14px 24px;
}

.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--border-g);
  padding: 8px 20px;
  border-radius: 100px;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,24,40,0.92) 0%,
    rgba(10,24,40,0.75) 60%,
    rgba(10,24,40,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-metrics {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-metric-val {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-metric-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.6), transparent);
}

/* ── INTRO STRIP ─────────────────────────────────────────── */
#intro {
  background: var(--navy);
  padding: var(--sp);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--rl);
  pointer-events: none;
}

.intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.pillar-card {
  background: var(--navy-card);
  border: 1px solid var(--border-w);
  border-radius: var(--r);
  padding: 20px;
}

.pillar-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── DIFC HERO BANNER ─────────────────────────────────────── */
#difc-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 55%;
  padding: 120px 24px;
  text-align: center;
}

#difc-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,24,40,0.82);
}

.difc-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.difc-banner-inner .section-heading {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(30px, 5vw, 52px);
}

.difc-banner-inner .section-sub {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
}

/* ── DIFC COMPARISON ─────────────────────────────────────── */
#difc-compare {
  background: var(--cream);
  padding: var(--sp);
}

.compare-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.compare-intro .section-sub { margin: 0 auto; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.compare-card {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadowm);
}

.compare-card-header {
  padding: 28px 32px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.compare-card.romania .compare-card-header {
  background: var(--off-white);
  border-bottom: 1px solid #dde3ec;
}

.compare-card.difc .compare-card-header {
  background: var(--navy);
  border-bottom: 1px solid var(--border-w);
}

.compare-flag {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255,255,255,0.15);
}

.compare-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.compare-card.romania .compare-title { color: var(--text-dark); }
.compare-card.difc .compare-title { color: var(--white); }

.compare-subtitle {
  font-size: 12px;
  margin-top: 2px;
}

.compare-card.romania .compare-subtitle { color: var(--text-muted); }
.compare-card.difc .compare-subtitle { color: rgba(255,255,255,0.5); }

.compare-rows {
  background: var(--white);
}

.compare-card.difc .compare-rows { background: var(--navy-mid); }

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.compare-card.difc .compare-row { border-color: var(--border-w); }

.compare-row:last-child { border-bottom: none; }

.compare-row-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.icon-bad { background: var(--red-bg); color: var(--red); }
.icon-good { background: var(--green-bg); color: var(--green); }
.icon-star { background: var(--gold-dim); color: var(--gold); }

.compare-row-text {
  font-size: 14px;
  line-height: 1.5;
}

.compare-card.romania .compare-row-text { color: var(--text-mid); }
.compare-card.difc .compare-row-text { color: rgba(255,255,255,0.8); }

.compare-row-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.compare-card.romania .compare-row-text strong { color: var(--text-dark); }
.compare-card.difc .compare-row-text strong { color: var(--white); }

/* Cost Box */
.cost-box {
  background: var(--navy);
  border-radius: var(--rl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadowd);
}

.cost-box-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cost-box-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cost-items { display: flex; flex-direction: column; gap: 14px; }

.cost-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-card);
  border: 1px solid var(--border-w);
  border-radius: var(--r);
  padding: 14px 18px;
}

.cost-item-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.cost-item-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
}

.cost-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  border-top: 1px solid var(--border-g);
  margin-top: 6px;
}

.cost-total-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.cost-total-value {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

/* ── SAFE ────────────────────────────────────────────────── */
#safe {
  background: var(--white);
  padding: var(--sp);
}

.safe-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.safe-intro .section-sub { margin: 0 auto; text-align: center; }

.safe-diagram {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
  overflow-x: auto;
}

.safe-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.safe-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 36px;
  font-size: 20px;
  color: var(--gold);
  z-index: 2;
}

.safe-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.safe-step-card {
  background: var(--cream);
  border: 1px solid #dde3ec;
  border-radius: var(--r);
  padding: 20px 18px;
  text-align: center;
  flex: 1;
  width: 100%;
}

.safe-step-emoji {
  font-size: 28px;
  margin-bottom: 10px;
}

.safe-step-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.safe-step-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.55;
}

.safe-step.highlight .safe-step-card {
  background: var(--navy);
  border-color: var(--border-g);
}

.safe-step.highlight .safe-step-title { color: var(--white); }
.safe-step.highlight .safe-step-desc { color: rgba(255,255,255,0.65); }
.safe-step.highlight .safe-step-num { background: var(--gold); color: var(--navy); }

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

.safe-term {
  background: var(--cream);
  border-radius: var(--r);
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
}

.safe-term-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.safe-term-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.safe-term-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── PROJECT ─────────────────────────────────────────────── */
#proiect {
  background: var(--navy);
  padding: var(--sp);
}

.proiect-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--navy-card);
  border: 1px solid var(--border-w);
  border-radius: var(--r);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.feature-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.feature-text strong { color: var(--white); font-weight: 600; }

.proiect-image {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-w);
}

.proiect-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* Competitor table */
.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--rl);
  border: 1px solid var(--border-w);
  margin-bottom: 80px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.comp-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-w);
  white-space: nowrap;
}

.comp-table th.highlight-col {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.comp-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-w);
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.comp-table td.highlight-col {
  background: rgba(200,168,75,0.06);
  color: var(--white);
  font-weight: 500;
}

.comp-table tr:last-child td { border-bottom: none; }

.comp-table tr:hover td { background: rgba(255,255,255,0.03); }
.comp-table tr:hover td.highlight-col { background: rgba(200,168,75,0.10); }

.check { color: #4caf7d; font-size: 16px; }
.partial { color: #f5a623; font-size: 16px; }
.no { color: rgba(255,255,255,0.2); font-size: 16px; }

/* AI section */
.ai-section-title {
  text-align: center;
  margin-bottom: 40px;
}

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

.ai-card {
  background: var(--navy-card);
  border: 1px solid var(--border-w);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.ai-card:hover { border-color: var(--border-g); }

.ai-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.ai-card-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ai-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.ai-card-metric {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── MISIUNE ─────────────────────────────────────────────── */
#misiune {
  background: var(--cream);
  padding: var(--sp);
}

.misiune-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.misiune-image {
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadowm);
}

.misiune-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.misiune-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.misiune-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.misiune-block-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.misiune-block-content {}
.misiune-block-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.misiune-block-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FAZE ────────────────────────────────────────────────── */
#faze {
  background: var(--white);
  padding: var(--sp);
}

.faze-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.faze-intro .section-sub { margin: 0 auto; }

.faze-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faza {
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid #dde3ec;
  transition: box-shadow 0.2s;
}

.faza:hover { box-shadow: var(--shadowm); }

.faza-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: var(--white);
  cursor: default;
}

.faza.active .faza-header { background: var(--navy); }

.faza-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: rgba(0,0,0,0.08);
  min-width: 60px;
}

.faza.active .faza-num { color: rgba(255,255,255,0.12); }

.faza-meta { flex: 1; }

.faza-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.faza-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.faza.active .faza-title { color: var(--white); }

.faza-period {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.faza.active .faza-period { color: rgba(255,255,255,0.5); }

.faza-body {
  padding: 0 36px 32px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.faza.active .faza-body { background: var(--navy-mid); }

.faza-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  grid-column: 1 / -1;
  padding-top: 4px;
}

.faza.active .faza-desc { color: rgba(255,255,255,0.65); }

.faza-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.faza-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

.faza.active .faza-point { color: rgba(255,255,255,0.7); }

.faza-point::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
}

.faza-highlight-box {
  background: var(--cream);
  border-radius: var(--r);
  padding: 16px 20px;
  grid-column: 1 / -1;
  margin-top: 4px;
  border-left: 3px solid var(--gold);
}

.faza.active .faza-highlight-box {
  background: var(--navy-card);
  border-color: var(--gold);
}

.faza-hl-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.faza-hl-content {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.faza.active .faza-hl-content { color: rgba(255,255,255,0.65); }

/* Fintech profit comparison */
.fintech-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.fintech-bar {
  background: var(--cream);
  border-radius: var(--r);
  padding: 14px 16px;
}

.faza.active .fintech-bar { background: var(--navy-card); }

.fintech-bar-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faza.active .fintech-bar-label { color: rgba(255,255,255,0.45); }

.fintech-bar-track {
  height: 8px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  margin-bottom: 6px;
  overflow: hidden;
}

.faza.active .fintech-bar-track { background: rgba(255,255,255,0.1); }

.fintech-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--gold);
}

.fintech-bar-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.faza.active .fintech-bar-val { color: var(--gold-light); }

/* Expansiune countries */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-column: 1 / -1;
  margin-top: 4px;
}

.country-group {
  background: var(--cream);
  border-radius: var(--r);
  padding: 14px 16px;
}

.faza.active .country-group { background: var(--navy-card); }

.country-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}

.country-list {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
}

.faza.active .country-list { color: rgba(255,255,255,0.6); }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  background: var(--navy);
  padding: var(--sp);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.contact-info {}

.contact-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-title {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-flag {
  font-size: 22px;
}

.phone-meta {}

.phone-country {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.phone-number {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.contact-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-w);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--border-g); color: var(--gold); }

.contact-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-w);
  border-radius: var(--rl);
  padding: 36px;
}

.contact-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-detail {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-w);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail:last-child { border-bottom: none; }

.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cd-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #060e17;
  padding: 28px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-conf {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --sp: 64px 20px; }

  .nav-links { display: none; }

  .intro-grid,
  .compare-grid,
  .misiune-grid,
  .contact-inner,
  .proiect-intro { grid-template-columns: 1fr; gap: 40px; }

  .ai-grid { grid-template-columns: 1fr 1fr; }

  .faza-body { grid-template-columns: 1fr; }
  .faza-points { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: 1fr; }
  .fintech-compare { grid-template-columns: 1fr; }

  .cost-box { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }

  .safe-terms { grid-template-columns: 1fr; }

  .faza-header { padding: 20px 24px; }
  .faza-body { padding: 0 24px 24px; }

  .hero-metrics { gap: 28px; }
}

@media (max-width: 600px) {
  .ai-grid { grid-template-columns: 1fr; }
  .safe-diagram { flex-direction: column; }
  .safe-step:not(:last-child)::after { content: '↓'; position: static; font-size: 20px; color: var(--gold); display: block; text-align: center; margin: 8px 0; }
  .faza-num { font-size: 32px; min-width: 40px; }
}
