/* ===================================================================
   TNT TEAM — rework 2026 · Paletă A (Ultraviolet + Magenta)
   Fonturi: Anton (display) · Oswald (etichete) · Sora (body)
   Mișcare: intro + scroll-reveal + hover. FĂRĂ bucle infinite grele.
=================================================================== */

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

:root {
  /* --- Paletă A --- */
  --bg:        #0A0710;   /* negru cu bias violet, nu negru plat */
  --bg-2:      #100A1A;
  --surface:   #170E24;
  --surface-2: #1E1330;
  --line:      #2C1D42;
  --line-soft: #201634;

  --violet:      #7C3CFF;   /* ultraviolet electric (NU purple-600) */
  --violet-dark: #5E22D9;
  --violet-hi:   #B98CFF;
  --magenta:     #E5219E;   /* partener cald */

  --text:    #F1EAFA;
  --muted:   #9C8FB4;
  --muted-2: #6E6088;
  --white:   #ffffff;

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-cond:    'Oswald', sans-serif;
  --font-body:    'Sora', system-ui, -apple-system, sans-serif;

  --max-width: 1180px;
  --ease:     cubic-bezier(.2,.9,.25,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: .95; letter-spacing: .005em; text-transform: uppercase; }
h1 { font-size: clamp(2.8rem, 8vw, 6rem); }
h2 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-family: var(--font-cond); font-weight: 600; letter-spacing: .02em; text-transform: none; }
p  { color: var(--muted); }
a  { color: inherit; text-decoration: none; }
em { font-style: normal; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 26px; }
section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }

/* eyebrow reutilizabil */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-cond); font-weight: 600;
  font-size: .82rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--violet-hi);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--magenta), var(--violet)); }

