/* =========================================================
   Certificate Energetice Craiova — Audit Energetic Voiculescu M. Daniel
   Design system
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand — derived from the energy certificate colour scale */
  --green-900: #0b3d2c;
  --green-800: #12563d;
  --green-700: #157a4f;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --green-050: #f0fdf4;

  /* Energy classes A+ → G */
  --class-ap: #009640;
  --class-a:  #3faa35;
  --class-b:  #8cc63e;
  --class-c:  #d7df23;
  --class-d:  #fff200;
  --class-e:  #fbb040;
  --class-f:  #f26522;
  --class-g:  #ed1c24;

  /* Neutrals */
  --ink:        #0f1b17;
  --ink-2:      #33453e;
  --ink-3:      #5d716a;
  --line:       #e2e9e5;
  --line-strong:#cbd8d2;
  --surface:    #ffffff;
  --surface-2:  #f6faf8;
  --surface-3:  #eef5f1;
  --bg:         #ffffff;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.24vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.45vw, 1.5rem);
  --step-2:  clamp(1.45rem, 1.28rem + 0.8vw, 2rem);
  --step-3:  clamp(1.75rem, 1.45rem + 1.4vw, 2.75rem);
  --step-4:  clamp(2.1rem, 1.6rem + 2.3vw, 3.75rem);

  /* Space & shape */
  --container: 1160px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 23, .06), 0 1px 3px rgba(15, 27, 23, .04);
  --shadow: 0 4px 12px rgba(15, 27, 23, .07), 0 12px 32px rgba(15, 27, 23, .06);
  --shadow-lg: 0 8px 24px rgba(15, 27, 23, .1), 0 24px 60px rgba(15, 27, 23, .1);
  --ring: 0 0 0 3px rgba(22, 163, 74, .35);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink:        #e8f0ec;
    --ink-2:      #b9c9c2;
    --ink-3:      #8ba098;
    --line:       #22322c;
    --line-strong:#31453d;
    --surface:    #101a16;
    --surface-2:  #0d1613;
    --surface-3:  #16231e;
    --bg:         #0a110e;
    --green-100:  #10331f;
    --green-050:  #0d2418;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow: 0 4px 12px rgba(0, 0, 0, .35), 0 12px 32px rgba(0, 0, 0, .3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .45), 0 24px 60px rgba(0, 0, 0, .4);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
p { text-wrap: pretty; }
ul, ol { padding-left: 1.15em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-700); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); border-block: 1px solid var(--line); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--step--1); font-weight: 650; letter-spacing: .09em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--class-ap), var(--class-d));
}
.section-head--center .eyebrow::before { display: none; }

h2.section-title { font-size: var(--step-3); margin-bottom: .85rem; }
h3.section-title { font-size: var(--step-2); margin-bottom: .75rem; }
.section-sub { color: var(--ink-3); font-size: var(--step-1); line-height: 1.5; }

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font: inherit; font-weight: 620; line-height: 1;
  padding: .95rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--primary { background: var(--green-600); color: #fff; box-shadow: 0 6px 18px rgba(22, 163, 74, .3); }
.btn--primary:hover { background: var(--green-700); box-shadow: 0 10px 26px rgba(22, 163, 74, .38); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-700); background: var(--green-050); }

.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { background: var(--green-050); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }

.btn--sm { padding: .65rem 1.15rem; font-size: var(--step--1); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  background: linear-gradient(140deg, var(--green-600), var(--green-800));
  display: grid; place-items: center; color: #fff; box-shadow: 0 3px 10px rgba(22, 163, 74, .3);
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 750; font-size: 1.02rem; letter-spacing: -.02em; }
.brand-sub { font-size: .74rem; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  color: var(--ink-2); text-decoration: none; font-weight: 550; font-size: .96rem;
  padding: .55rem .8rem; border-radius: 8px; transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--green-700); background: var(--green-050); }
.nav a[aria-current="page"] { color: var(--green-700); font-weight: 650; }

.header-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  border-radius: 10px; background: transparent; color: var(--ink); cursor: pointer;
  place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem; box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem .6rem; font-size: 1.05rem; }
  .nav .btn { margin-top: .6rem; display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 460px at 88% -8%, var(--green-100), transparent 62%),
    radial-gradient(700px 400px at 4% 105%, var(--green-050), transparent 60%);
}
.hero-grid { display: grid; gap: clamp(2.25rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { font-size: var(--step-4); margin-bottom: 1.15rem; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--green-600), var(--green-800));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: var(--step-1); color: var(--ink-2); max-width: 52ch; margin-bottom: 1.9rem; line-height: 1.55; }
.hero .btn-row { margin-bottom: 2.1rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: .5rem .85rem; border-radius: 999px;
  font-size: var(--step--1); font-weight: 550; color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.badge svg { width: 15px; height: 15px; color: var(--green-600); flex: none; }

/* ---------- Energy scale card ---------- */
.scale-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.35rem, 3vw, 2rem); box-shadow: var(--shadow-lg);
}
.scale-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.35rem; }
.scale-card-head h2 { font-size: 1.06rem; letter-spacing: -.01em; }
.scale-card-head span { font-size: var(--step--1); color: var(--ink-3); }

