/* Stiluri pentru pagina /jordi-shape — versiunea "vanzare de proceduri"
   (brief: docs/Jordy Shape/2026-07-16-rescriere-jordi-shape-proceduri.md; designul de baza:
   docs/Jordy Shape/design_handoff_jordi_shape/). Paleta AstrodomeFacial: violet #6b0572/#9b3fa2,
   blush #f3e4f4, crem #faf5fb, text #2D2D2D, secundar #6B6B6B; titluri Playfair Display. */

/* Plasa de siguranta anti scroll orizontal — DOAR pe <body>, niciodata pe html si body
   simultan: cu ambele setate, propagarea la viewport se blocheaza, body devine scroll
   container si position:sticky (navigarea rapida) moare — verificat empiric in repro.
   'clip' (unde exista) e si mai sigur: nu creeaza niciodata scroll container si e
   respectat si de browserele mobile la panning. */
body { overflow-x: hidden; }
@supports (overflow-x: clip) {
    body { overflow-x: clip; }
}

/* Variabilele stau pe :root, nu pe .jsh-page: footerul de lead si banda lui sunt randate
   de layout DUPA inchiderea .jsh-page, iar acolo var(--jsh-*) ar fi nedefinit — background
   devine transparent si textul din input-group-prepend ramane alb pe fundal deschis. */
