/* ============================================
   IT-GOV.RO - Design System v2
   Premium, enterprise-grade visual language
   ============================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand */
  --brand-900: #061226;
  --brand-800: #0a1f3d;
  --brand-700: #0f2a54;
  --brand-600: #14366b;
  --brand-500: #1a4488;
  --brand-400: #2f63b5;
  --brand-300: #5b8ddb;
  --brand-200: #a8c4ed;
  --brand-100: #dce8f8;
  --brand-50:  #f1f6fc;

  /* Accent - warm gold used sparingly */
  --accent-600: #b68b3a;
  --accent-500: #c99a46;
  --accent-400: #dcb26a;
  --accent-300: #e8c78e;

  /* Neutrals */
  --ink-900: #0a0f1a;
  --ink-800: #141a28;
  --ink-700: #1f2636;
  --ink-600: #394257;
  --ink-500: #5a6478;
  --ink-400: #858ea2;
  --ink-300: #b4bcce;
  --ink-200: #d9dee8;
  --ink-100: #eceff5;
  --ink-50:  #f6f8fb;
  --white:   #ffffff;

  /* Semantic */
  --bg:           var(--white);
  --bg-alt:       var(--ink-50);
  --bg-dark:      var(--brand-900);
  --surface:      var(--white);
  --surface-raised: var(--white);
  --text:         var(--ink-900);
  --text-muted:   var(--ink-500);
  --text-soft:    var(--ink-400);
  --text-invert:  var(--white);
  --border:       rgba(10,15,26,0.08);
  --border-strong:rgba(10,15,26,0.14);
  --border-dark:  rgba(255,255,255,0.1);

  /* Typography - Outfit everywhere */
  --font-display: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "Outfit", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --fs-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm:   clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
  --fs-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --fs-md:   clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --fs-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --fs-xl:   clamp(1.375rem, 1.2rem + 0.7vw, 1.625rem);
  --fs-2xl:  clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  --fs-3xl:  clamp(2.25rem, 1.7rem + 2.2vw, 3rem);
  --fs-4xl:  clamp(2.75rem, 2rem + 3vw, 4rem);
  --fs-5xl:  clamp(3.25rem, 2.3rem + 4vw, 5.25rem);

  --lh-tight: 1.08;
  --lh-snug:  1.2;
  --lh-base:  1.6;
  --lh-loose: 1.75;

  --tracking-tight: -0.02em;
  --tracking-snug:  -0.012em;
  --tracking-base:  -0.005em;
  --tracking-wide:  0.02em;
  --tracking-caps:  0.14em;

  /* Spacing scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;
  --section-y: clamp(72px, 9vw, 140px);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10,15,26,0.04);
  --shadow-sm: 0 2px 6px rgba(10,15,26,0.06), 0 1px 2px rgba(10,15,26,0.04);
  --shadow-md: 0 10px 24px -12px rgba(10,15,26,0.18), 0 4px 10px -4px rgba(10,15,26,0.06);
  --shadow-lg: 0 24px 50px -20px rgba(10,15,26,0.22), 0 8px 20px -10px rgba(10,15,26,0.08);
  --shadow-xl: 0 40px 80px -30px rgba(10,15,26,0.28), 0 14px 30px -16px rgba(10,15,26,0.1);
  --shadow-glow: 0 0 0 1px rgba(47,99,181,0.18), 0 20px 60px -20px rgba(47,99,181,0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.2, 1.3, 0.3, 1);
  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 320ms;
  --dur-4: 520ms;
  --dur-5: 800ms;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 920px;
  --max-w-wide: 1400px;
  --nav-h: 76px;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: var(--lh-base);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--brand-700); color: var(--white); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text);
}
h1 { font-size: var(--fs-5xl); font-weight: 700; }
h2 { font-size: var(--fs-3xl); font-weight: 600; letter-spacing: var(--tracking-snug); }
h3 { font-size: var(--fs-xl); font-weight: 600; letter-spacing: var(--tracking-snug); }
h4 { font-size: var(--fs-lg); font-weight: 600; letter-spacing: var(--tracking-base); }
p { color: var(--text-muted); font-weight: 400; }
strong { font-weight: 600; color: var(--text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-700);
  background: linear-gradient(180deg, rgba(47,99,181,0.08), rgba(47,99,181,0.02));
  border: 1px solid rgba(47,99,181,0.18);
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(26,68,136,0.12);
  animation: pulse 2.6s var(--ease-in-out) infinite;
}
.eyebrow--on-dark { color: var(--brand-200); border-color: rgba(168,196,237,0.25); background: rgba(168,196,237,0.06); }
.eyebrow--on-dark::before { background: var(--brand-300); box-shadow: 0 0 0 4px rgba(91,141,219,0.18); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.display-1 { font-size: var(--fs-5xl); font-weight: 700; line-height: 1.02; letter-spacing: -0.028em; }
.display-2 { font-size: var(--fs-4xl); font-weight: 700; line-height: 1.06; letter-spacing: -0.024em; }
.lede { font-size: var(--fs-md); font-weight: 400; line-height: 1.65; color: var(--text-muted); max-width: 58ch; }

.text-grad {
  background: linear-gradient(100deg, var(--brand-700) 0%, var(--brand-500) 45%, var(--accent-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-mono { font-family: var(--font-mono); font-feature-settings: "tnum","zero"; font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }

/* ---------- 4. Layout primitives ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--wide { max-width: var(--max-w-wide); }
section { padding: var(--section-y) 0; }
.section-header { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: var(--fs-md); }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: var(--space-6); }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--text);
  --btn-fg: var(--white);
  --btn-br: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: -0.005em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-br);
  border-radius: var(--r-pill);
  transition: transform var(--dur-2) var(--ease-out),
              background var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; transition: transform var(--dur-2) var(--ease-out); }
.btn:hover svg { transform: translateX(2px); }

.btn--brand { --btn-bg: var(--brand-700); --btn-br: var(--brand-700); }
.btn--brand:hover { --btn-bg: var(--brand-800); --btn-br: var(--brand-800); box-shadow: var(--shadow-glow); }

.btn--accent { --btn-bg: var(--accent-500); --btn-br: var(--accent-500); --btn-fg: var(--brand-900); }
.btn--accent:hover { --btn-bg: var(--accent-600); --btn-br: var(--accent-600); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); --btn-br: var(--border-strong); }
.btn--ghost:hover { --btn-bg: var(--ink-50); --btn-br: var(--ink-300); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--white); --btn-br: rgba(255,255,255,0.35); }
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,0.08); --btn-br: rgba(255,255,255,0.55); }

.btn--on-dark { --btn-bg: var(--white); --btn-fg: var(--brand-900); --btn-br: var(--white); }
.btn--on-dark:hover { --btn-bg: var(--ink-100); --btn-br: var(--ink-100); }

.btn--sm { height: 42px; padding: 0 18px; font-size: 13.5px; }
.btn--lg { height: 58px; padding: 0 32px; font-size: 15.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 550; color: var(--brand-700);
  border-bottom: 1px solid transparent;
  transition: color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), gap var(--dur-2) var(--ease-out);
}
.link-arrow:hover { color: var(--brand-800); border-color: currentColor; gap: 12px; }
.link-arrow svg { width: 14px; height: 14px; }

/* ---------- 6. Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; z-index: 9999;
}
.scroll-progress__bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  transition: width var(--dur-1) linear;
}

/* ---------- 7. Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px -18px rgba(10,15,26,0.15);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; color: var(--text); text-decoration: none; }
.nav__logo img { height: 30px; width: auto; }
.nav__logo-text { line-height: 1; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  transition: color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.nav__link:hover { color: var(--text); background: var(--ink-50); }
.nav__link.is-active { color: var(--brand-700); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--brand-500); border-radius: 2px;
}

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
}
.nav__toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); position: relative;
  transition: transform var(--dur-3) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--text);
  transition: transform var(--dur-3) var(--ease-out), top var(--dur-3) var(--ease-out), bottom var(--dur-3) var(--ease-out);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { bottom: -6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.is-open span::after  { bottom: 0; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  z-index: 999;
  padding: 40px clamp(20px, 5vw, 48px);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out), visibility 0s linear var(--dur-3);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-display); font-size: 26px; font-weight: 560;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 230ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 280ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 330ms; }
.mobile-menu__cta { margin-top: 32px; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(64px, 9vw, 128px));
  padding-bottom: clamp(80px, 10vw, 140px);
  background: radial-gradient(1200px 600px at 85% -10%, rgba(47,99,181,0.1), transparent 60%),
              radial-gradient(900px 500px at -10% 30%, rgba(201,154,70,0.06), transparent 60%),
              linear-gradient(180deg, #fbfcfe 0%, #ffffff 60%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero__content .eyebrow { margin-bottom: 28px; }
.hero__title { margin-bottom: 24px; }
.hero__title .accent { color: var(--brand-700); }
.hero__lede { margin-bottom: 36px; max-width: 54ch; font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.2rem); line-height: 1.62; color: var(--ink-600); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 28px 36px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-kpi { font-family: var(--font-display); font-size: 28px; font-weight: 620; letter-spacing: -0.02em; color: var(--text); }
.hero__meta-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--text-soft); font-weight: 500; }

/* Hero composition */
.hero__visual { position: relative; min-height: 520px; }
.hero__mosaic {
  position: relative; width: 100%; height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 14px;
  min-height: 520px;
}
.mcard {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--dur-4) var(--ease-out), box-shadow var(--dur-4) var(--ease-out);
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mcard--a {
  grid-column: 1 / span 4; grid-row: 1 / span 4;
  background:
    radial-gradient(600px 300px at 120% -20%, rgba(47,99,181,0.25), transparent 60%),
    linear-gradient(160deg, var(--brand-900) 0%, var(--brand-700) 100%);
  color: var(--white);
  border-color: transparent;
}
.mcard--a h3 { color: var(--white); font-size: 22px; max-width: 22ch; }
.mcard--a .mcard__tag { color: var(--brand-200); }
.mcard--b {
  grid-column: 5 / span 2; grid-row: 1 / span 3;
  background: linear-gradient(180deg, var(--white), var(--ink-50));
}
.mcard--c {
  grid-column: 5 / span 2; grid-row: 4 / span 3;
  background: linear-gradient(150deg, var(--accent-300), var(--accent-500));
  color: var(--brand-900);
  border-color: transparent;
}
.mcard--d {
  grid-column: 1 / span 4; grid-row: 5 / span 2;
  background: linear-gradient(180deg, var(--white), var(--ink-50));
}
.mcard__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.mcard__tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.mcard__title { font-family: var(--font-display); font-weight: 580; font-size: 17px; line-height: 1.3; letter-spacing: -0.015em; }
.mcard__meta { display: flex; align-items: baseline; gap: 10px; }
.mcard__num { font-family: var(--font-mono); font-size: 34px; font-weight: 500; letter-spacing: -0.02em; }
.mcard__note { font-size: 12px; color: var(--text-soft); }

