/* ───────── Neolexam — temă DARK (navy/gold, aliniat homepage neolexam.ro) ───────── */
* { box-sizing: border-box; }

:root {
    --navy:       #0c1e3d;
    --navy-mid:   #132a52;
    --navy-deep:  #07111f;
    --gold:       #b8962e;
    --gold-light: #d4af50;
    --gold-vib:   #e6c355;
    --gold-soft:  #f5e8b0;
    --surface:    rgba(255,255,255,.04);
    --surface-2:  rgba(255,255,255,.07);
    --bg:         #0c1e3d;
    --text:       #e8edf6;
    --muted:      #9fb0cc;
    --border:     rgba(184,150,46,.18);
    --border-soft:rgba(255,255,255,.10);
    --error:      #f87171;
    --success:    #4ade80;
    --warn:       #fbbf24;
    --grad-gold:  linear-gradient(135deg, #b8962e 0%, #e6c355 100%);
    --grad-navy:  linear-gradient(160deg, #07111f 0%, #0c1e3d 45%, #152e5a 100%);
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--grad-navy) fixed;
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
}

h1, h2, h3, h4, h5, .logo-text { font-family: 'Playfair Display', Georgia, serif; }

.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }

/* ───────── HEADER ───────── */
header {
    background: rgba(7,17,31,.92);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(184,150,46,.3);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.logo-mark {
    background: var(--grad-gold);
    color: var(--navy);
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    font-weight: 700; font-size: 18px;
}
.logo-text { font-size: 22px; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
nav a { color: rgba(255,255,255,.8); margin-left: 24px; text-decoration: none; transition: color .15s; }
nav a:hover { color: var(--gold-light); }

/* ───────── FOOTER ───────── */
footer {
    margin-top: 80px;
    background: var(--navy-deep);
    color: var(--muted);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(184,150,46,.15);
}
footer .small { font-size: 13px; opacity: 0.8; margin-top: 8px; }

/* ───────── HERO ───────── */
.hero { padding: 50px 0 30px; text-align: center; }
.hero h1 { font-size: 42px; margin: 0 0 14px; color: #fff; }
.lead { font-size: 18px; color: var(--muted); max-width: 680px; margin: 0 auto; }

/* ───────── HERO BADGE + PRICE PILLS ───────── */
.hero-badge {
    display: inline-block;
    background: rgba(184,150,46,.12);
    border: 1px solid rgba(184,150,46,.35);
    color: var(--gold-light);
    font-size: 12px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px; margin-bottom: 18px;
}
.price-pills {
    display: flex; gap: 18px; flex-wrap: wrap;
    justify-content: center; margin: 30px 0 10px;
}
.price-pill {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 18px 24px;
    text-decoration: none; color: var(--text);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.price-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
    border-color: var(--gold);
}
.price-pill-amount {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--gold-light);
    white-space: nowrap;
}
.price-pill-label { font-size: 13px; color: var(--muted); line-height: 1.45; text-align: left; }
.price-pill-label strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }

/* ───────── OPS GRID (6 operațiuni) ───────── */
.ops-section { margin: 60px 0; }
.section-title { text-align: center; color: #fff; font-size: 30px; margin: 0 0 8px; }
.section-lead { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.op-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 26px 22px;
    text-decoration: none; color: var(--text);
    position: relative; overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.op-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--grad-gold);
    transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.op-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
    border-color: rgba(184,150,46,.45);
}
.op-card:hover::after { transform: scaleX(1); }
.op-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(184,150,46,.14); margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.op-card h3 { color: #fff; font-size: 17px; margin: 0 0 8px; }
.op-card p  { color: var(--muted); font-size: 14px; margin: 0 0 14px; line-height: 1.6; }
.op-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    background: rgba(184,150,46,.18); color: var(--gold-light);
    padding: 4px 10px; border-radius: 5px;
}

/* ───────── CHOICE CARDS ───────── */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 50px 0; }
.choice-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.choice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
    border-color: var(--gold);
}
.choice-card h2 { color: #fff; margin: 0 0 12px; font-size: 22px; }
.choice-card p { color: var(--muted); margin: 0 0 18px; }
.cta { color: var(--gold-light); font-weight: 600; }
.choice-card.disabled { opacity: 0.55; cursor: not-allowed; }
.choice-card.disabled:hover { transform: none; box-shadow: none; border-color: var(--border); }
.cta-disabled { color: var(--muted); font-style: italic; }

/* ───────── INFO ───────── */
.info { background: var(--surface); border-radius: 14px; padding: 30px; border: 1px solid var(--border); }
.info h3 { margin-top: 0; color: var(--gold-light); }
.info ul { padding-left: 0; list-style: none; }
.info li { padding: 8px 0; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.info li:last-child { border: none; }

/* ───────── FORM ───────── */
.form-multistep { margin-top: 30px; }
fieldset {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px 18px;
    margin-bottom: 24px;
}
legend {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 18px;
    padding: 0 10px;
    font-family: 'Playfair Display', serif;
}
.row { margin-bottom: 14px; }
.row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
    display: block;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    margin-bottom: 4px;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: rgba(255,255,255,.06);
    color: #fff;
    margin-top: 4px;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.4); }