:root {
    --jsh-rose: #6b0572;
    --jsh-rose-light: #9b3fa2;
    --jsh-blush: #f3e4f4;
    --jsh-cream: #faf5fb;
    --jsh-text: #2d2d2d;
    --jsh-muted: #6b6b6b;
    --jsh-grad: linear-gradient(135deg, #6b0572 0%, #9b3fa2 50%, #6b0572 100%);
}
.jsh-page {
    /* fara overflow-x:hidden aici — ar transforma .jsh-page in scroll container si ar
       strica position:sticky pe navigarea rapida; orbele stau in .jsh-hero (overflow:hidden) */
    color: var(--jsh-text);
}
.jsh-page img { max-width: 100%; }
.jsh-page h1, .jsh-page h2, .jsh-page h3, .jsh-page .jsh-serif { font-family: 'Playfair Display', serif; color: var(--jsh-text); }

@keyframes jshFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes jshGlow { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: .95; transform: scale(1.1); } }
@keyframes jshSheen { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes jshBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* reveal la scroll */
.jsh-page [data-fx] { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.jsh-page [data-fx].jsh-vazut { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .jsh-page [data-fx] { opacity: 1; transform: none; transition: none; }
    .jsh-hero-img, .jsh-orb, .jsh-sageata a, .jsh-cta::after { animation: none !important; }
}

.jsh-container { max-width: 1180px; margin: 0 auto; padding: 0 10px; }

/* ───────── HERO ───────── */
.jsh-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #faf5fb 58%, #f6eaf7 100%); padding: 70px 0 34px; }
.jsh-hero-fundal { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 16% 42%, rgba(107,5,114,0.13) 0%, transparent 52%), radial-gradient(ellipse at 84% 12%, rgba(155,63,162,0.10) 0%, transparent 42%); }
.jsh-orb { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; animation: jshGlow 9s ease-in-out infinite; }
.jsh-orb-1 { width: 440px; height: 440px; left: -140px; top: 16%; background: radial-gradient(circle, rgba(155,63,162,0.20), transparent 65%); }
.jsh-orb-2 { width: 340px; height: 340px; right: -90px; bottom: 4%; background: radial-gradient(circle, rgba(107,5,114,0.16), transparent 65%); animation-duration: 11s; animation-delay: 2s; }
.jsh-hero-grid { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 10px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 44px; align-items: center; }
.jsh-hero-badge { display: inline-block; background: rgba(107,5,114,0.08); color: var(--jsh-rose); border: 1px solid rgba(107,5,114,0.55); font-size: 12px; font-weight: 800; letter-spacing: 2.6px; text-transform: uppercase; padding: 9px 22px; border-radius: 50px; margin-bottom: 22px; }
.jsh-hero h1 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; line-height: 1.12; margin: 0 0 18px; }
.jsh-hero h1 sup { font-size: .45em; top: -.9em; }
.jsh-grad-text { background: var(--jsh-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.jsh-lead { font-size: 18px; color: var(--jsh-muted); max-width: 540px; line-height: 1.75; margin: 0 0 26px; }
.jsh-lead strong { color: var(--jsh-text); }
.jsh-cta-rand { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 18px; }
.jsh-btn { display: inline-flex; align-items: center; gap: 9px; border-radius: 28px; padding: 14px 28px; font-weight: 800; font-size: 15.5px; letter-spacing: .4px; text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; border: none; cursor: pointer; }
.jsh-btn-primar { background: var(--jsh-grad); background-size: 180% 180%; color: #fff !important; box-shadow: 0 10px 26px rgba(107,5,114,0.32); }
.jsh-btn-primar:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(107,5,114,0.45); }
.jsh-btn-wa { background: #147a3e; color: #fff !important; box-shadow: 0 10px 24px rgba(20,122,62,0.30); }
.jsh-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(20,122,62,0.42); }
.jsh-btn-wa i { font-size: 18px; }
.jsh-btn-ghost { background: transparent; border: 2px solid var(--jsh-rose); color: var(--jsh-rose) !important; padding: 12px 26px; }
.jsh-btn-ghost:hover { background: var(--jsh-rose); color: #fff !important; transform: translateY(-2px); }
.jsh-btn-alb { background: #fff; color: var(--jsh-rose) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.20); }
.jsh-btn-alb:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.28); }
.jsh-hero-nota { font-size: 13px; color: var(--jsh-muted); margin: 0 0 26px; }
.jsh-hero-nota i { color: var(--jsh-rose); margin-right: 6px; }
.jsh-ministat { display: flex; flex-wrap: wrap; gap: 34px; border-top: 1px solid rgba(107,5,114,0.14); padding-top: 20px; }
.jsh-ministat b { display: block; font-family: 'Playfair Display', serif; font-size: 27px; font-weight: 800; color: var(--jsh-rose); line-height: 1.1; }
.jsh-ministat span { font-size: 11.5px; color: var(--jsh-muted); text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700; }
.jsh-hero-vizual { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.jsh-page .jsh-hero-vizual[data-fx] { transition-duration: .9s, .9s; }
.jsh-hero-halo { position: absolute; width: 70%; height: 70%; left: 15%; top: 15%; border-radius: 50%; background: radial-gradient(circle, rgba(107,5,114,0.20), transparent 68%); filter: blur(28px); }
.jsh-hero-img { position: relative; display: block; max-height: min(74vh, 660px); width: auto; max-width: 100%; filter: drop-shadow(0 34px 60px rgba(107,5,114,0.30)); animation: jshFloat 7s ease-in-out infinite; }
.jsh-glass { position: absolute; background: rgba(255,255,255,0.86); backdrop-filter: blur(8px); border: 1px solid rgba(107,5,114,0.16); border-radius: 14px; padding: 10px 15px; box-shadow: 0 10px 24px rgba(107,5,114,0.15); font-size: 13px; font-weight: 700; color: var(--jsh-text); max-width: 250px; }
.jsh-glass i { color: var(--jsh-rose); margin-right: 7px; }
.jsh-glass-1 { top: 9%; left: 0; }
.jsh-glass-2 { top: 44%; right: 0; }
.jsh-glass-3 { bottom: 7%; left: 4%; }
.jsh-sageata { text-align: center; padding-top: 6px; }
.jsh-sageata a { display: inline-block; color: var(--jsh-rose-light); font-size: 20px; animation: jshBob 2.2s ease-in-out infinite; text-decoration: none; }

/* ───────── NAVIGARE RAPIDA ───────── */
/* sta exact sub meniul sticky al site-ului: inaltimea reala a .sf-navbar (difera pe
   desktop/mobil) e masurata cu JS si pusa in --jsh-menu-h; 60px = fallback fara JS */
.jsh-quick-nav { position: sticky; top: var(--jsh-menu-h, 60px); z-index: 130; background: rgba(255,255,255,0.93); backdrop-filter: blur(10px); box-shadow: 0 4px 18px rgba(107,5,114,0.09); padding: 10px; display: flex; gap: 8px; overflow-x: auto; justify-content: safe center; scrollbar-width: none; }
.jsh-quick-nav::-webkit-scrollbar { display: none; }
.jsh-quick-nav a { flex: 0 0 auto; font-size: 13.5px; font-weight: 700; color: #4a4a4a; text-decoration: none; padding: 8px 16px; border-radius: 20px; border: 1px solid var(--jsh-blush); background: rgba(255,255,255,0.7); white-space: nowrap; transition: all .25s ease; }
.jsh-quick-nav a.jsh-on, .jsh-quick-nav a:hover { background: var(--jsh-rose); border-color: var(--jsh-rose); color: #fff; }

/* ───────── SECTIUNI ───────── */
.jsh-sectiune { padding: 88px 0; scroll-margin-top: calc(var(--jsh-menu-h, 60px) + 64px); background: #fff; }
.jsh-bg-crem-sus { background: linear-gradient(180deg, #faf5fb 0%, #fff 100%); }
.jsh-bg-crem-jos { background: linear-gradient(180deg, #fff 0%, #faf5fb 55%, #f3e4f4 100%); }
.jsh-sh { text-align: center; max-width: 780px; margin: 0 auto 54px; }
.jsh-kicker { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--jsh-rose); margin-bottom: 12px; }
.jsh-sh h2 { font-size: clamp(27px, 3.4vw, 38px); font-weight: 700; line-height: 1.16; margin: 0 0 14px; }
.jsh-sh h2 i { color: var(--jsh-rose); margin-right: 12px; }
.jsh-bara { width: 64px; height: 3px; border-radius: 2px; background: linear-gradient(135deg, #6b0572, #9b3fa2); margin: 0 auto 18px; }
.jsh-sh p { color: var(--jsh-muted); font-size: 16.5px; line-height: 1.7; margin: 0; }

/* liste cu bife (siguranta) */
.jsh-bife { display: flex; flex-direction: column; gap: 12px; }
.jsh-bifa { display: flex; gap: 12px; align-items: flex-start; }
.jsh-bifa span { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--jsh-blush); color: var(--jsh-rose); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.jsh-bifa span.jsh-bifa-atentie { background: #fdeaea; color: #b3261e; }
.jsh-bifa p { margin: 2px 0 0; font-size: 15.3px; line-height: 1.6; }

/* ───────── #PROCEDURI — carduri de proceduri ───────── */
.jsh-proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 22px; }
.jsh-proc-card { background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid rgba(107,5,114,0.12); box-shadow: 0 8px 24px rgba(107,5,114,0.08); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.jsh-proc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(107,5,114,0.16); }
.jsh-proc-card > img { width: 100%; height: 210px; object-fit: cover; display: block; }
.jsh-proc-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.jsh-proc-body h3 { font-size: 20px; font-weight: 700; margin: 0; }
.jsh-proc-body > p { font-size: 14.6px; line-height: 1.66; margin: 0; flex: 1; }
.jsh-proc-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.jsh-proc-meta span { font-size: 12.3px; font-weight: 700; color: var(--jsh-rose); background: var(--jsh-cream); border: 1px solid rgba(107,5,114,0.14); border-radius: 12px; padding: 4px 10px; }
.jsh-proc-nota { text-align: center; margin: 32px auto 0; max-width: 720px; font-size: 15.5px; line-height: 1.7; }
.jsh-proc-nota a { color: var(--jsh-rose); font-weight: 800; text-decoration: none; }
.jsh-proc-nota a:hover { text-decoration: underline; }

/* ───────── #EXPERIENTA — timeline + progres ───────── */
.jsh-exp-grid { display: flex; flex-wrap: wrap; gap: 44px; align-items: flex-start; }
.jsh-exp-grid > .jsh-exp-timeline { flex: 1.25 1 420px; }
.jsh-exp-grid > .jsh-exp-side { flex: 1 1 320px; }
.jsh-timeline { display: flex; flex-direction: column; gap: 30px; }
.jsh-pas { position: relative; display: flex; gap: 18px; }
.jsh-pas:not(:last-child)::before { content: ''; position: absolute; left: 21px; top: 46px; bottom: -30px; width: 2px; background: linear-gradient(180deg, rgba(107,5,114,0.35), rgba(155,63,162,0.12)); }
.jsh-pas-num { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--jsh-grad); color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(107,5,114,0.28); position: relative; z-index: 1; }
.jsh-pas-corp h3 { font-size: 20px; font-weight: 700; margin: 8px 0 8px; }
.jsh-pas-corp p { font-size: 15.3px; line-height: 1.7; margin: 0; }
.jsh-pas-corp p strong { color: var(--jsh-text); }
.jsh-pas-corp .jsh-pas-img { display: block; width: 100%; max-width: 440px; border-radius: 16px; border: 1px solid rgba(107,5,114,0.10); box-shadow: 0 12px 30px rgba(107,5,114,0.14); margin-top: 14px; }
.jsh-exp-side { background: #fff; border: 1px solid rgba(107,5,114,0.12); border-radius: 20px; padding: 24px; box-shadow: 0 8px 28px rgba(107,5,114,0.08); }
.jsh-exp-side h3 { font-size: 21px; font-weight: 700; margin: 0 0 10px; }
.jsh-exp-side > p { font-size: 14.8px; line-height: 1.68; margin: 0 0 16px; }
.jsh-exp-side > p strong { color: var(--jsh-text); }
.jsh-ui-mare { display: block; width: 100%; border-radius: 16px; border: 1px solid rgba(107,5,114,0.10); box-shadow: 0 12px 30px rgba(107,5,114,0.14); }
.jsh-ui-rand { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.jsh-ui-rand img { display: block; width: 100%; border-radius: 10px; border: 1px solid rgba(107,5,114,0.10); box-shadow: 0 6px 16px rgba(107,5,114,0.10); }
.jsh-ecran-grafice { display: block; max-height: 220px; margin: 0 auto 14px; border-radius: 14px; }

/* ───────── #REZULTATE ───────── */
.jsh-rez-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }
.jsh-rez-card { border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid rgba(107,5,114,0.12); box-shadow: 0 8px 24px rgba(107,5,114,0.10); display: flex; flex-direction: column; }
.jsh-rez-slider { flex: 1.2 1 360px; }
.jsh-rez-lat { flex: 1 1 320px; }
.jsh-rez-mic { flex: 1 1 300px; }
.jsh-rez-mic img { display: block; width: 100%; height: 280px; object-fit: cover; flex: 1; }
.jsh-rez-lat > img { display: block; width: 100%; flex: 1; object-fit: cover; }
.jsh-rez-bara { display: flex; justify-content: space-between; padding: 9px 14px; background: var(--jsh-cream); font-size: 12.5px; font-weight: 800; color: var(--jsh-rose); }
.jsh-rez-bara-slider { align-items: center; padding: 10px 14px; }
.jsh-rez-bara-slider i { margin-right: 7px; }
.jsh-rez-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 12px 14px; background: var(--jsh-cream); }
.jsh-rez-chips span { font-size: 12.5px; font-weight: 800; color: var(--jsh-rose); background: var(--jsh-blush); border-radius: 12px; padding: 4px 12px; }
.jsh-ba { position: relative; aspect-ratio: 4/3; touch-action: none; cursor: ew-resize; user-select: none; -webkit-user-select: none; overflow: hidden; background: var(--jsh-cream); }
.jsh-ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jsh-ba-top { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.jsh-ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.35); transform: translateX(-1.5px); }
.jsh-ba-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; color: var(--jsh-rose); font-size: 13px; gap: 3px; }
.jsh-ba-et { position: absolute; top: 12px; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border-radius: 12px; padding: 4px 12px; pointer-events: none; color: #fff; }
.jsh-ba-et-inainte { left: 12px; background: rgba(45,45,45,0.72); }
.jsh-ba-et-dupa { right: 12px; background: rgba(107,5,114,0.85); }
.jsh-rez-disclaimer { text-align: center; font-size: 13px; color: var(--jsh-muted); margin: 22px auto 0; max-width: 720px; }
.jsh-trust-strip { margin: 26px auto 0; max-width: 980px; background: linear-gradient(135deg, #faf5fb, #f3e4f4); border: 1px solid rgba(107,5,114,0.15); border-radius: 16px; padding: 18px 24px; text-align: center; font-size: 15px; line-height: 1.7; color: var(--jsh-text); }
.jsh-trust-strip b { color: var(--jsh-rose); }

/* ───────── #COMPARATIE — tabel ───────── */
.jsh-comp-hint { display: none; text-align: center; font-size: 12.5px; color: var(--jsh-muted); margin: 0 0 10px; }
.jsh-comp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; border: 1px solid rgba(107,5,114,0.15); box-shadow: 0 8px 24px rgba(107,5,114,0.08); background: #fff; }
.jsh-comp-table { width: 100%; min-width: 1050px; border-collapse: separate; border-spacing: 0; font-size: 13.8px; line-height: 1.55; }
.jsh-comp-table th, .jsh-comp-table td { padding: 13px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(107,5,114,0.08); }
.jsh-comp-table tr:last-child th, .jsh-comp-table tr:last-child td { border-bottom: none; }
.jsh-comp-table thead th { background: var(--jsh-cream); font-weight: 800; font-size: 13px; }
.jsh-comp-table th:first-child, .jsh-comp-table td:first-child { position: sticky; left: 0; background: #fff; z-index: 2; min-width: 132px; font-weight: 800; box-shadow: 2px 0 8px rgba(107,5,114,0.06); }
.jsh-comp-table thead th:first-child { background: var(--jsh-cream); z-index: 3; }
.jsh-comp-jordi { background: var(--jsh-blush); border-left: 2px solid var(--jsh-rose); border-right: 2px solid var(--jsh-rose); min-width: 230px; }
.jsh-comp-table thead th.jsh-comp-jordi { color: var(--jsh-rose); border-top: 2px solid var(--jsh-rose); }
.jsh-comp-table tbody tr:last-child td.jsh-comp-jordi { border-bottom: 2px solid var(--jsh-rose); }
.jsh-comp-concluzii { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 18px; margin-top: 28px; }
.jsh-concluzie { background: #fff; border: 1px solid rgba(107,5,114,0.12); border-radius: 16px; padding: 22px 20px; box-shadow: 0 5px 18px rgba(107,5,114,0.07); }
.jsh-concluzie h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.jsh-concluzie p { font-size: 14.2px; color: var(--jsh-text); line-height: 1.65; margin: 0; }
.jsh-comp-disclaimer { text-align: center; font-size: 13px; color: var(--jsh-muted); margin: 24px auto 0; max-width: 780px; line-height: 1.6; }
@media (max-width: 991px) {
    .jsh-comp-hint { display: block; }
    /* pe mobil tabelul merge din marginea stanga pana in marginea dreapta a ecranului,
       fara spatii laterale: anuleaza padding-ul de 28px al containerului */
    .jsh-comp-wrap { margin-left: -10px; margin-right: -10px; border-radius: 0; border-left: none; border-right: none; }
}

/* ───────── #TEHNOLOGIE — bento ───────── */
.jsh-bento { display: flex; flex-wrap: wrap; gap: 24px; }
.jsh-card { background: #fff; border-radius: 22px; border: 1px solid rgba(107,5,114,0.12); box-shadow: 0 8px 28px rgba(107,5,114,0.08); padding: 30px; transition: transform .3s ease, box-shadow .3s ease; }
.jsh-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(107,5,114,0.16); }
.jsh-card-lat { flex: 1.3 1 540px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.jsh-card-lat > div { flex: 1.2 1 260px; }
.jsh-card-med { flex: 1 1 400px; }
.jsh-card-full { flex: 1 1 100%; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.jsh-card-full > div { flex: 1.2 1 320px; }
.jsh-num { font-family: 'Playfair Display', serif; font-size: 62px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(107,5,114,0.40); }
.jsh-num-alb { -webkit-text-stroke: 1.5px rgba(255,255,255,0.45); }
.jsh-tag-rand { margin: 12px 0 10px; }
.jsh-tag { display: inline-block; font-size: 12.5px; font-weight: 800; color: var(--jsh-rose); background: var(--jsh-blush); border-radius: 12px; padding: 4px 13px; letter-spacing: .5px; }
.jsh-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.jsh-card p { font-size: 14.8px; line-height: 1.68; margin: 0; }
.jsh-card p.jsh-mb { margin-bottom: 16px; }
.jsh-card-img { border-radius: 14px; box-shadow: 0 6px 18px rgba(107,5,114,0.14); }
.jsh-card-img-lat { flex: 1 1 200px; min-width: min(180px, 100%); max-width: 260px; align-self: center; margin: 0 auto; }
.jsh-card-img-full { display: block; width: 100%; }
.jsh-card-img-centrata { display: block; max-height: 250px; margin: 0 auto; border-radius: 14px; }
.jsh-card-img-mare { flex: 1 1 300px; min-width: min(260px, 100%); max-width: 440px; border-radius: 14px; margin: 0 auto; }
.jsh-badge-45 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800; color: var(--jsh-rose); }
.jsh-card-cap { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.jsh-card-dark { position: relative; overflow: hidden; background: #1c0520; border-color: rgba(107,5,114,0.30); box-shadow: 0 8px 28px rgba(107,5,114,0.18); }
.jsh-card-dark:hover { box-shadow: 0 18px 44px rgba(107,5,114,0.30); }
.jsh-card-dark-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.jsh-card-dark-strat { position: absolute; inset: 0; background: linear-gradient(112deg, rgba(28,5,32,0.94) 34%, rgba(28,5,32,0.45) 75%, rgba(28,5,32,0.15) 100%); }
.jsh-card-dark-continut { position: relative; max-width: 420px; }
.jsh-card-dark h3 { color: #fff; }
.jsh-card-dark p { color: rgba(255,255,255,0.88); }
.jsh-card-dark p strong { color: #fff; }
.jsh-card-dark .jsh-tag { color: var(--jsh-blush); background: rgba(155,63,162,0.35); }

/* sub-blocul instrumentelor */
.jsh-instr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 18px; margin-top: 34px; }
.jsh-instr { background: #fff; border: 1px solid rgba(107,5,114,0.12); border-radius: 18px; padding: 22px 20px; text-align: center; box-shadow: 0 5px 18px rgba(107,5,114,0.07); transition: transform .3s ease, box-shadow .3s ease; }
.jsh-instr:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(107,5,114,0.14); }
.jsh-instr img { height: 150px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 12px; filter: drop-shadow(0 8px 14px rgba(107,5,114,0.22)); }
.jsh-instr h4 { font-size: 17px; font-weight: 800; margin: 0 0 6px; color: var(--jsh-rose); }
.jsh-instr p { font-size: 13.8px; color: var(--jsh-text); margin: 0; line-height: 1.6; }
.jsh-instr-titlu { text-align: center; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin: 44px 0 6px; }

/* ───────── #SIGURANTA ───────── */
.jsh-sig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 22px; max-width: 980px; margin: 0 auto; }
.jsh-sig-col { background: #fff; border: 1px solid rgba(107,5,114,0.12); border-radius: 18px; padding: 26px 24px; box-shadow: 0 8px 24px rgba(107,5,114,0.08); }
.jsh-sig-col h3 { font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.jsh-sig-col h3 i { margin-right: 8px; }
.jsh-sig-col-da h3 i { color: var(--jsh-rose); }
.jsh-sig-col-atentie h3 i { color: #b3261e; }
.jsh-sig-nota { max-width: 980px; margin: 24px auto 0; background: var(--jsh-cream); border-left: 4px solid var(--jsh-rose); border-radius: 12px; padding: 18px 22px; font-size: 15px; line-height: 1.7; }
.jsh-sig-nota strong { color: var(--jsh-rose); }
/* Pozele din #siguranta: pe desktop/tableta OBLIGATORIU pe acelasi rand (flex:1 1 0 —
   impart randul egal si nu pot sari pe randul doi), pe mobil una sub alta. */
.jsh-sig-poze { display: flex; gap: 16px; justify-content: center; max-width: 980px; margin: 26px auto 0; }
.jsh-sig-poze img { flex: 1 1 0; min-width: 0; border-radius: 16px; border: 1px solid rgba(107,5,114,0.10); box-shadow: 0 10px 26px rgba(107,5,114,0.12); object-fit: cover; }
@media (max-width: 767px) {
    .jsh-sig-poze { flex-direction: column; align-items: center; }
    .jsh-sig-poze img { flex: initial; width: 100%; max-width: 460px; }
}

/* ───────── FAQ ───────── */
.jsh-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.jsh-faq-item { border: 1px solid rgba(107,5,114,0.15); border-radius: 16px; background: #fff; overflow: hidden; box-shadow: 0 3px 12px rgba(107,5,114,0.05); }
.jsh-faq-q { width: 100%; text-align: left; background: none; border: none; padding: 17px 52px 17px 20px; font-size: 16px; font-weight: 600; color: var(--jsh-text); cursor: pointer; position: relative; font-family: inherit; }
/* fara inelul de focus Bootstrap la click (chenarul de pe header); ramane doar la tastatura */
.jsh-faq-q:focus { outline: none; box-shadow: none; }
.jsh-faq-q:focus-visible { outline: 2px solid var(--jsh-rose); outline-offset: -2px; border-radius: 16px; }
.jsh-faq-ic { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--jsh-rose); font-weight: 400; }
.jsh-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.jsh-faq-a > div { padding: 0 20px 17px; font-size: 14.8px; line-height: 1.68; color: var(--jsh-text); }

/* ───────── CTA ───────── */
.jsh-cta-sectiune { padding: 30px 0 70px; background: #fff; }
.jsh-cta { position: relative; overflow: hidden; background: var(--jsh-grad); border-radius: 26px; color: #fff; box-shadow: 0 18px 50px rgba(107,5,114,0.35); }
.jsh-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,0.10) 50%, transparent 68%); background-size: 220% 220%; animation: jshSheen 6.5s ease-in-out infinite; pointer-events: none; }
.jsh-cta-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; padding: 46px 44px; }
.jsh-cta-inner > .jsh-cta-text { flex: 1.6 1 380px; }
.jsh-cta-inner > .jsh-cta-foto { flex: 1 1 240px; display: flex; justify-content: center; }
.jsh-cta h2 { font-size: clamp(25px, 3vw, 32px); font-weight: 700; margin: 0 0 12px; color: #fff; }
.jsh-cta p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 0 24px; line-height: 1.7; font-size: 16px; }
.jsh-cta-foto img { display: block; max-height: 420px; width: auto; max-width: 100%; border-radius: 18px; box-shadow: 0 16px 40px rgba(0,0,0,0.30); }

/* ───────── PRETURI ───────── */
.jsh-preturi { padding: 20px 0 30px; background: #fff; scroll-margin-top: calc(var(--jsh-menu-h, 60px) + 64px); text-align: center; }
.jsh-preturi h2 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; margin: 0 0 12px; }
.jsh-preturi h2 i { color: var(--jsh-rose); margin-right: 10px; }
.jsh-preturi p { color: var(--jsh-muted); font-size: 14.5px; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.jsh-mt-32 { margin-top: 32px; }

/* ───────── FOOTER (banda de programare violet) ───────── */
.jsh-footer-banda { background: linear-gradient(135deg, #6b0572 0%, #9b3fa2 55%, #6b0572 100%); color: #fff; padding: 34px 16px 26px; text-align: center; }
.jsh-footer-banda h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 27px; font-weight: 700; margin: 0 0 8px; }
.jsh-footer-banda p { color: rgba(255,255,255,0.92); max-width: 680px; margin: 0 auto; font-size: 15.5px; line-height: 1.65; }
.jsh-footer-foto { border-radius: 18px; border: 1px solid rgba(107,5,114,0.15); box-shadow: 0 12px 34px rgba(107,5,114,0.20); width: 100%; display: block; }
.jsh-footer-form-titlu { text-align: center; color: var(--jsh-rose); font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.jsh-footer-form-sub { text-align: center; color: var(--jsh-muted); font-size: 13.5px; margin: 0 0 14px; }
#FormularProgramari.jsh-footer-zona { background: linear-gradient(180deg, #faf5fb, #fff); padding: 26px 0 34px; }
.jsh-footer-zona .input-group-text { background: var(--jsh-rose) !important; color: #fff !important; border: none; width: 75px; }
.jsh-footer-zona .butonOcru { background: linear-gradient(135deg, #6b0572 0%, #9b3fa2 50%, #6b0572 100%); border: none; color: #fff; font-weight: 700; border-radius: 22px; padding: 10px 28px; }
.jsh-footer-zona .butonOcru:hover { color: #fff; filter: brightness(1.1); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 991px) {
    .jsh-hero { padding-top: 44px; }
    .jsh-hero-vizual { min-height: 340px; }
    .jsh-hero-img { max-height: 440px; }
    .jsh-sectiune { padding: 56px 0; }
    .jsh-quick-nav { justify-content: flex-start; }
    .jsh-cta-inner { padding: 34px 24px; }
    .jsh-proc-card > img { height: 190px; }
}