.hero__floating {
  position: absolute; right: -40px; top: 40%;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47,99,181,0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ---------- 9. Logo strip ---------- */
.logo-strip { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.logo-strip__label {
  text-align: center;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px 40px;
  align-items: center;
}
.logo-strip__item {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 10px;
  min-height: 60px;
  opacity: 1;
  transition: transform var(--dur-3) var(--ease-out);
}
.logo-strip__item:hover { transform: translateY(-2px); }
.logo-strip__item img { max-height: 44px; width: auto; }
.logo-strip__name {
  font-size: 11px;
  line-height: 1.35;
  color: var(--ink-500, #64748b);
  text-align: center;
  max-width: 160px;
}

/* ---------- 10. Pillar cards (dual services) ---------- */
.pillars { background: var(--bg-alt); }
.pillars__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.pillar {
  position: relative;
  padding: 44px 40px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.pillar::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-4) var(--ease-out);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--brand-50), var(--brand-100));
  color: var(--brand-700);
  margin-bottom: 24px;
  border: 1px solid var(--brand-200);
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: var(--fs-2xl); margin-bottom: 12px; }
.pillar p { margin-bottom: 24px; font-size: var(--fs-base); }
.pillar__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pillar__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink-700);
}
.pillar__list li::before {
  content: ""; flex: 0 0 auto;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-50); border: 1px solid var(--brand-200);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5L6.5 11.5L12.5 5.5' stroke='%231a4488' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}

