/* =============================================================
   EXPAR Calculator Concierge Auto — v1.1.0
   Namespace: .expar-calc-root / .ec-*
   Font: Exo 2 (Google Fonts)
   ============================================================= */

/* ── Variabile ─────────────────────────────────────────────── */
.expar-calc-root {
    --ec-green:   #2E9940;
    --ec-green-d: #1F7A30;
    --ec-green-l: #EAF7ED;
    --ec-green-h: #9FD356;   /* hover pe butoane outline (lime accent brand) */
    --ec-bg:      #0E3D34;   /* aliniat la fundalul închis EXPAR */
    --ec-card:    #FFFFFF;
    --ec-border:  #E2E8E3;
    --ec-muted:   #6B7C6E;
    --ec-dark:    #1A2B1C;
    --ec-amber:   #C9A84C;
    --ec-silver:  #8FA3B1;
    --ec-orange:  #E07830;
    --ec-red:     #EF4444;
    --ec-blue:    #1A73E8;
    --ec-font:    'Exo 2', 'Exo', 'Segoe UI', sans-serif;
    --ec-r:       12px;
    --ec-rl:      16px;
    --ec-t:       0.18s ease;
}

/* ── Reset intern ───────────────────────────────────────────── */
.expar-calc-root *,
.expar-calc-root *::before,
.expar-calc-root *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* FIX #3 — elimină tap-highlight pe tot calculatorul */
.expar-calc-root * { -webkit-tap-highlight-color: transparent; }

.expar-calc-root button { font-family: var(--ec-font); }

/* ── Wrapper ────────────────────────────────────────────────── */
.expar-calc-root {
    font-family: var(--ec-font);
    background: var(--ec-bg);
    color: #fff;
    border-radius: var(--ec-rl);
    overflow: hidden;
    width: 100%;
}

.ec-inner {
    padding: 40px 28px 56px;
    max-width: 1120px;
    margin: 0 auto;
}

