
:root {
  --bg: #0B1220;
  --surface: #111827;
  --surface-2: #1F2937;
  --border: rgba(255, 255, 255, 0.08);
  --text: #F9FAFB;
  --text-secondary: #CBD5E1;
  --muted: #94A3B8;
  --accent: #3B82F6;
  --accent-light: #60A5FA;
  --mod-hr: #3B82F6;
  --mod-pontaj: #22C55E;
  --mod-salarizare: #F59E0B;
  --radius: 16px;
  --radius-sm: 12px;
  --space-section: 38px;
  --space-grid: 16px;
  --space-card: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.58;
}

a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), #1D4ED8);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

/* ── Buttons ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 11px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.5);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 44px 0 16px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 45%);
  pointer-events: none;
  mask-image: linear-gradient(to left, black 20%, transparent 85%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  margin: 8px 0 6px;
  font-weight: 800;
}

.hero h1 .brand-white { color: var(--text); }
.hero h1 .brand-accent { color: var(--accent-light); }

.hero-tagline {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
}

.lead {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.62;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* ── Module cards ── */
.section {
  padding: var(--space-section) 0;
}

#platforma {
  padding-top: 12px;
  padding-bottom: 32px;
}

.section-lead {
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.62;
  margin: 0 0 20px;
  font-size: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 8px;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
}

.module-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-card);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.module-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.module-card--hr .module-icon {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.module-card--pontaj .module-icon {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.module-card--salarizare .module-icon {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.module-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.58;
  margin: 0 0 12px;
}

.module-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex: 1;
}

.module-features li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0 4px 17px;
  position: relative;
}

.module-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.module-card--hr .module-features li::before { background: var(--mod-hr); }
.module-card--pontaj .module-features li::before { background: var(--mod-pontaj); }
.module-card--salarizare .module-features li::before { background: var(--mod-salarizare); }

.module-link {
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.module-card--hr .module-link { color: var(--mod-hr); }
.module-card--pontaj .module-link { color: var(--mod-pontaj); }
.module-card--salarizare .module-link { color: var(--mod-salarizare); }

/* Package bar */
.package-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.package-bar-icon {
  font-size: 1.25rem;
  color: var(--accent);
}

.package-bar-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-bar-note {
  margin: 0;
  max-width: 640px;
}

.package-bar-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.package-bar-text strong {
  color: var(--text);
}

.package-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.package-options a {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.package-options a:hover {
  text-decoration: underline;
}

.package-options a.is-active {
  color: var(--text);
  text-decoration: underline;
}

/* ── Generic cards & grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-grid); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-grid); }

.card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.card p, .card li { color: var(--text-secondary); line-height: 1.65; }

.icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--accent-light);
}

.highlight {
  color: var(--text-secondary);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.highlight ul { margin: 8px 0 0; padding-left: 20px; }

.demo-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.image-card {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

.demo-panel {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.demo-hero {
  padding-top: 52px;
  padding-bottom: 36px;
}

.demo-hero-figure {
  margin: 0;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(59, 130, 246, 0.08);
}

.demo-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0;
}

.demo-hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-hero-content h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 14px;
  max-width: 16ch;
}

.demo-hero-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
  margin: 0 0 22px;
  max-width: 52ch;
}

.demo-hero-modules {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.demo-hero-modules li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 15, 28, 0.5);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.demo-hero-module-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.demo-hero-module-icon--hr {
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.demo-hero-module-icon--pontaj {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.demo-hero-module-icon--salarizare {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.demo-modules-section {
  padding-top: 12px;
}

.demo-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.demo-module-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(8, 15, 28, 0.55);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.demo-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.demo-module-card--hr:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.1);
}

.demo-module-card--pontaj:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.1);
}

.demo-module-card--salarizare:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.1);
}

.demo-module-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-module-card--hr .demo-module-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.demo-module-card--pontaj .demo-module-icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.demo-module-card--salarizare .demo-module-icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

.demo-module-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.demo-module-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.58;
}

.tag {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin: 4px 6px 0 0;
}

.small { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.footer {
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ── Contact form ── */
label { font-weight: 600; color: var(--text-secondary); font-size: 0.9rem; }

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus, textarea:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

textarea { min-height: 140px; resize: vertical; }

.form-field { margin-bottom: 14px; }

.form-field label { display: block; margin-bottom: 7px; }

.phone-field {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.phone-field input {
  flex: 1;
  min-width: 0;
}

.section-tight-top { margin-top: 18px; }

.app-preview-wrap {
  text-align: center;
}

.app-preview-lead {
  margin: 0 auto 24px;
  max-width: 640px;
}

.app-preview-figure {
  margin: 0 auto;
  max-width: 980px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(59, 130, 246, 0.08);
  overflow: hidden;
  background: rgba(17, 24, 39, 0.35);
}

.app-preview-figure img {
  width: 100%;
  display: block;
}

.app-preview-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* ── Audience (Pentru cine) premium ── */
.audience-premium {
  padding-top: 48px;
  padding-bottom: 48px;
}

.audience-eyebrow {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 10px;
}

.audience-title {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
  max-width: 720px;
}

.audience-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
  max-width: 680px;
  margin: 0 0 28px;
}

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

.audience-card {
  display: flex;
  flex-direction: column;
  background: rgba(8, 15, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.audience-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.35;
}

.audience-card-blue { --audience-accent: var(--mod-hr); }
.audience-card-green { --audience-accent: var(--mod-pontaj); }
.audience-card-orange { --audience-accent: var(--mod-salarizare); }

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.audience-card-blue .audience-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.22);
}

.audience-card-green .audience-icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.22);
}