.scale { display: flex; flex-direction: column; gap: 7px; }
.scale-row { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: .7rem; }
.scale-key { font-weight: 800; font-size: .95rem; text-align: center; color: var(--ink); }
.scale-bar {
  height: 26px; border-radius: 5px 3px 3px 5px; position: relative;
  display: flex; align-items: center; padding-left: .7rem;
  font-size: .73rem; font-weight: 650; color: rgba(0, 0, 0, .62); white-space: nowrap;
  transform-origin: left center;
}
.scale-bar::after {
  content: ""; position: absolute; right: -11px; top: 0;
  border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  border-left: 11px solid currentColor; color: inherit;
}
.scale-row[data-class="A+"] .scale-bar { background: var(--class-ap); color: var(--class-ap); width: 40%; }
.scale-row[data-class="A"]  .scale-bar { background: var(--class-a);  color: var(--class-a);  width: 48%; }
.scale-row[data-class="B"]  .scale-bar { background: var(--class-b);  color: var(--class-b);  width: 56%; }
.scale-row[data-class="C"]  .scale-bar { background: var(--class-c);  color: var(--class-c);  width: 64%; }
.scale-row[data-class="D"]  .scale-bar { background: var(--class-d);  color: var(--class-d);  width: 72%; }
.scale-row[data-class="E"]  .scale-bar { background: var(--class-e);  color: var(--class-e);  width: 80%; }
.scale-row[data-class="F"]  .scale-bar { background: var(--class-f);  color: var(--class-f);  width: 88%; }
.scale-row[data-class="G"]  .scale-bar { background: var(--class-g);  color: var(--class-g);  width: 96%; }
.scale-row[data-class="F"] .scale-bar,
.scale-row[data-class="G"] .scale-bar { color: rgba(255, 255, 255, .95); }
.scale-row[data-class="F"] .scale-bar::after { color: var(--class-f); }
.scale-row[data-class="G"] .scale-bar::after { color: var(--class-g); }

.scale-note {
  margin-top: 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-size: var(--step--1); color: var(--ink-3); display: flex; justify-content: space-between; gap: 1rem;
}

/* ---------- Panou experiență ---------- */
.stat-panel {
  display: grid; gap: clamp(1.5rem, 4vw, 3.25rem); align-items: center;
  grid-template-columns: 1fr;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.stat-panel::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 5px;
  background: linear-gradient(180deg, var(--class-ap), var(--class-a), var(--class-b), var(--class-c));
}
@media (min-width: 820px) { .stat-panel { grid-template-columns: minmax(240px, .8fr) 1.2fr; } }

.stat-figure { text-align: center; }
@media (min-width: 820px) { .stat-figure { border-right: 1px solid var(--line); padding-right: clamp(1.5rem, 3vw, 2.5rem); } }

.stat-number {
  display: block; font-size: clamp(3.4rem, 9vw, 5.5rem); font-weight: 800;
  line-height: 1; letter-spacing: -0.045em;
  background: linear-gradient(140deg, var(--green-600), var(--green-800));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-plus { -webkit-text-fill-color: var(--green-600); color: var(--green-600); font-size: .55em; vertical-align: super; margin-left: .04em; }
.stat-label {
  display: block; margin-top: .85rem; font-size: var(--step--1); font-weight: 620;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); line-height: 1.5;
}
.stat-copy h2 { font-size: var(--step-2); margin-bottom: .9rem; }
.stat-copy p { color: var(--ink-2); }
.stat-copy p + p { margin-top: .85rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.35rem, 2.4vw, 1.85rem);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.card p { color: var(--ink-3); font-size: .97rem; }

.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--green-050); color: var(--green-700); margin-bottom: 1.1rem;
  border: 1px solid var(--green-100);
}
.card-icon svg { width: 23px; height: 23px; }

/* Numbered steps */
.step { position: relative; padding-top: .35rem; }
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(140deg, var(--green-600), var(--green-800)); color: #fff;
  font-weight: 750; font-size: 1.12rem; margin-bottom: 1.05rem;
  box-shadow: 0 4px 12px rgba(22, 163, 74, .28);
}
.step h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .55rem; }

