/* Pagina de prezentare pentru părinți — stil „autocolant de caiet": crem, contururi groase, culori vii */
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--paper);
  line-height: 1.65; overflow-x: hidden;
}
a { color: var(--indigo); }
img { max-width: 100%; }
h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4.5vw, 2.4rem); line-height: 1.2; }

/* ---------- header ---------- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  padding: 10px clamp(16px, 4vw, 40px);
  background: var(--paper); border-bottom: 3px solid var(--ink);
}
.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.lp-brand img { width: 40px; height: 40px; }
.lp-brand span { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.lp-nav { display: none; gap: 4px; margin-left: auto; }
@media (min-width: 760px) { .lp-nav { display: flex; } }
.lp-nav a {
  text-decoration: none; color: var(--ink); font-weight: 800; font-size: .92rem;
  padding: 8px 14px; border-radius: 999px;
}
.lp-nav a:hover { background: var(--amber-soft); }
.lp-cta-mini {
  margin-left: auto; text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: .92rem; white-space: nowrap;
  background: var(--amber); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .08s, box-shadow .08s;
}
@media (min-width: 760px) { .lp-cta-mini { margin-left: 8px; } }
.lp-cta-mini:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }

/* ---------- hero ---------- */
.hero {
  display: grid; gap: 30px; align-items: center;
  max-width: 1120px; margin: 0 auto;
  padding: clamp(36px, 7vw, 80px) clamp(16px, 4vw, 40px) clamp(30px, 5vw, 60px);
}
@media (min-width: 880px) { .hero { grid-template-columns: 1.2fr 1fr; } }
.hero-pill {
  display: inline-block; font-weight: 800; font-size: .92rem;
  background: var(--teal-soft); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 7px 16px; box-shadow: 3px 3px 0 var(--ink); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 5.5vw, 3.3rem); line-height: 1.15;
}
.hero h1 em {
  font-style: normal; color: var(--indigo);
  text-decoration: underline wavy var(--amber) 4px;
  text-underline-offset: 7px;
}
.hero p { margin-top: 18px; font-size: clamp(1rem, 2vw, 1.15rem); max-width: 56ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.btn-big {
  display: inline-block; text-decoration: none;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 2vw, 1.15rem);
  color: #fff; background: var(--coral);
  border: 3px solid var(--ink); border-radius: 16px; padding: 14px 26px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .1s, box-shadow .1s;
}
.btn-big:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.btn-big:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-ghost {
  display: inline-block; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--ink); background: transparent;
  border: 3px solid var(--ink); border-radius: 16px; padding: 14px 22px;
}
.btn-ghost:hover { background: var(--amber-soft); }
.btn-light { background: var(--amber); color: var(--ink); }

.hero-art { position: relative; min-height: 300px; }
.hero-pixel { position: absolute; left: 8%; bottom: 0; width: clamp(150px, 22vw, 230px); animation: floaty 4s ease-in-out infinite; }
.hero-trixy { position: absolute; right: 6%; bottom: 6%; width: clamp(120px, 17vw, 180px); animation: floaty 4s 1.2s ease-in-out infinite; }
.hero-sticker {
  position: absolute; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  background: #fff; border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 7px 15px; box-shadow: 3px 3px 0 var(--ink);
}
.hero-sticker.s1 { top: 4%; left: 0; rotate: -7deg; background: var(--teal-soft); animation: floaty 5s .4s ease-in-out infinite; }
.hero-sticker.s2 { top: 18%; right: 2%; rotate: 5deg; background: var(--indigo-soft); animation: floaty 5s 1s ease-in-out infinite; }
.hero-sticker.s3 { top: 48%; left: 4%; rotate: 4deg; background: var(--coral-soft); animation: floaty 5s 1.6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* intrarea în scenă a hero-ului */
.anim { opacity: 0; animation: rise .6s ease-out forwards; }
.a1 { animation-delay: .05s; } .a2 { animation-delay: .15s; }
.a3 { animation-delay: .3s; }  .a4 { animation-delay: .45s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .anim { animation: none; opacity: 1; }
  .hero-pixel, .hero-trixy, .hero-sticker { animation: none; }
}

/* ---------- benzile ---------- */
.band { max-width: 1120px; margin: 0 auto; padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 40px); }
.band h2 { text-align: center; margin-bottom: 14px; }
.band-sub { text-align: center; color: var(--ink-soft); max-width: 64ch; margin: 0 auto 34px; }