.audience-card-orange .audience-icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.22);
}

.audience-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.62;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}

.audience-list li {
  position: relative;
  padding: 0 0 10px 30px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.audience-list li:last-child {
  padding-bottom: 0;
}

.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--audience-accent);
  background: color-mix(in srgb, var(--audience-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--audience-accent) 35%, transparent);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.audience-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.audience-card-blue .audience-tags span { color: rgba(147, 197, 253, 0.95); }
.audience-card-green .audience-tags span { color: rgba(134, 239, 172, 0.95); }
.audience-card-orange .audience-tags span { color: rgba(253, 224, 138, 0.95); }

/* ── Benefits (De ce SOCRATES) ── */
.benefits-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.benefits-panel {
  background: rgba(8, 15, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 40px;
  backdrop-filter: blur(14px);
}

.benefits-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.benefits-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
}

.benefits-lead {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.62;
  max-width: 540px;
  margin: 0 0 24px;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefits-card {
  background: rgba(11, 18, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.benefits-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.benefits-card-blue { --benefit-accent: var(--mod-hr); }
.benefits-card-green { --benefit-accent: var(--mod-pontaj); }
.benefits-card-purple { --benefit-accent: #A855F7; }
.benefits-card-orange { --benefit-accent: var(--mod-salarizare); }

.benefits-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.benefits-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits-card-blue .benefits-card-icon {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}

.benefits-card-green .benefits-card-icon {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.28);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.12);
}

.benefits-card-purple .benefits-card-icon {
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.12);
}

.benefits-card-orange .benefits-card-icon {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.12);
}

.benefits-card-head h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  padding-top: 2px;
}

.benefits-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-card-list li {
  position: relative;
  padding: 0 0 0 26px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.benefits-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--benefit-accent);
  background: color-mix(in srgb, var(--benefit-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--benefit-accent) 32%, transparent);
}

.benefits-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefits-login-figure {
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.08),
    0 28px 64px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(59, 130, 246, 0.14);
  overflow: hidden;
  background: transparent;
}

.benefits-login-figure img {
  width: 100%;
  display: block;
}