/* titlu de secțiune — NU centrat (spargem simetria) */
.section-title { margin-bottom: 14px; max-width: 20ch; }
.section-title em { color: transparent; background: linear-gradient(96deg, var(--violet-hi), var(--violet) 55%, var(--magenta)); -webkit-background-clip: text; background-clip: text; }
.section-subtitle { color: var(--muted); margin-bottom: 54px; max-width: 56ch; font-size: 1.02rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 9px;
  font-family: var(--font-cond); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, border-color .35s, color .35s;
  will-change: transform;
}
.btn--primary { background: var(--violet); color: #fff; box-shadow: 0 10px 28px rgba(124,60,255,.32); }
.btn--primary:hover { transform: translateY(-3px) skewX(-3deg); background: linear-gradient(92deg, var(--violet), var(--magenta)); box-shadow: 0 16px 42px rgba(229,33,158,.4); }
.btn--outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn--outline:hover { transform: translateY(-3px); border-color: var(--violet); color: var(--violet-hi); }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; background: transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(10,7,16,.82); backdrop-filter: blur(12px); padding: 13px 40px; border-bottom-color: var(--line-soft); }
.nav__logo { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .04em; }
.nav__logo span { color: var(--violet); }
.nav__links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav__links a { font-family: var(--font-cond); font-weight: 500; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { background: var(--violet); color: #fff !important; padding: 9px 20px; border-radius: 7px; }
.nav__cta:hover { background: var(--magenta); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ===================================================================
   HERO — asimetric, template centrat SPART
=================================================================== */
.hero {
  position: relative; min-height: 100vh; padding: 120px 0 80px;
  display: flex; align-items: center; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
/* glow-uri ambientale (statice, ieftine) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52vw 52vw at 82% 6%, rgba(124,60,255,.22), transparent 60%),
    radial-gradient(42vw 42vw at 6% 88%, rgba(229,33,158,.14), transparent 62%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; padding: 0 26px; width: 100%;
  display: grid; grid-template-columns: 1.55fr .95fr; gap: 40px; align-items: center;
}
.hero__left { max-width: 42ch; }
.hero__kicker { margin-bottom: 22px; }
.hero__claim {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: .84; letter-spacing: -.01em; text-transform: uppercase;
  margin: 0 0 8px;
}
.hero__claim .l1 { display: block; color: var(--text); }
.hero__claim .l2 {
  display: block; margin-left: clamp(30px, 9vw, 130px); /* offset — imperfecțiune intenționată */
  color: transparent;
  background: linear-gradient(96deg, var(--violet-hi) 5%, var(--violet) 55%, var(--magenta) 105%);
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 10px 40px rgba(124,60,255,.3));
}
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.16rem); color: #d5c9e6; line-height: 1.55; margin: 26px 0 34px; max-width: 46ch; }
.hero__sub b { color: #fff; font-weight: 600; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* logo graffiti — flotant, rotit ușor, cu glow (fără spin infinit) */
.hero__logo-3d-wrap, .hero__right { position: relative; display: flex; justify-content: center; }
.hero__logo-3d-wrap img, .hero__right img {
  width: clamp(220px, 30vw, 400px); height: auto;
  transform: rotate(-4deg);
  filter: drop-shadow(0 20px 50px rgba(124,60,255,.45));
  pointer-events: none;
}
.hero__scroll-indicator { position: absolute; bottom: 30px; left: 26px; z-index: 2; display: flex; align-items: center; gap: 12px; }
.hero__scroll-indicator span { display: block; width: 2px; height: 54px; background: linear-gradient(to bottom, var(--violet), transparent); }
.hero__scroll-indicator::after { content: "SCROLL"; font-family: var(--font-cond); font-size: .7rem; letter-spacing: .3em; color: var(--muted-2); writing-mode: vertical-rl; }

/* etichetă „hazard" rotită — imperfecțiune de brand */
.hero__tag {
  position: absolute; top: 120px; right: -4px; z-index: 3; transform: rotate(6deg);
  font-family: var(--font-cond); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; color: #0A0710;
  background: repeating-linear-gradient(45deg, var(--violet) 0 14px, #0A0710 14px 20px);
  padding: 8px 14px; border-radius: 4px; box-shadow: 0 8px 22px rgba(0,0,0,.5);
}
.hero__tag b { background: var(--violet); color: #0A0710; padding: 2px 6px; border-radius: 3px; }

/* ===================================================================
   REZULTATE (stats broken-grid + featured)
=================================================================== */
.rezultate { background: var(--bg-2); }
.rezultate__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 72px; }
.stat {
  padding: 34px 22px; background: var(--surface); border-radius: 14px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
/* broken-grid: ridic 2 din 4 carduri (imperfecțiune intenționată) */
.stat:nth-child(2) { transform: translateY(-20px); }
.stat:nth-child(4) { transform: translateY(-20px); }
.stat::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--violet), var(--magenta)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.stat:hover::after { transform: scaleX(1); }
.stat__number { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--text); line-height: 1; }
.stat__unit   { font-family: var(--font-display); font-size: 1.9rem; color: var(--violet); }
.stat__label  { color: var(--muted); margin-top: 10px; font-size: .82rem; font-family: var(--font-cond); letter-spacing: .08em; text-transform: uppercase; }

.rezultate__gallery--single { display: block; max-width: 900px; margin: 0 auto; }
.gallery__featured {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface) 0%, #2a1244 100%);
  border: 1px solid var(--line); margin: 0;
}
.gallery__featured img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); display: block; }
.gallery__featured:hover img { transform: scale(1.05); }
.gallery__caption { position: absolute; inset: auto 0 0 0; padding: 26px 30px; background: linear-gradient(180deg, transparent 0%, rgba(10,7,16,.9) 70%); display: flex; flex-direction: column; gap: 4px; }
.gallery__caption-label { color: var(--violet-hi); font-family: var(--font-cond); font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; }
.gallery__caption-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); color: #fff; }

/* ===================================================================
   SERVICII — split asimetric, iconuri custom (fără emoji)
=================================================================== */
.servicii__split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; margin-top: 54px; }
.servicii__text { display: flex; flex-direction: column; gap: 4px; }
.serviciu-item {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line-soft);
}
.serviciu-item:first-child { border-top: none; }
.serviciu-item__icon {
  font-size: 0; /* ascunde emoji-ul din HTML, îl înlocuim cu un index */
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line); position: relative;
}
.serviciu-item__icon::before {
  counter-increment: serv; content: counter(serv, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.1rem; color: var(--violet-hi);
}
.servicii__text { counter-reset: serv; }
.serviciu-item h3 { font-family: var(--font-cond); font-weight: 700; text-transform: none; font-size: 1.35rem; margin-bottom: 8px; color: var(--text); letter-spacing: .01em; }
.serviciu-item p { color: var(--muted); font-size: .96rem; line-height: 1.7; }
.servicii__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; padding-left: 64px; }
.servicii__img-wrap { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--line); transform: rotate(2deg); }
.servicii__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.servicii__img-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted-2); border: 2px dashed var(--line); border-radius: 18px; }
.servicii__img-placeholder svg { width: 74px; height: 74px; opacity: .4; }
.servicii__img-placeholder p { font-size: .85rem; letter-spacing: .1em; opacity: .6; font-family: var(--font-cond); text-transform: uppercase; }

