/* ================================================================
   KALIFICARE.RO — Design System v2
   Top Graphic Designer Edition + Russell Brunson Conversion Methods
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
  /* Colors — Kalificare SRL Brand Palette */
  --navy:         #0B1830;  /* brand primary dark */
  --navy-mid:     #102040;
  --blue:         #1F5FD4;  /* brand blue */
  --blue-vivid:   #2563EB;  /* brand accent blue */
  --blue-light:   #EBF2FF;
  --gold:         #F5A623;  /* CTA gold — conversie */
  --gold-dark:    #D4891A;
  --gold-light:   #FFF8E8;
  --green:        #00C896;
  --green-dark:   #009E78;
  --green-light:  #E6FBF5;
  --red:          #E8374A;
  --red-light:    #FFF0F1;
  --bg:           #F4F6FC;
  --white:        #FFFFFF;
  --text:         #0B1830;
  --text-mid:     #1E3A6A;
  --text-muted:   #5A6E96;
  --border:       #D8E2F4;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(11,29,58,0.06);
  --shadow-sm:  0 2px 10px rgba(11,29,58,0.08);
  --shadow:     0 4px 24px rgba(11,29,58,0.10);
  --shadow-md:  0 8px 32px rgba(11,29,58,0.14);
  --shadow-lg:  0 16px 48px rgba(11,29,58,0.16);
  --shadow-xl:  0 24px 64px rgba(11,29,58,0.22);

  /* Radius */
  --r-sm:  8px;
  --r:     14px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-full: 9999px;

  /* Transitions */
  --t: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }

/* ---- COUNTDOWN BAR ---- */
.bara-countdown {
  background: linear-gradient(90deg, var(--navy) 0%, #1a3a7a 100%);
  color: white;
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bara-countdown .pulse-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.4s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.countdown-timer {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  padding: 3px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}
.bara-countdown .locuri { color: var(--gold); font-weight: 800; }

/* ---- NAV ---- */
.nav-top {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  /* blendează fundalul deschis al jpg-ului cu nav-ul alb */
  mix-blend-mode: multiply;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--blue-vivid); }
.nav-logo-text em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: 0.5px;
}
.nav-logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-top: 1px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-tel {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t);
}
.nav-tel:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue-vivid);
  color: white;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--r-full);
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(37,99,235,0.38);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #060f1e 0%, #0b1830 40%, #102040 70%, #162c58 100%);
  color: white;
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.20) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.95);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, #ffcc55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 u {
  text-decoration: none;
  border-bottom: 3px solid var(--green);
  padding-bottom: 2px;
  color: white;
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 500;
}

/* Hero price box */
.hero-offer-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 20px 40px;
  margin-bottom: 32px;
  gap: 4px;
}
.hero-offer-box .label-sus {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.hero-offer-box .pret-vechi {
  font-size: 17px;
  text-decoration: line-through;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hero-offer-box .pret-nou {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}
.hero-offer-box .pret-nou span { font-size: 24px; letter-spacing: 0; vertical-align: super; }
.hero-offer-box .label-jos {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-offer-box .economie {
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--r-full);
  margin-top: 4px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  padding: 18px 48px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(245,166,35,0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: all var(--t);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.btn-hero:hover {
  background: #ffb830;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,166,35,0.55), 0 4px 12px rgba(0,0,0,0.25);
}
.btn-hero svg { width: 20px; height: 20px; flex-shrink: 0; }

.hero-nota {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-nota span { display: flex; align-items: center; gap: 5px; }

/* Seat progress bar */
.hero-progress {
  max-width: 340px;
  margin: 20px auto 0;
}
.hero-progress .label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.hero-progress .label strong { color: var(--gold); }
.progress-bar-outer {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  overflow: hidden;
}
.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #00e6a8 100%);
  border-radius: var(--r-full);
  transition: width 1.5s ease;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.trust-icon.green { background: var(--green-light); }
.trust-icon.blue { background: var(--blue-light); }
.trust-icon.gold { background: var(--gold-light); }

/* ---- CONTAINER ---- */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTIONS ---- */
section { padding: 80px 20px; }

.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-vivid);
  margin-bottom: 12px;
}
section h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
  text-align: center;
}
.subtitlu-s {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 52px;
  font-weight: 500;
}

/* ---- IMAGINE section (Brunson: paint the picture) ---- */
.imagine-section {
  background: white;
  text-align: center;
}
.imagine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
@media (max-width: 860px) {
  .imagine-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .imagine-grid { grid-template-columns: 1fr; }
}
.imagine-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: left;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.imagine-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-vivid), var(--green));
}
.imagine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-vivid);
}
.imagine-card .ic { font-size: 32px; margin-bottom: 14px; }
.imagine-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.imagine-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; }