.benefits-caption {
  margin: 16px 0 0;
  max-width: 380px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ── Contact premium ── */
.contact-premium {
  padding-top: 48px;
  padding-bottom: 56px;
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-title {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 10px;
}

.contact-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
  max-width: 640px;
  margin: 0 0 28px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(8, 15, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-card-blue { --contact-accent: var(--mod-hr); }
.contact-card-green { --contact-accent: var(--mod-pontaj); }
.contact-card-orange { --contact-accent: var(--mod-salarizare); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-blue .contact-card-icon {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
}

.contact-card-green .contact-card-icon {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.28);
}

.contact-card-orange .contact-card-icon {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.28);
}

.contact-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.contact-card-main {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.45;
}

.contact-card-sub {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.contact-form-shell {
  background: rgba(8, 15, 28, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(14px);
}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.contact-form-intro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 520px;
}

.contact-form-intro-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.contact-form-intro h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.contact-form-intro p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.contact-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: rgba(59, 130, 246, 0.06);
}

.contact-trust-icon {
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
}

.contact-trust-note p {
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-grid--split {
  grid-template-columns: 1fr;
}

.contact-field {
  margin-bottom: 0;
}

.contact-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-label-icon {
  font-size: 0.82rem;
  opacity: 0.85;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 18, 32, 0.85);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}

.contact-field textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-phone-row {
  margin-top: 16px;
}

.contact-phone-field {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.contact-phone-field .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(17, 24, 39, 0.9);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.contact-phone-field input {
  flex: 1;
  min-width: 0;
}

.contact-field-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-field + .contact-field,
.contact-phone-row + .contact-field {
  margin-top: 16px;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 22px;
}

.contact-submit-btn {
  border: 0;
  min-width: 180px;
  justify-content: center;
}

.contact-submit-note {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.contact-form-status {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── HR module showcase (Resurse Umane) ── */
.hr-showcase-hero {
  padding: 36px 0 20px;
}

.hr-showcase-back {
  margin-bottom: 20px;
  width: fit-content;
}

.hr-showcase-hero-head {
  max-width: 720px;
}

.hr-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hr-showcase-hero-head h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.15;
}

.hr-showcase-hero-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
  margin: 0;
}

.hr-showcase {
  padding: 24px 0 40px;
}

.hr-showcase-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.hr-showcase-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hr-showcase-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 15, 28, 0.55);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hr-showcase-nav-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.hr-showcase-nav-item.is-active {
  background: rgba(11, 18, 32, 0.88);
  transform: translateX(6px);
}

.hr-showcase-nav-item[data-accent="green"].is-active {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.12);
}

.hr-showcase-nav-item[data-accent="purple"].is-active {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.12);
}

.hr-showcase-nav-item[data-accent="blue"].is-active {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.12);
}

.hr-showcase-nav-item[data-accent="orange"].is-active {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.12);
}

.hr-showcase-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hr-showcase-nav-item[data-accent="green"] .hr-showcase-nav-icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.hr-showcase-nav-item[data-accent="purple"] .hr-showcase-nav-icon {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
}

.hr-showcase-nav-item[data-accent="blue"] .hr-showcase-nav-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.hr-showcase-nav-item[data-accent="orange"] .hr-showcase-nav-icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

.hr-showcase-nav-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hr-showcase-nav-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.hr-showcase-nav-text span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hr-showcase-stage {
  min-height: 480px;
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 15, 28, 0.45);
  backdrop-filter: blur(12px);
}

.hr-showcase-panel {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hr-showcase-panel.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.hr-showcase-panel.is-leaving {
  opacity: 0;
  transform: translateX(-10px);
}

.hr-showcase-panel[data-accent="green"] .hr-showcase-index { color: #4ADE80; }
.hr-showcase-panel[data-accent="purple"] .hr-showcase-index { color: #C084FC; }
.hr-showcase-panel[data-accent="blue"] .hr-showcase-index { color: #60A5FA; }
.hr-showcase-panel[data-accent="orange"] .hr-showcase-index { color: #FBBF24; }

.hr-showcase-index {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.hr-showcase-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.15;
}

.hr-showcase-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.62;
  max-width: 640px;
  margin: 0 0 24px;
}

.hr-showcase-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hr-showcase-shots--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.hr-showcase-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 18, 32, 0.65);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hr-showcase-shot-media {
  flex: 1 1 auto;
  aspect-ratio: 16 / 10;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: rgba(8, 15, 28, 0.45);
}

.hr-showcase-shot-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hr-showcase-shot figcaption {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hr-showcase-shot.is-placeholder .hr-showcase-shot-media {
  display: grid;
  place-items: center;
}

.hr-showcase-shot.is-placeholder .hr-showcase-shot-placeholder {
  padding: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.hr-showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.hr-showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 15, 28, 0.7);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hr-showcase-arrow:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.1);
}

.hr-showcase-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hr-showcase-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hr-showcase-dot.is-active {
  background: #4ADE80;
  transform: scale(1.15);
}

.hr-showcase-dot:nth-child(2).is-active { background: #C084FC; }
.hr-showcase-dot:nth-child(3).is-active { background: #60A5FA; }
.hr-showcase-dot:nth-child(4).is-active { background: #FBBF24; }

/* ── Module showcase (Pontaj, Resurse Umane) ── */
.mod-showcase-hero,
.pontaj-showcase-hero {
  padding: 36px 0 20px;
}

.mod-showcase-back,
.pontaj-showcase-back {
  margin-bottom: 20px;
  width: fit-content;
}

.mod-showcase-hero-head,
.pontaj-showcase-hero-head {
  max-width: 720px;
}

.mod-showcase-eyebrow,
.pontaj-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #4ADE80;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pontaj-showcase-hero-head h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.15;
}

.pontaj-showcase-hero-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
  margin: 0;
}

.pontaj-features {
  padding: 24px 0 36px;
}

.pontaj-features-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.pontaj-features-eyebrow,
.pontaj-preview-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #4ADE80;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pontaj-features-head h2,
.pontaj-preview-head h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pontaj-features-lead,
.pontaj-preview-lead {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.62;
  margin: 0;
}

.pontaj-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pontaj-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 15, 28, 0.55);
  backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pontaj-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.pontaj-feature-card.is-active {
  background: rgba(11, 18, 32, 0.88);
  transform: translateY(-6px);
}

.pontaj-feature-card[data-accent="green"].is-active {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.12);
}

.pontaj-feature-card[data-accent="blue"].is-active {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.12);
}

