/* ============================================================
   ITP TRY GOLD — Design System (Auriu & Negru Premium)
   ============================================================ */

:root {
  /* Palette */
  --bg:            #0c0d10;
  --bg-2:          #121317;
  --bg-3:          #1a1c22;
  --surface:       #16181d;
  --surface-2:     #1e2128;
  --line:          #2a2d36;
  --ink:           #f4f5f7;
  --ink-soft:      #b9bcc6;
  --ink-mute:      #868a97;

  --gold:          #e8b53a;
  --gold-2:        #f5cf6b;
  --gold-deep:     #c8941f;
  --gold-glow:     rgba(232,181,58,.25);

  --green:         #25d366;
  --danger:        #ff5a5f;

  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     26px;
  --shadow:        0 20px 50px -20px rgba(0,0,0,.7);
  --shadow-gold:   0 14px 40px -12px var(--gold-glow);

  --maxw:          1160px;
  --pad:           clamp(1.1rem, 4vw, 2rem);

  --font:          'Manrope', system-ui, -apple-system, sans-serif;
  --font-head:     'Sora', 'Manrope', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: .95rem 1.6rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--btn-pad);
  border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #201700;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px var(--gold-glow); }
.btn--outline {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--whatsapp { background: var(--green); color: #04310f; }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(37,211,102,.5); }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: #000; color: var(--ink-soft); font-size: .82rem; border-bottom: 1px solid var(--line); }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1.6rem; height: 38px; }
.topbar__phone { color: var(--gold); font-weight: 700; }
.topbar__phone:hover { color: var(--gold-2); }
@media (max-width: 720px) { .topbar__item--hide { display: none; } .topbar__inner { justify-content: space-between; gap: .6rem; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,13,16,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled { border-color: var(--line); background: rgba(12,13,16,.95); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); }
.logo__mark {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #1a1c22, #050505);
  border: 1px solid rgba(232,181,58,.35);
  box-shadow: 0 6px 18px rgba(232,181,58,.25), inset 0 0 12px rgba(232,181,58,.15);
  animation: logoGlow 3.2s ease-in-out infinite;
}
.logo__mark img {
  width: 100%; height: 100%; object-fit: contain;
  animation: logoFloat 4.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(232,181,58,.35));
}
.logo:hover .logo__mark { animation-play-state: paused; transform: scale(1.05); transition: transform .4s ease; }
.logo:hover .logo__mark img { animation: logoSpin 1.2s ease-in-out; }
@keyframes logoGlow {
  0%,100% { box-shadow: 0 6px 18px rgba(232,181,58,.2), inset 0 0 10px rgba(232,181,58,.12); }
  50%     { box-shadow: 0 8px 28px rgba(232,181,58,.55), inset 0 0 18px rgba(232,181,58,.28); }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-2px) scale(1.04); }
}
@keyframes logoSpin {
  0%   { transform: rotate(0) scale(1); }
  50%  { transform: rotate(6deg) scale(1.12); }
  100% { transform: rotate(0) scale(1); }
}
.logo__text { font-size: 1.05rem; letter-spacing: .5px; color: var(--ink-soft); }
.logo__text strong { color: var(--ink); }
.logo--light .logo__text, .logo--light .logo__text strong { color: var(--ink); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  padding: .5rem .8rem; border-radius: 999px; font-size: .92rem; font-weight: 600;
  color: var(--ink-soft); transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--ink); background: var(--surface-2); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #201700 !important; font-weight: 700; margin-left: .4rem;
}
.nav__cta:hover { background: var(--gold-2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 108px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 1.4rem;
    transform: translateY(-120%); transition: transform .32s ease; z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: .85rem 1rem; font-size: 1rem; }
  .nav__cta { margin: .4rem 0 0; text-align: center; }
}

