/* ==========================================================================
   KATONA J — TrainedByKJ
   Personal Training • Nutriție • Suplimentație
   Stylesheet principal
   ========================================================================== */

/* ----------------------------------------------------------------- Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paletă */
  --red: #e10600;
  --red-bright: #ff2a1f;
  --red-soft: rgba(225, 6, 0, 0.12);
  --red-glow: rgba(225, 6, 0, 0.45);

  --bg: #0a0a0b;
  --bg-2: #0f0f12;
  --surface: #141418;
  --surface-2: #1b1b21;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --muted: #a0a0aa;
  --muted-2: #6f6f78;

  /* Tipografie */
  --font-display: "Anton", "Arial Narrow", "Oswald", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 76px;

  /* Mișcare */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 18px 50px -18px var(--red-glow);
}

/* ------------------------------------------------------------------ Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fundal global subtil + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(225, 6, 0, 0.16), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(225, 6, 0, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------- Helpers */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: clamp(52px, 8vw, 104px);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.22;
  margin-bottom: 18px;
}

.section-title .accent { color: var(--red-bright); }

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 62ch;
}

.text-center { text-align: center; }
.center-x { margin-inline: auto; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.3s ease;
  box-shadow: var(--shadow-red);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -18px var(--red-glow);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text);
  box-shadow: none;
}

.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------------- Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--red), #8c0400);
  box-shadow: var(--shadow-red);
  color: #fff;
  font-size: 1.05rem;
}
.brand b { color: var(--red-bright); font-weight: 400; }
.brand__logo { height: 40px; width: auto; display: block; }
.footer__brand .brand__logo { height: 52px; }
@media (max-width: 720px) { .brand__logo { height: 34px; } }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-left: 8px; }
.nav__cta .btn { padding: 11px 22px; font-size: 0.8rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav__toggle span { top: 50%; translate: 0 -50%; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
body.menu-open .nav__toggle span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 75% 30%, rgba(225, 6, 0, 0.25), transparent 60%),
    conic-gradient(from 200deg at 80% 20%, rgba(225, 6, 0, 0.18), transparent 35%);
  opacity: 0.9;
}
/* Linii diagonale decorative */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0 38px,
    rgba(255, 255, 255, 0.022) 38px 39px
  );
  mask-image: linear-gradient(90deg, transparent, #000 40%, #000);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Faded brand-logo im Hero-Hintergrund (füllt den Leerraum) */
.hero__wm {
  position: absolute;
  left: 50%; top: 52%;
  translate: -50% -50%;
  width: min(1100px, 118%);
  aspect-ratio: 1965/847;
  background: url("../img/logo-nav.png") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px var(--red-soft);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--red-soft); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-size: clamp(2.7rem, 8.5vw, 6.2rem);
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--red-bright); }

.hero__sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.28rem);
  max-width: 54ch;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero__mini-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__mini-stats div span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}
.hero__mini-stats div small {
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Card vizual din dreapta hero */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 70% 0%, rgba(225, 6, 0, 0.4), transparent 55%),
    linear-gradient(160deg, #1a1a1f, #0c0c0e);
  box-shadow: var(--shadow);
  display: grid;
  place-items: end stretch;
}
.hero__visual::before {
  /* silueta / monogram mare */
  content: "KJ";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13rem;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.05em;
}
.hero__visual-card {
  position: relative;
  margin: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__visual-card .ic {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red-bright);
}
.hero__visual-card b { display: block; font-size: 0.98rem; }
.hero__visual-card small { color: var(--muted); font-size: 0.82rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  translate: -50% 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll i {
  width: 22px; height: 34px;
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  position: relative;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  left: 50%; top: 6px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--red-bright);
  translate: -50% 0;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translate(-50%, -4px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* Marquee / bandă brand */
.marquee {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  padding-block: 18px;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee span::after { content: "•"; color: var(--red); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------- Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 32px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(20, 20, 24, 0.3));
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}
.stat:hover { transform: translateY(-6px); border-color: var(--red); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--text);
  line-height: 1;
}
.stat__num .accent { color: var(--red-bright); }
.stat__label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------- Grid 2col */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: -1; }

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 5 / 6;
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(225, 6, 0, 0.3), transparent 55%),
    linear-gradient(160deg, #1a1a20, #0b0b0d);
  box-shadow: var(--shadow);
}
.media-card::before {
  content: attr(data-mono);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.05);
}
.media-card__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.media-card__tag b { color: var(--red-bright); }