/* ---------- 10b. Formats grid ---------- */
.formats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.format-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out);
}
.format-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.format-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--brand-50), var(--brand-100));
  color: var(--brand-700);
  display: grid; place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--brand-200);
}
.format-card__icon svg { width: 24px; height: 24px; }
.format-card h3 { font-size: var(--fs-lg); margin-bottom: 10px; }
.format-card p { font-size: 14.5px; line-height: 1.6; }

/* ---------- 11. Value grid ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.value {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--dur-3) var(--ease-out);
}
.value:hover { background: var(--ink-50); }
.value__num { font-family: var(--font-mono); font-size: 12px; color: var(--text-soft); letter-spacing: var(--tracking-caps); text-transform: uppercase; font-weight: 500; margin-bottom: 20px; display: block; }
.value h3 { font-size: var(--fs-lg); margin-bottom: 10px; }
.value p { font-size: 14.5px; line-height: 1.6; }

/* ---------- 12. KPI band (dark) ---------- */
.kpi-band {
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(47,99,181,0.35), transparent 60%),
    radial-gradient(600px 400px at 90% 90%, rgba(201,154,70,0.15), transparent 60%),
    var(--brand-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.kpi-band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.kpi-band > .container { position: relative; }
.kpi-band h2 { color: var(--white); max-width: 20ch; }
.kpi-band .lede { color: var(--brand-200); }
.kpi-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.kpi {
  display: flex; flex-direction: column; gap: 10px;
}
.kpi__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.8rem + 2.5vw, 3.5rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-200) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kpi__label { font-size: 14px; color: var(--brand-200); line-height: 1.5; }