/* ---------- Hero — Scroll Scrub ---------- */
.scrub {
  --pin: 360vh;                 /* înălțimea „pistei" de scroll = viteza scrub-ului */
  position: relative;
  height: var(--pin);
  margin-top: calc(-1 * (70px + 38px)); /* trece sub header+topbar pentru full-screen */
}
.scrub__sticky {
  position: sticky; top: 0;
  height: 100vh; width: 100%;
  overflow: hidden;
  background: #000;
}
.scrub__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.scrub__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,9,11,.72) 0%, transparent 24%, transparent 52%, rgba(8,9,11,.94) 100%),
    radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(8,9,11,.55) 100%);
}
.scrub__grain { position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background: radial-gradient(900px 420px at 50% 30%, var(--gold-glow), transparent 70%); mix-blend-mode: screen; }

/* Scene */
.scene {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  opacity: 0; will-change: opacity, transform; pointer-events: none;
}
.scene .container { width: 100%; }
.scene--center { justify-content: center; text-align: center; }
.scene--center .container { max-width: 900px; }
.scene--left .container { max-width: var(--maxw); }
.scene--active { pointer-events: auto; }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(20,21,26,.6); border: 1px solid rgba(232,181,58,.35); backdrop-filter: blur(6px);
  color: var(--gold-2); font-weight: 700; font-size: .82rem;
  padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.scrub__eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.scrub__title { font-size: clamp(2.2rem, 6.4vw, 4.2rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; text-shadow: 0 4px 40px rgba(0,0,0,.6); }
.scrub__big { font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1; text-shadow: 0 4px 40px rgba(0,0,0,.6); }
.scrub__sub { color: var(--ink-soft); font-size: clamp(1rem, 2.4vw, 1.2rem); margin: 1.2rem 0 2rem; max-width: 560px; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
.scrub__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.scrub__cta--center { justify-content: center; }
.btn--onvideo { background: rgba(20,21,26,.5); backdrop-filter: blur(6px); }

/* Scene 2 — pills */
.scrub__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.gpill {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(22,24,29,.6); border: 1px solid rgba(232,181,58,.3); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 1.2rem 1.8rem; min-width: 130px;
}
.gpill strong { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: var(--gold); line-height: 1; }
.gpill span { font-size: .82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; margin-top: .4rem; }

/* Scene 3 — price cards */
.scrub__prices { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.pcard {
  display: flex; flex-direction: column; gap: .3rem; align-items: center;
  background: rgba(22,24,29,.62); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 1.3rem 2rem; min-width: 150px;
}
.pcard--hot { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pcard span { font-size: .8rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 1px; }
.pcard strong { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.pcard strong small { font-size: .85rem; color: var(--ink-soft); font-weight: 600; margin-left: .3rem; }
.scrub__plate { margin-top: 1.6rem; color: var(--ink-soft); font-size: .95rem; }
.scrub__plate strong { color: var(--gold-2); }

/* Cuvinte kinetice (scena 1) */
.kinetic { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 3vw, 1.7rem); color: var(--ink-soft); margin: 1.1rem 0 .4rem; display: flex; align-items: baseline; gap: .5ch; flex-wrap: wrap; }
.kinetic__rot { position: relative; display: inline-block; height: 1.35em; overflow: hidden; vertical-align: bottom; min-width: 6.5ch; }
.kinetic__rot b { display: block; color: var(--gold); animation: kinetic 8s infinite; }
.kinetic__rot b:nth-child(1) { animation-delay: 0s; }
.kinetic__rot b:nth-child(2) { animation-delay: 2s; }
.kinetic__rot b:nth-child(3) { animation-delay: 4s; }
.kinetic__rot b:nth-child(4) { animation-delay: 6s; }
@keyframes kinetic {
  0%   { transform: translateY(100%); opacity: 0; }
  4%   { transform: translateY(0);    opacity: 1; }
  21%  { transform: translateY(0);    opacity: 1; }
  25%  { transform: translateY(-100%);opacity: 0; }
  100% { transform: translateY(-100%);opacity: 0; }
}
.kinetic__rot b { position: absolute; top: 0; left: 0; }

/* Parallax entrance (scenele active) */
.parallax { opacity: 0; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .6s ease; }
.parallax--l { transform: translateX(-40px); }
.parallax--r { transform: translateX(40px); }
.parallax--u { transform: translateY(34px); }
.scene--active .parallax { opacity: 1; transform: none; }
.scene--active .parallax--l { transition-delay: .05s; }
.scene--active .parallax--u { transition-delay: .13s; }
.scene--active .parallax--r { transition-delay: .21s; }

/* Callout plăcuță MM·TRY (scena 3) */
.plate-callout {
  position: absolute; z-index: 3; left: 50%; top: 63%;
  transform: translate(-50%, 0) scale(.9); opacity: 0;
  transition: opacity .4s ease, transform .4s ease; pointer-events: none;
}
.plate-callout.show { opacity: 1; transform: translate(-50%, 0) scale(1); }
.plate-callout__tag {
  position: relative; display: inline-block;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #201700;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 1px; font-size: .82rem;
  padding: .35rem .8rem; border-radius: 8px; box-shadow: var(--shadow-gold); white-space: nowrap;
}
.plate-callout__tag::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; height: 34px; background: linear-gradient(var(--gold), transparent);
}
@media (max-width: 720px) { .plate-callout { display: none; } }

/* Checklist ITP (diagnoză) */
.diag {
  position: absolute; z-index: 3; top: 50%; right: clamp(1rem, 4vw, 3rem); transform: translateY(-50%) translateX(20px);
  width: 250px; max-width: 42vw; opacity: 0; transition: opacity .45s ease, transform .45s ease; pointer-events: none;
  background: rgba(12,13,16,.72); border: 1px solid rgba(232,181,58,.28); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.diag.show { opacity: 1; transform: translateY(-50%) translateX(0); }
.diag__head { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: .9rem; margin-bottom: .9rem; color: var(--ink); }
.diag__led { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 1.2s infinite; }
.diag__list { list-style: none; display: grid; gap: .55rem; }
.diag__list li {
  position: relative; padding-left: 1.8rem; font-size: .9rem; color: var(--ink-mute);
  transition: color .3s; opacity: .55;
}
.diag__list li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line); box-sizing: border-box;
  transition: all .25s;
}
.diag__list li.checked { color: var(--ink); opacity: 1; }
.diag__list li.checked::before {
  content: "✓"; display: grid; place-items: center; font-size: .72rem; font-weight: 800;
  color: #201700; background: var(--gold); border-color: var(--gold);
}
@media (max-width: 940px) { .diag { display: none; } }

/* Progress bar */
.scrub__progress { position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: rgba(255,255,255,.08); z-index: 4; }
.scrub__progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-2), var(--gold-deep)); box-shadow: 0 0 16px var(--gold-glow); }