/* listă cu bife */
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}
.checklist li b { color: var(--text); font-weight: 600; }
.checklist .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red-bright);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* ------------------------------------------------------------- Services */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(15, 15, 18, 0.4));
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at var(--mx, 50%) 0%, var(--red-soft), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover { transform: translateY(-8px); border-color: var(--red); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red-bright);
  margin-bottom: 22px;
}
.card h3 {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 18px; }
.card__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.chip {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.card__link .arrow { transition: transform 0.3s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(5px); }
.card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------- Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.step__n {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--red), #8c0400);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-red);
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ------------------------------------------------------------ Testimonials */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tcard__stars { color: var(--red-bright); letter-spacing: 3px; font-size: 0.95rem; }
.tcard p { color: var(--text); font-size: 1rem; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__avatar {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  background: linear-gradient(145deg, var(--surface-2), #0c0c0e);
  border: 1px solid var(--border-strong);
  color: var(--red-bright);
}
.tcard__who b { display: block; font-size: 0.95rem; }
.tcard__who small { color: var(--muted-2); font-size: 0.8rem; }

/* ----------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: var(--red); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 2px;
}
.faq__q .plus::before { width: 12px; height: 2px; }
.faq__q .plus::after { width: 2px; height: 12px; transition: transform 0.3s ease; }
.faq__item[open] .plus { background: var(--red); border-color: var(--red); }
.faq__item[open] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 24px 24px; color: var(--muted); }

/* -------------------------------------------------------------- CTA band */
.cta {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(48px, 8vw, 92px) clamp(28px, 6vw, 80px);
  text-align: center;
  border: 1px solid var(--border);
  background:
    radial-gradient(700px 400px at 50% -20%, rgba(225, 6, 0, 0.4), transparent 60%),
    linear-gradient(160deg, #16161b, #0a0a0c);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 40px, rgba(255,255,255,0.02) 40px 41px);
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
}
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); margin-bottom: 18px; position: relative; }
.cta p { color: var(--muted); max-width: 56ch; margin: 0 auto 32px; position: relative; }
.cta .hero__actions { justify-content: center; margin-bottom: 0; position: relative; }

/* ----------------------------------------------------------------- Forms */
.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.form {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--red-bright); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23a0a0aa' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  background: #101013;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--red-bright); }
.field__err { color: var(--red-bright); font-size: 0.78rem; display: none; }
.field.invalid .field__err { display: block; }

.form__note { margin-top: 18px; color: var(--muted-2); font-size: 0.84rem; }
.form__success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--red-soft);
  border: 1px solid var(--red);
  color: var(--text);
  font-size: 0.92rem;
}
.form__success.show { display: block; }

.info-list { display: grid; gap: 18px; }
.info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.info-item .ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red-bright);
}
.info-item b { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-item span { font-size: 1.02rem; }
.info-item a:hover { color: var(--red-bright); }

/* ----------------------------------------------------------------- Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding-block: 64px 28px;
  margin-top: 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p { color: var(--muted); margin-top: 18px; max-width: 34ch; font-size: 0.95rem; }
.footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p { color: var(--muted); display: block; margin-bottom: 12px; font-size: 0.95rem; transition: color 0.25s ease; }
.footer__col a:hover { color: var(--red-bright); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  color: var(--muted-2);
  font-size: 0.85rem;
}
.footer__bottom a:hover { color: var(--red-bright); }

/* ------------------------------------------------------------ Back to top */
.totop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 50px; height: 50px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(20, 20, 24, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.35s var(--ease);
  z-index: 90;
}
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }

/* ----------------------------------------------------------- Page header */
.page-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 5.2rem); margin-bottom: 18px; }
.page-hero h1 .accent { color: var(--red-bright); }
.page-hero .lead { margin-inline: auto; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb span { color: var(--red-bright); }

/* --------------------------------------------------------- Reveal anim */
html.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
html.has-js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tcards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: grid; place-items: center; }

  /* Mobile menu panel */
  .nav__links.open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px clamp(20px, 5vw, 48px) 28px;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    animation: slidedown 0.3s var(--ease);
  }
  .nav__links.open a { padding: 16px 8px; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav__links.open a::after { display: none; }
  @keyframes slidedown { from { opacity: 0; transform: translateY(-10px); } }

  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps, .tcards { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .form__grid { grid-template-columns: 1fr; }
  .hero__mini-stats { gap: 28px; }
}

/* ==========================================================================
   ADD-ONS: Logo real, slogan, wizard formular (PAR-Q), toggles DA/NU
   ========================================================================== */

/* ----- Slogan brand ----- */
.slogan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--muted);
}
.slogan b { color: var(--text); font-weight: 400; }
.slogan .accent { color: var(--red-bright); }
.slogan .sep { color: var(--red); }

/* ----- Logo în hero & media ----- */
.hero__visual::before { content: none; } /* scoatem monograma text */
.hero__logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.6));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

.media-card__logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.6));
}
.media-card--logo::before { content: none; }

