/* ============================================================
   ramonatoth.online — Stiluri globale
   ============================================================ */

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

:root {
  --negru:         #1a1a2e;
  --albastru:      #16213e;
  --auriu:         #e8a020;
  --auriu-deschis: #f5c842;
  --rosu:          #c0392b;
  --alb:           #ffffff;
  --gri-deschis:   #f8f9fa;
  --gri:           #6c757d;
  --verde:         #27ae60;
  --shadow:        0 4px 20px rgba(0,0,0,0.12);
  --radius:        12px;
}

body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--negru); line-height: 1.65; background: var(--alb); }

/* ── Navigație completă ── */
nav {
  background: var(--negru);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.nav-logo { color: var(--auriu); font-size: 1.35rem; font-weight: 800; text-decoration: none; flex-shrink: 0; letter-spacing: -0.02em; }
.nav-logo span { color: var(--alb); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--auriu); }
.nav-links li.activ > a { color: var(--auriu); font-weight: 700; }
.nav-cta {
  background: var(--auriu) !important;
  color: var(--negru) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700 !important;
  white-space: nowrap;
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: var(--auriu-deschis) !important; }

/* Dropdown cursuri */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--negru);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 10px;
  list-style: none;
  min-width: 210px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  padding: 0.6rem 0 0.5rem;
  z-index: 300;
}
.nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.3rem;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background .15s, color .15s;
  border-radius: 6px;
  margin: 0 0.3rem;
}
.nav-dropdown li a:hover { background: rgba(232,160,32,0.15); color: var(--auriu) !important; }
.has-dropdown:hover .nav-dropdown { display: block; }

/* Hamburger */
.nav-burger { display: none; background: none; border: none; color: var(--alb); font-size: 1.6rem; cursor: pointer; padding: 0.3rem; line-height: 1; }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--negru);
    flex-direction: column;
    gap: 0;
    padding: 0.8rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(232,160,32,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 0.8rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin: 0.5rem 2rem; display: block; text-align: center; border-radius: 6px; }
  .nav-dropdown { position: static; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: 0; padding: 0; display: block; }
  .nav-dropdown li a { padding-left: 3rem; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
}

/* ── Logo bar pentru landing pages ── */
.logo-bar {
  background: var(--negru);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-bar a { color: var(--auriu); font-size: 1.3rem; font-weight: 800; text-decoration: none; }
.logo-bar a span { color: var(--alb); }

/* ── Urgency bar ── */
.urgency-bar {
  background: var(--rosu);
  color: var(--alb);
  text-align: center;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
}
#countdown-top { font-size: 1.1rem; letter-spacing: 0.05em; }

/* ── Butoane ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-auriu  { background: var(--auriu); color: var(--negru); }
.btn-auriu:hover { background: var(--auriu-deschis); }
.btn-alb    { background: var(--alb); color: var(--negru); }
.btn-contur { background: transparent; border: 2px solid var(--auriu); color: var(--auriu); }
.btn-mare   { padding: 1.15rem 3rem; font-size: 1.18rem; }
.btn-rosu   { background: var(--rosu); color: var(--alb); }
.btn-verde  { background: var(--verde); color: var(--alb); }

/* ── Layout ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.text-centru { text-align: center; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.18; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.22; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { line-height: 1.7; }

.subtitlu { font-size: 1.15rem; color: var(--gri); margin-top: 0.6rem; }
.badge {
  display: inline-block;
  background: var(--auriu);
  color: var(--negru);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

/* ── Social proof bar ── */
.social-proof-bar { background: var(--albastru); color: var(--alb); padding: 1.3rem 2rem; }
.proof-items { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.proof-item { text-align: center; }
.proof-numar { font-size: 1.9rem; font-weight: 800; color: var(--auriu); line-height: 1; }
.proof-text  { font-size: 0.82rem; opacity: 0.82; margin-top: 0.2rem; }

/* ── Hero principal (index) ── */
.hero-main {
  background: linear-gradient(135deg, var(--negru) 0%, var(--albastru) 100%);
  color: var(--alb);
  padding: 5rem 2rem 4rem;
}
.hero-main-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-main h1 { color: var(--alb); margin-bottom: 1.2rem; }
.hero-main h1 span { color: var(--auriu); }
.hero-main-text p { font-size: 1.15rem; opacity: 0.88; margin-bottom: 2rem; max-width: 580px; }
.hero-main-foto img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.45); display: block; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.garantie { font-size: 0.82rem; opacity: 0.65; margin-top: 1rem; }

@media (max-width: 900px) {
  .hero-main-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-main-text { order: 1; }
  .hero-main-foto { order: 2; max-width: 280px; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-main-text p { max-width: none; }
}

/* ── Hero landing page (A1/A2/B1) ── */
.hero-lp {
  background: linear-gradient(135deg, var(--negru) 0%, var(--albastru) 100%);
  color: var(--alb);
  padding: 0;
  overflow: hidden;
}
.hero-lp-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 560px;
}
.hero-lp-text { padding: 4rem 2rem 4rem 2rem; }
.hero-lp h1 { color: var(--alb); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.hero-lp h1 span { color: var(--auriu); }
.hero-lp .subtitlu-hero { font-size: 1.05rem; opacity: 0.88; max-width: 520px; margin: 0 0 1.5rem; line-height: 1.7; }
.hero-lp-foto { display: flex; align-items: center; justify-content: center; padding: 2rem 2rem 2rem 0; }
.hero-lp-foto img { width: 340px; max-width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); display: block; }

/* Prețuri hero box */
.pret-hero-box {
  display: inline-flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232,160,32,0.4);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.pret-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.3rem; }