/* ---------- 13. Case studies ---------- */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.case {
  display: flex; flex-direction: column;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case__cover {
  aspect-ratio: 16/10;
  background:
    radial-gradient(400px 200px at 80% 20%, rgba(255,255,255,0.15), transparent 60%),
    linear-gradient(135deg, var(--brand-800), var(--brand-500));
  position: relative;
  display: flex; align-items: flex-end; padding: 28px;
}
.case:nth-child(2) .case__cover { background: radial-gradient(400px 200px at 20% 80%, rgba(255,255,255,0.15), transparent 60%), linear-gradient(135deg, #1d3557, #457b9d); }
.case:nth-child(3) .case__cover { background: radial-gradient(400px 200px at 80% 80%, rgba(255,255,255,0.18), transparent 60%), linear-gradient(135deg, #3a2e4b, #8b6fa3); }
.case__cover-label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: rgba(255,255,255,0.8); font-weight: 500;
}
.case__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-soft); font-weight: 500; }
.case__title { font-family: var(--font-display); font-size: 20px; font-weight: 580; line-height: 1.3; letter-spacing: -0.015em; color: var(--text); }
.case__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); flex: 1; }
.case__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.case__tag { font-size: 12px; color: var(--brand-700); font-weight: 550; }

/* ---------- 14. Process timeline ---------- */
.process { background: var(--bg-alt); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  position: relative;
}
.process__grid::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: 28px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
}
.step { padding: 0 16px; position: relative; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  color: var(--brand-700);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.step h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.55; }

/* ---------- 15. Certifications ---------- */
.certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cert {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.cert:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.cert__icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--brand-50); color: var(--brand-700);
  display: grid; place-items: center; flex: 0 0 auto;
}
.cert__icon svg { width: 22px; height: 22px; }
.cert__name { font-family: var(--font-display); font-weight: 560; font-size: 14.5px; color: var(--text); }
.cert__label { font-size: 12px; color: var(--text-soft); }

/* ---------- 16. CTA band ---------- */
.cta-band {
  background: var(--brand-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(47,99,181,0.35), transparent 60%),
              radial-gradient(500px 300px at 0% 100%, rgba(201,154,70,0.14), transparent 60%);
}
.cta-band__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px);
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}
.cta-band h2 { color: var(--white); max-width: 18ch; margin-bottom: 12px; }
.cta-band p { color: var(--brand-200); max-width: 54ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }

/* ---------- 17. Footer ---------- */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand h3 { color: var(--white); font-size: 22px; margin-bottom: 14px; }
.footer__brand p { color: var(--ink-400); font-size: 14px; line-height: 1.6; max-width: 36ch; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: var(--ink-300);
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.footer__social a:hover { background: rgba(255,255,255,0.05); color: var(--white); border-color: rgba(255,255,255,0.2); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px; color: var(--ink-300);
  transition: color var(--dur-2) var(--ease-out);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: var(--ink-400);
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--white); }

/* ---------- 18. Page header (secondary pages) ---------- */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 64px;
  background: radial-gradient(800px 400px at 50% -20%, rgba(47,99,181,0.08), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 20px; }
.page-header h1 { font-size: var(--fs-4xl); margin-bottom: 18px; }
.page-header p { max-width: 62ch; margin: 0 auto; font-size: var(--fs-md); }

