/* ============================================================
   Pagini informative, service si documente legale.
   Se incarca doar pe paginile care au nevoie (meta.css).
   Butoanele, inputurile si cardurile vin din components.css.
   ============================================================ */

/* ─────────────────────── ANTET DE PAGINA ─────────────────────── */
.page-hero { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero__title { margin-top: var(--s-3); }
.page-hero__lead {
  margin-top: var(--s-4);
  max-width: 60ch;
  font-size: var(--t-md);
  color: var(--text-soft);
}
.page-hero__text > .cluster { margin-top: var(--s-6); }
.page-hero__meta { margin-top: var(--s-4); }
.page-hero__art { position: relative; }
.page-hero__art svg { width: 100%; height: auto; }
.page-hero--plain .page-hero__lead { margin-bottom: var(--s-5); }

@media (max-width: 899px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__art { order: -1; max-width: 26rem; }
}

/* ─────────────────────── PROMISIUNI / BIFE ─────────────────────── */
.promises { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.promise { display: grid; grid-template-columns: auto 1fr; gap: var(--s-4); align-items: start; }
.promise__icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 2px solid var(--ink-900);
  border-radius: var(--r-md);
  background: var(--accent-soft, var(--brand-100));
  box-shadow: var(--shadow-hard-sm);
}
.promise__body { display: grid; gap: 0.15rem; }
.promise__title { font-family: var(--font-display); font-weight: 600; font-size: var(--t-base); }
.promise__text { font-size: var(--t-sm); color: var(--text-soft); }

.ticks { display: grid; gap: var(--s-3); margin-block: var(--s-5); }
.tick {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: var(--t-sm);
  color: var(--text-soft);
}
.tick .icon { color: var(--mint-600); margin-top: 0.2em; }

.cluster--center { justify-content: center; }

/* ─────────────────────── LISTA DE PRETURI ─────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: var(--s-5);
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: var(--s-5);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color var(--d-base), transform var(--d-base) var(--ease-smooth), box-shadow var(--d-base);
}
.price-card:hover { border-color: var(--ink-900); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.price-card__head { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.price-card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: none;
  border: 2px solid var(--ink-900);
  border-radius: var(--r-md);
  background: var(--accent-soft, var(--brand-100));
  box-shadow: var(--shadow-hard-sm);
}
.price-card__title { font-size: var(--t-md); }
.price-list { display: grid; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'name price' 'time price';
  gap: 0.1rem var(--s-3);
  align-items: center;
  padding-block: 0.7rem;
  border-top: 1.5px dashed var(--line-strong);
}
.price-row:first-child { border-top: 0; }
.price-row__name { grid-area: name; font-weight: 600; font-size: var(--t-sm); }
.price-row__time {
  grid-area: time;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--t-xs);
  color: var(--text-mute);
}
.price-row__price {
  grid-area: price;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-base);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.price-row__from {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-xs);
  color: var(--text-mute);
}
.price-card__note {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 2px solid var(--line);
  font-size: var(--t-sm);
  color: var(--text-soft);
}
.price-disclaimer { margin-top: var(--s-6); }

/* ─────────────────────── LINIA TIMPULUI ─────────────────────── */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--s-6) var(--s-5);
}
.flow::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 2.1rem;
  height: 3px;
  border-radius: var(--r-pill);
  background: repeating-linear-gradient(90deg, var(--brand-400) 0 18px, transparent 18px 30px);
}
.flow__step { position: relative; display: grid; gap: 0.5rem; align-content: start; }
.flow__node {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 2px solid var(--ink-900);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-hard-sm);
}
.flow__num {
  position: absolute;
  right: -0.3rem;
  bottom: -0.3rem;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 2px solid var(--ink-900);
  border-radius: 50%;
  background: var(--brand-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-xs);
}
.flow__title { font-size: var(--t-md); margin-top: var(--s-2); }
.flow__text { font-size: var(--t-sm); color: var(--text-soft); max-width: 30ch; }
.flow__step:nth-child(2) { --reveal-delay: 1; }
.flow__step:nth-child(3) { --reveal-delay: 2; }
.flow__step:nth-child(4) { --reveal-delay: 3; }
.flow__step:nth-child(5) { --reveal-delay: 4; }
.flow__step:nth-child(6) { --reveal-delay: 5; }
@media (max-width: 719px) {
  .flow::before { display: none; }
  .flow__step { grid-template-columns: auto 1fr; column-gap: var(--s-4); }
  .flow__node { grid-row: span 2; }
  .flow__title { margin-top: 0; }
  .flow__text { grid-column: 2; }
}

