/* ============================================================
   DENA DENT — design system
   Tokens first; no ad-hoc hex values below the tokens block.
   ============================================================ */

:root {
  /* brand (mov — sigla Dena Dent) */
  --brand-950: #241332;
  --brand-900: #351a49;
  --brand-800: #4c2168;
  --brand-700: #672a8c;
  --brand-600: #8232ad;
  --brand-500: #9b45c9;
  --brand-400: #b76ede;
  --brand-100: #f0e4f8;
  --brand-50:  #f9f4fc;
  /* neutrals */
  --ink: #221c2e;
  --ink-soft: #574f66;
  --ink-faint: #857c96;
  --paper: #ffffff;
  --paper-soft: #faf8fc;
  --line: #eae4f1;
  /* accents */
  --gold: #f5a524;
  --green: #16a34a;
  --red: #dc2626;

  --grad-brand: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  --grad-hero: linear-gradient(100deg, rgba(38,16,56,.93) 0%, rgba(56,24,84,.82) 38%, rgba(56,24,84,.35) 72%, rgba(38,16,56,.15) 100%);

  --shadow-sm: 0 1px 2px rgba(36,19,50,.06), 0 1px 6px rgba(36,19,50,.05);
  --shadow-md: 0 6px 24px -6px rgba(36,19,50,.14);
  --shadow-lg: 0 16px 48px -12px rgba(36,19,50,.22);

  --radius: 16px;
  --radius-sm: 10px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand-500); }
h1, h2, h3, h4 { line-height: 1.22; color: var(--ink); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-700); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; line-height: 1.2; letter-spacing: .01em;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(103,42,140,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(103,42,140,.65); color: #fff; }
.btn-light { background: #fff; color: var(--brand-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { color: var(--brand-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.14); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--brand-800); background: var(--paper); }
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-600); }

/* ---------- top bar ---------- */
.topbar { background: var(--brand-950); color: #cdbfdd; font-size: 13.5px; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 6px 26px; align-items: center; min-height: 40px; padding-top: 5px; padding-bottom: 5px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--brand-400); }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--brand-400); flex: none; }
.topbar .spacer { flex: 1; }
@media (max-width: 720px) { .topbar .hide-mobile { display: none; } }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.site-header .container { display: flex; align-items: center; gap: 14px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-tooth { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 3px 6px rgba(103,42,140,.3)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand-text strong em { font-style: normal; color: var(--brand-600); }
.brand-text small { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav a { display: block; padding: 10px 11px; border-radius: 999px; font-weight: 600; font-size: 14.5px; white-space: nowrap; color: var(--ink-soft); }
.main-nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.main-nav li.active > a { color: var(--brand-700); background: var(--brand-100); }
.has-sub { position: relative; }
.has-sub > a::after { content: ""; display: inline-block; margin-left: 6px; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 60;
}
.has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { border-radius: 8px; padding: 9px 12px; font-size: 14.5px; }
.header-cta { flex: none; min-height: 44px; padding: 10px 18px; font-size: 14.5px; }
.nav-toggle {
  display: none; margin-left: auto; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: var(--brand-800); transition: transform .2s ease, opacity .2s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1160px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  /* backdrop-filter ar face din antet blocul de conținere al sertarului position:fixed */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); }
  /* sertarul e frate cu ele în același context de stivuire, deci trebuie ridicate peste el */
  .site-header .brand, .nav-toggle { position: relative; z-index: 95; }
  .main-nav {
    position: fixed; inset: 0; top: 0; margin: 0; z-index: 90; padding: 110px 24px 40px;
    background: var(--paper); overflow-y: auto;
    opacity: 0; visibility: hidden; transition: opacity .2s ease;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; }
  .nav-open .site-header { background: var(--paper); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { font-size: 18px; padding: 13px 16px; }
  .has-sub > a::after { float: right; margin-top: 9px; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    padding: 0 0 0 16px; display: none; min-width: 0;
  }
  .has-sub.open > .sub-menu { display: block; }
  .sub-menu a { font-size: 16px; }
  body.nav-open { overflow: hidden; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.hero .container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 96px; max-width: var(--container); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  font-size: 13.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #f3e9fb;
  backdrop-filter: blur(4px);
}
.hero h1 { margin: 22px 0 14px; font-size: clamp(34px, 5vw, 58px); font-weight: 800; color: #fff; max-width: 15ch; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #e9b8ff, #d688ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 54ch; font-size: 18.5px; color: #e8def4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 38px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; list-style: none; }
.hero-badges li { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: #f1e8fa; }
.hero-badges svg { width: 19px; height: 19px; color: var(--brand-400); flex: none; }
@media (max-width: 720px) { .hero .container { padding-top: 64px; padding-bottom: 64px; } }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--paper-soft); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(27px, 3.4vw, 38px); }
.section-head p { color: var(--ink-soft); font-size: 17.5px; margin-bottom: 0; }
@media (max-width: 720px) { .section { padding: 60px 0; } }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.card { display: block; color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-400); }
.card h3 { font-size: 19.5px; margin: 18px 0 8px; }
.card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 0; }
.card .icon-chip {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-100); color: var(--brand-700);
}
.card .icon-chip svg { width: 30px; height: 30px; }
.card .card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14.5px; color: var(--brand-700); }
.card .card-more svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card:hover .card-more svg { transform: translateX(4px); }
.card:hover .card-more { color: var(--brand-500); }