/* ---------- 19. Legacy / secondary-page components ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.stat {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
}
.stat__num { font-family: var(--font-display); font-size: 40px; font-weight: 620; letter-spacing: -0.02em; color: var(--brand-700); margin-bottom: 6px; }
.stat__label { font-size: 13.5px; color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 18px;
}
.section-title { font-size: var(--fs-3xl); margin-bottom: 16px; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.service-card {
  padding: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.service-card__icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--brand-50); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 20px; }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: var(--fs-lg); margin-bottom: 10px; }
.service-card p { font-size: 14.5px; line-height: 1.6; }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.value-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); }
.value-card h4 { font-size: var(--fs-md); margin-bottom: 8px; }
.value-card p { font-size: 14px; }

.partners { background: var(--bg-alt); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 40px; align-items: center; }
.partner-item { display: flex; align-items: center; justify-content: center; min-height: 80px; opacity: 1; transition: transform var(--dur-3) var(--ease-out); }
.partner-item:hover { filter: none; opacity: 1; transform: translateY(-2px); }
.partner-item img { max-height: 56px; width: auto; }

.cta-section { padding: var(--section-y) 0; background: var(--bg-alt); }
.cta-box {
  background: var(--brand-900); color: var(--white); border-radius: var(--r-2xl);
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 56px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(47,99,181,0.35), transparent 60%); }
.cta-box > * { position: relative; }
.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box p { color: var(--brand-200); max-width: 56ch; margin: 0 auto 28px; }
.cta-box__actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Feature sections (consultanta) */
.feature-section { padding: var(--section-y) 0; }
.feature-section.alt { background: var(--bg-alt); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { padding: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card h3 { font-size: var(--fs-lg); margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; }

/* MICE tabs (evenimente) */
.mice-section { padding: var(--section-y) 0; }
.mice-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; }
.mice-tab {
  padding: 12px 22px; border-radius: var(--r-pill); border: 1px solid var(--border-strong);
  background: var(--white); font-size: 14px; font-weight: 550; color: var(--ink-700);
  transition: all var(--dur-2) var(--ease-out);
}
.mice-tab:hover { border-color: var(--brand-400); color: var(--brand-700); }
.mice-tab.active { background: var(--brand-700); color: var(--white); border-color: var(--brand-700); }
.mice-panel { display: none; }
.mice-panel.active { display: block; }

/* Process grid (consultanta) */
.process-section { padding: var(--section-y) 0; background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* Cert grid (consultanta) */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.cert-item {
  padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  text-align: center; transition: all var(--dur-2) var(--ease-out);
}
.cert-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Contact (contact.html) */
.contact-section { padding: var(--section-y) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 5vw, 64px); }
.contact-info h3 { font-size: var(--fs-xl); margin-bottom: 20px; }
.contact-info__item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--brand-50); color: var(--brand-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label { font-size: 12px; text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--text-soft); font-weight: 500; margin-bottom: 2px; }
.contact-info__value { font-size: 14.5px; color: var(--text); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 550; color: var(--ink-700); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  font-size: 14.5px; color: var(--text);
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0; border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(47,99,181,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Legal pages typography */
.legal-content { max-width: 780px; margin: 0 auto; padding: 64px 0 var(--section-y); }
.legal-content h2 { font-size: var(--fs-xl); margin: 40px 0 14px; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.75; color: var(--ink-700); margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }

/* ---------- 20. Reveal animations (content always visible) ---------- */
.reveal-up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
  .reveal-up { animation: revealUp 700ms var(--ease-out) both; }
}
.stagger-children > * { animation-delay: 0ms; }
.stagger-children > *:nth-child(1) { animation-delay: 60ms; }
.stagger-children > *:nth-child(2) { animation-delay: 120ms; }
.stagger-children > *:nth-child(3) { animation-delay: 180ms; }
.stagger-children > *:nth-child(4) { animation-delay: 240ms; }
.stagger-children > *:nth-child(5) { animation-delay: 300ms; }
.stagger-children > *:nth-child(6) { animation-delay: 360ms; }

/* ---------- 21. WhatsApp float & back to top ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,0.6);
  transition: transform var(--dur-3) var(--ease-out);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }
.whatsapp-float svg { width: 26px; height: 26px; }

.back-to-top {
  position: fixed; bottom: 24px; right: 92px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--text); border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out), visibility 0s linear var(--dur-3);
  box-shadow: var(--shadow-md);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 440px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__menu, .nav__cta .btn { display: none; }
  .nav__cta .nav__toggle { display: inline-flex; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 768px) {
  :root {
    --section-y: clamp(56px, 11vw, 84px);
    --nav-h: 64px;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 56px; }
  .hero__grid { gap: 36px; }
  .hero__content .eyebrow { margin-bottom: 20px; }
  .hero__title { margin-bottom: 18px; font-size: clamp(2rem, 8.6vw, 2.5rem); line-height: 1.1; letter-spacing: -0.02em; }
  .display-1, .display-2 { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.1; }
  .hero__lede { margin-bottom: 24px; font-size: 1rem; line-height: 1.55; }
  .hero__actions { margin-bottom: 28px; }
  .hero__actions .btn--lg { width: 100%; justify-content: center; height: 54px; font-size: 15px; }
  .hero__meta { gap: 14px 24px; padding-top: 20px; }
  .hero__meta-kpi { font-size: 22px; }
  .hero__visual { min-height: 280px; }
  .hero__mosaic { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; gap: 10px; }
  .mcard { padding: 18px; }
  .mcard--a, .mcard--b, .mcard--c, .mcard--d { grid-column: 1; grid-row: auto; }
  .mcard--a h3 { font-size: 18px; }
  .mcard--b .mcard__num { font-size: 24px; }

  .process__grid::before { display: none; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2rem); }

  .logo-strip { padding: 40px 0 28px; }
  .logo-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 14px 20px; }
  .logo-strip__item { min-height: 48px; }
  .logo-strip__item img { max-height: 34px; }

  .preview-grid { gap: 14px; }
  .preview-card { padding: 28px 24px; }
  .preview-card h3 { font-size: 19px; }
  .preview-card p { margin-bottom: 20px; }

  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { padding: 32px 28px; }

  .kpi-band__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; padding-top: 32px; }
  .kpi__num { font-size: 2.2rem; }
  .kpi__label { font-size: 12.5px; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; padding: 40px 28px; gap: 24px; }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  .tabs__list { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tabs__list::-webkit-scrollbar { display: none; }
  .tabs__btn { padding: 10px 16px; font-size: 13px; flex: 0 0 auto; }
  .tabs__panels { margin-top: 28px; }

  .accordion__trigger { padding: 18px 20px; font-size: 15px; }
  .accordion__trigger-label { gap: 10px; }
  .accordion__body { padding: 0 20px 22px 20px; }
  .accordion__icon { width: 32px; height: 32px; }

  .mini-feature-grid { grid-template-columns: 1fr; }
  .mini-feature { padding: 24px 22px; }

  .showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .showcase__item { aspect-ratio: 3/4; padding: 20px; }
  .showcase__title { font-size: 15px; }

  .carousel__arrow { width: 42px; height: 42px; }

  .steps-list__item { padding: 22px 20px; }
  .steps-list__title { font-size: 16px; }

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

  .contact-form { padding: 26px 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .page-header { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 44px; }
  .page-header h1, .page-header-title { font-size: clamp(1.9rem, 1.5rem + 2vw, 2.6rem); }

  .split-2 { gap: 28px; }

  .btn { height: 48px; padding: 0 22px; font-size: 14px; }
  .btn--lg { height: 54px; padding: 0 26px; font-size: 15px; }
  .btn--sm { height: 40px; padding: 0 16px; font-size: 13px; }

  .footer { padding: 56px 0 24px; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
  .back-to-top { width: 42px; height: 42px; right: 78px; bottom: 22px; }
}

/* Very narrow phones - extra compression */
@media (max-width: 420px) {
  .logo-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-band__grid { grid-template-columns: 1fr; gap: 20px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__item { aspect-ratio: 16/10; }
  .hero__meta { flex-direction: column; gap: 14px; }
  .hero__meta-item { flex-direction: row; gap: 12px; align-items: baseline; }
}

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

/* ---------- 23. Legacy aliases (secondary pages) ---------- */
/* Navigation */
.nav-inner {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 620; font-size: 18px;
  letter-spacing: -0.015em; color: var(--text);
}
.nav-logo-mark img { height: 30px; width: auto; display: block; }
.nav-logo-text { font-family: var(--font-display); font-weight: 620; letter-spacing: -0.015em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--ink-700); border-radius: var(--r-sm);
  transition: color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.nav-link:hover { color: var(--text); background: var(--ink-50); }
.nav-link.active { color: var(--brand-700); }
.nav-link.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--brand-500); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-700);
}
.nav-phone:hover { color: var(--brand-700); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px;
  font-size: 13.5px; font-weight: 550;
  color: var(--white); background: var(--brand-700);
  border-radius: var(--r-pill);
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.nav-cta:hover { background: var(--brand-800); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: transparent;
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform var(--dur-3) var(--ease-out), opacity var(--dur-2) var(--ease-out); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu (legacy) */
.mobile-menu-inner { padding: 40px clamp(20px, 5vw, 48px); display: flex; flex-direction: column; height: 100%; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-link {
  display: block; padding: 18px 4px;
  font-family: var(--font-display); font-size: 24px; font-weight: 560;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-menu-link.active { color: var(--brand-700); }
.mobile-menu-footer {
  margin-top: auto; padding-top: 32px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.mobile-menu-footer a:hover { color: var(--brand-700); }
.mobile-menu.active {
  opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s;
}

/* Footer (legacy) */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--white); }
.footer-logo .nav-logo-text { color: var(--white); font-size: 20px; }
.footer-desc { color: var(--ink-400); font-size: 14px; line-height: 1.6; max-width: 36ch; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: var(--ink-300);
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.footer-social a:hover { background: rgba(255,255,255,0.05); color: var(--white); border-color: rgba(255,255,255,0.2); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-col a, .footer-col span {
  font-size: 14px; color: var(--ink-300); line-height: 1.6;
  transition: color var(--dur-2) var(--ease-out);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: var(--ink-400);
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--white); }

/* Page header (legacy title classes) */
.page-header-title { font-size: var(--fs-4xl); margin-bottom: 18px; font-family: var(--font-display); font-weight: 620; letter-spacing: var(--tracking-tight); line-height: var(--lh-tight); }
.page-header-desc { max-width: 62ch; margin: 0 auto; font-size: var(--fs-md); color: var(--text-muted); }

/* About section (legacy) */
.about { padding: var(--section-y) 0; }
.about-content { }
.about-lead { font-size: var(--fs-md); color: var(--ink-700); margin-bottom: 16px; line-height: 1.65; }
.about-text { font-size: 15px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink-700); }
.about-feature-icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--brand-50); color: var(--brand-700); display: grid; place-items: center; flex: 0 0 auto; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--brand-50); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 14px; }