.pret-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; flex-shrink: 0; }
.pret-hero-mare { font-size: 2rem; font-weight: 800; color: var(--auriu); line-height: 1; }
.pret-hero-text { font-size: 0.82rem; opacity: 0.78; }
.pret-hero-tag { font-size: 0.75rem; background: var(--auriu); color: var(--negru); font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }
.hero-garantie { font-size: 0.8rem; opacity: 0.6; margin-top: 0.8rem; }

@media (max-width: 900px) {
  .hero-lp-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-lp-text { padding: 3rem 1.5rem 2rem; text-align: center; }
  .hero-lp-foto { padding: 0 1.5rem 2.5rem; justify-content: center; }
  .hero-lp-foto img { width: 260px; }
  .pret-hero-box { justify-content: center; }
}

/* ── Carduri cursuri (index) ── */
.cursuri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.curs-card {
  background: var(--alb);
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.curs-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: var(--auriu); }
.curs-card.featured { border-color: var(--auriu); background: linear-gradient(180deg, #fffbf0 0%, #fff 100%); }
.curs-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.curs-card h3 { margin-bottom: 0.5rem; }
.curs-card p { font-size: 0.9rem; color: var(--gri); flex: 1; margin-bottom: 1.2rem; }
.curs-pret { font-size: 1.5rem; font-weight: 800; color: var(--auriu); margin-bottom: 1.2rem; }
.curs-pret small { font-size: 0.85rem; font-weight: 400; color: var(--gri); }

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--gri-deschis);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}
.feature-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.feature-card p { font-size: 0.88rem; color: var(--gri); }

/* ── Curriculum accordion ── */
.curriculum { background: var(--gri-deschis); }
.curriculum-module {
  background: var(--alb);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid #eee;
  overflow: hidden;
}
.curriculum-module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
}
.curriculum-module-header:hover { background: var(--gri-deschis); }
.curriculum-module-arrow { transition: transform .2s; }
.curriculum-module.open .curriculum-module-arrow { transform: rotate(180deg); }
.curriculum-module-lectii { display: none; padding: 0 1.5rem 1rem; }
.curriculum-module.open .curriculum-module-lectii { display: block; }
.lectie-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.lectie-nr { color: var(--gri); min-width: 28px; font-size: 0.8rem; }
.lectie-titlu { flex: 1; }