/* ===================================================================
   ECHIPA — broken-grid (carduri decalate)
=================================================================== */
.echipa { background: var(--bg); }
.echipa__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; margin-top: 54px; }
.sportiv-card { background: var(--surface); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.sportiv-card:nth-child(even) { transform: translateY(26px); } /* decalaj broken-grid */
.sportiv-card:hover { border-color: var(--violet); box-shadow: 0 24px 48px rgba(124,60,255,.18); }
.sportiv-card__img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg); }
.sportiv-card__img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: grayscale(.3) contrast(1.05); transition: filter .5s, transform .6s var(--ease); }
.sportiv-card:hover .sportiv-card__img-wrap img { filter: grayscale(0); transform: scale(1.06); }
.sportiv-card__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--violet); opacity: .35; }
.sportiv-card__placeholder svg { width: 56px; height: 56px; }
.sportiv-card__info { padding: 20px; }
.sportiv-card__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sportiv-card__head h4 { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-weight: 400; letter-spacing: .02em; }
.sportiv-card__ig { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: all .3s; flex-shrink: 0; }
.sportiv-card__ig:hover { background: var(--violet); border-color: var(--violet); color: #fff; transform: scale(1.12) rotate(-6deg); }
.sportiv-card__ig svg { width: 18px; height: 18px; }
.sportiv-card__disciplina { color: var(--violet-hi); font-family: var(--font-cond); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin: 6px 0 4px; }
.sportiv-card__rezultat { color: var(--muted); font-size: .88rem; margin-top: 5px; display: flex; align-items: center; gap: 9px; }
.sportiv-card__rezultat::before { content: ""; width: 7px; height: 7px; flex-shrink: 0; background: linear-gradient(135deg, var(--violet), var(--magenta)); transform: rotate(45deg); border-radius: 1px; }

/* ===================================================================
   CUM FUNCȚIONEAZĂ — pași (secvență reală => numerotare justificată)
=================================================================== */
.pasi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 54px; position: relative; }
.pas { position: relative; padding-top: 8px; }
.pas:nth-child(2) { transform: translateY(28px); } /* imperfecțiune */
.pas__nr { font-family: var(--font-display); font-size: 4.6rem; color: transparent; -webkit-text-stroke: 1.5px var(--violet); line-height: 1; margin-bottom: 14px; opacity: .55; }
.pas h3 { font-family: var(--font-cond); font-weight: 700; text-transform: none; margin-bottom: 12px; }