/* Services grid used on consultanta / evenimente pages (legacy) */
.service-card-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--brand-50); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 20px; }

/* Responsive for legacy nav */
@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-hamburger { display: inline-flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
}

/* ============================================
   24. Interactive components - v3
   Tabs · Accordion · Carousel · FAQ · Filters
   ============================================ */

/* --- 24.1 Tabs (segmented, keyboard-accessible) --- */
.tabs {
  position: relative;
}
.tabs__list {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  flex-wrap: wrap;
  max-width: 100%;
}
.tabs__list--center { display: flex; justify-content: center; margin: 0 auto clamp(36px, 4vw, 56px); }
.tabs__btn {
  appearance: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  background: transparent;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
  white-space: nowrap;
}
.tabs__btn:hover { color: var(--text); }
.tabs__btn[aria-selected="true"] {
  color: var(--white);
  background: var(--brand-700);
  box-shadow: 0 6px 18px -8px rgba(10,23,53,0.45);
  font-weight: 550;
}
.tabs__btn:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 3px; }
.tabs__panels { margin-top: clamp(32px, 4vw, 48px); }
.tabs__panel { display: none; animation: fadeUp 400ms var(--ease-out); }
.tabs__panel.is-active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* --- 24.2 Accordion --- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.accordion__item:hover { border-color: var(--border-strong); }
.accordion__item.is-open {
  border-color: var(--brand-300);
  box-shadow: 0 18px 40px -24px rgba(26,68,136,0.22);
}
.accordion__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  font-weight: 550;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.accordion__trigger:focus-visible { outline: 2px solid var(--brand-400); outline-offset: -2px; border-radius: var(--r-lg); }
.accordion__trigger-label { display: flex; align-items: center; gap: 14px; }
.accordion__num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  color: var(--brand-500);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.accordion__icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  transition: transform var(--dur-3) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.accordion__icon svg { width: 14px; height: 14px; transition: transform var(--dur-3) var(--ease-out); }
.accordion__item.is-open .accordion__icon { background: var(--brand-700); color: var(--white); border-color: var(--brand-700); }
.accordion__item.is-open .accordion__icon svg { transform: rotate(180deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-4) var(--ease-in-out);
}
.accordion__body {
  padding: 0 28px 26px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.accordion__body p { font-size: 15px; line-height: 1.7; color: var(--ink-600); max-width: 70ch; }
.accordion__body ul { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.accordion__body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.6;
}
.accordion__body ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--brand-400);
}