.pontaj-feature-card[data-accent="teal"].is-active {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 0 32px rgba(20, 184, 166, 0.12);
}

.pontaj-feature-card[data-accent="purple"].is-active {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.12);
}

.pontaj-feature-card[data-accent="amber"].is-active {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.12);
}

.pontaj-feature-card[data-accent="orange"].is-active {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 32px rgba(249, 115, 22, 0.12);
}

.pontaj-feature-card[data-accent="cyan"].is-active {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.12);
}

.pontaj-feature-card:nth-child(7) {
  grid-column: 2;
}

.pontaj-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pontaj-feature-card[data-accent="green"] .pontaj-feature-icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.pontaj-feature-card[data-accent="blue"] .pontaj-feature-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.pontaj-feature-card[data-accent="teal"] .pontaj-feature-icon {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.25);
}

.pontaj-feature-card[data-accent="purple"] .pontaj-feature-icon {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
}

.pontaj-feature-card[data-accent="amber"] .pontaj-feature-icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

.pontaj-feature-card[data-accent="orange"] .pontaj-feature-icon {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}

.pontaj-feature-card[data-accent="cyan"] .pontaj-feature-icon {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.25);
}

.pontaj-feature-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.pontaj-feature-card > p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

.pontaj-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.pontaj-feature-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.pontaj-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mod-pontaj);
  opacity: 0.85;
}

.pontaj-preview {
  padding: 12px 0 44px;
}