/* Hint */
.scrub__hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 4;
  display: flex; align-items: center; gap: .5rem; color: var(--ink-soft);
  font-size: .74rem; text-transform: uppercase; letter-spacing: 2px; transition: opacity .3s;
}
.scrub__hint-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.3); } }

/* Loader */
.scrub__sticky.loading::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; z-index: 5;
  margin: -21px 0 0 -21px; border: 3px solid rgba(255,255,255,.18); border-top-color: var(--gold);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Reduced motion / no-scrub fallback: afișează prima scenă static peste poster */
.scrub.no-scrub { height: auto; margin-top: 0; }
.scrub.no-scrub .scrub__sticky { position: relative; height: clamp(560px, 90vh, 820px); }
.scrub.no-scrub .scrub__canvas { display: none; }
.scrub.no-scrub .scrub__sticky { background: #000 center/cover no-repeat; }
.scrub.no-scrub .scene--left { opacity: 1 !important; transform: none !important; }
.scrub.no-scrub .scene--center, .scrub.no-scrub .scrub__progress, .scrub.no-scrub .scrub__hint { display: none; }

/* Stats band under hero */
.hero-stats { background: var(--bg-2); border-bottom: 1px solid var(--line); position: relative; z-index: 3; }
.hero-stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.8rem 0; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--gold); }
.stat__label { font-size: .82rem; color: var(--ink-mute); }
@media (max-width: 560px) {
  .hero-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .scrub { --pin: 320vh; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-2); border-block: 1px solid var(--line); }