/* --- 24.3 Carousel (horizontal track) --- */
.carousel { position: relative; }
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 0 -4px;
  padding: 4px;
}
.carousel__track {
  display: flex;
  gap: 20px;
  transition: transform var(--dur-4) var(--ease-out);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
@media (max-width: 1024px) {
  .carousel__slide { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 680px) {
  .carousel__slide { flex-basis: 100%; }
}
.carousel__controls {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 28px;
}
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: var(--border-strong);
  border: 0; padding: 0; cursor: pointer;
  transition: background var(--dur-2) var(--ease-out), width var(--dur-3) var(--ease-out);
}
.carousel__dot.is-active { background: var(--brand-700); width: 40px; }
.carousel__dot:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 3px; }
.carousel__arrows { display: flex; gap: 8px; }
.carousel__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out);
}
.carousel__arrow:hover { background: var(--brand-700); color: var(--white); border-color: var(--brand-700); }
.carousel__arrow:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 3px; }
.carousel__arrow[disabled] { opacity: 0.35; cursor: not-allowed; }
.carousel__arrow[disabled]:hover { background: var(--white); color: var(--text); border-color: var(--border-strong); }
.carousel__arrow svg { width: 18px; height: 18px; }

/* Logo carousel variant (slower, infinite-feel, more items) */
.carousel--logos .carousel__slide { flex-basis: calc((100% - 80px) / 5); }
@media (max-width: 1024px) { .carousel--logos .carousel__slide { flex-basis: calc((100% - 40px) / 3); } }
@media (max-width: 680px) { .carousel--logos .carousel__slide { flex-basis: calc((100% - 20px) / 2); } }

/* --- 24.4 Filter chips (for /proiecte) --- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(32px, 4vw, 48px);
  justify-content: center;
}
.filter-chip {
  appearance: none;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-600);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--dur-2) var(--ease-out);
}
.filter-chip:hover { border-color: var(--brand-400); color: var(--brand-700); }
.filter-chip.is-active { background: var(--brand-900); color: var(--white); border-color: var(--brand-900); }
.filter-chip:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 3px; }

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.filter-grid__item {
  animation: fadeUp 400ms var(--ease-out);
}
.filter-grid__item[hidden] { display: none; }

/* --- 24.5 FAQ (uses accordion base, smaller type) --- */
.faq .accordion__trigger { padding: 20px 24px; font-size: 16px; }
.faq .accordion__body { padding: 0 24px 22px 24px; }

/* --- 24.6 Premium section utilities --- */
.section-sm { padding: clamp(56px, 7vw, 96px) 0; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Editorial two-col split */
.split-2 {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.split-2__sticky { position: sticky; top: calc(var(--nav-h) + 32px); }
@media (max-width: 1024px) {
  .split-2 { grid-template-columns: 1fr; }
  .split-2__sticky { position: static; }
}

/* Highlight quote */
.pullquote {
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(160deg, var(--brand-50), transparent 70%);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--r-md);
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  max-width: 36ch;
}

/* Mini-features list (for condensed homepage) */
.mini-feature-grid--3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 900px) {
  .mini-feature-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .mini-feature-grid--3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .mini-feature-grid,
  .mini-feature-grid--3 { grid-template-columns: 1fr !important; }
}

