/* Stiluri pentru pagina /exozomi-asce-plus (ASCE+ SRLV, exozomi ExoCoBio) — 2026-09-03.
   Spec: docs/superpowers/specs/2026-09-03-exozomi-asce-plus-design.md
   Directia: cadrul „luxury” al site-ului (violet #6b0572/#9b3fa2, crem #faf5fb, blush #f3e4f4,
   Playfair Display + Outfit) + „inima glaciara” a produsului (gheata #eaf4fa, otel #1b6a8c,
   abis #0b2b3c) folosita DOAR pentru elementele care vorbesc despre produs si stiinta lui.
   Prefix ax- peste tot, ca sa nu se ciocneasca cu alte pagini. */

/* Plasa de siguranta anti scroll orizontal — DOAR pe <body>, niciodata pe html si body simultan
   (altfel position:sticky pe navigarea rapida moare — verificat pe /jordi-shape). */
body { overflow-x: hidden; }
@supports (overflow-x: clip) {
    body { overflow-x: clip; }
}

/* Variabilele stau pe :root, nu pe .ax-page: footerul de lead e randat de layout DUPA .ax-page. */
:root {
    --ax-violet: #6b0572; --ax-violet-l: #9b3fa2;
    --ax-grad: linear-gradient(135deg, #6b0572 0%, #9b3fa2 50%, #6b0572 100%);
    --ax-crem: #faf5fb; --ax-blush: #f3e4f4;
    --ax-gheata: #eaf4fa; --ax-gheata-2: #d7e9f2; --ax-otel: #1b6a8c; --ax-otel-l: #3e93b6;
    --ax-abis: #0b2b3c; --ax-abis-2: #10405a;
    --ax-text: #2d2d2d; --ax-muted: #6b6b6b; --ax-wa: #147a3e;
    --ax-font-h: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ax-font-b: 'Outfit', 'Segoe UI', Helvetica, Arial, sans-serif;
}

.ax-page { color: var(--ax-text); font-family: var(--ax-font-b); font-size: 16.5px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
/* Reseturile de mai jos NU se aplica in .ax-extern — zona in care pagina randeaza componente ale site-ului
   (GetListaPreturi etc.), care se bazeaza pe Bootstrap si pe stilurile lor inline (ex. imaginea categoriei e
   centrata cu text-align pe <td>, deci trebuie sa ramana inline). 2026-09-03 */
.ax-page img:not(.ax-extern *) { max-width: 100%; display: block; }
.ax-page p:not(.ax-extern *) { margin: 0; }
.ax-page ul:not(.ax-extern *) { margin: 0; padding: 0; list-style: none; }
.ax-page h1:not(.ax-extern *), .ax-page h2:not(.ax-extern *), .ax-page h3:not(.ax-extern *), .ax-page .ax-serif { font-family: var(--ax-font-h); color: var(--ax-text); text-wrap: balance; margin: 0; }
.ax-page a:not(.ax-extern *) { color: var(--ax-violet); }
.ax-extern { margin-top: 32px; }
.ax-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ───────── butoane ───────── */
.ax-btn { display: inline-flex; align-items: center; gap: 9px; border-radius: 28px; padding: 14px 26px; font-weight: 700; font-size: 15.5px; letter-spacing: .3px; text-decoration: none !important; transition: transform .2s, box-shadow .2s, background .2s, color .2s; border: none; cursor: pointer; font-family: var(--ax-font-b); line-height: 1.2; }
.ax-btn i { font-size: 1.05em; }
.ax-btn-primar { background: var(--ax-grad); background-size: 180% 180%; color: #fff !important; box-shadow: 0 10px 26px rgba(107,5,114,.30); }
.ax-btn-primar:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(107,5,114,.42); }
.ax-btn-wa { background: var(--ax-wa); color: #fff !important; box-shadow: 0 10px 24px rgba(20,122,62,.28); }
.ax-btn-wa:hover { transform: translateY(-2px); }
.ax-btn-ghost { background: transparent; border: 2px solid var(--ax-violet); color: var(--ax-violet) !important; padding: 12px 24px; }
.ax-btn-ghost:hover { background: var(--ax-violet); color: #fff !important; transform: translateY(-2px); }
.ax-btn-alb { background: #fff; color: var(--ax-violet) !important; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.ax-btn-alb:hover { transform: translateY(-2px); }
.ax-btn:focus-visible { outline: 3px solid var(--ax-otel-l); outline-offset: 3px; }

/* ───────── hero: intrare cu CSS pur (fara JS), ca LCP-ul sa nu astepte scriptul ───────── */
.ax-page .ax-in { animation: axIn .8s cubic-bezier(.16,1,.3,1) both; animation-delay: var(--d, 0ms); }
@keyframes axIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ax-page .ax-in { animation: none; } }

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

/* ───────── HERO ───────── */
.ax-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--ax-crem) 60%, #f4eef8 100%); padding: 64px 0 30px; }
.ax-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 14% 40%, rgba(107,5,114,.11) 0%, transparent 50%), radial-gradient(ellipse at 88% 18%, rgba(27,106,140,.12) 0%, transparent 42%); }
.ax-hero-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); gap: 44px; align-items: center; }
.ax-kicker { display: inline-flex; align-items: center; gap: 10px; background: rgba(107,5,114,.07); color: var(--ax-violet); border: 1px solid rgba(107,5,114,.45); font-size: 12px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase; padding: 8px 18px; border-radius: 50px; margin-bottom: 22px; }
.ax-kicker .ax-nou { background: var(--ax-violet); color: #fff; border-radius: 20px; padding: 2px 9px; font-size: 11px; letter-spacing: 1.6px; }
.ax-hero h1 { font-size: clamp(34px, 4.3vw, 54px); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.ax-hero h1 em { font-style: italic; font-weight: 700; background: var(--ax-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ax-hero h1 .ax-brand { white-space: nowrap; }
.ax-hero h1 sup { font-size: .5em; top: -.8em; }
.ax-page .ax-lead { font-size: 18px; color: var(--ax-muted); max-width: 560px; line-height: 1.72; margin-bottom: 26px; }
.ax-lead strong { color: var(--ax-text); font-weight: 600; }
.ax-cta-rand { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.ax-page .ax-hero-nota { font-size: 13.5px; color: var(--ax-muted); margin-bottom: 26px; display: flex; gap: 8px; align-items: flex-start; }
.ax-hero-nota i { color: var(--ax-violet); font-size: 15px; margin-top: 4px; }
.ax-ministat { display: flex; flex-wrap: wrap; gap: 34px; border-top: 1px solid rgba(107,5,114,.14); padding-top: 20px; }
.ax-ministat b { display: block; font-family: var(--ax-font-h); font-size: 27px; font-weight: 800; color: var(--ax-violet); line-height: 1.1; font-variant-numeric: tabular-nums; }
.ax-ministat span { font-size: 11.5px; color: var(--ax-muted); text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600; }

/* vizualul hero: fotografia flaconului, inramata, cu „inele de semnal” (motivul Derma Signal) in spate */
.ax-hero-vizual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.ax-inel { position: absolute; left: 50%; top: 52%; border-radius: 50%; border: 1.5px solid rgba(27,106,140,.28); transform: translate(-50%, -50%); animation: axInel 7s ease-in-out infinite; pointer-events: none; }
.ax-inel-1 { width: 82%; aspect-ratio: 1; }
.ax-inel-2 { width: 108%; aspect-ratio: 1; animation-delay: 1.4s; border-color: rgba(27,106,140,.18); }
.ax-inel-3 { width: 134%; aspect-ratio: 1; animation-delay: 2.8s; border-color: rgba(107,5,114,.12); }
@keyframes axInel { 0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.98); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); } }
.ax-hero-cadru { position: relative; width: min(400px, 86%); border-radius: 26px; overflow: hidden; box-shadow: 0 30px 70px rgba(11,43,60,.35), 0 0 0 1px rgba(255,255,255,.6) inset; }
.ax-hero-cadru img { width: 100%; aspect-ratio: 1000 / 1261; object-fit: cover; }
.ax-glass { position: absolute; background: rgba(255,255,255,.90); backdrop-filter: blur(8px); border: 1px solid rgba(27,106,140,.18); border-radius: 14px; padding: 10px 14px; box-shadow: 0 10px 24px rgba(11,43,60,.18); font-size: 13px; font-weight: 600; color: var(--ax-text); max-width: 230px; display: flex; gap: 9px; align-items: center; line-height: 1.3; }
.ax-glass i { color: var(--ax-otel); font-size: 17px; }
.ax-glass small { display: block; font-weight: 500; color: var(--ax-muted); font-size: 11.5px; }
.ax-glass-1 { top: 8%; left: 0; }
.ax-glass-2 { top: 46%; right: 0; }
.ax-glass-3 { bottom: 8%; left: 2%; }
@media (max-width: 560px) {
    .ax-glass { position: static; max-width: none; width: 100%; box-sizing: border-box; }
    .ax-hero-vizual { flex-direction: column; gap: 12px; min-height: 0; }
    .ax-hero-cadru { width: min(300px, 86%); }
    .ax-inel { display: none; }
}

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

/* ───────── SECTIUNI ───────── */
.ax-sec { padding: 84px 0; scroll-margin-top: calc(var(--ax-menu-h, 60px) + 64px); background: #fff; }
.ax-bg-crem { background: linear-gradient(180deg, var(--ax-crem) 0%, #fff 100%); }
.ax-bg-crem-jos { background: linear-gradient(180deg, #fff 0%, var(--ax-crem) 55%, var(--ax-blush) 100%); }
.ax-bg-gheata { background: linear-gradient(180deg, #fff 0%, var(--ax-gheata) 100%); }
.ax-sh { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.ax-eyebrow { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--ax-violet); margin-bottom: 12px; }
.ax-sh h2 { font-size: clamp(27px, 3.3vw, 38px); font-weight: 700; line-height: 1.16; margin-bottom: 14px; }
.ax-bara { width: 64px; height: 3px; border-radius: 2px; background: linear-gradient(135deg, #6b0572, #9b3fa2); margin: 0 auto 18px; }
.ax-sh p { color: var(--ax-muted); font-size: 16.5px; line-height: 1.7; }
.ax-page .ax-sursa { font-size: 12.5px; color: #7a7a7a; margin-top: 14px; line-height: 1.5; }

/* ───────── CE ESTE — kitul ───────── */
.ax-kit { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 40px; align-items: center; }
.ax-kit-panou { position: relative; background: linear-gradient(160deg, #fff 0%, var(--ax-gheata) 55%, var(--ax-gheata-2) 100%); border-radius: 26px; padding: 34px 26px; border: 1px solid rgba(27,106,140,.14); box-shadow: 0 18px 44px rgba(11,43,60,.10); }
.ax-kit-panou img { width: 100%; max-width: 520px; margin: 26px auto 0; filter: drop-shadow(0 22px 30px rgba(11,43,60,.22)); }
.ax-kit-eticheta { position: absolute; top: 18px; left: 18px; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ax-otel); background: rgba(255,255,255,.8); border-radius: 20px; padding: 6px 12px; }
.ax-flacoane { display: grid; gap: 16px; }
.ax-flacon { background: #fff; border: 1px solid rgba(27,106,140,.16); border-radius: 18px; padding: 20px 22px; box-shadow: 0 8px 24px rgba(11,43,60,.06); }
.ax-flacon-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.ax-flacon-nr { font-family: var(--ax-font-h); font-size: 34px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--ax-otel); line-height: 1; }
.ax-flacon h3 { font-size: 19px; font-weight: 700; }
.ax-flacon h3 small { display: block; font-family: var(--ax-font-b); font-weight: 500; color: var(--ax-muted); font-size: 13.5px; margin-top: 2px; }
.ax-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.ax-chip { background: var(--ax-gheata); color: var(--ax-abis); font-size: 13px; font-weight: 600; padding: 5px 11px; border-radius: 20px; border: 1px solid rgba(27,106,140,.14); }
.ax-chip.ax-chip-star { background: var(--ax-abis); color: #fff; border-color: var(--ax-abis); }
.ax-fapte { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; font-size: 14px; color: var(--ax-muted); }
.ax-fapte b { color: var(--ax-text); font-weight: 600; }
.ax-fapte i { color: var(--ax-otel); margin-right: 6px; }

/* ───────── CUM FUNCTIONEAZA — banda „abis” ───────── */
.ax-abis { position: relative; background: radial-gradient(ellipse at 20% 30%, #164a66 0%, transparent 55%), radial-gradient(ellipse at 85% 80%, #123d55 0%, transparent 50%), var(--ax-abis); color: #e6f1f7; padding: 90px 0; overflow: hidden; scroll-margin-top: calc(var(--ax-menu-h, 60px) + 64px); }
.ax-abis .ax-eyebrow { color: #8fd0ee; }
.ax-abis h2 { color: #fff; }
.ax-abis .ax-bara { background: linear-gradient(135deg, #8fd0ee, #3e93b6); }
.ax-abis .ax-sh p { color: #b9d3e0; }
.ax-exo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 44px; align-items: center; }
.ax-exo-fig img { width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.45)); }
.ax-exo-legenda { display: flex; justify-content: space-between; font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; color: #8fd0ee; font-weight: 600; padding: 10px 6px 0; }
.ax-pasi-semnal { display: grid; gap: 18px; }
.ax-pas-semnal { display: flex; gap: 16px; align-items: flex-start; }
.ax-pas-semnal .ax-nr { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid #8fd0ee; color: #8fd0ee; display: inline-flex; align-items: center; justify-content: center; font-family: var(--ax-font-h); font-weight: 700; font-size: 17px; }
.ax-pas-semnal h3 { color: #fff; font-size: 19px; margin-bottom: 5px; }
.ax-pas-semnal p { color: #b9d3e0; font-size: 15.3px; line-height: 1.6; }
.ax-cifre { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 18px; margin-top: 54px; }
.ax-cifra { background: rgba(255,255,255,.06); border: 1px solid rgba(143,208,238,.22); border-radius: 20px; padding: 24px 22px; backdrop-filter: blur(6px); }
.ax-cifra b { display: block; font-family: var(--ax-font-h); font-size: 44px; font-weight: 800; color: #8fd0ee; line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.ax-cifra span { display: block; font-size: 14.5px; color: #e6f1f7; font-weight: 600; line-height: 1.35; }
.ax-cifra small { display: block; font-size: 12.5px; color: #9fbfd0; margin-top: 6px; line-height: 1.4; }
.ax-abis .ax-sursa { color: #9fbfd0; text-align: center; margin-top: 22px; }

/* ───────── INFUZAREA — cele doua cai ───────── */
.ax-cai { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 22px; max-width: 920px; margin: 0 auto; }
.ax-cale { background: #fff; border: 1px solid rgba(107,5,114,.12); border-radius: 22px; padding: 28px 26px; box-shadow: 0 8px 28px rgba(107,5,114,.08); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; gap: 12px; }
.ax-cale:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(107,5,114,.16); }
.ax-cale-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--ax-gheata); color: var(--ax-otel); display: inline-flex; align-items: center; justify-content: center; font-size: 24px; }
.ax-cale .ax-tag { align-self: flex-start; background: var(--ax-blush); color: var(--ax-violet); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; }
.ax-cale h3 { font-size: 22px; font-weight: 700; }
.ax-cale p { color: var(--ax-muted); font-size: 15.3px; line-height: 1.62; }
.ax-cale ul { margin-top: 4px; display: grid; gap: 7px; }
.ax-cale li { display: flex; gap: 9px; font-size: 14.6px; align-items: flex-start; }
.ax-cale li i { color: var(--ax-otel); margin-top: 5px; flex: 0 0 auto; font-size: 12px; }
.ax-cale-link { margin-top: auto; padding-top: 6px; font-size: 14.5px; font-weight: 700; }
.ax-cale-link i { font-size: 12px; margin-left: 4px; }
.ax-bariera { margin: 34px auto 0; max-width: 920px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 26px; align-items: center; background: var(--ax-crem); border-radius: 22px; padding: 28px; }
.ax-bariera h3 { font-size: 22px; margin-bottom: 8px; }
.ax-bariera p { color: var(--ax-muted); font-size: 15.3px; }
.ax-bariera-fig { display: flex; justify-content: center; }
.ax-piele { width: 100%; max-width: 420px; height: auto; }

/* ───────── SEDINTA — scena + linia de semnal (timeline) ───────── */
.ax-sedinta-intro { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 36px; align-items: center; margin-bottom: 40px; }
.ax-foto-rot { border-radius: 22px; overflow: hidden; box-shadow: 0 16px 44px rgba(11,43,60,.18); }
.ax-foto-rot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.ax-sedinta-intro h3 { font-size: 24px; margin-bottom: 12px; }
.ax-sedinta-intro p { color: var(--ax-muted); font-size: 15.8px; line-height: 1.7; }
.ax-sedinta-intro p + p { margin-top: 12px; }
.ax-timeline { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 18px; counter-reset: pas; }
.ax-tl { background: #fff; border: 1px solid rgba(27,106,140,.14); border-radius: 18px; padding: 22px 18px 20px; position: relative; box-shadow: 0 8px 24px rgba(11,43,60,.06); }
.ax-tl::before { counter-increment: pas; content: counter(pas, decimal-leading-zero); font-family: var(--ax-font-h); font-size: 40px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.4px rgba(27,106,140,.5); line-height: 1; display: block; margin-bottom: 10px; }
.ax-tl h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 6px; }
.ax-tl p { font-size: 14.3px; color: var(--ax-muted); line-height: 1.55; }
.ax-tl .ax-durata { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ax-otel); }
.ax-tl-cheie { background: linear-gradient(160deg, var(--ax-gheata) 0%, #fff 70%); border-color: var(--ax-otel-l); }
.ax-tl-cheie::before { -webkit-text-stroke-color: var(--ax-otel); }
.ax-tl-acasa { border-style: dashed; }
/* pe ecrane late, toti cei 7 pasi pe un singur rand — protocolul se citeste ca o linie */
@media (min-width: 1100px) {
    .ax-timeline { grid-template-columns: repeat(7, 1fr); gap: 14px; }
    .ax-tl { padding: 20px 15px 18px; }
    .ax-tl::before { font-size: 34px; }
    .ax-tl h3 { font-size: 16.5px; }
    .ax-tl p { font-size: 13.8px; }
}

/* ───────── REZULTATE ───────── */
.ax-rez { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 44px; align-items: start; }
.ax-etape { display: grid; gap: 0; }
.ax-etapa { display: grid; grid-template-columns: 118px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px dashed rgba(107,5,114,.18); }
.ax-etapa:last-child { border-bottom: none; }
.ax-etapa .ax-cand { font-family: var(--ax-font-h); font-weight: 700; color: var(--ax-violet); font-size: 19px; line-height: 1.2; }
.ax-etapa .ax-cand small { display: block; font-family: var(--ax-font-b); font-weight: 600; font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ax-muted); margin-top: 3px; }
.ax-etapa p { font-size: 15.3px; color: var(--ax-text); }
.ax-etapa p span { color: var(--ax-muted); }
.ax-indicatii { background: var(--ax-crem); border-radius: 22px; padding: 26px 26px 22px; border: 1px solid rgba(107,5,114,.1); }
.ax-indicatii h3 { font-size: 22px; margin-bottom: 14px; }
.ax-bife { display: grid; gap: 11px; }
.ax-bife li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.3px; line-height: 1.55; }
.ax-bife li span { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--ax-blush); color: var(--ax-violet); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.ax-bife li span.ax-atentie { background: #fdeaea; color: #b3261e; }
.ax-citat { margin-top: 26px; background: #fff; border-left: 4px solid var(--ax-violet); padding: 16px 18px; border-radius: 0 14px 14px 0; font-family: var(--ax-font-h); font-style: italic; font-size: 17px; line-height: 1.55; color: #4a3a4c; }
.ax-page .ax-disclaimer { font-size: 12.5px; color: #7a7a7a; margin-top: 22px; text-align: center; }

/* ───────── COMPARATIE ───────── */
.ax-tabel-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid rgba(107,5,114,.12); box-shadow: 0 8px 28px rgba(107,5,114,.08); background: #fff; }
table.ax-tabel { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 15px; margin: 0; }
.ax-tabel th, .ax-tabel td { padding: 15px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(107,5,114,.08); }
.ax-tabel thead th { font-family: var(--ax-font-h); font-size: 17px; font-weight: 700; background: var(--ax-crem); color: var(--ax-text); }
.ax-tabel thead th.ax-noi { background: var(--ax-gheata); color: var(--ax-abis); }
.ax-tabel thead th.ax-noi small { display: block; font-family: var(--ax-font-b); font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ax-otel); font-weight: 700; }
.ax-tabel thead th .ax-th-nota { display: block; font-family: var(--ax-font-b); font-weight: 500; font-size: 13px; color: var(--ax-muted); }
.ax-tabel tbody th { font-weight: 600; color: var(--ax-muted); width: 190px; }
.ax-tabel td.ax-noi { background: rgba(234,244,250,.55); font-weight: 500; }
.ax-tabel tr:last-child td, .ax-tabel tr:last-child th { border-bottom: none; }
.ax-ok { color: var(--ax-otel); font-weight: 700; }
.ax-nu { color: #b3261e; font-weight: 600; }

/* ───────── SIGURANTA ───────── */
.ax-sig { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 34px; }
.ax-sig h3 { font-size: 22px; margin-bottom: 14px; }
.ax-sig p.ax-nota { font-size: 14px; color: var(--ax-muted); margin-top: 14px; }
.ax-sig p.ax-ferm { font-size: 15.3px; font-weight: 700; color: #b3261e; margin-bottom: 14px; }
.ax-sig p.ax-ferm i { margin-right: 6px; }

/* ───────── FAQ ───────── */
.ax-faq { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.ax-faq-item { background: #fff; border: 1px solid rgba(107,5,114,.12); border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(107,5,114,.06); }
.ax-faq-q { width: 100%; background: none; border: none; text-align: left; padding: 18px 20px; font-family: var(--ax-font-b); font-size: 16px; font-weight: 700; color: var(--ax-text); display: flex; justify-content: space-between; gap: 16px; align-items: center; cursor: pointer; line-height: 1.35; }
.ax-faq-q:focus-visible { outline: 3px solid var(--ax-otel-l); outline-offset: -3px; }
.ax-faq-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--ax-blush); color: var(--ax-violet); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; line-height: 1; }
.ax-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ax-faq-a p { padding: 0 20px 18px; color: var(--ax-muted); font-size: 15.3px; line-height: 1.65; }
.ax-faq-item[data-open="1"] .ax-faq-ic { background: var(--ax-violet); color: #fff; }

/* ───────── CTA ───────── */
.ax-cta-sec { padding: 20px 0 70px; background: #fff; }
.ax-cta { position: relative; overflow: hidden; background: var(--ax-grad); border-radius: 26px; padding: 48px 44px; color: #fff; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 30px; align-items: center; box-shadow: 0 18px 50px rgba(107,5,114,.35); }
.ax-cta::after { content: ''; position: absolute; top: -50%; left: -30%; width: 40%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); transform: rotate(12deg); animation: axSheen 6.5s linear infinite; pointer-events: none; }
@keyframes axSheen { 0% { left: -40%; } 100% { left: 130%; } }
.ax-cta h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.ax-cta p { color: rgba(255,255,255,.92); font-size: 16.5px; margin-bottom: 22px; }
.ax-cta .ax-cta-rand { margin: 0; position: relative; z-index: 1; }
.ax-cta-foto { position: relative; z-index: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.ax-cta-foto img { width: 100%; aspect-ratio: 725 / 631; object-fit: cover; }
@media (max-width: 560px) { .ax-cta { padding: 34px 24px; } }

/* ───────── PRETURI ───────── */
.ax-preturi .ax-sh { margin-bottom: 34px; }
.ax-pret-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 22px; max-width: 920px; margin: 0 auto; }
.ax-pret-card { background: #fff; border: 1px solid rgba(107,5,114,.12); border-radius: 22px; padding: 28px 26px; box-shadow: 0 8px 28px rgba(107,5,114,.08); display: flex; flex-direction: column; gap: 10px; }
.ax-pret-card .ax-cale-ic { margin-bottom: 4px; }
.ax-pret-card h3 { font-size: 21px; font-weight: 700; }
.ax-pret-card p { color: var(--ax-muted); font-size: 15px; line-height: 1.6; }
.ax-pret-zona { margin-top: 8px; padding: 16px 18px; border-radius: 16px; background: var(--ax-gheata); border: 1px solid rgba(27,106,140,.14); }
.ax-pret-zona .ax-pret-eticheta { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ax-otel); margin-bottom: 4px; }
.ax-pret-zona .ax-pret-promo { font-size: 12.5px; color: var(--ax-muted); margin-top: 6px; }
.ax-pret-nota { font-size: 14.5px; color: var(--ax-text); }
.ax-pret-card .ax-cale-link { margin-top: auto; }
.ax-preturi .ax-disclaimer { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ───────── FOOTER (randat de layout, in afara .ax-page) ───────── */
.ax-footer-banda { background: linear-gradient(135deg, #6b0572 0%, #9b3fa2 55%, #6b0572 100%); color: #fff; padding: 34px 16px 26px; text-align: center; }
.ax-footer-banda h3 { font-family: var(--ax-font-h); color: #fff; font-size: 27px; font-weight: 700; margin: 0 0 8px; }
.ax-footer-banda p { color: rgba(255,255,255,.92); max-width: 680px; margin: 0 auto; font-size: 15.5px; line-height: 1.65; font-family: var(--ax-font-b); }
.ax-footer-foto { border-radius: 18px; border: 1px solid rgba(107,5,114,.15); box-shadow: 0 12px 34px rgba(107,5,114,.20); width: 100%; height: auto; display: block; }
.ax-footer-form-titlu { text-align: center; color: var(--ax-violet); font-family: var(--ax-font-h); font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.ax-footer-form-sub { text-align: center; color: var(--ax-muted); font-size: 13.5px; margin: 0 0 14px; font-family: var(--ax-font-b); }
#FormularProgramari.ax-footer-zona { background: linear-gradient(180deg, #faf5fb, #fff); padding: 26px 0 34px; }
.ax-footer-zona .input-group-text { background: var(--ax-violet) !important; color: #fff !important; border: none; width: 75px; }
.ax-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; }
.ax-footer-zona .butonOcru:hover { color: #fff; filter: brightness(1.1); }