/* ─────────────────────── FORMULARE DE PAGINA ─────────────────────── */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-layout__intro > h2 { margin-top: var(--s-3); }
.form-layout__intro > p { margin-top: var(--s-4); }
.form-layout__intro .note { margin-top: var(--s-5); }
.form-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: #fff;
  border: 2px solid var(--ink-900);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-hard);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--s-4); }
.field--wide { grid-column: 1 / -1; }
.form-grid .field__hint { display: block; margin-top: 0.35rem; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 2px dashed var(--line);
}
.form-alert {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  background: var(--err-bg);
  color: var(--err);
  font-size: var(--t-sm);
  font-weight: 600;
}
.form-alert--ok { background: var(--ok-bg); color: var(--ok); }

.form-done {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: var(--s-4);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--brand-100);
  border: 2px solid var(--ink-900);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-hard);
}
.form-done__icon { color: var(--mint-600); }
.form-done__text { max-width: 48ch; color: var(--ink-700); }
.form-done__code {
  padding: 0.5rem 1.4rem;
  border: 2px dashed var(--ink-900);
  border-radius: var(--r-md);
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-lg);
  letter-spacing: 0.06em;
}

.fieldset { border: 0; padding: 0; margin: 0 0 var(--s-5); }
.fieldset__legend {
  padding: 0;
  margin-bottom: var(--s-3);
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--ink-800);
}
.option-list { display: grid; gap: 0.6rem; }
.option-card__body { display: grid; gap: 0.1rem; }
.option-card__mark { color: var(--ink-300); }
.option-card:has(input:checked) .option-card__mark { color: var(--ink-900); }

@media (max-width: 959px) {
  .form-layout { grid-template-columns: 1fr; }
}
@media (max-width: 559px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────── CARDURI DE INFORMARE ─────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: var(--s-5);
}
.info-card {
  padding: var(--s-5);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  border-top: 6px solid var(--accent, var(--brand-400));
}
.info-card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--s-4);
  border-radius: var(--r-md);
  background: var(--accent-soft, var(--brand-100));
  color: var(--ink-900);
}
.info-card__title { margin-bottom: var(--s-3); font-size: var(--t-md); }
.info-card p { font-size: var(--t-sm); color: var(--text-soft); }

/* ─────────────────────── SCHIMB / BANDA CTA ─────────────────────── */
.swap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: var(--s-6);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--accent-soft, var(--brand-100));
  border: 2px solid var(--ink-900);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-hard);
}
.swap__text > h2 { margin-top: var(--s-3); }
.swap__text > p { margin-top: var(--s-4); }
.swap__text > .cluster { margin-top: var(--s-5); }
.swap__art svg { width: 100%; height: auto; max-width: 16rem; margin-inline: auto; }
@media (max-width: 799px) {
  .swap { grid-template-columns: 1fr; }
  .swap__art { display: none; }
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-5);
  align-items: center;
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: var(--accent-soft, var(--brand-100));
  border: 2px solid var(--ink-900);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard-sm);
}
.cta-strip__title { margin-bottom: var(--s-2); font-size: var(--t-lg); }
@media (max-width: 719px) { .cta-strip { grid-template-columns: 1fr; } }