/* ===================================================================
   TRANSFORMĂRI (before/after) — broken-grid
=================================================================== */
.transformari { background: var(--bg-2); }
.transformari__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.transformare { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.transformare:nth-child(2) { transform: translateY(-24px); }
.transformare:hover { border-color: var(--violet); box-shadow: 0 24px 48px rgba(0,0,0,.5); }
.transformare__info { padding: 24px 24px 28px; }
.transformare__name { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.3rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.transformare__script { color: var(--muted); font-size: .93rem; font-style: italic; line-height: 1.65; padding-left: 16px; border-left: 3px solid var(--violet); }

.ba-slider { position: relative; aspect-ratio: 3/4; overflow: hidden; user-select: none; touch-action: none; cursor: ew-resize; background: linear-gradient(135deg, var(--surface) 0%, #2a1244 100%); --ba-pos: 50%; }
.ba-slider__after, .ba-slider__before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-slider__before-clip { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }
.ba-slider__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); font-family: var(--font-cond); letter-spacing: .3em; font-size: .85rem; pointer-events: none; }
.ba-slider__placeholder--after { background: linear-gradient(135deg, #170e24 0%, #2a1640 100%); }
.ba-slider__placeholder--before { background: linear-gradient(135deg, #0a0710 0%, #170e24 100%); }
.ba-slider__handle { position: absolute; top: 0; bottom: 0; left: var(--ba-pos); width: 3px; background: #fff; border: none; padding: 0; transform: translateX(-50%); cursor: ew-resize; z-index: 3; display: flex; align-items: center; justify-content: center; }
.ba-slider__handle::before { content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; background: var(--violet); border-radius: 50%; border: 3px solid #fff; transform: translate(-50%, -50%); box-shadow: 0 8px 24px rgba(0,0,0,.5), 0 0 0 4px rgba(124,60,255,.25); transition: transform .2s ease; }
.ba-slider__handle:hover::before, .ba-slider--active .ba-slider__handle::before { transform: translate(-50%, -50%) scale(1.1); }
.ba-slider__handle svg { position: relative; z-index: 1; width: 20px; height: 20px; color: #fff; pointer-events: none; }
.ba-slider__handle:focus-visible::before { box-shadow: 0 8px 24px rgba(0,0,0,.5), 0 0 0 6px rgba(124,60,255,.45); outline: none; }
.ba-slider::before, .ba-slider::after { position: absolute; top: 12px; padding: 5px 12px; background: rgba(0,0,0,.7); color: #fff; font-size: .68rem; font-family: var(--font-cond); letter-spacing: .18em; border-radius: 4px; z-index: 2; pointer-events: none; }
.ba-slider::before { content: "ÎNAINTE"; left: 12px; }
.ba-slider::after  { content: "DUPĂ"; right: 12px; }

/* ===================================================================
   DESPRE ANDREI
=================================================================== */
.despre { background: var(--bg); }
.despre__split { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.despre__img-wrap { position: relative; aspect-ratio: 3/4; background: linear-gradient(135deg, var(--surface) 0%, #2a1244 100%); border-radius: 16px; border: 1px solid var(--line); overflow: hidden; transform: rotate(-2deg); }
.despre__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.despre__img-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--violet); }
.despre__img-placeholder svg { width: 80px; height: 80px; opacity: .4; }
.despre__img-placeholder p { font-size: .85rem; letter-spacing: .1em; opacity: .6; font-family: var(--font-cond); text-transform: uppercase; }
.despre__badge { position: absolute; bottom: 24px; right: -18px; z-index: 2; background: var(--violet); color: #fff; padding: 16px 24px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; line-height: 1; box-shadow: 0 14px 36px rgba(124,60,255,.45); transform: rotate(3deg); }
.despre__badge-nr { font-family: var(--font-display); font-size: 2.4rem; }
.despre__badge-text { font-family: var(--font-cond); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; opacity: .92; }
.despre__text { display: flex; flex-direction: column; gap: 18px; }
.despre__eyebrow { color: var(--violet-hi); font-family: var(--font-cond); font-weight: 600; font-size: .82rem; letter-spacing: .26em; text-transform: uppercase; }
.despre__title { font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 0; }
.despre__lead { font-size: 1.16rem; color: var(--text); line-height: 1.6; }
.despre__text p { color: var(--muted); }
.despre__highlights { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.despre__highlight { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; background: var(--surface); padding: 16px 20px; border-radius: 12px; border: 1px solid var(--line); border-left: 3px solid var(--violet); }
.despre__highlight-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line); color: var(--violet-hi); }
.despre__highlight-icon svg { width: 22px; height: 22px; }
.despre__highlight strong { display: block; color: var(--text); margin-bottom: 2px; font-family: var(--font-cond); font-weight: 600; }
.despre__highlight p { font-size: .9rem; margin: 0; }
.despre__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }

/* ===================================================================
   CONTACT
=================================================================== */
.contact { background: var(--bg-2); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; max-width: 660px; }
.form__group { display: flex; flex-direction: column; }
.form__group--full { grid-column: 1 / -1; }
.form__group input, .form__group select, .form__group textarea {
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  padding: 14px 16px; border-radius: 9px; font-family: var(--font-body); font-size: 1rem; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,60,255,.18); }
.form__group select option { background: var(--surface); }
.form__status { grid-column: 1/-1; text-align: center; padding: 12px; border-radius: 8px; display: none; font-family: var(--font-cond); letter-spacing: .04em; }
.form__status.success { background: rgba(72,199,142,.12); color: #48c78e; display: block; }
.form__status.error   { background: rgba(229,33,158,.12); color: var(--magenta); display: block; }

/* ===== FOOTER ===== */
.footer { background: #060409; padding: 34px 0; text-align: center; }
.footer p, .footer a { color: var(--muted); font-size: .9rem; }
.footer a:hover { color: var(--violet-hi); }

/* ===== WHATSAPP ===== */
.whatsapp-btn { position: fixed; bottom: 100px; right: 24px; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .3s var(--ease); }
.whatsapp-btn:hover { transform: scale(1.12) rotate(-6deg); }
.whatsapp-btn svg { width: 28px; height: 28px; }

/* ===== CHATBOT ===== */
.chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 95; }
.chatbot__toggle { width: 56px; height: 56px; border-radius: 50%; border: none; background: var(--violet); color: #fff; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(124,60,255,.45); transition: transform .3s var(--ease); }
.chatbot__toggle:hover { transform: scale(1.1); }
.chatbot__toggle-icon--close { display: none; }
.chatbot.open .chatbot__toggle-icon--open { display: none; }
.chatbot.open .chatbot__toggle-icon--close { display: flex; }
.chatbot__window { position: absolute; bottom: 70px; right: 0; width: 340px; height: 480px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: none; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.chatbot.open .chatbot__window { display: flex; }
.chatbot__header { background: var(--surface-2); padding: 16px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.chatbot__avatar { width: 40px; height: 40px; border-radius: 11px; background: var(--violet); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chatbot__avatar svg { width: 22px; height: 22px; }
.chatbot__toggle-icon svg { width: 24px; height: 24px; }
.chatbot__header strong { display: block; font-size: .95rem; font-family: var(--font-cond); }
.chatbot__status { font-size: .78rem; color: #48c78e; }
.chatbot__messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chatbot__msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: .9rem; line-height: 1.5; }
.chatbot__msg--bot { background: var(--surface-2); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chatbot__msg--user { background: var(--violet); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chatbot__input-area { padding: 12px; display: flex; gap: 8px; border-top: 1px solid var(--line); }
.chatbot__input-area input { flex: 1; background: var(--surface-2); border: 1px solid var(--line); color: var(--text); padding: 10px 14px; border-radius: 8px; font-size: .9rem; outline: none; }
.chatbot__input-area button { background: var(--violet); color: #fff; border: none; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: background .3s; }
.chatbot__input-area button:hover { background: var(--magenta); }

/* ===================================================================
   REVEAL (scroll) — utilitar, stagger custom aplicat via JS
=================================================================== */
/* gate pe .has-js: fără JS, conținutul rămâne vizibil (nu-l ascundem degeaba) */
.motion-ok [data-reveal] { opacity: 0; transform: translateY(30px); }
.motion-ok [data-reveal].is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }

/* intro hero — cascadă la load, scris de mână (fără librărie) */
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.motion-ok .hero__kicker,
.motion-ok .hero__claim .l1,
.motion-ok .hero__claim .l2,
.motion-ok .hero__sub,
.motion-ok .hero__ctas,
.motion-ok .hero__right { opacity: 0; animation: heroRise .9s var(--ease-out) forwards; }
.motion-ok .hero__kicker    { animation-delay: .10s; }
.motion-ok .hero__claim .l1 { animation-delay: .22s; }
.motion-ok .hero__claim .l2 { animation-delay: .34s; }
.motion-ok .hero__right     { animation-delay: .30s; }
.motion-ok .hero__sub       { animation-delay: .50s; }
.motion-ok .hero__ctas      { animation-delay: .62s; }

/* ===================================================================
   MOBILE
=================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__right { order: -1; }
  .hero__right img, .hero__logo-3d-wrap img { width: clamp(180px, 46vw, 280px); }
  .servicii__split { grid-template-columns: 1fr; gap: 44px; }
  .despre__split { grid-template-columns: 1fr; gap: 48px; }
  .despre__img-wrap { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .nav__links.is-open { display: flex; flex-direction: column; align-items: center; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 24px; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; }
  .hero__claim .l2 { margin-left: 0; }
  .hero__tag { top: 90px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .rezultate__stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat:nth-child(2), .stat:nth-child(4) { transform: none; }
  .transformari__grid { grid-template-columns: 1fr; gap: 22px; max-width: 460px; margin-inline: auto; }
  .transformare:nth-child(2) { transform: none; }
  .echipa__grid { grid-template-columns: repeat(2, 1fr); }
  .sportiv-card:nth-child(even) { transform: none; }
  .pasi__grid { grid-template-columns: 1fr; gap: 30px; }
  .pas:nth-child(2) { transform: none; }
  .servicii__ctas { padding-left: 0; }
  .servicii__img-wrap, .despre__img-wrap { transform: none; }
  .contact-form { grid-template-columns: 1fr; }
  .chatbot__window { width: calc(100vw - 32px); right: 16px; }
  .whatsapp-btn { bottom: 90px; }
}
@media (max-width: 480px) {
  .echipa__grid { grid-template-columns: 1fr; }
  .nav__logo { font-size: 1.25rem; }
}

/* ===================================================================
   PAGINI LEGALE
=================================================================== */
.page-hero { position: relative; padding: 150px 0 56px; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); border-bottom: 1px solid var(--line); }
.page-hero .crumbs { font-family: var(--font-cond); font-size: .85rem; color: var(--muted); margin-bottom: 14px; letter-spacing: .05em; }
.page-hero .crumbs a:hover { color: var(--violet-hi); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero h1 em { color: transparent; background: linear-gradient(96deg, var(--violet-hi), var(--magenta)); -webkit-background-clip: text; background-clip: text; }
.page-hero p { margin-top: 12px; max-width: 55ch; }
.legal { max-width: 74ch; margin: 0 auto; color: var(--muted); }
.legal .legal-meta { font-size: .9rem; color: var(--muted); opacity: .75; margin-bottom: 28px; font-family: var(--font-cond); }
.legal h2 { font-family: var(--font-cond); font-weight: 700; text-transform: none; font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--text); margin: 40px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 1rem; line-height: 1.75; color: var(--muted); }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 8px 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--violet-hi); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--text); }
.legal .identity { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--violet); border-radius: 12px; padding: 20px 24px; margin: 18px 0 28px; }
.legal .identity p { margin: 4px 0; color: var(--text); font-size: .98rem; }

/* ===== CONSIMȚĂMÂNT + FOOTER LEGAL ===== */
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0; font-size: .9rem; color: var(--muted); line-height: 1.5; cursor: pointer; text-align: left; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--violet); flex: none; cursor: pointer; }
.consent a { color: var(--violet-hi); text-decoration: underline; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-bottom: 16px; }
.footer-legal a { color: var(--muted); font-size: .88rem; font-family: var(--font-cond); letter-spacing: .04em; }
.footer-legal a:hover { color: var(--violet-hi); }

/* ===================================================================
   INTRO — „detonare TNT" (moment surpriză la încărcare)
=================================================================== */
body.no-scroll { overflow: hidden; }
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(60vw 60vw at 50% 46%, #180E26 0%, var(--bg) 70%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: pointer;
  transition: opacity .6s var(--ease), visibility .6s;
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__canvas { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.intro__ring {
  position: absolute; top: 46%; left: 50%; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%;
  border: 4px solid var(--violet-hi);
  transform: translate(-50%,-50%) scale(0); opacity: 0;
  animation: introRing .85s 1.15s var(--ease-out) forwards;
}
.intro__core {
  position: relative; z-index: 2; text-align: center;
  animation: introCharge 1.15s var(--ease-out) forwards, introBlast .55s 1.15s var(--ease) forwards;
}
.intro__word {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(4.5rem, 22vw, 15rem); line-height: .86; letter-spacing: .02em;
  color: transparent;
  background: linear-gradient(96deg, #fff 5%, var(--violet-hi) 42%, var(--violet) 72%, var(--magenta));
  -webkit-background-clip: text; background-clip: text;
}
.intro__sub {
  font-family: var(--font-cond); letter-spacing: .5em; text-transform: uppercase;
  font-size: clamp(.7rem, 2.4vw, 1rem); color: var(--muted); margin-top: 14px; padding-left: .5em;
}
.intro__flash {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at 50% 46%, #fff 0%, var(--violet) 35%, transparent 68%);
  animation: introFlash .5s 1.12s ease-out forwards;
}
@keyframes introCharge {
  0%   { transform: scale(.72); filter: drop-shadow(0 0 4px rgba(124,60,255,.2)); opacity: .25; }
  70%  { transform: scale(1.02); filter: drop-shadow(0 0 26px rgba(124,60,255,.55)); opacity: 1; }
  100% { transform: scale(1.07); filter: drop-shadow(0 0 42px rgba(229,33,158,.7)); opacity: 1; }
}
@keyframes introBlast {
  0%   { transform: scale(1.07); opacity: 1; filter: blur(0) drop-shadow(0 0 42px rgba(229,33,158,.7)); }
  100% { transform: scale(3.6); opacity: 0; filter: blur(16px) drop-shadow(0 0 90px rgba(229,33,158,0)); }
}
@keyframes introFlash { 0% { opacity: 0; } 22% { opacity: .95; } 100% { opacity: 0; } }
@keyframes introRing {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: .85; border-width: 5px; }
  100% { transform: translate(-50%,-50%) scale(70); opacity: 0; border-width: 0; }
}
@keyframes screenShake {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-9px,5px); } 40% { transform: translate(8px,-6px); }
  60% { transform: translate(-6px,6px); } 80% { transform: translate(5px,-4px); }
}
body.is-detonating { animation: screenShake .45s ease-in-out; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-gsap] { opacity: 1 !important; transform: none !important; }
  .stat:nth-child(2), .stat:nth-child(4), .sportiv-card:nth-child(even), .transformare:nth-child(2), .pas:nth-child(2) { transform: none; }
}

/* ===================================================================
   ATMOSFERĂ CINEMATICĂ — cursor, embers, spotlight, marquee, progres
=================================================================== */
/* conținutul stă deasupra straturilor de fundal (fx z0, embers z1) */
section, .marquee, .footer { position: relative; z-index: 2; }

.prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: linear-gradient(90deg, var(--violet), var(--magenta)); box-shadow: 0 0 12px var(--violet); }

.cur, .cur-dot { position: fixed; top: 0; left: 0; z-index: 400; pointer-events: none; border-radius: 50%; mix-blend-mode: screen; }
.cur { width: 40px; height: 40px; border: 1.5px solid var(--violet-hi); transform: translate(-50%,-50%); transition: width .25s, height .25s, background .25s, border-color .25s; }
.cur.big { width: 74px; height: 74px; background: rgba(124,60,255,.14); border-color: var(--magenta); }
.cur-dot { width: 6px; height: 6px; background: var(--violet-hi); transform: translate(-50%,-50%); }
html:not(.motion-ok) .cur, html:not(.motion-ok) .cur-dot { display: none; }
@media (hover:none),(pointer:coarse) { .cur, .cur-dot { display: none; } }
@media (hover:hover) and (pointer:fine) {
  .motion-ok body, .motion-ok a, .motion-ok button, .motion-ok .btn,
  .motion-ok input, .motion-ok select, .motion-ok textarea { cursor: none; }
}

.fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.fx__grain { position: absolute; inset: -50%; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.fx__g1, .fx__g2 { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .4; }
.fx__g1 { width: 44vw; height: 44vw; background: rgba(124,60,255,.45); top: -14%; right: -10%; animation: fxd1 18s ease-in-out infinite alternate; }
.fx__g2 { width: 36vw; height: 36vw; background: rgba(229,33,158,.35); bottom: -16%; left: -12%; animation: fxd2 22s ease-in-out infinite alternate; }
@keyframes fxd1 { to { transform: translate(-8%,12%) scale(1.15); } }
@keyframes fxd2 { to { transform: translate(10%,-8%) scale(1.2); } }
.embers { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
html:not(.motion-ok) .embers { display: none; }

.hero__spot { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(280px 280px at var(--mx,50%) var(--my,40%), rgba(124,60,255,.18), transparent 70%); }

.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(22,14,38,.5); overflow: hidden; padding: 15px 0; }
.marquee__row { display: flex; gap: 40px; white-space: nowrap; width: max-content; }
.motion-ok .marquee__row { animation: mqx 24s linear infinite; }
.marquee__row span { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: .04em; color: transparent; -webkit-text-stroke: 1px var(--muted); display: inline-flex; gap: 40px; align-items: center; }
.marquee__row span::after { content: ""; width: 8px; height: 8px; background: var(--violet); transform: rotate(45deg); }
@keyframes mqx { to { transform: translateX(-50%); } }
