/* ─── FONTURI (servite local de cecart.ro) ─── */
@font-face{font-family:"Nunito";font-weight:400;font-display:swap;src:url(https://cecart.ro/wp-content/uploads/2023/04/nunito-v25-latin-ext-regular.woff2) format("woff2");}
@font-face{font-family:"Nunito";font-weight:700;font-display:swap;src:url(https://cecart.ro/wp-content/uploads/2023/04/nunito-v25-latin-ext-700.woff2) format("woff2");}
@font-face{font-family:"Nunito";font-weight:900;font-display:swap;src:url(https://cecart.ro/wp-content/uploads/2023/04/nunito-v25-latin-ext-900.woff2) format("woff2");}
@font-face{font-family:"Nunito";font-weight:400;font-style:italic;font-display:swap;src:url(https://cecart.ro/wp-content/uploads/2023/04/nunito-v25-latin-ext-italic.woff2) format("woff2");}
@font-face{font-family:"Nunito";font-weight:700;font-style:italic;font-display:swap;src:url(https://cecart.ro/wp-content/uploads/2023/04/nunito-v25-latin-ext-700italic.woff2) format("woff2");}
@font-face{font-family:"Nunito";font-weight:900;font-style:italic;font-display:swap;src:url(https://cecart.ro/wp-content/uploads/2023/04/nunito-v25-latin-ext-900italic.woff2) format("woff2");}

/* ─── VARIABILE ─── */
:root {
  --orange:    #E8600A;
  --orange-h:  #FF7326;
  --gold:      #F2C84B;
  --teal:      #1A8FA0;
  --dark:      #141026;
  --dark2:     #1E1A32;
  --text:      #2A2540;
  --muted:     #6B6484;
  --bg:        #FFFDF7;
  --bg2:       #F7F3EB;
  --white:     #FFFFFF;
  --border:    #E5DFD2;
  --font:      'Nunito', sans-serif;
  --r:         14px;
  --r-sm:      8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }

/* ─── NAV ─── */
.nav-bar {
  background: var(--dark);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { width: 200px; height: auto; display: block; }
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-h); }

/* ─── HERO ─── */
.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 72px 48px 88px;
  border-bottom: 1px solid var(--border);
}
.hero-sun {
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(242,200,75,0.22) 0%, rgba(232,96,10,0.08) 50%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  bottom: -80px; left: 10%;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,143,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,96,10,0.08);
  border: 1px solid rgba(232,96,10,0.25);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-pill::before { content: '★'; font-size: 11px; }
.hero-title {
  font-family: var(--font);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  color: var(--dark);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em { color: var(--orange); font-style: normal; display: block; }
.hero-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-facts { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-fact { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 14px; font-weight: 700; }
.hero-fact-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(232,96,10,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 15px 32px; border-radius: 100px;
  font-family: var(--font); font-size: 16px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-main:hover { background: var(--orange-h); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 15px 28px; border-radius: 100px;
  font-family: var(--font); font-size: 16px; font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s; cursor: pointer;
}
.btn-ghost:hover { background: var(--bg2); border-color: var(--muted); }

/* Hero gallery */
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 10px;
  position: relative;
}
.ph-img { border-radius: 12px; overflow: hidden; position: relative; }
.ph-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph1 { background: #1F3A5C; grid-row: span 2; border-radius: 16px; }
.ph2 { background: #3A1F0A; }
.ph3 { background: #0A2A1E; }
.hero-price-tag {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(242,200,75,0.45);
  text-align: center; line-height: 1.2;
}
.price-tag-main { font-family: var(--font); font-size: 26px; font-weight: 900; display: block; }
.price-tag-sub { font-size: 12px; font-weight: 700; }

/* ─── STRIP ─── */
.strip { background: var(--dark2); padding: 40px 48px; }
.strip-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap;
}
.strip-item { text-align: center; }
.strip-label { color: rgba(255,255,255,0.42); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.strip-value { color: #fff; font-family: var(--font); font-size: 20px; font-weight: 900; }
.strip-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

/* ─── SECȚIUNI COMUNE ─── */
.section { padding: 80px 48px; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg2); }
.container { max-width: 1160px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 2px; background: var(--orange); }
h2.sec-title {
  font-family: var(--font);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.sec-intro { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ─── TABS PROGRAM ─── */
.tabs-nav {
  display: flex; gap: 6px;
  margin: 44px 0 36px;
  border-bottom: 2px solid var(--border);
}
.tab-btn {
  padding: 11px 26px; border: none; background: none;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: var(--muted); cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 8px 8px 0 0;
  transition: all 0.18s;
}
.tab-btn:hover { color: var(--orange); }
.tab-btn.is-active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-pane { display: none; }
.tab-pane.is-active { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* Module card */
.mod-card {
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.mod-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(20,16,38,0.12); }
.mod-card-img { height: 148px; overflow: hidden; position: relative; }
.mod-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ci-pop  { background: #FF8A50; }
.ci-cls  { background: #9B8AFB; }
.ci-dans { background: #F48FB1; }
.ci-art  { background: #4DD0E1; }
.ci-pil  { background: #80E27E; }
.mod-body { padding: 18px 20px 20px; }
.mod-tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 10px;
}
.t-pop  { background: rgba(232,96,10,0.1);  color: #B84500; }
.t-cls  { background: rgba(107,63,160,0.1); color: #5A2E8C; }
.t-dans { background: rgba(194,24,91,0.1);  color: #9C1246; }
.t-art  { background: rgba(26,143,160,0.1); color: #0D6F7E; }
.t-pil  { background: rgba(46,158,107,0.1); color: #1A7350; }
.mod-title { font-family: var(--font); font-size: 17px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.mod-list { list-style: none; }
.mod-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); padding: 3px 0; }
.mod-list li::before { content: '›'; color: var(--orange); font-weight: 700; font-size: 16px; }
.mod-age { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* ─── PREȚURI ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 48px; }
.price-card {
  background: var(--white); border-radius: 20px; padding: 34px 30px;
  border: 1.5px solid var(--border); position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(20,16,38,0.1); }
.price-card.is-featured { background: var(--dark); border-color: var(--dark); }
.price-card.is-featured:hover { border-color: var(--gold); }
.badge-top {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 900; padding: 4px 18px; border-radius: 100px; white-space: nowrap;
}
.price-icon { font-size: 38px; margin-bottom: 14px; }
.price-name { font-family: var(--font); font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.is-featured .price-name { color: #fff; }
.price-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.is-featured .price-desc { color: rgba(255,255,255,0.55); }
.price-amount-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-num { font-family: var(--font); font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; }
.is-featured .price-num { color: var(--gold); }
.price-unit { font-size: 14px; color: var(--muted); }
.is-featured .price-unit { color: rgba(255,255,255,0.45); }
.price-note { font-size: 13px; color: var(--muted); }
.is-featured .price-note { color: rgba(255,255,255,0.45); }

/* ─── FORMULAR ─── */
.form-section { background: var(--bg2); }
.form-box { background: var(--white); border-radius: 22px; padding: 52px; border: 1.5px solid var(--border); margin-top: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.col-2 { grid-column: span 2; }
label.form-label { font-size: 13px; font-weight: 700; color: var(--dark); letter-spacing: 0.01em; }
label.form-label .req { color: var(--orange); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,96,10,0.1); }
.form-divider { height: 1px; background: var(--border); margin: 30px 0; }
.courses-subheading { font-family: var(--font); font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.courses-subtext { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

/* Acordeon luni */
.month-acc { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 14px; }
.month-acc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 22px; cursor: pointer;
  background: var(--bg); transition: background 0.18s; user-select: none;
}
.month-acc-head:hover { background: #EEE9DF; }
.month-acc-head.open { background: rgba(232,96,10,0.05); border-bottom: 1.5px solid var(--border); }
.month-acc-title { font-family: var(--font); font-size: 17px; font-weight: 900; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.acc-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted);
  transition: background 0.18s, transform 0.25s, color 0.18s; flex-shrink: 0;
}
.month-acc-head.open .acc-toggle { background: var(--orange); color: #fff; transform: rotate(45deg); }
.month-acc-body { display: none; padding: 22px; }
.month-acc-body.open { display: block; }
.checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.check-label {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 9px; border: 1.5px solid var(--border);
  cursor: pointer; font-size: 14px; font-weight: 700; color: var(--text);
  transition: border-color 0.18s, background 0.18s;
}
.check-label:hover { border-color: var(--orange); background: rgba(232,96,10,0.03); }
.check-label input[type="checkbox"] { accent-color: var(--orange); width: 15px; height: 15px; flex-shrink: 0; }
.weeks-heading { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.weeks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 7px; }
.week-label {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 8px; border: 1.5px solid var(--border);
  cursor: pointer; font-size: 13px; font-weight: 700; color: var(--text);
  transition: border-color 0.18s, background 0.18s;
}
.week-label:hover { border-color: var(--teal); background: rgba(26,143,160,0.05); }
.week-label input[type="checkbox"] { accent-color: var(--teal); width: 14px; height: 14px; flex-shrink: 0; }

/* GDPR */
.gdpr-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 20px;
  background: rgba(26,143,160,0.05); border: 1px solid rgba(26,143,160,0.25);
  border-radius: 10px; margin-bottom: 24px;
}
.gdpr-row input { margin-top: 4px; accent-color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; }
.gdpr-text { font-size: 13px; color: var(--muted); line-height: 1.65; }
.gdpr-text a { color: var(--teal); text-decoration: underline; }

/* Submit */
.submit-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.submit-note { font-size: 13px; color: var(--muted); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 17px 44px; border-radius: 100px;
  font-family: var(--font); font-size: 17px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--orange-h); transform: translateY(-2px); }

/* ─── CONTACT ─── */
.contact-band { background: var(--orange); padding: 52px 48px; }
.contact-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.contact-text h3 { font-family: var(--font); font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.contact-text p { color: rgba(255,255,255,0.82); font-size: 15px; }
.contact-links { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-link {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  text-decoration: none; padding: 12px 22px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  border: 1px solid rgba(255,255,255,0.3); transition: background 0.2s;
}
.contact-link:hover { background: rgba(255,255,255,0.28); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 600px) {
  .nav-cta, .strip-divider { display: none; }
  .btn-main { padding: 15px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-pill    { animation: fadeUp 0.6s ease 0.1s  both; }
.hero-title   { animation: fadeUp 0.6s ease 0.22s both; }
.hero-lead    { animation: fadeUp 0.6s ease 0.34s both; }
.hero-facts   { animation: fadeUp 0.6s ease 0.44s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.54s both; }
.hero-gallery { animation: fadeUp 0.7s ease 0.3s  both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-gallery { display: none; }
  .hero, .section, .strip, .contact-band { padding-left: 24px; padding-right: 24px; }
  .nav-bar { padding: 0 16px; }
  .nav-logo img { width: 150px; }
  .form-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.col-2 { grid-column: span 1; }
  .checks-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: 32px; }
  .contact-inner { flex-direction: column; text-align: center; }
  .contact-links { justify-content: center; }
  .tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .tab-btn { padding: 10px 16px; font-size: 14px; white-space: nowrap; }
}