/* ─────────────────────── CONTACT ─────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.contact-card {
  padding: var(--s-5);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color var(--d-base), transform var(--d-base) var(--ease-smooth);
}
.contact-card:hover { border-color: var(--ink-900); transform: translateY(-3px); }
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: var(--s-4);
  border: 2px solid var(--ink-900);
  border-radius: var(--r-md);
  background: var(--accent-soft, var(--brand-100));
  box-shadow: var(--shadow-hard-sm);
}
.contact-card__title { font-size: var(--t-base); margin-bottom: var(--s-2); }
.contact-card__value { font-size: var(--t-sm); color: var(--text-soft); line-height: 1.7; }

.hours { display: grid; gap: 0.35rem; font-size: var(--t-sm); }
.hours__row { display: flex; justify-content: space-between; gap: var(--s-3); }
.hours__h { font-weight: 700; font-variant-numeric: tabular-nums; }

.access {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-6);
  background: #fff;
  border: 2px dashed var(--line-strong);
  border-radius: var(--r-lg);
}
.access__text > p { margin-top: var(--s-3); }
.access__list { display: grid; gap: var(--s-3); }
@media (max-width: 799px) { .access { grid-template-columns: 1fr; } }

.map { border: 2px solid var(--ink-900); border-radius: var(--r-lg); box-shadow: var(--shadow-hard-sm); }
.map__caption { margin-top: var(--s-3); text-align: center; }

.newsletter {
  margin-top: var(--s-6);
  padding: var(--s-5);
  background: var(--accent-soft, var(--brand-100));
  border: 2px solid var(--ink-900);
  border-radius: var(--r-lg);
}
.newsletter__title { font-size: var(--t-md); margin-bottom: var(--s-2); }
.newsletter__form { margin-top: var(--s-4); display: grid; gap: var(--s-3); justify-items: start; }
.newsletter__form .field { width: 100%; margin-bottom: 0; }

/* ─────────────────────── ÎNTREBĂRI ─────────────────────── */
.faq-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s-5); }
.faq-group { margin-bottom: var(--s-8); scroll-margin-top: 7rem; }
.faq-group__head { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.faq-group__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: none;
  border: 2px solid var(--ink-900);
  border-radius: var(--r-md);
  background: var(--brand-100);
  box-shadow: var(--shadow-hard-sm);
}
.faq-group__title { font-size: var(--t-lg); }
.acc__inner a { text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────── DESPRE ─────────────────────── */
.story { display: grid; gap: var(--s-8); }
.story__block > p { color: var(--text-soft); }
.story__title { margin-bottom: var(--s-4); font-size: var(--t-xl); }
.story__block .note { margin-top: var(--s-5); }

.steps { display: grid; gap: var(--s-4); margin-block: var(--s-4); }
.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: start;
  font-size: var(--t-sm);
  color: var(--text-soft);
}
.steps__n {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
  border: 2px solid var(--ink-900);
  border-radius: 50%;
  background: var(--brand-400);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-sm);
}

.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--s-5);
}
.figure {
  padding: var(--s-5);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
}
.figure__n {
  margin-bottom: var(--s-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}
.figure__label { font-size: var(--t-sm); color: var(--text-soft); }

/* ─────────────────────── FAVORITE ─────────────────────── */
.fav-count { margin-top: var(--s-4); }
.fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: var(--s-5);
}
.fav-skeleton { aspect-ratio: 3 / 4; }
.fav-tools { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.fav-card__art { width: 68%; }
.fav-card__img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────── PAGINI LEGALE ─────────────────────── */
.legal-head { background: var(--paper); border-bottom: 2px solid var(--line); }
.legal-head h1 { margin-top: var(--s-3); }
.legal-head .breadcrumb { margin-bottom: var(--s-4); }
.doc-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--s-5);
  padding: 0.35em 0.9em;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--ink-600);
}

.legal__grid {
  display: grid;
  grid-template-columns: 17rem minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.legal__aside { position: relative; }
.toc {
  position: sticky;
  top: 7rem;
  padding: var(--s-5);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  max-height: calc(100vh - 9rem);
  overflow-y: auto;
}
.toc__title {
  margin-bottom: var(--s-3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-500);
}
.toc__list { counter-reset: toc; display: grid; gap: 0.15rem; }
.toc__list li { counter-increment: toc; }
.toc__link {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.2rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  line-height: 1.4;
  color: var(--ink-600);
  transition: background var(--d-fast), color var(--d-fast);
}
.toc__link::before {
  content: counter(toc) '.';
  font-weight: 700;
  color: var(--ink-400);
  font-variant-numeric: tabular-nums;
}
.toc__link:hover { background: #fff; color: var(--ink-900); }
.toc__link.is-current { background: var(--brand-200); color: var(--ink-900); font-weight: 700; }
.toc__link.is-current::before { color: var(--ink-900); }

.legal__body { counter-reset: sec; max-width: 72ch; }
.legal__section { padding-bottom: var(--s-7); scroll-margin-top: 7rem; }
.legal__section + .legal__section { border-top: 2px solid var(--line); padding-top: var(--s-7); }
.legal__section { counter-increment: sec; }
.legal__section > h2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: baseline;
  margin-bottom: var(--s-4);
  font-size: var(--t-lg);
}
.legal__section > h2::before {
  content: counter(sec) '.';
  color: var(--red-500);
  font-variant-numeric: tabular-nums;
}
.legal__section h3 { margin: var(--s-5) 0 var(--s-3); font-size: var(--t-md); }
.legal__section p { color: var(--text-soft); }
.legal__section .note { margin-block: var(--s-5); }
.legal__section code {
  padding: 0.1em 0.4em;
  border-radius: var(--r-xs);
  background: var(--paper-2);
  font-family: var(--font-mono);
  font-size: 0.9em;
  word-break: break-word;
}

.bullets { display: grid; gap: 0.7rem; margin: 0 0 var(--s-4); }
.bullets > li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--t-base);
  color: var(--text-soft);
}
.bullets > li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.65em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-400);
  border: 1.5px solid var(--ink-900);
}
.ol { counter-reset: step; display: grid; gap: 0.8rem; margin: 0 0 var(--s-4); }
.ol > li {
  counter-increment: step;
  position: relative;
  padding-left: 2.4rem;
  color: var(--text-soft);
}
.ol > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 2px solid var(--ink-900);
  border-radius: 50%;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-xs);
  color: var(--ink-900);
}

