/* =====================================================================
   HighSchoolFest – stiluri. Paleta vine din afiș:
   cyan #9CEFFA · roz #EB14B5 · teal #129791 · albastru-dulap #6593AB
   ===================================================================== */
:root {
  --cyan: #9cf0fa;
  --cyan-deep: #55dcef;
  --cyan-pale: #e8fbfe;
  --pink: #eb14b5;
  --pink-dark: #c10e94;
  --pink-pale: #fde7f6;
  --teal: #129791;
  --teal-dark: #0b6f6b;
  --locker: #6593ab;
  --locker-dark: #3f6b84;
  --locker-deep: #2c4f62;
  --gold: #f2c14e;
  --ink: #0f2e36;
  --ink-soft: #3e5a63;
  --muted: #55707a;
  --paper: #ffffff;
  --bg: #f3fbfd;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(15, 46, 54, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 46, 54, 0.20);
  --font-display: "Rubik Mono One", "Arial Black", Impact, sans-serif;
  --font: "Fredoka", "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 68px;
  --container: 1120px;
  --gutter: 16px;
}

/* ---------- Reset & baze ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal-dark); }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 4px; }
.hero :focus-visible, .section-exp :focus-visible, .section-final :focus-visible, .site-footer :focus-visible, .section-inscriere :focus-visible { outline-color: #fff; box-shadow: 0 0 0 6px rgba(15, 46, 54, .6); }
.muted { color: var(--muted); }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container.narrow { max-width: 780px; }
@media (min-width: 600px) { :root { --gutter: 24px; } }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--pink); color: #fff; padding: .6rem 1rem; border-radius: 10px; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 46px; padding: .75rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1.1; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-pink { background: var(--pink); color: #fff; box-shadow: 0 8px 22px rgba(235, 20, 181, .35); }
.btn-pink:hover { background: var(--pink-dark); color: #fff; }
.btn-cyan { background: var(--cyan); color: var(--ink); box-shadow: 0 8px 22px rgba(18, 151, 145, .25); }
.btn-cyan:hover { background: var(--cyan-deep); color: var(--ink); }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .8); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost-dark:hover { background: var(--cyan-pale); }
.btn-lg { font-size: 1.1rem; min-height: 54px; padding: .9rem 1.8rem; }
.btn-sm { font-size: .95rem; min-height: 40px; padding: .5rem 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 46, 54, .06);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(15, 46, 54, .10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); position: relative; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: inline-grid; place-items: center; width: 44px; height: 40px; border-radius: 10px;
  background: var(--cyan); color: var(--pink); font-family: var(--font-display); font-size: .78rem; letter-spacing: .02em;
  transform: rotate(-4deg); box-shadow: 0 4px 12px rgba(18, 151, 145, .25);
}
.brand-text { font-weight: 600; font-size: 1.15rem; color: var(--teal-dark); letter-spacing: -.01em; }
.brand-text b { color: var(--pink); font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: .6rem; flex: none; }
@media (max-width: 419px) {
  .brand-text { display: none; }
  .header-actions { gap: .4rem; }
}

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; border: 0; border-radius: 12px; background: var(--cyan-pale); cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; border-radius: 3px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-nav { display: none; }
.site-nav ul { list-style: none; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; }
body.nav-open .site-nav {
  display: block; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; box-shadow: var(--shadow-lg); padding: .4rem 1rem 1rem; border-radius: 0 0 22px 22px;
}
body.nav-open .site-nav a { display: block; padding: .9rem .4rem; font-size: 1.1rem; border-bottom: 1px solid #eef5f7; }
body.nav-open .site-nav li:last-child a { border-bottom: 0; }
.site-nav a.is-active { color: var(--pink); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav, body.nav-open .site-nav { display: block; position: static; background: transparent; box-shadow: none; padding: 0; border-radius: 0; }
  .site-nav ul { display: flex; gap: 1.5rem; }
  .site-nav a, body.nav-open .site-nav a {
    display: inline-block; padding: .35rem 0; font-size: 1rem; border-bottom: 3px solid transparent;
    transition: color .15s ease, border-color .15s ease;
  }
  .site-nav a:hover, .site-nav a.is-active { color: var(--pink); border-bottom-color: var(--cyan); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(60% 50% at 85% 5%, rgba(255, 255, 255, .16), transparent 60%),
    linear-gradient(165deg, #3b6580 0%, #4a7690 45%, #52809a 100%);
  padding: clamp(2.2rem, 6vw, 4.5rem) 0 clamp(2.8rem, 6vw, 4.5rem);
}
.hero-beams {
  position: absolute; inset: -20% -10%; pointer-events: none;
  background:
    repeating-linear-gradient(112deg, transparent 0 200px, rgba(255, 255, 255, .07) 200px 280px, transparent 280px 520px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 160px);
}
.hero-copy { text-shadow: 0 1px 2px rgba(15, 46, 54, .25); }
.hero-copy .wm, .hero-copy .pill, .hero-copy .btn { text-shadow: none; }
.bolt {
  position: absolute; width: 52px; fill: var(--cyan); stroke: var(--gold); stroke-width: 3; stroke-linejoin: round;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .25)); pointer-events: none; --r: 12deg;
  animation: float 6s ease-in-out infinite;
}
.bolt-1 { top: 6%; right: 6%; --r: 14deg; }
.bolt-2 { top: 22%; right: 20%; width: 34px; --r: -8deg; animation-delay: -2s; }
.bolt-3 { bottom: 5%; left: 3%; width: 40px; --r: -18deg; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(var(--r)); } 50% { transform: translateY(-12px) rotate(var(--r)); } }

.hero-grid { position: relative; display: grid; gap: 2rem; align-items: center; }
.hero-kicker { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.1rem; }
.pill { display: inline-block; border-radius: 999px; padding: .38rem .95rem; font-weight: 600; font-size: .92rem; line-height: 1.2; }
.pill-white { background: #fff; color: var(--teal-dark); }
.pill-teal { background: var(--teal); color: #fff; }

.wordmark {
  display: flex; flex-direction: column; align-items: flex-start; gap: .16em;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.05rem, 8.6vw, 4.5rem); line-height: 1; margin: .2rem 0 1.3rem;
}
.wm {
  display: inline-block; background: var(--cyan); color: var(--pink);
  padding: .14em .32em .1em; box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}
.wm-1 { transform: rotate(-3deg); }
.wm-2 { transform: rotate(1.5deg) translateX(.32em); }
.wm-3 { transform: rotate(-1deg) translateX(.85em); }

.hero-tagline { font-size: clamp(1.35rem, 3.4vw, 1.95rem); font-weight: 600; line-height: 1.22; margin: 0 0 .8rem; max-width: 22ch; }
.hero-tagline em { font-style: normal; color: var(--cyan); }
.hero-sub { font-size: 1.05rem; max-width: 50ch; opacity: .95; margin: 0 0 1.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: .9rem; }
.hero-note { font-size: .9rem; opacity: .88; margin: 0; }

.countdown { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1rem; margin-top: 1.5rem; }
.countdown-label { font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; opacity: .9; }
.countdown-units { display: flex; gap: .5rem; }
.cd { min-width: 66px; padding: .45rem .5rem .4rem; border-radius: 14px; background: rgba(255, 255, 255, .16); text-align: center; border: 1px solid rgba(255, 255, 255, .25); }
.cd b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; line-height: 1.1; color: #fff; }
.cd small { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; margin-top: .15rem; }

.hero-art { display: none; }
@media (min-width: 900px) {
  .hero { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .hero-art { display: block; }
  .hero-art img { border-radius: 22px; box-shadow: var(--shadow-lg); transform: rotate(3deg); max-width: 92%; margin-inline: auto; }
  .bolt-1 { right: 42%; top: 8%; }
  .bolt-2 { right: 3%; top: 60%; width: 44px; }
}

/* ---------- Secțiuni generice ---------- */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); }
.eyebrow {
  display: inline-block; background: var(--cyan); color: var(--teal-dark); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: .78rem; padding: .32rem .8rem; border-radius: 8px; transform: rotate(-2deg); margin: 0 0 1rem .2rem;
}
.section h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); margin-bottom: .8rem; letter-spacing: -.01em; }
.tag { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .78rem; padding: .32rem .7rem; border-radius: 8px; }
.tag-pink { background: var(--pink); color: #fff; transform: rotate(-2deg); }
.tag-cyan { background: var(--cyan); color: var(--teal-dark); }

/* ---------- Licee participante ---------- */
.section-licee { background: var(--cyan-pale); }
.council-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.council-card {
  appearance: none; -webkit-appearance: none; position: relative;
  flex: 1 1 calc(50% - 12px); max-width: calc(50% - 6px);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: 12px 12px 14px; border: 2px solid transparent; border-radius: var(--radius);
  background: #fff; color: inherit; text-align: center; cursor: pointer; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.council-card:hover, .council-card:focus-visible { transform: translateY(-4px); border-color: var(--cyan-deep); box-shadow: var(--shadow-lg); }
.council-logo { display: block; width: 100%; max-width: 150px; aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid #e3f2f6; padding: 6px; }
.council-logo img { width: 100%; height: 100%; object-fit: contain; }
.council-name { font-weight: 600; font-size: .92rem; line-height: 1.25; color: var(--ink); margin-top: .3rem; }
.council-sub { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.council-more {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: auto; padding: .3rem .75rem .3rem .85rem;
  border-radius: 999px; background: var(--cyan-pale); color: var(--teal-dark); font-weight: 600; font-size: .82rem; line-height: 1.2;
  transition: background-color .2s ease, color .2s ease;
}
.council-more b { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--pink); color: #fff; font-size: 1rem; line-height: 1; }
.council-card:hover .council-more, .council-card:focus-visible .council-more { background: var(--cyan); }
.licee-foot { text-align: center; margin-top: 2rem; color: var(--muted); }
@media (min-width: 600px) {
  .council-grid { gap: 16px; }
  .council-card { flex-basis: calc(33.333% - 11px); max-width: calc(33.333% - 11px); }
}
@media (min-width: 1000px) {
  .council-card { flex-basis: calc(20% - 13px); max-width: calc(20% - 13px); }
}

/* ---------- De ce HSF ---------- */
.section-despre { background: #fff; }
.why-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.why-card { background: var(--cyan-pale); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.why-body { padding: 1rem 1.1rem 1.25rem; }
.why-body p { margin: .7rem 0 0; font-weight: 500; color: var(--ink-soft); }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cum funcționează ---------- */
.section-cum { background: var(--bg); }
.steps { list-style: none; display: grid; gap: 1.25rem; position: relative; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 1.4rem 1.2rem 1.5rem; box-shadow: var(--shadow); text-align: center; }
.step-num {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; margin-bottom: .8rem;
  background: var(--cyan); color: var(--pink); font-family: var(--font-display); font-size: 1.3rem;
  transform: rotate(-4deg); box-shadow: 0 6px 16px rgba(18, 151, 145, .25);
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.steps-foot { margin-top: 2rem; text-align: center; font-weight: 600; font-size: 1.15rem; color: var(--teal-dark); }
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 56px; border-top: 3px dashed var(--cyan-deep); }
}

/* ---------- Ce poți afla ---------- */
.section-afla { background: var(--cyan-pale); }
.topics { list-style: none; display: grid; gap: 1rem; grid-template-columns: 1fr; }
.topic { background: #fff; border-radius: var(--radius); padding: 1.3rem 1.2rem; box-shadow: var(--shadow); border-top: 6px solid var(--cyan); }
.topic:nth-child(3n + 2) { border-top-color: var(--pink); }
.topic:nth-child(3n) { border-top-color: var(--teal); }
.topic-icon { display: block; font-size: 1.9rem; line-height: 1; margin-bottom: .6rem; }
.topic h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.topic p { color: var(--ink-soft); font-size: .98rem; }
@media (min-width: 600px) { .topics { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .topics { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Experiența ---------- */
.section-exp { background: linear-gradient(160deg, var(--locker-deep), var(--locker-dark) 60%, var(--locker)); color: #fff; overflow: hidden; }
.exp-grid { display: grid; gap: 2.5rem; align-items: center; }
.exp-copy h2 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); margin-bottom: 1rem; }
.exp-list { list-style: none; display: grid; gap: .25rem; font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 500; margin-bottom: 1.2rem; }
.exp-list b { color: var(--cyan); }
.exp-note { opacity: .92; margin-bottom: 1.6rem; max-width: 52ch; }
.exp-note b { color: #fff; }
.exp-photos { display: grid; grid-template-columns: repeat(6, 1fr); gap: .25rem; padding: 1rem 0; }
.polaroid { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 8px solid #fff; border-bottom-width: 26px; border-radius: 6px; box-shadow: var(--shadow-lg); }
.p1 { grid-column: 1 / 5; grid-row: 1; transform: rotate(-3deg); }
.p2 { grid-column: 3 / 7; grid-row: 1; transform: rotate(2.5deg) translateY(28%); }
.p3 { grid-column: 2 / 6; grid-row: 2; transform: rotate(-1.5deg) translateY(10%); }
@media (min-width: 900px) { .exp-grid { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }

/* ---------- Înscriere ---------- */
.section-inscriere { background: var(--cyan); }
.section-inscriere .eyebrow { background: #fff; color: var(--pink); }
.section-inscriere .section-head p { color: var(--ink); }
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1rem, 3vw, 1.75rem); max-width: 800px; }
.form-pending { text-align: center; padding: 1.5rem .5rem; }
.form-pending-title { font-weight: 700; font-size: 1.3rem; color: var(--teal-dark); margin-bottom: .5rem; }
.form-embed iframe { width: 100%; height: 1150px; border: 0; border-radius: 12px; background: #fff; }
.form-open-row { text-align: center; margin: 0 0 1rem; }

/* ---------- Informații ---------- */
.section-info { background: #fff; }
.info-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.info-card { background: var(--cyan-pale); border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center; }
.info-icon { display: block; font-size: 2rem; line-height: 1; margin-bottom: .5rem; }
.info-card h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-dark); margin-bottom: .4rem; }
.info-card p { font-size: 1.05rem; }
.info-card .muted { font-size: .9rem; }
@media (min-width: 900px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- FAQ ---------- */
.section-faq { background: var(--cyan-pale); }
.faq-item { background: #fff; border-radius: 16px; box-shadow: var(--shadow); margin-bottom: .8rem; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.1rem 3.4rem 1.1rem 1.3rem; font-weight: 600; font-size: 1.08rem; line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%; translate: 0 -50%;
  width: 32px; height: 32px; border-radius: 50%; background: var(--cyan); color: var(--pink);
  display: grid; place-items: center; font-weight: 700; font-size: 1.35rem; line-height: 1; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ---------- CTA final ---------- */
.section-final { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; text-align: center; }
.section-final h2 { max-width: 22ch; margin-inline: auto; margin-bottom: .8rem; }
.section-final p { opacity: .92; margin-bottom: 1.6rem; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--locker-deep); color: #d9e6ec; }
.site-footer a { color: var(--cyan); }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0 2rem; }
.footer-brand img { width: 72px; height: auto; margin-bottom: .8rem; }
.footer-brand p { max-width: 42ch; }
.footer-links h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: .6rem; }
.footer-links ul { list-style: none; display: grid; gap: .35rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0 1.5rem; border-top: 1px solid rgba(255, 255, 255, .15); font-size: .9rem; }
.to-top { text-decoration: none; font-weight: 600; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

/* ---------- Modal liceu ---------- */
.modal { border: 0; padding: 0; background: transparent; width: min(100% - 24px, 640px); max-width: none; margin: auto; }
.modal::backdrop { background: rgba(15, 46, 54, .62); backdrop-filter: blur(4px); }
.modal-inner { position: relative; background: #fff; border-radius: 24px; padding: 1.5rem; box-shadow: var(--shadow-lg); max-height: 88vh; max-height: 88dvh; overflow: auto; }
.modal-close {
  position: absolute; top: .8rem; right: .8rem; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--cyan-pale); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer;
}
.modal-close:hover { background: var(--cyan); }
.modal-head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; padding-right: 2.6rem; }
.council-logo.big { width: 104px; flex: none; }
.modal-head h3 { font-size: 1.3rem; margin: .35rem 0 .2rem; }
.modal-sub { color: var(--muted); font-size: .9rem; margin: 0; }
.modal-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.modal-body h4 { margin: .8rem 0 .4rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-dark); }
.check-list { list-style: none; }
.check-list li { position: relative; padding-left: 1.6rem; margin: .3rem 0; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 700; }
.modal-cta { margin-top: 1.3rem; }
body.modal-open { overflow: hidden; }
@media (max-width: 480px) {
  .modal-inner { padding: 1.25rem 1rem 1.25rem; }
  .modal-head { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .council-logo.big { width: 88px; }
}

/* ---------- Mișcare redusă ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bolt { animation: none; }
  .btn, .council-card { transition: none; }
}