/* problemele — banda închisă */
.band-ink {
  max-width: none; background: var(--ink); color: var(--paper);
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
}
.band-ink h2 { color: var(--paper); }
.prob-grid {
  display: grid; gap: 18px; max-width: 1040px; margin: 30px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.prob-card {
  background: #38306b; border: 3px solid var(--paper); border-radius: var(--radius);
  padding: 24px; font-size: 1.02rem; font-style: italic;
  rotate: -1deg;
}
.prob-card:nth-child(2) { rotate: 1.2deg; }
.prob-card:nth-child(3) { rotate: -0.6deg; }
.prob-emoji { display: block; font-size: 2rem; margin-bottom: 10px; font-style: normal; }
.prob-note {
  max-width: 70ch; margin: 30px auto 0; text-align: center; font-size: 1.05rem;
}
.prob-note strong { color: var(--amber); }

/* modulele */
.mod-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.mod-card {
  background: #fff; border: var(--sticker-border); border-radius: var(--radius);
  box-shadow: var(--sticker-shadow); padding: 22px;
  transition: transform .12s, box-shadow .12s;
}
.mod-card:hover { transform: translate(-3px,-3px) rotate(-.5deg); box-shadow: 9px 9px 0 var(--ink); }
.mod-card span { font-size: 2rem; display: block; }
a.mod-card { text-decoration: none; color: inherit; display: block; }
.mod-card .mod-more {
  display: inline-block; margin-top: 10px; font-family: var(--font-display);
  font-weight: 700; font-size: .82rem; color: var(--indigo);
  border-bottom: 2px dashed var(--indigo);
}
.mod-card b { font-family: var(--font-display); font-size: 1.12rem; display: block; margin: 8px 0 4px; }
.mod-card p { font-size: .92rem; color: var(--ink-soft); }
.mc1 { background: var(--amber-soft); } .mc2 { background: var(--teal-soft); }
.mc3 { background: var(--coral-soft); } .mc4 { background: var(--indigo-soft); }

/* metoda */
.band-cream { max-width: none; background: #fff; border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.feat-grid {
  display: grid; gap: 22px; max-width: 1040px; margin: 30px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.feat { text-align: center; padding: 10px; }
.feat span { font-size: 2.4rem; display: block; }
.feat b { font-family: var(--font-display); font-size: 1.15rem; display: block; margin: 10px 0 6px; }
.feat p { font-size: .95rem; color: var(--ink-soft); }

/* pilot */
.band-amber { max-width: none; background: var(--amber); border-bottom: 4px solid var(--ink); }
.pilot-box {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--paper); border: var(--sticker-border); border-radius: 26px;
  box-shadow: 8px 8px 0 var(--ink); padding: clamp(26px, 5vw, 48px);
}
.pilot-list { list-style: none; text-align: left; max-width: 480px; margin: 22px auto 28px; }
.pilot-list li { margin: 10px 0; font-size: 1.05rem; }
.pilot-mail { margin-top: 16px; font-size: .92rem; color: var(--ink-soft); }

/* ---- pictograme SVG (în loc de emoji) ---- */
.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex: 0 0 auto; }
.hero-pill .ic { width: 16px; height: 16px; vertical-align: -3px; margin-right: 2px; }
.hero-sticker .ic { width: 17px; height: 17px; vertical-align: -3px; margin-right: 3px; }
.mod-card .mi .ic { width: 38px; height: 38px; stroke-width: 1.6; }
.feat .mi .ic { width: 44px; height: 44px; stroke-width: 1.6; }
.prob-emoji .ic { width: 42px; height: 42px; stroke-width: 1.6; color: var(--amber); }
.group-card h3 .ic { width: 25px; height: 25px; vertical-align: -4px; margin-right: 4px; color: var(--indigo); }
.btn-big .ic { width: 18px; height: 18px; vertical-align: -3px; margin-right: 4px; }
.phone-reveal .ic { width: 16px; height: 16px; vertical-align: -3px; margin-right: 3px; }
.lp-footer .ic { width: 15px; height: 15px; vertical-align: -2px; }
.mod-card .mi .ic { color: var(--ink); }