select option { color: #0c1e3d; }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,.1);
}
.hint { font-size: 13px; color: var(--muted); margin: 6px 0 0; font-style: italic; }
small.status { display: block; margin-top: 4px; font-size: 13px; min-height: 18px; }

.status.ok    { color: var(--success); }
.status.warn  { color: var(--warn); }
.status.error { color: var(--error); }

/* ───────── ASOCIAT BLOC ───────── */
.asociat-bloc {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 14px;
}
.asociat-bloc h4 { margin: 0 0 12px; color: var(--gold-light); font-size: 15px; }

/* ───────── CAEN AUTOCOMPLETE ───────── */
.autocomplete-results {
    position: absolute;
    background: #11254a;
    border: 1px solid var(--gold);
    border-radius: 6px;
    max-height: 280px;
    overflow-y: auto;
    width: calc(100% - 56px);
    z-index: 100;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    margin-top: 2px;
    display: none;
}
.autocomplete-results .item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text);
}
.autocomplete-results .item:hover { background: rgba(184,150,46,.14); }
.autocomplete-results .item .cod { font-weight: 600; color: var(--gold-light); margin-right: 10px; }

.caen-selected {
    margin-top: 10px;
    padding: 10px;
    background: rgba(184,150,46,.08);
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    font-size: 14px;
    min-height: 22px;
    color: var(--text);
}
.caen-tag {
    display: inline-block;
    background: var(--grad-gold);
    color: var(--navy);
    padding: 4px 8px;
    border-radius: 4px;
    margin: 2px;
    font-size: 13px;
    font-weight: 600;
}
.caen-tag .x { cursor: pointer; margin-left: 6px; font-weight: 700; }

/* ───────── CAEN PACHETE — flux nou ───────── */
.btn-secondary {
    background: var(--grad-gold);
    color: var(--navy);
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 10px;
}
.btn-secondary:hover { filter: brightness(1.08); }

.pachete-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 16px 0; }
.pachete-grid h4 { margin: 8px 0; color: var(--gold-light); }

.pachet-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    transition: border-color 0.15s;
}
.pachet-card:hover { border-color: var(--gold); }
.pachet-card h5 { margin: 0 0 6px; color: #fff; font-size: 16px; }
.pachet-card .cod-principal { font-size: 14px; color: var(--gold-light); margin: 4px 0; }
.pachet-card .hint { margin: 4px 0 12px; }

.btn-pachet {
    background: var(--grad-gold);
    color: var(--navy);
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}
.btn-pachet:hover { filter: brightness(1.08); }

.pachet-detaliu {
    margin-top: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 18px;
}
.bloc-pachet { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft); }
.bloc-pachet:last-child { border-bottom: none; padding-bottom: 0; }
.bloc-pachet h4 { margin: 0 0 10px; color: var(--gold-light); font-size: 15px; }
.bloc-pachet h4 small { color: var(--muted); font-weight: normal; font-size: 13px; margin-left: 6px; }

.bloc-summary {
    background: rgba(184,150,46,.1);
    margin: 18px -18px -18px;
    padding: 18px;
    border-radius: 0 0 8px 8px;
    border-top: 2px solid var(--gold);
}

