/* ============================================================
   MiOS — Stiluri partajate · mios.ro · 2026 FROMSOUL S.R.L.
   Sursă unică de culoare — identic cu globals.css din app
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #F4F6F9;
  --bg-alt:    #FFFFFF;
  --brand:     #0A192F;
  --teal:      #00B4D8;
  --teal2:     #0096c7;
  --teal-dim:  rgba(0,180,216,0.1);
  --teal-glow: rgba(0,180,216,0.2);
  --gold:      #f59e0b;
  --gold-dim:  rgba(245,158,11,0.1);
  --text:      #0f172a;
  --text2:     #334155;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --border-t:  rgba(0,180,216,0.35);
  --white:     #ffffff;
  --r:         16px;
  --r-sm:      10px;
  --r-pill:    100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* noise grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}
@keyframes word-in {
  from { transform: translateY(36px); opacity: 0; filter: blur(6px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes word-out {
  from { transform: translateY(0); opacity: 1; filter: blur(0); }
  to   { transform: translateY(-36px); opacity: 0; filter: blur(6px); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orb-breathe {
  0%, 100% { opacity: 0.45; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%,-50%) scale(1.04); }
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ============================================================
   NAV
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(244,246,249,0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(10,25,47,0.06);
}
/* nav pe fundal dark (pagini interioare, înainte de scroll) */
nav.nav-on-dark .nav-logo-text { color: #fff; }
nav.nav-on-dark .nav-link { color: rgba(255,255,255,0.6); }
nav.nav-on-dark .nav-link:hover,
nav.nav-on-dark .nav-link.active { color: #fff; }
nav.nav-on-dark.scrolled .nav-logo-text { color: var(--brand); }
nav.nav-on-dark.scrolled .nav-link { color: var(--muted); }
nav.nav-on-dark.scrolled .nav-link:hover,
nav.nav-on-dark.scrolled .nav-link.active { color: var(--brand); }

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo-link:hover { opacity: 0.75; }
.nav-logo-link img { height: 34px; width: auto; display: block; }
.nav-logo-text { font-size: 1.25em; font-weight: 900; letter-spacing: -0.05em; color: var(--brand); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-link {
  display: none;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--brand); }
.nav-link.active { color: var(--brand); font-weight: 600; }
@media (min-width: 640px) { .nav-link { display: block; } }

.nav-cta {
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.855em;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #0d2240;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(10,25,47,0.3);
}
nav.nav-on-dark:not(.scrolled) .nav-cta {
  background: var(--teal);
}
nav.nav-on-dark:not(.scrolled) .nav-cta:hover {
  background: var(--teal2);
  box-shadow: 0 4px 20px rgba(0,180,216,0.4);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 1em;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: #0d2240;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(10,25,47,0.28);
}
.btn-secondary {
  background: var(--white);
  color: var(--brand);
  font-weight: 600;
  font-size: 1em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--border-t);
  box-shadow: 0 4px 16px rgba(10,25,47,0.1);
}
.btn-primary svg, .btn-secondary svg { transition: transform 0.22s; flex-shrink: 0; }
.btn-primary:hover svg, .btn-secondary:hover svg { transform: translateX(3px); }
/* CTA pe fundal dark */
.cta-strip .btn-primary { background: var(--teal); }
.cta-strip .btn-primary:hover { background: var(--teal2); box-shadow: 0 10px 36px rgba(0,180,216,0.35); }

/* ============================================================
   HERO (home)
============================================================ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 132px 24px 88px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,180,216,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%,  rgba(0,180,216,0.05) 0%, transparent 55%),
    var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,25,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,25,47,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 80%);
}
.hero-orb {
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.09) 0%, transparent 65%);
  animation: glow-breathe 5s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-inner { max-width: 840px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,180,216,0.07);
  border: 1px solid rgba(0,180,216,0.22);
  border-radius: var(--r-pill);
  padding: 7px 18px 7px 13px;
  font-size: 0.78em;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 36px;
  animation: fade-up 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.6em, 6.5vw, 4.4em);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--brand);
  margin-bottom: 10px;
  animation: fade-up 0.6s 0.1s ease both;
}
.hero-word-row {
  display: block;
  position: relative;
  height: 1.16em;
  overflow: visible;
  margin: 6px 0 4px;
}
.hero-word {
  display: block;
  position: absolute;
  left: 0; right: 0;
  background: linear-gradient(100deg, var(--teal) 0%, var(--teal2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-word.entering { animation: word-in  0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-word.leaving  { animation: word-out 0.3s ease-in forwards; }
.hero-sub {
  font-size: clamp(1.02em, 2.5vw, 1.2em);
  color: var(--muted);
  max-width: 540px;
  margin: 22px auto 42px;
  line-height: 1.78;
  animation: fade-up 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 0.6s 0.28s ease both;
}

/* hero product showcase — mockup dispozitive */
.hero-showcase {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 60px;
  position: relative;
  animation: fade-up 0.7s 0.34s ease both;
}
.hero-showcase img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 36px 70px rgba(10,25,47,0.22));
}
.hero-showcase::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8%;
  transform: translateX(-50%);
  width: 70%; height: 40px;
  background: radial-gradient(ellipse, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,25,47,0.06);
  overflow: hidden;
  animation: fade-up 0.6s 0.36s ease both;
}
.stat { flex: 1; min-width: 140px; text-align: center; padding: 28px 36px; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-size: 2.3em;
  font-weight: 900;
  color: var(--brand);
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat-num.stat-num-sm { font-size: 1.7em; }
.stat-num .accent { color: var(--teal); }
.stat-label { font-size: 0.76em; color: var(--muted); margin-top: 7px; line-height: 1.45; }

/* ============================================================
   PAGE HEADER (pagini interioare)
============================================================ */
.page-header {
  background: var(--brand);
  padding: 150px 24px 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(0,180,216,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-header .eyebrow { color: var(--teal); }
.page-header .eyebrow::before { background: var(--teal); }
.page-header h1 {
  font-size: clamp(2.4em, 5vw, 3.6em);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.page-header p {
  font-size: 1.08em;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   LEGAL (termeni · confidențialitate)
============================================================ */
.legal-section { background: var(--bg); padding: 64px 24px 96px; }
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 1px 3px rgba(10,25,47,0.04);
}
.legal-updated { font-size: 0.82em; color: var(--muted); margin-bottom: 32px; }
.legal-block { margin-bottom: 30px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-size: 1.12em;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.legal-block p { font-size: 0.96em; color: var(--text2); line-height: 1.75; margin-bottom: 10px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { list-style: none; margin: 8px 0 0; padding: 0; }
.legal-block li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 0.96em;
  color: var(--text2);
  line-height: 1.7;
}
.legal-block li::before {
  content: '';
  position: absolute;
  left: 2px; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.legal-block strong { color: var(--brand); font-weight: 600; }
.legal-block a { color: var(--teal2); text-decoration: none; border-bottom: 1px solid var(--border-t); }
.legal-block a:hover { color: var(--teal); }
.legal-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--r-sm);
  font-size: 0.86em;
  color: var(--text2);
  line-height: 1.6;
}

/* ============================================================
   CE ESTE (home — De ce MiOS)
============================================================ */
.ce-este { background: var(--bg); }
.ce-este-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
}
.ce-este-text .eyebrow { margin-bottom: 16px; }
.ce-este-text h2 { margin-bottom: 14px; }
.ce-este-text .section-sub { margin-bottom: 40px; }
.ce-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 44px;
}
.ce-bullet { display: flex; gap: 16px; align-items: flex-start; }
.ce-bullet-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1.5px solid rgba(0,180,216,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ce-bullet-body strong {
  display: block;
  font-size: 1em;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 5px;
  letter-spacing: -0.015em;
}
.ce-bullet-body p { font-size: 0.88em; color: var(--muted); line-height: 1.75; margin: 0; }
.ce-este-image { display: flex; align-items: center; justify-content: center; }
.ce-este-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 48px rgba(10,25,47,0.13));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.ce-este-image img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 36px 72px rgba(10,25,47,0.2));
}
/* variantă screenshot real (opac) — cadru în loc de blend */
.ce-este-image.is-screenshot { display: block; }
.ce-este-image.is-screenshot .screenshot-frame { width: 100%; }
.ce-este-image.is-screenshot img {
  mix-blend-mode: normal;
  filter: none;
}
.ce-este-image.is-screenshot:hover img { transform: none; }