.pontaj-preview-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.pontaj-preview-stage {
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(8, 15, 28, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.pontaj-preview-stage.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pontaj-preview-stage.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
}

.pontaj-preview-stage[data-accent="green"] { border-color: rgba(34, 197, 94, 0.22); }
.pontaj-preview-stage[data-accent="blue"] { border-color: rgba(59, 130, 246, 0.22); }
.pontaj-preview-stage[data-accent="teal"] { border-color: rgba(20, 184, 166, 0.22); }
.pontaj-preview-stage[data-accent="purple"] { border-color: rgba(168, 85, 247, 0.22); }
.pontaj-preview-stage[data-accent="amber"] { border-color: rgba(245, 158, 11, 0.22); }
.pontaj-preview-stage[data-accent="orange"] { border-color: rgba(249, 115, 22, 0.22); }
.pontaj-preview-stage[data-accent="cyan"] { border-color: rgba(34, 211, 238, 0.22); }

.pontaj-preview-shots {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.pontaj-preview-shots--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pontaj-preview-shots--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pontaj-preview-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 18, 32, 0.65);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.pontaj-preview-shot-media {
  flex: 1 1 auto;
  aspect-ratio: 16 / 10;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: rgba(8, 15, 28, 0.45);
  cursor: default;
}

.pontaj-preview-shot-media.is-zoomable {
  position: relative;
  cursor: zoom-in;
}

.pontaj-preview-shot-media.is-zoomable::after {
  content: "⤢";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 15, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.pontaj-preview-shot-media.is-zoomable:hover::after,
.pontaj-preview-shot-media.is-zoomable:focus-visible::after {
  opacity: 1;
}

.pontaj-preview-shot-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
}

.pontaj-preview-shot figcaption {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pontaj-preview-shot.is-placeholder .pontaj-preview-shot-media {
  display: grid;
  place-items: center;
}

.pontaj-preview-shot-placeholder {
  padding: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

/* HR module page overrides (shared pontaj showcase layout) */
.mod-page-hr .pontaj-showcase-eyebrow,
.mod-page-hr .pontaj-features-eyebrow,
.mod-page-hr .pontaj-preview-eyebrow {
  color: var(--accent-light);
}

.mod-page-hr .pontaj-feature-list li::before {
  background: var(--mod-hr);
}

.mod-page-hr .pontaj-features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mod-page-hr .pontaj-feature-card:nth-child(7) {
  grid-column: auto;
}

.mod-page-hr .pontaj-feature-card--static,
.pontaj-feature-card--static {
  cursor: default;
}

/* Salarizare module page */
.mod-page-salarizare .pontaj-showcase-eyebrow,
.mod-page-salarizare .pontaj-features-eyebrow {
  color: #FBBF24;
}

.mod-page-salarizare .pontaj-feature-list li::before {
  background: var(--mod-salarizare);
}

.mod-page-salarizare .pontaj-features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mod-page-salarizare .pontaj-feature-card:nth-child(7) {
  grid-column: auto;
}

.mod-page-salarizare .pontaj-feature-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin-bottom: 14px;
}

.mod-page-salarizare .pontaj-feature-card-top .pontaj-feature-icon {
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.mod-page-salarizare .pontaj-feature-card-intro h3 {
  margin: 0 0 6px;
}

.mod-page-salarizare .pontaj-feature-card-intro > p {
  margin: 0;
}

.mod-page-salarizare .pontaj-feature-card--static {
  cursor: default;
}

.mod-page-salarizare .pontaj-feature-card[data-accent="gold"].is-active {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.14);
}

.mod-page-salarizare .pontaj-feature-card[data-accent="gold"] .pontaj-feature-icon {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.28);
}

.preview-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(4, 8, 18, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.preview-lightbox.is-open {
  opacity: 1;
}

.preview-lightbox-inner {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preview-lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 56px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.preview-lightbox-caption {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.preview-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(8, 15, 28, 0.85);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.preview-lightbox-close:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.15);
}

body.preview-lightbox-open {
  overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-modules-grid { grid-template-columns: 1fr; }
  .pontaj-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pontaj-feature-card:nth-child(7) { grid-column: 1 / -1; max-width: 480px; justify-self: center; width: 100%; }
  .mod-page-hr .pontaj-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mod-page-salarizare .pontaj-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pontaj-preview-shots--count-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 24px; }
  .benefits-cards { grid-template-columns: 1fr; }
  .benefits-panel { padding: 24px 20px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-grid--split { grid-template-columns: 1fr; }
  .contact-form-shell { padding: 24px 20px; }
  .contact-form-header { flex-direction: column; }
  .contact-trust-note { max-width: none; }
  .hr-showcase-layout { grid-template-columns: 1fr; }
  .hr-showcase-nav { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .hr-showcase-nav-item { min-width: 240px; flex-shrink: 0; }
  .hr-showcase-nav-item:hover,
  .hr-showcase-nav-item.is-active { transform: none; }
  .hr-showcase-shots { grid-template-columns: 1fr; }
  .hr-showcase-stage { padding: 22px 18px; min-height: auto; }
  .pontaj-features-grid { grid-template-columns: 1fr; }
  .pontaj-feature-card:nth-child(7) { grid-column: auto; }
  .mod-page-hr .pontaj-features-grid { grid-template-columns: 1fr; }
  .mod-page-salarizare .pontaj-features-grid { grid-template-columns: 1fr; }
  .pontaj-preview-shots--count-2,
  .pontaj-preview-shots--count-3 { grid-template-columns: 1fr; }
  .pontaj-preview-stage { padding: 22px 18px; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .modules-grid,
  .grid-2,
  .grid-3,
  .demo-wrap,
  .benefits-wrap { grid-template-columns: 1fr; }
  .demo-hero-content h1 { max-width: none; }
  .benefits-visual { margin-top: 12px; }
  .benefits-login-figure { max-width: 480px; margin: 0 auto; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero::before { opacity: 0.5; }
}