/* ── Loading ────────────────────────────────────────────────── */
.ec-loading {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 48px;
    color: rgba(255,255,255,.4); font-size: 14px;
}
.ec-spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.15);
    border-top-color: var(--ec-green);
    border-radius: 50%;
    animation: ec-spin .7s linear infinite;
}
@keyframes ec-spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════ */
.ec-ph         { margin-bottom: 24px; }
.ec-ph-ey      { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ec-green); margin-bottom: 8px; }
.ec-ph-h1      { font-size: clamp(20px,3.5vw,32px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 6px; }
.ec-ph-sub     { font-size: 13.5px; color: #ffffff !important; font-weight: 400; line-height: 1.65; }

/* ═══════════════════════════════════════════
   URGENCY BANNER — top, independent (#4)
═══════════════════════════════════════════ */
.ec-urg-banner {
    background: var(--ec-card);
    border-radius: var(--ec-rl);
    border: 2px solid #FECACA;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.ec-urg-banner-head {
    padding: 14px 20px 12px;
    border-bottom: 1px solid #FEE2E2;
    display: flex; align-items: center; gap: 10px;
}
.ec-urg-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--ec-red); color: #fff;
    font-size: 13px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ec-urg-head-title { font-size: 13.5px; font-weight: 700; color: var(--ec-dark); }
.ec-urg-banner-body { padding: 16px 20px; }

.ec-urg-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid #FECACA; border-radius: var(--ec-r);
    cursor: pointer; user-select: none;
    background: #FFF5F5;
    transition: border-color var(--ec-t), background var(--ec-t);
}
.ec-urg-toggle.ec-on { border-color: #F87171; background: #FEF2F2; }
.ec-urg-lbl-main { font-size: 13px; font-weight: 700; color: var(--ec-dark); margin-bottom: 3px; }
.ec-urg-lbl-sub  { font-size: 11.5px; color: var(--ec-muted); }

/* Toggle track & knob */
.ec-tr {
    width: 42px; height: 23px; border-radius: 12px;
    background: #E5E5E5; position: relative;
    transition: background .28s ease; flex-shrink: 0; cursor: pointer;
}
.ec-tr.ec-on { background: var(--ec-red); }
.ec-tk {
    position: absolute; top: 2.5px; left: 2.5px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; transition: left .28s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.ec-tr.ec-on .ec-tk { left: 21.5px; }

.ec-urg-expanded {
    margin-top: 10px; padding: 14px;
    background: #FFF5F5; border: 1px solid #FECACA;
    border-radius: var(--ec-r);
}
.ec-urg-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ec-urg-info-em { font-size: 20px; flex-shrink: 0; }
.ec-urg-info-title  { font-size: 13px; font-weight: 700; color: #991B1B; }
.ec-urg-info-detail { font-size: 11px; color: #B91C1C; }
.ec-urg-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
/* Layout pe o singură coloană — sumarul + totalul ajung la final,
   se încadrează pe orizontală și e complet responsive. */
.ec-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}
.ec-form-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.ec-side-col  { min-width: 0; }

/* ═══════════════════════════════════════════
   SECTION CARDS
═══════════════════════════════════════════ */
.ec-sc {
    background: var(--ec-card);
    border-radius: var(--ec-rl);
    border: 1px solid var(--ec-border);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: opacity var(--ec-t);
}
.ec-sc.ec-locked { opacity: .38; pointer-events: none; user-select: none; }

.ec-sc-head {
    padding: 15px 20px 13px;
    border-bottom: 1px solid var(--ec-border);
    display: flex; align-items: center; gap: 10px;
}
.ec-sc-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--ec-green); color: #fff;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ec-sc-title { font-size: 13.5px; font-weight: 700; color: var(--ec-dark); flex: 1; }

/* FIX #12 — spacing for count badge */
.ec-sc-count {
    margin-left: 8px;
    background: var(--ec-green); color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 100px;
    white-space: nowrap;
}
.ec-sc-body { padding: 16px 20px; }

/* ═══════════════════════════════════════════
   STEP 1 — CATEGORIES
═══════════════════════════════════════════ */
.ec-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.ec-cat-card {
    border: 1.5px solid var(--ec-border);
    border-radius: var(--ec-r); padding: 14px;
    cursor: pointer; background: var(--ec-card); position: relative;
    user-select: none;
    transition: border-color var(--ec-t), background var(--ec-t), transform var(--ec-t), box-shadow var(--ec-t);
}
.ec-cat-card:hover { border-color: var(--ec-green); background: var(--ec-green-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,184,78,.15); }
.ec-cat-card.ec-active { border-color: var(--ec-green); background: var(--ec-green-l); }
.ec-cat-check {
    position: absolute; top: 10px; right: 10px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--ec-green);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(.7);
    transition: opacity var(--ec-t), transform var(--ec-t);
}
.ec-cat-card.ec-active .ec-cat-check { opacity: 1; transform: scale(1); }
.ec-cat-check::after {
    content: '';
    width: 9px; height: 5px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px); display: block;
}
.ec-cat-em    { font-size: 20px; display: block; margin-bottom: 8px; line-height: 1; }
.ec-cat-label { font-size: 12.5px; font-weight: 700; color: var(--ec-dark); margin-bottom: 4px; line-height: 1.3; }
.ec-cat-desc  { font-size: 11px; color: var(--ec-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   STEP 2 — LOCATION
═══════════════════════════════════════════ */
.ec-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ec-chip {
    padding: 7px 14px; border-radius: 100px;
    border: 1.5px solid var(--ec-border);
    font-size: 12.5px; font-weight: 500; color: var(--ec-dark);
    cursor: pointer; background: #fff; user-select: none;
    font-family: var(--ec-font);
    transition: border-color var(--ec-t), background var(--ec-t), color var(--ec-t), transform var(--ec-t);
}
.ec-chip:hover { border-color: var(--ec-green); color: var(--ec-green-d); transform: translateY(-1px); }
.ec-chip.ec-active { border-color: var(--ec-green); background: var(--ec-green); color: #fff; }
.ec-area-note {
    margin-top: 12px; padding: 10px 14px;
    background: var(--ec-green-l); border-radius: 8px;
    border-left: 3px solid var(--ec-green);
    font-size: 12px; color: #1B7A3D;
    display: flex; align-items: center; gap: 8px; line-height: 1.4;
}

/* ═══════════════════════════════════════════
   STEP 3 — SERVICES
   FIX #6 (no bullet), #7 (centered cb),
   #8 (mobile), #10 (badge), #11 (price)
═══════════════════════════════════════════ */
.ec-doc-note {
    margin-bottom: 12px; padding: 10px 13px;
    border-radius: 8px; font-size: 11.5px; line-height: 1.55;
}
.ec-doc-note-blue  { background: #EBF3FE; border-left: 3px solid var(--ec-blue); color: #1558B0; }
.ec-doc-note-green { background: var(--ec-green-l); border-left: 3px solid var(--ec-green); color: #1B7A3D; }

.ec-svc-list { display: flex; flex-direction: column; gap: 7px; }

.ec-svc-row {
    display: flex;
    align-items: flex-start; /* FIX #7 — body aligns with checkbox top */
    gap: 10px;
    padding: 11px 13px;
    border: 1.5px solid var(--ec-border);
    border-radius: var(--ec-r);
    cursor: pointer; background: #fff; user-select: none;
    transition: border-color var(--ec-t), background var(--ec-t);
}
.ec-svc-row:hover  { border-color: var(--ec-green); background: var(--ec-green-l); }
.ec-svc-row.ec-active { border-color: var(--ec-green); background: var(--ec-green-l); }

/* FIX #7 — checkbox centered within its own box, aligned to text */
.ec-cb {
    width: 18px; height: 18px; min-width: 18px;
    border-radius: 5px; border: 2px solid #CCC;
    background: #fff; flex-shrink: 0;
    margin-top: 2px; /* aligns with first text line */
    display: flex; align-items: center; justify-content: center;
    transition: background var(--ec-t), border-color var(--ec-t);
    position: relative;
}
.ec-svc-row.ec-active .ec-cb { background: var(--ec-green); border-color: var(--ec-green); }
/* checkmark — centered inside box */
.ec-cb::after {
    content: '';
    display: block;
    width: 9px; height: 5px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(-45deg) translateY(-1px);
    transition: border-color var(--ec-t);
    margin-top: 1px;
}
.ec-svc-row.ec-active .ec-cb::after {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

/* FIX #6 — svc-body takes all space, no bullet icon */
.ec-svc-body { flex: 1; min-width: 0; }

/* FIX #10 — badge in name-row, right-aligned, never overlaps */
.ec-svc-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 3px;
}
.ec-svc-name {
    font-size: 12.5px; font-weight: 600; color: var(--ec-dark);
    line-height: 1.3; flex: 1; min-width: 0;
}
.ec-svc-row.ec-active .ec-svc-name { color: var(--ec-dark); }

.ec-badge {
    font-size: 9.5px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    padding: 2px 7px; border-radius: 100px;
    flex-shrink: 0; white-space: nowrap;
    align-self: flex-start; margin-top: 1px;
}
.ec-badge-green  { background: #DDF3E4; color: #1B7A3D; }
.ec-badge-gray   { background: #F0F0F0; color: #555; }
.ec-badge-orange { background: #FEF0E8; color: var(--ec-orange); }
.ec-badge-blue   { background: #E8F0FE; color: var(--ec-blue); }

.ec-svc-detail {
    font-size: 11px; color: var(--ec-muted); line-height: 1.35;
    margin-bottom: 4px;
}
.ec-svc-row.ec-active .ec-svc-detail { color: #4a9060; }

/* FIX #11 — price inside body, always visible, no overflow */
.ec-svc-price {
    font-size: 12px; font-weight: 700; color: var(--ec-dark);
    line-height: 1.35;
}
.ec-svc-price.ec-free { color: var(--ec-green); }
.ec-svc-free-note {
    display: block;
    font-size: 10px; color: var(--ec-green); font-weight: 500;
    margin-top: 1px;
}

.ec-empty { text-align: center; padding: 10px 0; color: var(--ec-muted); font-size: 12.5px; }
.ec-empty-icon { font-size: 20px; display: block; margin-bottom: 6px; opacity: .35; }

/* ═══════════════════════════════════════════
   STEP 4 — MEMBERSHIP
   FIX #9 — real checkmarks
═══════════════════════════════════════════ */
.ec-mb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ec-mb-card {
    border: 2px solid var(--ec-border); border-radius: var(--ec-r);
    padding: 22px 18px; cursor: pointer; background: #fff;
    position: relative; user-select: none;
    transition: border-color var(--ec-t), background var(--ec-t), transform var(--ec-t);
}
.ec-mb-card:hover { transform: translateY(-1px); }
.ec-mb-card.ec-mb-none.ec-active   { border-color: var(--ec-green); background: var(--ec-green-l); }
.ec-mb-card.ec-mb-silver.ec-active { border-color: var(--ec-silver); background: #F6F8FA; }
.ec-mb-card.ec-mb-gold             { border-color: #D4B87A; padding-top: 26px; }
.ec-mb-card.ec-mb-gold.ec-active   { border-color: var(--ec-amber); background: #FFFBF0; }

.ec-mb-popular {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--ec-green); color: #fff;
    font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.ec-mb-name   { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px; color: var(--ec-muted); }
.ec-mb-price  { font-size: 18px; font-weight: 800; color: var(--ec-dark); margin-bottom: 3px; line-height: 1.2; }
.ec-mb-disc   { font-size: 12px; font-weight: 600; color: var(--ec-green); margin-bottom: 10px; }
.ec-mb-nodisc { font-size: 12px; color: var(--ec-muted); margin-bottom: 10px; }
.ec-mb-sep    { height: 1px; background: var(--ec-border); margin-bottom: 10px; }

/* FIX #9 — real checkmark character instead of CSS lines */
.ec-mb-feat {
    font-size: 11.5px; color: var(--ec-muted);
    margin-bottom: 7px;
    display: flex; align-items: flex-start; gap: 6px; line-height: 1.4;
}
.ec-mb-feat-ck {
    font-size: 12px; font-weight: 700; line-height: 1; flex-shrink: 0;
    margin-top: 0px;
}

.ec-mb-sel-dot {
    position: absolute; top: 9px; right: 9px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--ec-green);
    display: none; align-items: center; justify-content: center;
}
.ec-mb-sel-dot::after {
    content: '';
    width: 7px; height: 4px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px); display: block;
}
.ec-mb-card.ec-active .ec-mb-sel-dot { display: flex; }
.ec-mb-card.ec-mb-silver .ec-mb-sel-dot { background: var(--ec-silver); }
.ec-mb-card.ec-mb-gold   .ec-mb-sel-dot { background: var(--ec-amber); }

/* ═══════════════════════════════════════════
   BUTTONS — FIX #3
═══════════════════════════════════════════ */
.ec-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    width: 100%; padding: 12px 16px; border-radius: var(--ec-r);
    font-size: 13px; font-weight: 700;
    cursor: pointer; border: none;
    font-family: var(--ec-font); text-decoration: none; line-height: 1;
    transition: background var(--ec-t), color var(--ec-t),
                border-color var(--ec-t), transform var(--ec-t), opacity var(--ec-t);
    -webkit-appearance: none;
    outline: none;
}
/* FIX #3 — remove any browser focus ring that shows as red/purple */
.ec-btn:focus { outline: none; box-shadow: none; }
.ec-btn:focus-visible { outline: 2px solid var(--ec-green); outline-offset: 2px; }
.ec-btn:hover { transform: translateY(-1px); }
.ec-btn:active { transform: translateY(0); }

.ec-btn-green { background: var(--ec-green); color: #fff; }
.ec-btn-green:hover { background: var(--ec-green-d); }
.ec-btn-green:active { background: var(--ec-green-d); }
.ec-btn-green:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.ec-btn-wa { background: #25D366; color: #fff; }
.ec-btn-wa:hover  { background: #1DA851; }
.ec-btn-wa:active { background: #1DA851; }

/* FIX #3 — "Am avut accident" și "Mașina e blocată": roșu rămâne,
   dar fără flash/highlight la :active */
.ec-btn-red  { background: var(--ec-red); color: #fff; }
.ec-btn-red:hover  { background: #DC2626; }
.ec-btn-red:active { background: var(--ec-red); box-shadow: none; }

.ec-btn-dark { background: var(--ec-dark); color: #fff; }
.ec-btn-dark:hover  { background: #0f1a10; }
.ec-btn-dark:active { background: var(--ec-dark); box-shadow: none; }

/* FIX #3 — butoane outline: hover = text alb + #91c33e, normal = text negru + alb */
.ec-btn-outline {
    background: #fff; color: var(--ec-dark);
    border: 1.5px solid var(--ec-border) !important;
}
.ec-btn-outline:hover {
    background: var(--ec-green-h) !important;
    color: #fff !important;
    border-color: var(--ec-green-h) !important;
}
.ec-btn-outline:active {
    background: var(--ec-green-h) !important;
    color: #fff !important;
    border-color: var(--ec-green-h) !important;
    transform: none;
}
/* FIX #3 — butonul "Apel direct" din urgency */
.ec-urg-expanded .ec-btn-outline { margin-top: 7px; }

.ec-btn-pulse { animation: ec-pulse 1.8s infinite; }
@keyframes ec-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.35); }
    50%      { box-shadow: 0 0 0 7px rgba(239,68,68,0); }
}

/* ═══════════════════════════════════════════
   SUMMARY PANEL — FIX #2, #13
═══════════════════════════════════════════ */
.ec-sum {
    background: #fff;
    border-radius: var(--ec-rl);
    border: 1px solid var(--ec-border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.ec-sum-head { padding: 18px 20px 15px; background: var(--ec-dark); }
.ec-sum-ey   { font-size: 9.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ec-green); margin-bottom: 3px; }
.ec-sum-title{ font-size: 16px; font-weight: 800; color: #fff; }

.ec-rt-badge {
    margin: 12px 18px 0; padding: 9px 12px;
    background: #E6FAF0; border: 1px solid #B2EBC5; border-radius: 8px;
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: #1B7A3D; font-weight: 500; line-height: 1.4;
}
.ec-rt-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--ec-green); flex-shrink: 0;
    animation: ec-rtpulse 2s infinite;
}
@keyframes ec-rtpulse { 0%,100%{opacity:1} 50%{opacity:.25} }

.ec-sum-body   { padding: 14px 18px; }
.ec-sum-empty  { text-align: center; padding: 8px 0 4px; color: var(--ec-muted); font-size: 12px; line-height: 1.5; }

.ec-sum-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 8px; font-size: 12px; color: var(--ec-muted);
    padding-bottom: 8px; margin-bottom: 8px;
    border-bottom: 1px solid var(--ec-border);
}
.ec-sum-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ec-sum-lbl { flex: 1; line-height: 1.4; }
.ec-sum-val { font-weight: 700; color: var(--ec-dark); flex-shrink: 0; text-align: right; }
.ec-sum-val.ec-free { color: var(--ec-green); }
.ec-sum-val.ec-disc { color: var(--ec-green); }
.ec-sum-val.ec-emg  { color: var(--ec-red); }

/* FIX #2 — total label și RON: text alb */
.ec-sum-total {
    padding: 15px 18px; background: var(--ec-dark);
    display: flex; justify-content: space-between; align-items: center;
}
.ec-sum-total-lbl {
    font-size: 9.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em;
    color: #fff; /* FIX #2 — era rgba(255,255,255,.4) */
}
.ec-sum-total-amt { display: flex; align-items: baseline; gap: 4px; }
.ec-sum-num { font-size: 30px; font-weight: 800; color: var(--ec-green); line-height: 1; }
.ec-sum-ron {
    font-size: 13px; font-weight: 600;
    color: #fff; /* FIX #2 — era rgba(255,255,255,.45) */
}

.ec-timesave {
    margin: 12px 18px 0; padding: 10px 12px;
    background: var(--ec-green-l); border-radius: 8px;
    display: flex; align-items: center; gap: 8px;
    font-size: 11.5px; color: #2E7A40; font-weight: 500; line-height: 1.4;
}
.ec-timesave-icon { font-size: 15px; flex-shrink: 0; }

.ec-disclaimer {
    padding: 12px 18px; font-size: 10.5px; color: var(--ec-muted);
    line-height: 1.65; background: #FAFAFA;
    border-top: 1px solid var(--ec-border);
}

.ec-cta {
    padding: 14px 18px; border-top: 1px solid var(--ec-border);
    display: flex; flex-direction: column; gap: 7px;
}

/* FIX #14 — trust grid */
.ec-trust {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    padding: 12px 18px; border-top: 1px solid var(--ec-border);
}
.ec-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 10.5px; color: var(--ec-muted); font-weight: 500;
}
.ec-trust-ico { font-size: 14px; flex-shrink: 0; }

/* Success */
.ec-success { padding: 20px 18px; text-align: center; border-top: 1px solid var(--ec-border); }
.ec-success-ico {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--ec-green-l); color: var(--ec-green);
    font-size: 22px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}
.ec-success-title { font-size: 15px; font-weight: 800; color: var(--ec-dark); margin-bottom: 6px; }
.ec-success-text  { font-size: 12px; color: var(--ec-muted); line-height: 1.6; margin-bottom: 14px; }

/* ═══════════════════════════════════════════
   RESPONSIVE — FIX #8
═══════════════════════════════════════════ */

/* Desktop larg — categoriile pe un singur rând */
@media (min-width: 860px) {
    .ec-cat-grid { grid-template-columns: repeat(4,1fr); }
}

/* Tablet ≤ 820px */
@media (max-width: 820px) {
    .ec-cat-grid { grid-template-columns: repeat(2,1fr); }
    .ec-mb-grid  { grid-template-columns: repeat(3,1fr); }
}

/* Tablet narrow ≤ 640px */
@media (max-width: 640px) {
    .ec-inner { padding: 20px 16px 40px; }
    .ec-urg-btns { grid-template-columns: 1fr; }
    .ec-mb-grid  { grid-template-columns: 1fr 1fr; }
    .ec-trust    { grid-template-columns: 1fr 1fr; }
}

/* Mobile ≤ 420px */
@media (max-width: 420px) {
    .ec-inner     { padding: 16px 12px 32px; }
    .ec-ph-h1     { font-size: 20px; }
    .ec-cat-grid  { grid-template-columns: 1fr; }
    .ec-mb-grid   { grid-template-columns: 1fr; }
    .ec-sum-num   { font-size: 26px; }

    /* FIX #8 — service row on very small screens */
    .ec-svc-row   { padding: 10px 11px; gap: 8px; }
    .ec-svc-name  { font-size: 12px; }
    .ec-svc-detail{ font-size: 10.5px; }
    .ec-svc-price { font-size: 11.5px; }
}