/* info strip under hero */
.info-strip { position: relative; z-index: 2; margin-top: -46px; }
.info-strip .grid { gap: 18px; }
.info-strip .card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; }
.info-strip .card:hover { transform: none; border-color: var(--line); box-shadow: var(--shadow-md); }
.info-strip .icon-chip { width: 46px; height: 46px; border-radius: 12px; flex: none; }
.info-strip .icon-chip svg { width: 24px; height: 24px; }
.info-strip h3 { margin: 0 0 3px; font-size: 15.5px; }
.info-strip p { font-size: 14.5px; margin: 0; }
.info-strip a { font-weight: 700; }

/* ---------- promo band ---------- */
.promo-band { background: var(--grad-brand); color: #fff; border-radius: var(--radius); padding: 40px 44px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.promo-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.09); }
.promo-band h3 { color: #fff; font-size: clamp(21px, 2.6vw, 28px); margin: 0 0 6px; }
.promo-band p { margin: 0; color: #eeddfa; }
.promo-band .btn { position: relative; z-index: 1; }
.promo-band > div:first-child { flex: 1 1 380px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 26px 12px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat strong { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--brand-700); letter-spacing: -.02em; }
.stat span { font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }

/* ---------- split (about teaser) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-media .floating-chip {
  position: absolute; left: -18px; bottom: 26px; background: var(--paper); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 14px 20px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px;
}
.split-media .floating-chip svg { width: 26px; height: 26px; color: var(--brand-600); }
@media (max-width: 640px) { .split-media .floating-chip { left: 10px; } }
.check-list { list-style: none; margin: 20px 0 28px; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 16px; }
.check-list svg { width: 22px; height: 22px; flex: none; color: var(--green); margin-top: 2px; }
.check-list strong { color: var(--ink); }

/* ---------- testimonials ---------- */
.testimonials { position: relative; }
.testi-track { display: grid; }
.testi-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .45s ease; }
.testi-slide.active { opacity: 1; visibility: visible; }
.testi-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 38px 42px; max-width: 820px; margin: 0 auto; text-align: center; position: relative;
}
.testi-card::before { content: "\201C"; position: absolute; top: 2px; left: 26px; font-size: 90px; line-height: 1; color: var(--brand-100); font-family: Georgia, serif; }
.testi-card blockquote { margin: 0 0 18px; font-size: 17.5px; color: var(--ink-soft); position: relative; z-index: 1; }
.testi-card figcaption { font-weight: 700; color: var(--ink); }
.testi-card figcaption span { display: block; font-weight: 600; font-size: 13.5px; color: var(--ink-faint); }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-dot { width: 11px; height: 11px; min-width: 0; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.testi-dot.active { background: var(--brand-600); transform: scale(1.25); }
.testi-dot:hover { background: var(--brand-400); }
.testi-arrows { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; pointer-events: none; }
.testi-arrow { pointer-events: auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--brand-700); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: all .15s ease; }
.testi-arrow:hover { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.testi-arrow svg { width: 20px; height: 20px; }
@media (max-width: 1060px) { .testi-arrows { display: none; } }
@media (max-width: 640px) { .testi-card { padding: 30px 22px; } }

/* ---------- article cards ---------- */
.article-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.article-card img { width: 100%; height: 190px; object-fit: cover; }
.article-card .article-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.article-card h3 { margin: 0 0 8px; font-size: 18.5px; }
.article-card p { flex: 1; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 0; padding: 0; cursor: zoom-in; background: none; display: block; width: 100%; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(36,19,50,.55));
  opacity: 0; transition: opacity .2s ease;
}
.gallery-item:hover::after { opacity: 1; }
.lightbox {
  position: fixed; inset: 0; z-index: 150; background: rgba(24,12,36,.92); display: none;
  align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; font-size: 26px; cursor: pointer; line-height: 1; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ---------- page hero (subpages) ---------- */
.page-hero { background: var(--brand-950); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 85% -20%, rgba(155,69,201,.45), transparent 65%), radial-gradient(700px 380px at 10% 130%, rgba(130,50,173,.35), transparent 60%); }
.page-hero .container { position: relative; padding-top: 58px; padding-bottom: 58px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 14px; padding: 0; font-size: 13.5px; color: #b9a7cd; font-weight: 600; }
.breadcrumb a { color: #d9c9ea; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #7c6795; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin: 0; }
.page-hero .lead { color: #d9c9ea; max-width: 62ch; margin: 12px 0 0; font-size: 17.5px; }

/* ---------- subpage layout ---------- */
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; }
@media (max-width: 980px) { .page-layout { grid-template-columns: 1fr; } }
.prose { font-size: 16.5px; color: var(--ink-soft); }
.prose h2 { font-size: 26px; margin: 1.6em 0 .6em; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; margin: 1.5em 0 .5em; }
.prose strong { color: var(--ink); }
.prose .lead-p { font-size: 18.5px; color: var(--ink); }
.prose ul.ticks { list-style: none; padding: 0; margin: 1em 0 1.6em; display: grid; gap: 10px; }
.prose ul.ticks li { display: flex; gap: 11px; align-items: flex-start; }
.prose ul.ticks svg { width: 20px; height: 20px; flex: none; color: var(--brand-600); margin-top: 3px; }
.prose ol { padding-left: 22px; }
.prose ol li { margin-bottom: .5em; }
.callout {
  border-radius: var(--radius-sm); background: var(--brand-50); border: 1px solid var(--brand-100);
  padding: 20px 24px; margin: 1.6em 0; display: flex; gap: 14px; align-items: flex-start;
}
.callout svg { width: 24px; height: 24px; color: var(--brand-600); flex: none; margin-top: 2px; }
.callout p { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0 1.8em; font-size: 15.5px; }
.prose th { text-align: left; background: var(--brand-50); color: var(--ink); padding: 12px 16px; border-bottom: 2px solid var(--brand-100); }
.prose td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.prose tr:hover td { background: var(--paper-soft); }

/* sidebar */
.sidebar { display: grid; gap: 26px; position: sticky; top: 104px; }
@media (max-width: 980px) { .sidebar { position: static; } }
.side-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 16px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 800; margin: 0 0 14px; }
.side-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.side-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 10px; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.side-menu a:hover { background: var(--brand-50); color: var(--brand-700); }
.side-menu li.active a { background: var(--brand-100); color: var(--brand-800); }
.side-menu svg { width: 16px; height: 16px; flex: none; color: var(--brand-500); }
.side-contact { background: var(--grad-brand); color: #fff; border: 0; }
.side-contact h3 { color: #e8d5f7; }
.side-contact p { color: #eeddfa; font-size: 15px; }
.side-contact a.tel { display: block; font-size: 21px; font-weight: 800; color: #fff; margin: 6px 0 14px; }
.side-contact a.tel:hover { color: var(--brand-400); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 16px; }
.contact-cards .card { display: flex; gap: 16px; align-items: flex-start; }
.contact-cards .card:hover { transform: none; }
.contact-cards h3 { margin: 0 0 4px; font-size: 16.5px; }
.contact-cards p { margin: 0; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 36px; }
@media (max-width: 640px) {
  .form-card { padding: 22px 18px; }
  .g-recaptcha { transform: scale(.92); transform-origin: 0 0; }
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 14.5px; }
.field input, .field textarea {
  font: inherit; font-size: 15.5px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; background: var(--paper-soft);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 4px var(--brand-100); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13.5px; color: var(--ink-faint); margin: 14px 0 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 430px; border: 0; }

/* ---------- CTA section ---------- */
.cta-final { background: var(--brand-950); color: #fff; position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 50% -30%, rgba(155,69,201,.5), transparent 70%); }
.cta-final .container { position: relative; text-align: center; padding-top: 84px; padding-bottom: 84px; }
.cta-final h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); max-width: 22ch; margin: 0 auto 14px; }
.cta-final p { color: #cdbcdf; max-width: 56ch; margin: 0 auto 32px; font-size: 17.5px; }

/* ---------- footer ---------- */
.site-footer { background: var(--brand-950); color: #b6a5c9; font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
@media (max-width: 940px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #cbbcdc; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text strong em { color: var(--brand-400); }
.footer-brand .brand-text small { color: #a893bd; }
.footer-brand p { font-size: 14.5px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--brand-400); flex: none; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #e6d9f2; }
.footer-social a:hover { background: var(--brand-600); color: #fff; }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13.5px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.footer-bottom a { color: #a893bd; }

/* ---------- reveal on scroll (doar cu JS activ; altfel conținutul rămâne vizibil) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; } }

/* ---------- misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider-space { height: 26px; }
.anpc-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.anpc-badges a { font-size: 12.5px; border: 1px solid rgba(255,255,255,.2); padding: 5px 10px; border-radius: 8px; }