.trust__inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; padding: 1rem 0; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: linear-gradient(180deg, #08090b, var(--bg)); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700; color: var(--gold); margin-bottom: .7rem; }
.eyebrow--gold { color: var(--gold-2); }
.section__title { font-size: clamp(1.7rem, 4.5vw, 2.6rem); font-weight: 800; letter-spacing: -.5px; }
.section__lead { color: var(--ink-soft); font-size: 1.06rem; margin-top: 1rem; }

/* ---------- Cards (avantaje) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-deep); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--surface-2); border: 1px solid var(--line); margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 1.7rem 1.7rem;
}
.step__num {
  position: absolute; top: -18px; left: 1.7rem;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #201700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.2rem; margin: .6rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; transition: transform .2s, border-color .2s;
}
.plan:hover { transform: translateY(-4px); }
.plan--featured { border-color: var(--gold); box-shadow: var(--shadow-gold); background: linear-gradient(180deg, #1c1a14, var(--surface)); }
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #201700;
  font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
}
.plan__head { margin-bottom: 1.3rem; }
.plan__head h3 { font-size: 1.25rem; color: var(--ink-soft); }
.plan__price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--gold); margin-top: .3rem; }
.plan__price span { font-size: .95rem; color: var(--ink-mute); font-weight: 600; margin-left: .35rem; }
.plan__list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.6rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: .95rem; }
.plan__list li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.pricing__note { text-align: center; color: var(--ink-mute); font-size: .85rem; margin-top: 1.6rem; }

/* ---------- Acte ---------- */
.acte__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 860px) { .acte__grid { grid-template-columns: 1.1fr .9fr; } }
.checklist { list-style: none; display: grid; gap: .8rem; margin-top: 1.6rem; }
.checklist li {
  position: relative; padding: 1rem 1rem 1rem 3rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 600;
}
.checklist li::before {
  content: "✔"; position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-weight: 800;
}
.notice { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.7rem; }
.notice h3 { font-size: 1.15rem; margin-bottom: .8rem; }
.notice p { color: var(--ink-soft); margin-bottom: .7rem; font-size: .95rem; }
.notice ul { margin: 0 0 .7rem 1.2rem; color: var(--ink-soft); font-size: .95rem; }
.notice__legal { background: var(--bg-3); border-radius: var(--radius-sm); padding: .9rem 1rem; font-size: .9rem !important; color: var(--ink-soft) !important; margin-top: 1rem; }

/* ---------- Flote ---------- */
.flote { background: radial-gradient(1200px 400px at 80% -10%, rgba(232,181,58,.1), transparent), var(--bg); }
.flote__inner { display: grid; gap: 2rem; }
.flote__benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .7rem; margin: 1.8rem 0 2rem; }
.benefit { display: flex; align-items: center; gap: .6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-weight: 600; font-size: .95rem; }
.benefit span { color: var(--gold); }
.flote__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .8rem; }
.review p { color: var(--ink); font-size: 1rem; margin-bottom: 1.1rem; }
.review footer { color: var(--ink-mute); font-size: .9rem; }
.review footer strong { color: var(--gold-2); }

/* ---------- Program & map ---------- */
.program__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 860px) { .program__grid { grid-template-columns: .9fr 1.1fr; } }
.hours { margin: 1.6rem 0; display: grid; gap: .1rem; }
.hours__row { display: flex; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.hours__row strong { color: var(--gold); }
.hours__row--off strong { color: var(--ink-mute); }
.schedule-card { display: flex; gap: 1rem; align-items: flex-start; margin: 1.6rem 0; padding: 1.25rem 1.4rem; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius); }
.schedule-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: rgba(212,175,55,.12); color: var(--gold); flex: none; }
.schedule-card__title { margin: 0 0 .5rem; font-size: 1.05rem; color: #fff; font-weight: 600; }
.schedule-card__row { margin: .2rem 0; color: var(--ink); }
.schedule-card__row span { color: var(--ink-mute); margin-right: .35rem; }
.schedule-card__row--off { color: var(--ink-mute); }
.contact-lines { display: grid; gap: .6rem; margin-bottom: 1.2rem; }
.contact-line { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink-soft); }
.contact-line:hover { color: var(--gold); }
.program__note { color: var(--ink-mute); font-size: .9rem; }
.program__map iframe { width: 100%; height: 380px; border: 1px solid var(--line); border-radius: var(--radius); filter: grayscale(.2) contrast(1.05); }