/* ----- Watermark logo decorativ ----- */
.section--wm { position: relative; overflow: hidden; }
.section--wm::after {
  content: "";
  position: absolute;
  right: -4%;
  top: 50%;
  translate: 0 -50%;
  width: min(620px, 55%);
  aspect-ratio: 1965/847;
  background: url("../img/logo-nav.png") center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

/* Large centered brand watermark — big, faded logo behind a section's content */
.section--wm-lg { position: relative; overflow: hidden; }
.section--wm-lg::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  translate: -50% -50%;
  width: min(1180px, 132%);
  aspect-ratio: 1965/847;
  background: url("../img/logo-nav.png") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.section--wm-lg > .container { position: relative; z-index: 1; }

/* Red-tinted brand watermark — partial faded red logo (e.g. behind the process) */
.section--wm-red { position: relative; overflow: hidden; }
.section--wm-red::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  translate: -50% -50%;
  width: min(1080px, 126%);
  aspect-ratio: 1965/847;
  background: var(--red);
  -webkit-mask: url("../img/logo-nav.png") center/contain no-repeat;
          mask: url("../img/logo-nav.png") center/contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.section--wm-red > .container { position: relative; z-index: 1; }

/* ==================================================== WIZARD (multi-step) */
.wizard { max-width: 820px; }

.wizard__progress { margin-bottom: 30px; }
.wizard__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--surface-2);
  overflow: hidden;
}
.wizard__fill {
  height: 100%;
  width: 33.33%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transition: width 0.5s var(--ease);
}
.wizard__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 8px;
}
.wizard__steps li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted-2);
  transition: color 0.3s ease;
}
.wizard__steps li .n {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.wizard__steps li.active { color: var(--text); }
.wizard__steps li.active .n { background: var(--red); border-color: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.wizard__steps li.done .n { background: var(--red-soft); border-color: var(--red); color: var(--red-bright); }
.wizard__steps li .lbl { display: none; }
@media (min-width: 620px) { .wizard__steps li .lbl { display: inline; } }

.wstep { display: none; animation: fadestep 0.4s var(--ease); }
.wstep.active { display: block; }
@keyframes fadestep { from { opacity: 0; transform: translateY(12px); } }
.wstep h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  margin-bottom: 6px;
}
.wstep__hint { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }

.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.wizard__nav .spacer { flex: 1; }

/* ==================================================== Întrebări DA/NU */
.qlist { display: grid; gap: 12px; }
.qitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-2);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.qitem:hover { border-color: var(--border-strong); }
.qitem.answered-da { border-color: rgba(255,170,0,0.5); background: rgba(255,170,0,0.05); }
.qitem.answered-nu { border-color: rgba(40,200,120,0.45); background: rgba(40,200,120,0.05); }
.qitem.invalid { border-color: var(--red-bright); animation: shake 0.3s; }
@keyframes shake { 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.qitem__q { font-size: 0.95rem; line-height: 1.4; }
.qitem__q .qn { color: var(--red-bright); font-family: var(--font-display); margin-right: 8px; font-size: 0.9rem; }

.seg {
  flex: none;
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  cursor: pointer;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: all 0.2s ease;
  user-select: none;
}
.seg input[value="DA"]:checked + label { background: #d98a00; color: #fff; }
.seg input[value="NU"]:checked + label { background: #1f9d57; color: #fff; }
.seg label:hover { color: var(--text); }

/* ==================================================== Review / consent */
.review {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-2);
  margin-bottom: 20px;
  max-height: 240px;
  overflow-y: auto;
  font-size: 0.9rem;
}
.review__row { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.review__row:last-child { border-bottom: 0; }
.review__row b { color: var(--muted); font-weight: 600; }
.review__row span { color: var(--text); text-align: right; }
.review__flag { color: #e0a200; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 6px;
  cursor: pointer;
}
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--red); flex: none; }
.consent.invalid { color: var(--red-bright); }

/* PAR-Q avertisment */
.parq-note {
  display: flex; gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(225,6,0,0.06);
  border: 1px solid rgba(225,6,0,0.25);
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 22px;
}
.parq-note svg { flex: none; color: var(--red-bright); }

@media (max-width: 560px) {
  .qitem { flex-direction: column; align-items: stretch; gap: 12px; }
  .seg { align-self: flex-start; }
  .wizard__nav .btn { flex: 1; }
}

/* ==========================================================================
   ADD-ONS 2: Fotografii reale (alb-negru) — hero, media-card, CTA
   ========================================================================== */

/* --- Foto în hero visual --- */
.hero__visual--photo { background: #0c0c0e; }
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  filter: grayscale(0.08) contrast(1.08) brightness(1.1);
  z-index: 0;
  transition: transform 0.9s var(--ease);
}
.hero__visual--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 75% 0%, rgba(225,6,0,0.28), transparent 55%),
    linear-gradient(180deg, rgba(10,10,11,0) 48%, rgba(10,10,11,0.72) 100%);
}
.hero__visual--photo:hover .hero__photo { transform: scale(1.04); }
.hero__visual--photo .hero__visual-card { position: relative; z-index: 2; }

/* --- Foto în media-card --- */
.media-card--photo::before { content: none; }
.media-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.06);
  z-index: 0;
  transition: transform 0.9s var(--ease);
}
.media-card--photo:hover .media-card__img { transform: scale(1.06); }
.media-card--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 70% at 30% 0%, rgba(225,6,0,0.22), transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(10,10,11,0.75) 100%);
}
.media-card--photo .media-card__tag { z-index: 2; }

/* --- CTA cu fundal foto --- */
.cta--photo { border-color: rgba(225,6,0,0.25); }
.cta__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.20;
  filter: grayscale(1) contrast(1.12);
  z-index: 0;
}
.cta--photo > *:not(.cta__bg) { position: relative; z-index: 2; }

/* ----- Scroll-Fortschritt ----- */
.scrollbar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  box-shadow: 0 0 12px var(--red-glow);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ----- Geburtsdatum-Dropdowns ----- */
.date-select { display: grid; grid-template-columns: 0.8fr 1.4fr 1fr; gap: 10px; }
@media (max-width: 420px) { .date-select { grid-template-columns: 1fr; } }