.caen-pill {
    background: rgba(255,255,255,.04);
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    font-size: 14px;
    color: var(--text);
}
.caen-pill.principal { border-left-color: var(--gold-vib); background: rgba(30,61,110,.45); }

.caen-list { display: flex; flex-direction: column; gap: 4px; }
.caen-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,.03);
    border-radius: 5px;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
    color: var(--text);
    transition: background 0.1s;
}
.caen-check:hover { background: rgba(184,150,46,.14); }
.caen-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.caen-check .cod {
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(184,150,46,.12);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 13px;
    margin-right: 4px;
}

.sum-secundare { margin: 10px 0; }

.multi-results {
    max-height: 320px;
    overflow-y: auto;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 6px;
    margin-top: 8px;
}
.multi-results:empty { display: none; }
.caen-check.deja-ales { opacity: 0.5; cursor: not-allowed; }
.caen-check.deja-ales .cod { background: rgba(184,150,46,.25); }

.cat-badge {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cat-pp  { background: var(--grad-gold); color: var(--navy); }
.cat-rec { background: rgba(184,150,46,.2); color: var(--gold-light); }
.cat-ext { background: rgba(255,255,255,.06); color: var(--muted); border: 1px solid var(--border-soft); }

.cautare-keyword {
    margin-top: 18px;
    padding: 12px;
    background: rgba(255,255,255,.03);
    border: 1px dashed var(--border);
    border-radius: 6px;
}
.cautare-keyword summary { cursor: pointer; color: var(--muted); font-size: 14px; font-weight: 500; }
.cautare-keyword summary:hover { color: var(--gold-light); }
.cautare-keyword[open] summary { color: var(--gold-light); margin-bottom: 8px; }

.hint-auto {
    margin-top: 8px;
    padding: 10px 14px;
    background: rgba(30,61,110,.35);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    color: #d9e3f2;
}
.hint-auto strong { color: var(--gold-light); }

/* ───────── MODIFICARE — grila operatiuni ───────── */
.modif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modif-check {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: rgba(255,255,255,.03);
    border: 2px solid var(--border-soft);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s;
    font-weight: normal;
}
.modif-check:hover { border-color: var(--gold); }
.modif-check input { margin-right: 6px; }
.modif-check strong { color: #fff; }
.modif-check small { color: var(--muted); font-size: 13px; }
.modif-check input:checked ~ strong { color: var(--gold-light); }

.sec-conditionala {
    background: rgba(184,150,46,.08);
    border-left: 4px solid var(--gold);
}
.sec-conditionala legend { color: var(--gold-light); }

@media (max-width: 720px) { .modif-grid { grid-template-columns: 1fr; } }

/* ───────── AVERTISMENT VERIFICARE ───────── */
.avertisment {
    background: rgba(245,158,11,.12);
    border: 2px solid rgba(245,158,11,.5);
}
.avertisment legend { color: var(--warn); }
.avertisment p { margin: 6px 0; }
.avertisment .hint { background: rgba(0,0,0,.25); padding: 10px 14px; border-radius: 6px; font-style: normal; color: var(--text); }

/* ───────── GDPR ───────── */
.gdpr { background: rgba(184,150,46,.08); border-color: rgba(184,150,46,.3); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: normal; }
.checkbox input { width: auto; margin-top: 4px; }

/* ───────── BUTONS ───────── */
.actions { text-align: center; padding: 20px 0; }
.btn, .btn-primary {
    background: var(--grad-gold);
    color: var(--navy);
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: filter 0.15s, transform 0.15s;
}
.btn:hover, .btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ───────── FLASH ───────── */
.flash { padding: 12px 18px; border-radius: 6px; margin: 14px 0; font-weight: 500; }
.flash-error { background: rgba(248,113,113,.15); color: #fca5a5; border-left: 3px solid var(--error); }
.flash-success { background: rgba(74,222,128,.15); color: #86efac; border-left: 3px solid var(--success); }

/* ───────── PROSE ───────── */
.prose { background: var(--surface); padding: 40px; border-radius: 14px; max-width: 720px; margin: 30px auto; border: 1px solid var(--border); }
.prose h1 { color: #fff; margin-top: 0; }
.prose h2 { color: var(--gold-light); border-bottom: 1px solid var(--border-soft); padding-bottom: 6px; }
.prose a { color: var(--gold-light); }

/* ───────── CONFIRMARE DESCĂRCARE ───────── */
.confirmare-panel {
    display: none;
    max-width: 720px;
    margin: 40px auto 80px;
    background: var(--surface);
    border: 2px solid var(--success);
    border-radius: 12px;
    overflow: hidden;
}
.confirmare-header {
    background: #14532d;
    color: #fff;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.confirmare-check {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}
.confirmare-header h2 { margin: 0; font-size: 20px; color: #fff; }
.confirmare-header p  { margin: 4px 0 0; opacity: .85; font-size: 14px; }
.confirmare-body { padding: 32px 36px; }
.confirmare-firma {
    background: rgba(74,222,128,.1);
    border: 1px solid rgba(74,222,128,.3);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 28px;
    font-size: 15px;
    color: #86efac;
    font-weight: 600;
}
.pasi-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 14px; }
.pasi-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; line-height: 1.5; }
.pas-nr {
    width: 28px; height: 28px;
    background: var(--grad-gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
}
.pasi-list li strong { display: block; margin-bottom: 2px; color: #fff; }
.pasi-list li span   { font-size: 13px; color: var(--muted); }
.confirmare-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-soft);
    padding-top: 24px;
    margin-top: 4px;
}
.btn-redownload {
    background: var(--grad-gold);
    color: var(--navy);
    padding: 11px 22px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter .15s;
}
.btn-redownload:hover { filter: brightness(1.08); }
.btn-reset {
    background: transparent;
    color: var(--muted);
    padding: 11px 22px;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .15s, color .15s;
}
.btn-reset:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-loading { opacity: .65; cursor: not-allowed; position: relative; }

/* ───────── CAEN v2 — principal cu ×, rows cu delete, error ───────── */

/* Buton × Schimbă pe activitatea principală */
.caen-pill.principal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.principal-cod { font-weight: 700; color: var(--gold-light); font-size: 15px; }
.principal-den { color: var(--text); font-size: 14px; flex: 1; }
.btn-schimba {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(184,150,46,.35);
    color: var(--gold-light);
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.btn-schimba:hover { background: rgba(184,150,46,.2); }

/* Row cu × per item (recomandate) */
.caen-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid transparent;
    transition: background 0.15s;
}
.caen-row.selected {
    background: rgba(184,150,46,.08);
    border-color: rgba(184,150,46,.2);
}
.caen-row .den { flex: 1; color: var(--text); }
.x-item {
    background: none;
    border: none;
    color: rgba(255,100,100,.8);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    border-radius: 3px;
    transition: color 0.1s, background 0.1s;
    flex-shrink: 0;
}
.x-item:hover { color: #ff4444; background: rgba(255,0,0,.1); }
.add-item {
    background: rgba(184,150,46,.15);
    border: 1px solid rgba(184,150,46,.3);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}
.add-item:hover { background: rgba(184,150,46,.3); }

/* × în sumar */
.sum-principal { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sum-label { color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.sum-sec-header { color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin: 10px 0 6px; }
.caen-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 5px; font-size: 13px; font-weight: 600; margin: 2px; }
.caen-tag { background: rgba(184,150,46,.15); border: 1px solid rgba(184,150,46,.3); color: var(--text); }
.caen-tag .cod-s { color: var(--gold-light); font-weight: 700; }
.x-sum {
    background: none;
    border: none;
    color: rgba(255,100,100,.7);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    border-radius: 2px;
}
.x-sum:hover { color: #ff4444; }

/* Loading / error */
.loading-hint { color: var(--muted); font-style: italic; }
.text-error { color: #ff7070 !important; }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 900px) { .ops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
    .choice-grid { grid-template-columns: 1fr; }
    .row.two-col { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .confirmare-header, .confirmare-body { padding: 22px 20px; }
    .confirmare-actions { flex-direction: column; }
}
@media (max-width: 560px) { .ops-grid { grid-template-columns: 1fr; } .price-pills { flex-direction: column; } }