/* ── Card preț principal ── */
.preturi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card-pret {
  border: 2px solid #e9ecef;
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card-pret:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-pret.popular { border-color: var(--auriu); background: linear-gradient(180deg, #fffbf0 0%, #fff 100%); }
.eticheta-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--auriu);
  color: var(--negru);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pret-suma { font-size: 2.8rem; font-weight: 800; color: var(--negru); line-height: 1; margin-bottom: 0.3rem; }
.pret-suma span { font-size: 1.1rem; font-weight: 400; color: var(--gri); }
.pret-billed { font-size: 0.83rem; color: var(--gri); margin-bottom: 1.5rem; }
.pret-features { list-style: none; margin: 1.2rem 0 1.8rem; flex: 1; }
.pret-features li { padding: 0.45rem 0; font-size: 0.93rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.pret-features li::before { content: "✓"; color: var(--verde); font-weight: 800; flex-shrink: 0; }
.pret-features li.negat::before { content: "✗"; color: #ccc; }
.pret-features li.negat { color: var(--gri); }
.pret-features li.negat { color: var(--gri); }

/* ── Testimoniale ── */
.testimoniale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--alb);
  border-radius: var(--radius);
  padding: 1.8rem;
  border-left: 4px solid var(--auriu);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.testimonial-card.dark { background: var(--gri-deschis); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--auriu);
  flex-shrink: 0;
}
.testimonial-text { font-style: italic; margin-bottom: 1rem; color: #333; line-height: 1.65; font-size: 0.95rem; }
.testimonial-autor { font-weight: 700; font-size: 0.92rem; }
.testimonial-detaliu { font-size: 0.8rem; color: var(--gri); }
.stele { color: var(--auriu); font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }

/* ── Video testimonial ── */
.testimonial-video-card {
  background: var(--negru);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.testimonial-video-card video { width: 100%; display: block; max-height: 320px; object-fit: cover; }
.testimonial-video-footer { padding: 1rem 1.5rem; }
.testimonial-video-footer .testimonial-autor { color: var(--alb); }
.testimonial-video-footer .testimonial-detaliu { color: rgba(255,255,255,0.6); }

/* ── Pași ── */
.pasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pas { text-align: center; }
.pas-numar {
  width: 56px; height: 56px;
  background: var(--auriu);
  color: var(--negru);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.pas h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.pas p { font-size: 0.88rem; color: var(--gri); }

/* ── Despre Ramona ── */
.about-section { background: var(--gri-deschis); }
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.about-foto-img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 3/4; display: block; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.about-credentiale { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.credential-badge {
  background: var(--negru);
  color: var(--auriu);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.about-stat { background: var(--alb); border-radius: 8px; padding: 1rem; text-align: center; border-left: 3px solid var(--auriu); }
.about-stat-nr { font-size: 1.6rem; font-weight: 800; color: var(--auriu); line-height: 1; }
.about-stat-text { font-size: 0.78rem; color: var(--gri); margin-top: 0.2rem; }

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-foto-img { max-width: 240px; margin: 0 auto; aspect-ratio: 1; }
}

/* ── FAQ ── */
.faq-lista { max-width: 720px; margin: 3rem auto 0; }
.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-intrebare {
  font-weight: 700;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  user-select: none;
}
.faq-intrebare:hover { background: var(--gri-deschis); }
.faq-arrow { transition: transform .25s; font-size: 1.1rem; color: var(--auriu); }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-raspuns { display: none; padding: 0 1.5rem 1.2rem; color: var(--gri); font-size: 0.93rem; line-height: 1.7; }
.faq-item.open .faq-raspuns { display: block; }

/* ── CTA final ── */
.cta-final {
  background: linear-gradient(135deg, var(--negru), var(--albastru));
  color: var(--alb);
  text-align: center;
}
.cta-final h2 { color: var(--alb); margin-bottom: 1rem; }
.cta-final p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── Garantie box ── */
.garantie-box {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--verde);
  font-weight: 600;
}
.garantie-icon { font-size: 1.4rem; }

/* ── Pachete grid ── */
.pachete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.pachet-card {
  background: var(--alb);
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.pachet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: var(--auriu); }
.pachet-card.bestseller { border-color: var(--auriu); position: relative; }
.pachet-eticheta {
  position: absolute;
  top: -12px;
  right: 1.2rem;
  background: var(--auriu);
  color: var(--negru);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}
.pachet-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.pachet-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.pachet-card p { font-size: 0.88rem; color: var(--gri); flex: 1; margin-bottom: 1.2rem; line-height: 1.55; }
.pachet-lectii { font-size: 0.8rem; color: var(--gri); margin-bottom: 0.8rem; }
.pachet-lectii span { color: var(--negru); font-weight: 700; }
.pachet-preturi { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.pachet-pret-nou { font-size: 1.7rem; font-weight: 800; color: var(--auriu); }
.pachet-pret-vechi { font-size: 0.95rem; color: var(--gri); text-decoration: line-through; }
.pachet-economie { font-size: 0.75rem; background: #e8f5e9; color: var(--verde); font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }

/* ── Pagina prețuri ── */
.preturi-sectiune { background: var(--gri-deschis); }
.preturi-header { text-align: center; margin-bottom: 3rem; }
.comparatie-tabel { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.comparatie-tabel th, .comparatie-tabel td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.comparatie-tabel th { background: var(--negru); color: var(--alb); font-weight: 700; }
.comparatie-tabel tr:hover td { background: var(--gri-deschis); }
.comparatie-tabel .da { color: var(--verde); font-weight: 700; }
.comparatie-tabel .nu { color: #ccc; }
.comparatie-tabel .highlight td { background: #fffbf0; font-weight: 600; }

/* ── Ce vei stăpâni ── */
.competente-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.competenta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem;
  background: var(--alb);
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 0.9rem;
}
.competenta-item::before { content: "✓"; color: var(--verde); font-weight: 800; flex-shrink: 0; margin-top: 0.05em; }

/* ── Footer ── */
footer {
  background: var(--negru);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
}
footer a { color: var(--auriu); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }

/* ── Pagina about completa ── */
.ramona-bio { background: var(--alb); }
.ramona-bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}
.ramona-bio-foto img { width: 100%; border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.ramona-bio-text h1 { margin-bottom: 0.5rem; }
.ramona-bio-text .subtitlu { margin-bottom: 1.5rem; }
.ramona-bio-text p { margin-bottom: 1rem; color: #444; font-size: 0.97rem; }
.timeline { list-style: none; margin-top: 1.5rem; }
.timeline li { padding: 0.7rem 0 0.7rem 1.8rem; border-left: 2px solid var(--auriu); position: relative; font-size: 0.93rem; color: #444; }
.timeline li::before { content: ""; position: absolute; left: -5px; top: 1rem; width: 8px; height: 8px; background: var(--auriu); border-radius: 50%; }
.timeline li strong { color: var(--negru); display: block; }
@media (max-width: 768px) {
  .ramona-bio-grid { grid-template-columns: 1fr; }
  .ramona-bio-foto { max-width: 240px; margin: 0 auto; }
}

/* ── Gratuit page ── */
.video-section { background: var(--gri-deschis); }
.video-wrap { max-width: 800px; margin: 0 auto; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: 0 8px 30px rgba(0,0,0,0.15); margin-bottom: 1rem; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-titlu { font-weight: 700; font-size: 1.05rem; margin-bottom: 2.5rem; color: var(--gri); }

/* ── Pregătire LIVE B1 (premium hero) ── */
.hero-live {
  background: linear-gradient(135deg, #0f0f1a 0%, var(--negru) 50%, #1a1030 100%);
  color: var(--alb);
  padding: 5rem 2rem;
  text-align: center;
}
.hero-live h1 { color: var(--alb); margin-bottom: 1rem; }
.hero-live h1 span { color: var(--auriu); }
.hero-live p { font-size: 1.15rem; opacity: 0.88; max-width: 680px; margin: 0 auto 2rem; }
.live-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.live-badge { background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.4); color: var(--auriu); font-size: 0.85rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 20px; }
.locuri-indicator { background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.4); color: #ff7675; font-size: 0.9rem; font-weight: 700; padding: 0.6rem 1.5rem; border-radius: 8px; display: inline-block; margin-bottom: 2rem; }

/* ── Tabel comparativ LIVE ── */
.comparativ-live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.comparativ-col { border-radius: var(--radius); padding: 2rem; }
.comparativ-col.standard { background: var(--gri-deschis); border: 2px solid #eee; }
.comparativ-col.premium { background: linear-gradient(180deg, #fffbf0 0%, #fff 100%); border: 2px solid var(--auriu); }
.comparativ-col h3 { margin-bottom: 1rem; }
.comparativ-col ul { list-style: none; }
.comparativ-col ul li { padding: 0.4rem 0; font-size: 0.92rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.comparativ-col.standard ul li::before { content: "·"; color: var(--gri); font-weight: 800; flex-shrink: 0; }
.comparativ-col.premium ul li::before { content: "✓"; color: var(--verde); font-weight: 800; flex-shrink: 0; }
@media (max-width: 600px) { .comparativ-live { grid-template-columns: 1fr; } }

/* ── Responsive generale ── */
@media (max-width: 768px) {
  section { padding: 3.5rem 1.2rem; }
  .preturi-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .testimoniale-grid { grid-template-columns: 1fr; }
}

/* ── Prețuri vechi tăiate ── */
.pret-vechi {
  font-size: 1.1rem;
  color: var(--gri);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.2rem;
}
.pret-vechi-hero {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.2rem;
}
.pret-vechi-card {
  font-size: 0.9rem;
  color: var(--gri);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.2rem;
}

/* ── Footer social media ── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.footer-social-link {
  color: rgba(255,255,255,0.55);
  transition: color .2s, transform .2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: var(--auriu);
  transform: translateY(-2px);
  text-decoration: none !important;
}