/* ---- FALSE BELIEFS (Brunson) ---- */
.false-beliefs-section { background: var(--bg); text-align: center; }
.beliefs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.belief-card {
  background: white;
  border-radius: var(--r);
  padding: 24px;
  text-align: left;
  border: 1.5px solid var(--border);
  transition: all var(--t);
}
.belief-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.belief-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.belief-x {
  width: 28px; height: 28px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.belief-check {
  width: 28px; height: 28px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.belief-card .myth { font-size: 14px; font-weight: 700; color: var(--text-mid); margin-bottom: 10px; }
.belief-divider { height: 1px; background: var(--border); margin: 12px 0; }
.belief-card .truth { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.belief-card .truth strong { color: var(--green-dark); }

/* ---- CE OBTII ---- */
.obtii-section { background: white; text-align: center; }
.obtii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.obtii-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  text-align: left;
  transition: all var(--t);
}
.obtii-item:hover { border-color: var(--blue-vivid); background: var(--blue-light); }
.obtii-check {
  width: 26px; height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.obtii-check::after {
  content: '';
  width: 11px; height: 6px;
  border-left: 2.5px solid white;
  border-bottom: 2.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.obtii-item p { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.5; }
.obtii-item span { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* ---- VALUE STACK (KEY Brunson element) ---- */
.value-stack-section {
  background: linear-gradient(135deg, #060f1e 0%, #0b1830 100%);
  text-align: center;
  color: white;
}
.value-stack-section h2 { color: white; }
.value-stack-section .subtitlu-s { color: rgba(255,255,255,0.7); }
.value-stack-section .section-label { color: var(--gold); }

.stack-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
  transition: background var(--t);
}
.stack-item:hover { background: rgba(255,255,255,0.04); }
.stack-item:last-child { border-bottom: none; }
.stack-item .item-name {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  flex: 1;
}
.stack-item .item-icon { font-size: 22px; flex-shrink: 0; }
.stack-item .item-text { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); }
.stack-item .item-text small { display: block; font-size: 12.5px; color: rgba(255,255,255,0.5); font-weight: 400; }
.stack-item .item-value {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  flex-shrink: 0;
  white-space: nowrap;
}
.stack-item.bonus .item-text { color: var(--gold); }
.stack-item.bonus .item-value { color: var(--gold); opacity: 0.6; }

.stack-total {
  background: rgba(255,255,255,0.08);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid rgba(255,255,255,0.15);
}
.stack-total .tot-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}
.stack-total .tot-val {
  font-size: 22px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.stack-cta-box {
  max-width: 700px;
  margin: 24px auto 0;
  background: linear-gradient(135deg, var(--gold) 0%, #ffb830 100%);
  border-radius: var(--r-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stack-cta-box .tu-platesti {
  text-align: left;
}
.stack-cta-box .tu-platesti .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgba(11,29,58,0.6);
}
.stack-cta-box .tu-platesti .pret {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.stack-cta-box .tu-platesti .pret sup { font-size: 22px; vertical-align: super; letter-spacing: 0; }
.stack-cta-box .tu-platesti .reducere {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 4px;
}
.btn-stack {
  background: var(--navy);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--r-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(11,29,58,0.35);
  transition: all var(--t);
  white-space: nowrap;
}
.btn-stack:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(11,29,58,0.5); background: #0a1830; }

/* ---- TESTIMONIALE ---- */
.testimoniale-section { background: var(--bg); text-align: center; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: white;
  border-radius: var(--r-md);
  padding: 28px 26px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  position: relative;
  transition: all var(--t);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 72px;
  line-height: 1;
  color: var(--blue-light);
  font-family: Georgia, serif;
  font-weight: 900;
}
.testi-stele {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card .rezultat {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.testi-card p.text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-vivid) 0%, #6e8cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.testi-autor .name { font-size: 14px; font-weight: 800; color: var(--navy); }
.testi-autor .role { font-size: 12.5px; color: var(--text-muted); }

/* ---- PENTRU CINE (Who this is for) ---- */
.pentru-cine-section { background: white; text-align: center; }
.pentru-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.pentru-col { text-align: left; }
.pentru-col-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.pentru-col-title.da { background: var(--green-light); color: var(--green-dark); }
.pentru-col-title.nu { background: var(--red-light); color: var(--red); }
.pentru-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.pentru-item .badge {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.pentru-item .badge.da { background: var(--green); color: white; }
.pentru-item .badge.nu { background: var(--red); color: white; }

/* ---- DETALII CURS ---- */
.detalii-section { background: var(--bg); text-align: center; }
.detalii-table {
  max-width: 740px;
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  background: white;
}
.detalii-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.detalii-row:last-child { border-bottom: none; }
.detalii-row:nth-child(even) { background: #fafbff; }
.detalii-label {
  background: var(--blue-light);
  color: var(--blue-vivid);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 16px 20px;
  min-width: 175px;
  display: flex;
  align-items: center;
}
.detalii-val {
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  display: flex;
  align-items: center;
}

/* ---- TRAINER ---- */
.trainer-section { background: white; text-align: center; }
.trainer-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}
.trainer-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.trainer-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-vivid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.trainer-badge-exp {
  position: absolute;
  bottom: -4px; right: -4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--r-full);
  border: 2px solid white;
}
.trainer-info h3 { font-size: 21px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.trainer-titlu { font-size: 14px; font-weight: 600; color: var(--blue-vivid); margin-bottom: 14px; }
.trainer-info p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.trainer-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trainer-stat { text-align: center; }
.trainer-stat .num { font-size: 24px; font-weight: 900; color: var(--navy); }
.trainer-stat .lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ---- GARANTIE ---- */
.garantie-section {
  background: var(--green-light);
  text-align: center;
  border-top: 2px solid rgba(0,200,150,0.2);
  border-bottom: 2px solid rgba(0,200,150,0.2);
}
.garantie-box {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  text-align: left;
}
.garantie-icon-wrap {
  flex-shrink: 0;
  width: 90px; height: 90px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 8px 24px rgba(0,200,150,0.35);
}
.garantie-box h2 {
  text-align: left;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--green-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.garantie-box p { font-size: 15.5px; color: #1a5c44; line-height: 1.65; }

/* ---- PLATA ---- */
.plata-section { background: var(--bg); text-align: center; }
.plata-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 36px;
}
.plata-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 32px;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  transition: all var(--t);
}
.plata-card:hover { border-color: var(--blue-vivid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plata-card.recomandat {
  border-color: var(--blue-vivid);
  box-shadow: var(--shadow-md);
  position: relative;
}
.plata-card.recomandat::before {
  content: 'CEL MAI ALES';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue-vivid);
  color: white;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--r-full);
}
.plata-card .suma { font-size: 34px; font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; }
.plata-card .desc { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.plata-card .detaliu { font-size: 13px; color: var(--green-dark); font-weight: 700; margin-top: 10px; }
.plata-card .detaliu::before { content: '✓ '; }

/* ---- FORMULAR ---- */
.formular-section {
  background: linear-gradient(135deg, #060f1e 0%, #0b1830 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.formular-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,124,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.formular-section h2 { color: white; position: relative; z-index: 1; }
.formular-section .subtitlu-s { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.formular-section .section-label { color: var(--gold); position: relative; z-index: 1; }

.form-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 44px 40px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}
.form-titlu { font-size: 21px; font-weight: 900; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.5px; }
.form-subtitlu { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; font-weight: 500; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  background: white;
  font-weight: 500;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-vivid);
  box-shadow: 0 0 0 4px rgba(79,124,255,0.12);
}
.form-group input::placeholder { color: #bcc6d8; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #00a87e 100%);
  color: white;
  border: none;
  padding: 18px;
  font-size: 17px;
  font-weight: 900;
  border-radius: var(--r);
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--t);
  font-family: var(--font);
  letter-spacing: -0.3px;
  box-shadow: 0 6px 20px rgba(0,200,150,0.4);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,200,150,0.55);
  background: linear-gradient(135deg, #00d8a0 0%, var(--green-dark) 100%);
}
.form-nota {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.form-nota svg { width: 14px; height: 14px; color: var(--green); }

/* Beneficii inline în form */
.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}
.form-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.form-benefit::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-section { background: white; }
.faq-lista { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--blue-vivid); }
.faq-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.faq-item h3::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--blue-vivid);
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item.open h3::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  display: none;
}
.faq-item.open p { display: block; }

/* ---- DESPRE / STATS ---- */
.despre-section {
  background: #0b1830;
  color: white;
  text-align: center;
}
.despre-section h2 { color: white; }
.despre-section .subtitlu-s { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.despre-section p.text { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 680px; margin: 0 auto 12px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-item .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- CTA FINAL ---- */
.cta-final-section {
  background: linear-gradient(135deg, var(--gold) 0%, #ffb830 100%);
  text-align: center;
  padding: 70px 20px;
}
.cta-final-section h2 {
  color: var(--navy);
  font-size: clamp(24px, 4vw, 44px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.cta-final-section p { font-size: 17px; color: rgba(11,29,58,0.7); margin-bottom: 32px; font-weight: 500; }
.cta-final-section .nota-final {
  font-size: 13px;
  color: rgba(11,29,58,0.55);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
  background: #060f1e;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 36px 20px;
  font-size: 13.5px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--t);
  font-weight: 500;
}
.footer-links a:hover { color: white; }

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 20px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta .pret-mic { font-size: 18px; font-weight: 900; color: var(--gold); }
.sticky-cta .pret-mic span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 400; display: block; }
.sticky-cta .btn-sticky {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: var(--r-full);
  text-decoration: none;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hero { padding: 60px 16px 56px; }
  .hero h1 { letter-spacing: -1px; }
  .form-card { padding: 28px 20px; }
  .detalii-label { min-width: 110px; font-size: 11px; }
  .trainer-card { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .trainer-stats { justify-content: center; }
  .garantie-box { flex-direction: column; align-items: center; text-align: center; }
  .garantie-box h2 { text-align: center; }
  .pentru-grid { grid-template-columns: 1fr; }
  .stack-cta-box { flex-direction: column; text-align: center; }
  .stack-cta-box .tu-platesti { text-align: center; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .trust-bar { gap: 16px; }
  .bara-countdown { font-size: 12.5px; }
}

@media (max-width: 480px) {
  .hero-offer-box { padding: 16px 24px; }
  .btn-hero { font-size: 16px; padding: 16px 36px; }
  .stack-item { padding: 14px 18px; }
  .stack-total { padding: 16px 18px; }
  .stack-cta-box { padding: 22px 20px; }
}