/* ---------- Bandă cinematică (video de condus) ---------- */
.cineband {
  position: relative; overflow: hidden;
  min-height: clamp(440px, 72vh, 700px);
  display: flex; align-items: center;
  border-block: 1px solid var(--line);
}
.cineband__video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  object-fit: cover; z-index: 0;
}
.cineband__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,9,11,.9) 0%, rgba(8,9,11,.55) 48%, rgba(8,9,11,.5) 100%),
    linear-gradient(180deg, rgba(8,9,11,.6) 0%, transparent 32%, rgba(8,9,11,.85) 100%);
}
.cineband__inner { position: relative; z-index: 2; max-width: 720px; }
.cineband__title { font-size: clamp(1.9rem, 5.5vw, 3.4rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin: .6rem 0 1rem; text-shadow: 0 4px 40px rgba(0,0,0,.6); }
.cineband__sub { color: var(--ink-soft); font-size: clamp(1rem, 2.4vw, 1.2rem); max-width: 560px; margin-bottom: 2rem; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
.cineband__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.cine-rev { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.cine-rev.in { opacity: 1; transform: none; }
.cineband__title.cine-rev { transition-delay: .08s; }
.cineband__sub.cine-rev { transition-delay: .16s; }
.cineband__cta.cine-rev { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .cine-rev { opacity: 1; transform: none; } }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: start; }
@media (min-width: 920px) { .booking { grid-template-columns: 1fr 1fr; } }
.booking__perks { list-style: none; display: grid; gap: .6rem; margin: 1.4rem 0 1.8rem; color: var(--ink-soft); }
.booking__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font-family: inherit; font-size: 1rem;
  background: var(--bg-3); border: 1.5px solid var(--line); border-radius: var(--radius-sm); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23868a97' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.booking__status { margin-top: 1rem; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.booking__status.ok { color: var(--green); }
.booking__status.err { color: var(--danger); }
.booking__legal { color: var(--ink-mute); font-size: .8rem; margin-top: .9rem; }
.field.invalid input, .field.invalid select { border-color: var(--danger); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.accordion { display: grid; gap: .8rem; }
.acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.acc summary {
  cursor: pointer; list-style: none; padding: 1.2rem 1.4rem; font-weight: 700; font-family: var(--font-head);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: #08090b; border-top: 1px solid var(--line); padding-top: 3.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__brand p { color: var(--ink-mute); font-size: .92rem; margin-top: 1rem; max-width: 320px; }
.footer__col h4 { font-size: .95rem; margin-bottom: 1rem; color: var(--ink); }
.footer__col a, .footer__col span { display: block; color: var(--ink-soft); font-size: .92rem; margin-bottom: .6rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding: 1.3rem 0; color: var(--ink-mute); font-size: .84rem; text-align: center; }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1.2fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
    background: rgba(8,9,11,.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); padding: .5rem;
    gap: .4rem;
  }
  .mobile-cta__btn {
    display: flex; align-items: center; justify-content: center; gap: .3rem;
    padding: .8rem .3rem; border-radius: 12px; font-weight: 700; font-size: .84rem;
  }
  .mobile-cta__btn--call { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); }
  .mobile-cta__btn--book { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #201700; }
  .mobile-cta__btn--wa { background: var(--green); color: #04310f; }
  body { padding-bottom: 72px; }
}

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

/* ============================================================
   MOBILE OPTIMIZATION (≤ 768px) — non-destructive additions
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad: 1.1rem; }
  html { scroll-padding-top: 68px; }

  /* Topbar: compact */
  .topbar { font-size: .74rem; }
  .topbar__inner { height: 34px; padding-inline: 1rem; }

  /* Header: smaller logo, tighter row */
  .header__inner { height: 60px; }
  .logo__mark { width: 36px; height: 36px; border-radius: 10px; }
  .logo__text { font-size: .92rem; letter-spacing: .3px; }
  .nav-toggle { padding: 10px; }

  /* Mobile menu drawer aligned to new header height */
  .nav { inset: 94px 0 auto 0 !important; max-height: calc(100vh - 94px); overflow-y: auto; }

  /* HERO — bound to viewport, keep car visible */
  .scrub { --pin: 240vh; margin-top: 0; }
  .scrub__sticky { height: 78svh; min-height: 560px; }
  .scrub__canvas { object-fit: cover; object-position: center 40%; }
  .scrub__title { font-size: clamp(1.9rem, 8vw, 2.4rem); letter-spacing: -.5px; }
  .scrub__big   { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }
  .scrub__sub   { font-size: 1rem; margin: .9rem 0 1.4rem; }
  .badge { font-size: .72rem; padding: .38rem .75rem; margin-bottom: .9rem; }
  .kinetic { font-size: 1.05rem; margin: .8rem 0 .3rem; }

  /* CTA buttons full-width on hero + section */
  .scrub__cta { flex-direction: column; gap: .6rem; }
  .scrub__cta .btn { width: 100%; min-height: 50px; }
  .cineband__cta { flex-direction: column; gap: .6rem; }
  .cineband__cta .btn { width: 100%; min-height: 50px; }
  .flote__cta .btn { width: 100%; min-height: 50px; }

  .scrub__pills, .scrub__prices { gap: .7rem; margin-top: 1.2rem; }
  .gpill  { min-width: 100px; padding: .9rem 1.2rem; flex: 1 1 30%; }
  .pcard  { min-width: 120px; padding: 1rem 1.2rem; flex: 1 1 30%; }
  .pcard strong { font-size: 1.55rem; }
  .gpill strong { font-size: 1.7rem; }

  /* Stats — two-up, equal-height cards */
  .hero-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    padding: 1.4rem 0;
  }
  .stat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem .6rem;
    min-height: 92px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .stat__num { font-size: 1.7rem; }
  .stat__label { font-size: .78rem; line-height: 1.25; }

  /* Trust strip: compact single-column */
  .trust__inner { flex-direction: column; align-items: flex-start; gap: .5rem; padding: 1rem .2rem; font-size: .85rem; }

  /* Sections spacing */
  .section { padding: 2.75rem 0; }
  .section__head { margin-bottom: 1.8rem; }
  .section__title { font-size: clamp(1.55rem, 6vw, 1.9rem); }
  .section__lead { font-size: .98rem; }

  /* Cards & steps: single column, uniform */
  .cards, .steps, .pricing, .reviews, .flote__benefits {
    grid-template-columns: 1fr; gap: 1rem;
  }
  .card, .step, .plan, .review { padding: 1.4rem; }
  .step { padding-top: 2rem; }

  /* Pricing note & plan CTAs full-width */
  .plan .btn { width: 100%; min-height: 48px; }
  .plan__price { font-size: 2.2rem; }

  /* Booking form */
  .field--row { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { min-height: 48px; font-size: 16px; }
  .booking__form { padding: 1.3rem; }

  /* Program & map */
  .program__map iframe { height: 260px; }
  .schedule-card { padding: 1rem 1.1rem; }
  .contact-line { min-height: 44px; align-items: center; }

  /* Accordion */
  .acc summary { padding: 1rem 1.1rem; font-size: .98rem; }
  .acc__body   { padding: 0 1.1rem 1.1rem; }

  /* CTA cards in the "programare" pair */
  #programare .container { grid-template-columns: 1fr !important; gap: 1rem !important; }
  #programare .btn { width: 100%; min-height: 50px; }

  /* Footer: single column, generous spacing */
  .footer { padding-top: 2.2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; padding-bottom: 1.6rem; }
  .footer__col a, .footer__col span { min-height: 34px; }

  /* Sticky mobile bar: taller, tap-friendly */
  .mobile-cta { padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom)); }
  .mobile-cta__btn { min-height: 48px; font-size: .9rem; }
  body { padding-bottom: 76px; }
}

/* Very small phones (≤ 360px) */
@media (max-width: 360px) {
  :root { --pad: .9rem; }
  .logo__text { font-size: .82rem; }
  .scrub__title { font-size: 1.7rem; }
  .btn { font-size: .92rem; padding: .85rem 1.2rem; }
}