/* ---- apariții la derulare ---- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.rv-in { opacity: 1; transform: none; }

/* ---- banda animată (marquee) ---- */
.marquee { overflow: hidden; background: var(--amber); border-top: 4px solid var(--ink); white-space: nowrap; }
.marquee-inner { display: inline-flex; gap: 3rem; padding: 12px 0; animation: scrollx 26s linear infinite; }
.marquee-inner span { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.marquee-inner span::after { content: '✦'; margin-left: 3rem; opacity: .4; font-size: .8em; }
.marquee:hover .marquee-inner { animation-play-state: paused; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Pixel interactiv ---- */
.pixel-hop { animation: pixelhop .55s cubic-bezier(.3,1.6,.5,1); }
@keyframes pixelhop { 0%,100% { transform: translateY(0) rotate(0); } 40% { transform: translateY(-26px) rotate(-5deg); } }
.pixel-bubble {
  position: absolute; left: 2%; bottom: 78%; max-width: 240px; z-index: 5;
  background: #fff; border: 3px solid var(--ink); border-radius: 16px 16px 16px 4px;
  box-shadow: 5px 5px 0 var(--ink); padding: 12px 16px;
  font-weight: 800; font-size: .95rem; line-height: 1.4;
  animation: badgein .3s cubic-bezier(.2,1.6,.4,1);
}
.pixel-bubble.bye { transition: all .35s; opacity: 0; transform: translateY(-14px) scale(.85); }
@keyframes badgein { from { transform: scale(.4); opacity: 0; } }

/* ---- formularul de contact ---- */
.contact-form { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; text-align: left; margin: 0 auto; max-width: 560px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 1rem;
  border: 2.5px solid var(--ink); border-radius: 14px; background: var(--paper);
}
.contact-form select { grid-column: 1 / -1; }
.contact-form textarea { grid-column: 1 / -1; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid var(--amber); }
.contact-form button { grid-column: 1 / -1; justify-self: center; }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px; overflow: hidden; }
.contact-flash {
  max-width: 560px; margin: 0 auto 16px; border: 2.5px solid var(--ink); border-radius: 14px;
  padding: 12px 18px; font-weight: 800;
}
.cf-ok { background: var(--teal-soft); }
.cf-err { background: var(--coral-soft); }
@media (max-width: 560px) { .contact-form { grid-template-columns: 1fr; } }

/* ---- telefonul la click ---- */
.phone-row { margin-top: 20px; font-size: .95rem; }
.phone-reveal {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; cursor: pointer;
  background: #fff; color: var(--ink); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; box-shadow: 3px 3px 0 var(--ink);
}
.phone-reveal:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.phone-reveal.pr-dark { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: none; }
.phone-shown {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--ink); background: var(--teal-soft); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: 8px 18px; text-decoration: none; display: inline-block;
  animation: badgein .3s cubic-bezier(.2,1.6,.4,1);
}
.phone-shown.pr-dark { background: var(--amber); }
.lp-footer .phone-shown { color: var(--ink); } /* altfel .lp-footer a îl face amber pe amber = invizibil */

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-inner { animation: none; }
}

