  :root {
    --black: #0d1117;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #dde1e9;
    --gray-400: #9ba3b2;
    --gray-600: #5a6374;
    --accent: #1877f2;
    --accent-soft: #e8f0fd;
    --text: #111827;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
  }

  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
  }

  .logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--accent); }

  .nav-back {
    font-size: 13px;
    color: var(--gray-600);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--accent); }

  .page-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 64px 48px 100px;
  }

  .doc-header {
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 36px;
    margin-bottom: 52px;
  }

  .doc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 5px 12px;
    border-radius: 40px;
    margin-bottom: 16px;
  }

  .doc-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
  }

  .doc-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .doc-meta-item {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 300;
  }
  .doc-meta-item strong { color: var(--text); font-weight: 500; }
  
  li strong {
	  font-weight: 600;
	  color: var(--text);
	  display: inline;
	  line-height: inherit;
	  vertical-align: baseline;
	}

  .toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 52px;
  }

  .toc-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 16px;
  }

  .toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: toc;
  }

  .toc-list li { counter-increment: toc; }

  .toc-list a {
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
  }

  .toc-list a:hover { color: var(--accent); }

  .toc-list a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    min-width: 24px;
    font-family: 'Bricolage Grotesque', sans-serif;
  }

  .doc-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
  }

  .doc-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .section-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    font-family: 'Bricolage Grotesque', sans-serif;
  }

  h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text);
    margin-bottom: 16px;
    scroll-margin-top: 80px;
  }

  h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 10px;
  }

  p {
    color: var(--gray-600);
    margin-bottom: 14px;
    font-weight: 300;
  }

  p:last-child { margin-bottom: 0; }

  ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  li {
	  color: var(--gray-600);
	  font-size: 15px;
	  font-weight: 300;
	  line-height: 1.6;
	  padding: 4px 0;
	  padding-left: 15px;
	  position: relative;
	}

	li::before {
	  content: '';
	  width: 5px;
	  height: 5px;
	  border-radius: 50%;
	  background: var(--accent);
	  position: absolute;
	  left: 0;
	  top: 11px;
	  flex-shrink: 0;
	}

  /* Definition list pentru tarife structurate */
  dl { margin-bottom: 14px; display: flex; flex-direction: column; gap: 14px; }
  .dl-item { display: flex; flex-direction: column; gap: 2px; padding-left: 15px; border-left: 2px solid var(--accent); }
  dt { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; }
  dd { font-size: 15px; font-weight: 300; color: var(--gray-600); line-height: 1.6; margin: 0; }

  .highlight-box {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0;
  }

  .highlight-box p { color: #1a4a8a; margin: 0; font-size: 14px; }

  .warning-box {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0;
  }

  .warning-box p { color: #92400e; margin: 0; font-size: 14px; }

  strong { color: var(--text); font-weight: 600; }
  a { color: var(--accent); text-decoration: none; }
  a:hover { text-decoration: underline; }

  .contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px;
  }

  .contact-card p { margin-bottom: 6px; font-size: 14px; }

  .def-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
  }

  .def-table th {
    background: var(--gray-100);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--gray-200);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
  }

  .def-table td {
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 300;
    vertical-align: top;
  }

  .def-table tr:nth-child(even) td { background: var(--gray-50); }

  footer {
    background: var(--black);
    color: var(--gray-600);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
  }
  .footer-logo span { color: var(--accent); }
  .footer-copy { font-size: 13px; font-weight: 300; }

  .footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  .footer-links a {
    font-size: 13px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .page-wrapper { padding: 40px 20px 80px; }
    .doc-title { font-size: 26px; }
    .def-table { font-size: 13px; }
    footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
  }