.def-list { display: grid; gap: 0.55rem; margin-bottom: var(--s-4); }
.def-list > li {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: var(--s-3);
  padding-bottom: 0.55rem;
  border-bottom: 1.5px dashed var(--line-strong);
  font-size: var(--t-sm);
  color: var(--text-soft);
}
.def-list__k { font-weight: 700; color: var(--ink-800); }
.def-list__v { min-width: 0; word-break: break-word; }
@media (max-width: 599px) { .def-list > li { grid-template-columns: 1fr; gap: 0.2rem; } }

.table-wrap {
  overflow-x: auto;
  margin-bottom: var(--s-5);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
}
.table { min-width: 34rem; font-size: var(--t-sm); }
.table caption { text-align: left; }
.table th, .table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.table thead th {
  background: var(--ink-900);
  color: var(--brand-400);
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
}
.table tbody th { font-weight: 700; color: var(--ink-900); background: var(--paper); }
.table tbody td { color: var(--text-soft); }
.table tbody tr:last-child th, .table tbody tr:last-child td { border-bottom: 0; }

.rights { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: var(--s-4); }
.right-card {
  padding: var(--s-4);
  background: var(--paper);
  border-left: 4px solid var(--sky-500);
  border-radius: var(--r-sm);
}
.right-card h3 { margin: 0 0 0.35rem; font-size: var(--t-base); }
.right-card p { font-size: var(--t-sm); }

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-4);
  align-items: center;
  margin-block: var(--s-5);
  padding: var(--s-5);
  background: var(--accent-soft, var(--brand-100));
  border: 2px solid var(--ink-900);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard-sm);
}
.cookie-panel__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 0.2rem;
}
.cookie-panel__value { font-family: var(--font-display); font-weight: 600; font-size: var(--t-md); }
@media (max-width: 639px) { .cookie-panel { grid-template-columns: 1fr; } }

.download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-4);
  align-items: center;
  margin-block: var(--s-5);
  padding: var(--s-5);
  background: #fff;
  border: 2px solid var(--ink-900);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard-sm);
}
.download__title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-md); }
@media (max-width: 639px) { .download { grid-template-columns: 1fr; } }

.paper-form {
  padding: var(--s-5);
  background: var(--paper);
  border: 2px dashed var(--line-strong);
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: var(--ink-700);
  overflow-x: auto;
}
.paper-form p { margin-bottom: var(--s-3); }

@media (max-width: 1023px) {
  /* `minmax(0, 1fr)`, nu `1fr`: altfel coloana nu poate coborî sub lățimea
     minimă a conținutului, iar un tabel lat umflă toată pagina pe telefon. */
  .legal__grid { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; max-height: none; }
  .toc__list { grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
}

/* ─────────────────── Harta Google, cu încărcare la cerere ───────────────────
   Până apasă vizitatorul, se vede desenul nostru al zonei. Iframe-ul Google
   vine peste el, în același chenar, ca să nu sară pagina. */
.gmap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
}
.gmap .map { display: block; width: 100%; height: auto; }

.gmap__gate {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  padding: var(--s-4) var(--s-5) var(--s-5);
  text-align: center;
  background: linear-gradient(to top, rgba(251, 248, 241, 0.97) 62%, rgba(251, 248, 241, 0));
}
.gmap__note {
  max-width: 42ch;
  margin: 0;
  font-size: var(--t-xs);
  color: var(--text-mute);
}

.gmap__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity var(--d-slow) var(--ease-smooth);
}
.gmap.is-loaded .gmap__frame { opacity: 1; }
.gmap.is-loading .gmap__gate,
.gmap.is-loaded .gmap__gate { display: none; }
.gmap.is-loading::after {
  content: 'Se încarcă harta...';
  position: absolute;
  inset: auto 0 var(--s-5) 0;
  text-align: center;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text-mute);
}
.gmap.is-loaded::after { content: none; }