/* Capability grid - compact visible-at-once layout for long lists */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.cap-card {
  background: var(--white);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s ease;
  min-height: 160px;
}
.cap-card:hover { background: var(--ink-50); }
.cap-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-500);
}
.cap-card__title {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.cap-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 1200px) {
  .cap-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-card { padding: 20px 18px 18px; min-height: 0; }
}
@media (max-width: 420px) {
  .cap-grid { grid-template-columns: 1fr; }
}
.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.mini-feature {
  background: var(--white);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--dur-2) var(--ease-out);
}
.mini-feature:hover { background: var(--ink-50); }
.mini-feature__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 12px;
  margin-bottom: 6px;
}
.mini-feature__icon svg { width: 20px; height: 20px; }
.mini-feature__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-500);
  font-weight: 500;
}
.mini-feature h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.mini-feature p { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

/* Preview card grid (homepage - 3 formats link to /evenimente) */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.preview-card {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3) var(--ease-out);
  overflow: hidden;
}
.preview-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-4) var(--ease-out);
}
.preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.preview-card:hover::before { transform: scaleX(1); }
.preview-card__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 14px;
}
.preview-card h3 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 12px; }
.preview-card p { font-size: 14.5px; line-height: 1.6; margin-bottom: 28px; flex: 1; }
.preview-card .link-arrow { align-self: flex-start; }

/* Showcase strip (despre-noi / evenimente - alternating image/text) */
.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.showcase__item {
  aspect-ratio: 21/9;
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--brand-800), var(--brand-500));
  color: var(--white);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--dur-3) var(--ease-out);
}
.showcase__item:nth-child(2) { background: linear-gradient(160deg, #1d3557, #457b9d); }
.showcase__item:nth-child(3) { background: linear-gradient(160deg, var(--ink-800), var(--ink-600)); }
.showcase__item:nth-child(4) { background: linear-gradient(160deg, #3a2e4b, #8b6fa3); }
.showcase__item::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 220px at 80% 20%, rgba(255,255,255,0.16), transparent 60%);
  pointer-events: none;
}
.showcase__item:hover { transform: translateY(-4px); }
.showcase__label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 8px;
  position: relative;
}
.showcase__title {
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  line-height: 1.3; letter-spacing: -0.012em; color: var(--white);
  max-width: 22ch; position: relative;
}

/* Team / engagement steps */
.steps-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}
.steps-list__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-2) var(--ease-out);
}
.steps-list__item:last-child { border-bottom: 0; }
.steps-list__item:hover { background: var(--ink-50); }
.steps-list__num {
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 500;
  color: var(--brand-500);
  font-variant-numeric: tabular-nums;
}
.steps-list__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.steps-list__desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.steps-list__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink-50); color: var(--brand-700);
  display: grid; place-items: center; flex: 0 0 auto;
}
.steps-list__arrow svg { width: 14px; height: 14px; }
@media (max-width: 680px) {
  .steps-list__item { grid-template-columns: 60px 1fr; }
  .steps-list__arrow { display: none; }
}

/* Trust cards (despre-noi date oficiale) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.trust-card {
  padding: 24px 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.trust-card__label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 10px;
}
.trust-card__value {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--text); line-height: 1.35; letter-spacing: -0.008em;
  word-break: break-word;
}
.trust-card__hint { font-size: 12.5px; color: var(--text-soft); margin-top: 6px; }

/* Contact chip row */
.contact-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.contact-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-chip__body { flex: 1; min-width: 0; }
a.contact-chip {
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-50) 160%);
  border-color: var(--brand-200, #c7d2fe);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 4px 14px -10px rgba(30, 41, 120, 0.25);
}
a.contact-chip::after {
  content: "";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--brand-700);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: transform .2s ease, background-color .2s ease;
}
a.contact-chip:hover {
  border-color: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -14px rgba(30, 41, 120, 0.35);
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-50) 120%);
}
a.contact-chip:hover::after { transform: translateX(3px); }
.contact-chip__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 12px;
}
.contact-chip__icon svg { width: 18px; height: 18px; }
.contact-chip__label {
  display: block;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 3px;
}
.contact-chip__value {
  display: block;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  line-height: 1.35;
}

/* Contact side (brief guide) */
.contact-side { padding-right: 8px; }
.contact-side h2 { margin: 10px 0 14px; }
.contact-side__list {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-side__list li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-soft);
}
.contact-side__list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background-color: var(--brand-700);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-side__list strong { color: var(--text); font-weight: 600; }
.contact-side__map { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-side__map-frame { overflow: hidden; border-radius: 12px; border: 1px solid var(--border); }

@media (max-width: 900px) {
  .contact-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .contact-chips { grid-template-columns: 1fr; }
  .contact-side { padding-right: 0; }
}