/* Check / cross lists */
.list-marked { list-style: none; padding: 0; display: grid; gap: .85rem; }
.list-marked li { display: grid; grid-template-columns: 24px 1fr; gap: .8rem; align-items: start; color: var(--ink-2); }
.list-marked li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; margin-top: .18rem;
  background-repeat: no-repeat; background-position: center; background-size: 13px;
}
.list-check li::before {
  background-color: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.list-cross li::before {
  background-color: #fee2e2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* ---------- Prose ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.75rem; padding-top: .25rem; }
.prose h3 { font-size: var(--step-1); margin-top: 2rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { display: grid; gap: .6rem; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose figure { margin-block: 2rem; }
.prose figcaption { font-size: var(--step--1); color: var(--ink-3); margin-top: .7rem; text-align: center; }

.callout {
  background: var(--green-050); border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-600);
  padding: 1.2rem 1.4rem; border-radius: 10px;
}
.callout p { color: var(--ink-2); }
.callout strong { color: var(--green-800); }
@media (prefers-color-scheme: dark) { .callout strong { color: var(--green-500); } }

/* ---------- Figures ---------- */
.figure-frame {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .9rem; box-shadow: var(--shadow); overflow-x: auto;
}
.figure-frame img { margin-inline: auto; }

/* ---------- Zone deservite ---------- */
.zone-group + .zone-group { margin-top: 2rem; }
.zone-group h3 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink-3); margin-bottom: 1rem; font-weight: 650;
}
.zone-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.zone-list li {
  background: var(--surface); border: 1px solid var(--line);
  padding: .45rem .85rem; border-radius: 999px;
  font-size: var(--step--1); color: var(--ink-2); font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 78ch; margin-inline: auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--green-600); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.35rem;
  font-weight: 620; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 20px; height: 20px; flex: none;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d716a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq-body { padding: 0 1.35rem 1.35rem; color: var(--ink-3); }
.faq .faq-body > * + * { margin-top: .8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-900) 62%, #071f16);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.25rem, 5vw, 3.75rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 260px at 50% -30%, rgba(34, 197, 94, .35), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: var(--step-3); margin-bottom: .85rem; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 56ch; margin-inline: auto; margin-bottom: 1.9rem; font-size: var(--step-1); line-height: 1.5; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .4rem;
  text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-600); }
.contact-card .card-icon { margin-bottom: .9rem; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card .value { font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; color: var(--green-700); }
.contact-card .value + .value { margin-top: -.1rem; }
.contact-card .muted { font-size: var(--step--1); color: var(--ink-3); }

.map-frame {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--surface-3);
}
.map-frame iframe { width: 100%; height: clamp(300px, 45vh, 440px); border: 0; display: block; }

/* Harta se încarcă doar la cererea vizitatorului — fără cookie-uri până atunci */
.map-consent {
  min-height: clamp(300px, 45vh, 440px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; text-align: center; padding: 2rem 1.5rem;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, color-mix(in srgb, var(--line) 45%, transparent) 12px 13px),
    var(--surface-3);
}
.map-consent svg { width: 34px; height: 34px; color: var(--green-600); }
.map-consent-title { font-weight: 700; font-size: 1.05rem; }
.map-consent-note { color: var(--ink-3); font-size: var(--step--1); max-width: 46ch; line-height: 1.55; }
.map-consent .btn { margin-top: .5rem; }
.map-consent-alt { font-size: var(--step--1); color: var(--ink-3); }

/* ---------- Notă legală ---------- */
.legal { max-width: 78ch; margin-inline: auto; }
.legal h2 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink-3); font-weight: 650; margin-bottom: 1rem;
  padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.legal p { font-size: var(--step--1); color: var(--ink-3); line-height: 1.65; }
.legal p + p { margin-top: .8rem; }
.legal strong { color: var(--ink-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-2); border-top: 1px solid var(--line);
  padding-block: clamp(2.75rem, 6vw, 4rem) 1.75rem; margin-top: 0;
}
.footer-grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.footer-grid h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-3); margin-bottom: 1rem; font-weight: 650; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-grid a { color: var(--ink-2); text-decoration: none; }
.footer-grid a:hover { color: var(--green-700); text-decoration: underline; }
.footer-about p { color: var(--ink-3); font-size: .95rem; max-width: 38ch; margin-top: 1rem; }
.footer-about .brand { margin-right: 0; }

.social-row { display: flex; gap: .6rem; margin-top: 1.15rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ink-2);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.social-row a:hover { background: var(--green-600); color: #fff; border-color: var(--green-600); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: var(--step--1); color: var(--ink-3);
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.call-bar .btn { flex: 1; }
@media (max-width: 720px) {
  .call-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.page-hero { padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); background: var(--surface-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: var(--step-3); margin-bottom: .8rem; }
.page-hero p { color: var(--ink-3); font-size: var(--step-1); max-width: 60ch; line-height: 1.5; }