/* cadru de screenshot reutilizabil */
.screenshot-frame {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 64px rgba(10,25,47,0.17);
}
.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .ce-este-inner { grid-template-columns: 1fr; gap: 40px; }
  .ce-este-image { order: -1; }
  .ce-este-image img { max-width: 420px; margin: 0 auto; }
  .ce-este-image img:hover { transform: none; }
  .ce-este-image.is-screenshot img { max-width: 100%; }
}

/* ============================================================
   TEASER (home → produs)
============================================================ */
.teaser { background: var(--bg-alt); }
.teaser-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--brand);
  border-radius: 24px;
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.teaser-card::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,180,216,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.teaser-card-inner { position: relative; z-index: 1; }
.teaser-card .eyebrow { color: var(--teal); justify-content: center; }
.teaser-card .eyebrow::before { background: var(--teal); }
.teaser-card h2 { color: #fff; margin-bottom: 14px; }
.teaser-card p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 32px; line-height: 1.75; }
.teaser-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.teaser-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 0.82em;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.teaser-pill svg { color: var(--teal); flex-shrink: 0; }
@media (max-width: 640px) { .teaser-card { padding: 40px 26px; } }

/* ============================================================
   CUM FUNCTIONEAZA — Feature Carousel (produs)
============================================================ */
.cum-functioneaza { background: var(--bg); }
.fc-outer { max-width: 900px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 20px; }
.fc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 52px 52px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 2px 24px rgba(10,25,47,0.06);
  display: flex;
  align-items: center;
  gap: 48px;
}
.fc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--teal) 40%, var(--teal2) 60%, transparent 95%);
  opacity: 0.6;
}
.fc-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  width: 0%;
  z-index: 10;
}
.fc-content { flex: 1; min-width: 0; position: relative; z-index: 2; transition: opacity 0.22s ease, transform 0.22s ease; }
.fc-step-label {
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.fc-title {
  font-size: clamp(1.5em, 2.8vw, 2.1em);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.fc-desc { font-size: 0.92em; color: var(--muted); line-height: 1.82; }
.fc-images {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(10,25,47,0.1);
}
.fc-img-primary {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.fc-img-primary.active { opacity: 1; }
.fc-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.73em;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 18px rgba(10,25,47,0.1);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.2s, transform 0.35s ease 0.2s;
  pointer-events: none;
}
.fc-badge.active { opacity: 1; transform: translateY(0); }
.fc-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; animation: pulse-dot 2.2s ease-in-out infinite; }
.fc-nav { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 8px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8em;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  background: rgba(10,25,47,0.06);
  color: var(--muted);
  transform: scale(0.95);
}
.fc-btn:hover:not(.active) { background: rgba(10,25,47,0.1); color: var(--text); transform: scale(0.97); }
.fc-btn.active { background: var(--teal); color: #fff; box-shadow: 0 4px 16px rgba(0,180,216,0.28); transform: scale(1); }
.fc-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78em;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
  background: rgba(10,25,47,0.1);
  color: var(--text2);
}
.fc-btn.active .fc-num { background: rgba(255,255,255,0.22); color: #fff; }
.fc-btn.done .fc-num  { background: rgba(0,180,216,0.15); color: var(--teal); }
.fc-num-check { display: none; }
.fc-btn.done .fc-num-check { display: inline; }
.fc-btn.done .fc-num-digit { display: none; }
@media (max-width: 640px) {
  .fc-card { flex-direction: column; padding: 30px 24px 40px; min-height: auto; gap: 28px; }
  .fc-images { width: 100%; order: -1; }
  .fc-btn span.fc-name { display: none; }
  .fc-btn { padding: 8px 10px; }
}

/* ============================================================
   CE ANTRENEZI — Orbital Skills (produs)
============================================================ */
.ce-antrenezi { background: var(--bg-alt); }
.ce-antrenezi-head { max-width: 580px; margin: 0 auto 52px; text-align: center; }
.ce-antrenezi-head .eyebrow { justify-content: center; }
.orb-wrap { display: flex; flex-direction: column; align-items: center; }
.orb-scene { position: relative; width: min(520px, 100%); aspect-ratio: 1 / 1; }
.orb-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; }
.orb-disk {
  width: 114px; height: 114px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 2px rgba(0,180,216,0.28), 0 8px 36px rgba(10,25,47,0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0;
}
.orb-disk-logo { width: 100%; height: auto; object-fit: contain; display: block; }
.orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(0,180,216,0.45);
  pointer-events: none;
  animation: orb-breathe 3s ease-in-out infinite;
}
.orb-ring-2 { animation-delay: 1.5s; border-color: rgba(0,180,216,0.25); }
.orb-track {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(0,180,216,0.32);
  pointer-events: none;
}
.orb-node {
  position: absolute;
  left: 50%; top: 50%;
  width: 64px; height: 64px;
  margin-left: -32px; margin-top: -32px;
  cursor: pointer;
  z-index: 5;
}
.orb-node-inner {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal);
  border: 1.5px solid var(--teal2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,180,216,0.3);
  transition: border-color .22s, background .22s, box-shadow .22s, transform .22s;
  padding: 5px;
}
.orb-node:hover .orb-node-inner,
.orb-node.orb-active .orb-node-inner {
  border-color: var(--teal);
  background: var(--brand);
  box-shadow: 0 4px 24px rgba(10,25,47,0.38);
  transform: scale(1.14);
}
.orb-node-num { font-size: 11px; font-weight: 900; color: #fff; letter-spacing: -0.01em; line-height: 1; transition: color .22s; }
.orb-node-label {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-align: center;
  line-height: 1.3;
  margin-top: 3px;
  max-width: 54px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .22s;
}
.orb-node:hover .orb-node-num,
.orb-node.orb-active .orb-node-num   { color: var(--teal); }
.orb-node:hover .orb-node-label,
.orb-node.orb-active .orb-node-label { color: rgba(255,255,255,0.9); }
.orb-panel {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border-t);
  border-radius: var(--r);
  padding: 22px 36px;
  width: min(460px, 100%);
  text-align: center;
  box-shadow: 0 4px 24px rgba(10,25,47,0.08);
  min-height: 96px;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.orb-panel.orb-panel-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.orb-panel-num   { font-size: 0.95em; font-weight: 800; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.orb-panel-title { font-size: 1.22em; font-weight: 800; color: var(--brand); letter-spacing: -0.028em; margin-bottom: 8px; }
.orb-panel-sub   { font-size: 0.875em; color: var(--muted); line-height: 1.72; }
.orb-hint { font-size: 0.78em; color: var(--muted); margin-top: 14px; transition: opacity .5s; text-align: center; }
.orb-hint.orb-hint-hidden { opacity: 0; pointer-events: none; }
.orb-benefits {
  list-style: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}
.orb-benefit { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83em; color: var(--text2); line-height: 1.55; }
.orb-benefit-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(0,180,216,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 600px) {
  .orb-node { width: 52px; height: 52px; margin-left: -26px; margin-top: -26px; }
  .orb-node-inner { width: 52px; height: 52px; }
  .orb-node-num { font-size: 9.5px; }
  .orb-node-label { font-size: 6.5px; }
  .orb-disk { width: 82px; height: 82px; padding: 0; }
  .orb-panel { padding: 18px 22px; margin-top: 18px; }
  .ce-antrenezi-head { margin-bottom: 36px; }
}

/* ============================================================
   CE PRIMESTI — Bento Grid (produs)
============================================================ */
.ce-primesti { background: var(--bg); }
.ce-primesti-head { max-width: 580px; margin: 0 auto 40px; text-align: center; }
.ce-primesti-head .eyebrow { justify-content: center; }
.cp-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 44px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.cp-tab {
  padding: 9px 30px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.875em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.cp-tab.active { background: var(--brand); color: #fff; box-shadow: 0 2px 14px rgba(10,25,47,0.2); }
.cp-tab:hover:not(.active) { color: var(--brand); }
.cp-panel { display: none; }
.cp-panel.cp-active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 6px rgba(10,25,47,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.cp-card:hover { border-color: var(--border-t); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(10,25,47,0.09); }
.cp-card.cp-wide { grid-column: span 2; }
.cp-card.cp-premium { border-color: rgba(245,158,11,0.28); }
.cp-card.cp-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 40%, var(--gold) 60%, transparent 95%);
  opacity: 0.8;
}
.cp-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,180,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.cp-card.cp-premium .cp-icon { background: var(--gold-dim); border-color: rgba(245,158,11,0.2); color: var(--gold); }
.cp-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.68em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.cp-card-title { font-size: 1.02em; font-weight: 700; color: var(--brand); letter-spacing: -0.02em; line-height: 1.3; }
.cp-card-desc { font-size: 0.86em; color: var(--muted); line-height: 1.75; margin: 0; }
@media (max-width: 640px) {
  .cp-panel.cp-active { grid-template-columns: 1fr; }
  .cp-card.cp-wide { grid-column: span 1; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .cp-panel.cp-active { grid-template-columns: repeat(2, 1fr); }
  .cp-card.cp-wide { grid-column: span 2; }
}

/* ============================================================
   FORM (contact)
============================================================ */
.form-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info { padding-top: 8px; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(1.7em, 3vw, 2.2em); margin-bottom: 14px; }
.contact-info .section-sub { margin-bottom: 36px; }
.contact-methods { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; }
.contact-method-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,180,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-method-body { padding-top: 2px; }
.contact-method-label { font-size: 0.72em; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.contact-method-value { font-size: 0.95em; color: var(--brand); font-weight: 600; text-decoration: none; transition: color 0.2s; }
a.contact-method-value:hover { color: var(--teal); }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10,25,47,0.08);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--teal) 40%, var(--teal2) 60%, transparent 95%);
  opacity: 0.7;
}
.form-card-title { font-size: 1.3em; font-weight: 800; color: var(--brand); margin-bottom: 6px; letter-spacing: -0.03em; }
.form-card-sub { font-size: 0.88em; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
label {
  display: block;
  font-size: 0.77em;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.95em;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(0,180,216,0.5);
  background: rgba(0,180,216,0.03);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.08);
}
input::placeholder, textarea::placeholder { color: rgba(100,116,139,0.5); }
select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7590' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
select option { background: #ffffff; color: #0f172a; }
textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05em;
  padding: 17px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}
.btn-submit:hover { background: #0d2240; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(10,25,47,0.25); }
.form-note { font-size: 0.78em; color: var(--muted); text-align: center; margin-top: 18px; line-height: 1.65; }
.form-note a { color: var(--teal); text-decoration: none; transition: opacity 0.2s; }
.form-note a:hover { opacity: 0.75; }
.form-error {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--r-sm);
  font-size: 0.85em;
  color: #b91c1c;
  text-align: center;
  line-height: 1.6;
}
.form-error a { color: #b91c1c; font-weight: 600; text-decoration: underline; }
.form-success {
  display: none;
  background: rgba(0,180,216,0.07);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
}
.form-success-icon { margin-bottom: 16px; }
.form-success-title { font-size: 1.15em; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.form-success-sub { font-size: 0.9em; color: var(--text2); line-height: 1.65; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA STRIP (toate paginile)
============================================================ */
.cta-strip {
  background: var(--brand);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 110%, rgba(0,180,216,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.5); margin: 0 auto 36px; max-width: 440px; line-height: 1.7; }

/* ============================================================
   FOOTER (toate paginile)
============================================================ */
footer {
  background: var(--brand);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 24px;
  text-align: center;
}
.footer-logo-box { display: inline-block; margin-bottom: 22px; }
.footer-logo-box img { height: 36px; width: auto; display: block; opacity: 0.9; }
.footer-logo-text { font-size: 1.25em; font-weight: 900; letter-spacing: -0.05em; color: #fff; }
.footer-links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.84em; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 0.76em; color: rgba(255,255,255,0.2); }

/* ============================================================
   FOCUS / RESPONSIVE GLOBAL
============================================================ */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .hero { padding: 108px 20px 88px; }
  .hero-stats { flex-direction: column; }
  .stat + .stat::before { top: 0; left: 16%; right: 16%; bottom: auto; width: auto; height: 1px; }
  .hero-stats .stat { padding: 22px 24px; }
  .stat-label { font-size: 0.68em; }
  section { padding: 76px 20px; }
  .page-header { padding: 124px 20px 60px; }
}