/* ---- harta României (franciza) ---- */
.map-wrap { max-width: 760px; margin: 0 auto; }
.ro-map { width: 100%; height: auto; display: block; }
.ro-shape { fill: var(--teal-soft); stroke: var(--ink); stroke-width: 3.5; stroke-linejoin: round; }
.ro-city { cursor: pointer; outline: none; }
.ro-city .ro-dot { stroke: var(--ink); stroke-width: 2.5; transition: r .15s; }
.ro-liber .ro-dot { fill: #fff; }
.ro-liber:hover .ro-dot, .ro-liber:focus .ro-dot { fill: var(--amber); r: 8; }
.ro-activ .ro-dot { fill: var(--coral); }
.ro-activ { cursor: default; }
.ro-capitala .ro-dot { fill: var(--indigo); }
.ro-capitala:hover .ro-dot, .ro-capitala:focus .ro-dot { fill: var(--amber); }
.ro-pulse { fill: none; stroke: var(--coral); stroke-width: 2.5; opacity: .7; animation: ropulse 1.8s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ropulse { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.ro-map text { font-family: var(--font-display); font-weight: 700; font-size: 15px; fill: var(--ink); paint-order: stroke; stroke: var(--paper); stroke-width: 4; pointer-events: none; }
.map-legend { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 14px; font-weight: 700; font-size: .92rem; }
.map-legend .lg-dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; border: 2.5px solid var(--ink); vertical-align: -2px; margin-right: 6px; }
.lg-activ { background: var(--coral); }
.lg-capitala { background: var(--indigo); }
.lg-liber { background: #fff; }
@media (prefers-reduced-motion: reduce) { .ro-pulse { animation: none; opacity: 0; } }

/* grupele pe vârste */
.groups-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); max-width: 920px; margin: 30px auto 0; }
.group-card {
  background: #fff; border: var(--sticker-border); border-radius: 26px;
  box-shadow: var(--sticker-shadow); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.group-card h3 { font-family: var(--font-display); font-size: 1.5rem; }
.group-card p { color: var(--ink-soft); font-size: .97rem; }
.group-card ul { margin: 4px 0 4px 20px; line-height: 1.7; font-size: .95rem; }
.g-tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 800;
  border: 2.5px solid var(--ink); border-radius: 999px; padding: 5px 16px; font-size: .95rem;
}
.gt-amber { background: var(--amber); }
.gt-indigo { background: var(--indigo-soft); }
.g-when { margin-top: auto; font-weight: 800; font-size: .95rem; background: var(--paper); border: 2px dashed var(--ink-soft); border-radius: 12px; padding: 8px 14px; }

/* banner cookie */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 3px solid var(--ink); border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink); padding: 16px 20px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie-banner p { font-size: .9rem; line-height: 1.5; flex: 1; min-width: 240px; margin: 0; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner button {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; cursor: pointer;
  background: var(--amber); color: var(--ink); border: 2.5px solid var(--ink);
  border-radius: 12px; padding: 9px 16px; box-shadow: 3px 3px 0 var(--ink);
}
.cookie-banner button.ck-secondary { background: #fff; }
.cookie-banner button:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }

/* banda teens */
.teens-strip {
  display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
  background: var(--indigo-soft); border: var(--sticker-border); border-radius: 26px;
  box-shadow: var(--sticker-shadow); padding: clamp(24px, 4vw, 40px);
}
.teens-strip > div { flex: 1; min-width: 260px; }
.teens-strip h2 { margin-bottom: 10px; }
.teens-strip p { color: var(--ink-soft); max-width: 64ch; }
.teens-strip .btn-ghost { background: #fff; }

/* FAQ */
#intrebari { max-width: 780px; }
#intrebari details {
  background: #fff; border: 2.5px solid var(--ink); border-radius: 16px;
  padding: 0; margin: 14px 0; overflow: hidden;
}
#intrebari summary {
  cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; padding: 16px 20px; position: relative; padding-right: 52px;
}
#intrebari summary::-webkit-details-marker { display: none; }
#intrebari summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%; translate: 0 -50%;
  font-size: 1.5rem; font-weight: 800; color: var(--coral);
}
#intrebari details[open] summary::after { content: '–'; }
#intrebari details[open] summary { background: var(--amber-soft); }
#intrebari details p { padding: 14px 20px 18px; color: var(--ink-soft); }

/* CTA final */
.band-final { max-width: none; background: var(--indigo); color: #fff; text-align: center; border-top: 4px solid var(--ink); }
.band-final h2 { color: #fff; }
.band-final p { max-width: 56ch; margin: 12px auto 28px; font-size: 1.08rem; }

/* footer */
.lp-footer {
  text-align: center; padding: 44px 20px 50px;
  background: var(--ink); color: var(--paper);
}
.lp-footer p { margin: 6px 0; }
.lp-footer a { color: var(--amber); }
.foot-small { font-size: .85rem; opacity: .85; margin-top: 14px; }
.foot-logins { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.foot-login-btn {
  display: inline-block; text-decoration: none; color: var(--paper);
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  border: 2px solid var(--paper); border-radius: 999px; padding: 8px 16px;
}
.foot-login-btn:hover { background: rgba(255,255,255,.12); }
