/* ============================================================
   ETAP 6B — strona zamówienia stałej opieki IT
   Layout 1:1 z makietą: hero + stepper + karty pakietów +
   formularz (lewo) + podsumowanie (prawo) + benefit bar + FAQ.
   Zakres: tylko klasy .itcare* (nie ingeruje w inne strony).
   ============================================================ */

.itcare {
    font-family: var(--rc-font-body, Inter, system-ui, sans-serif);
    color: var(--rc-color-ink, #152033);
    background: var(--rc-bg-body, #f7fbff);
}

.itcare__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--rc-brand-accent, #f28c28);
    margin: 0 0 10px;
}

.itcare__section-head { margin: 0 0 28px; }
.itcare__section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--rc-color-ink-strong, #0f172a);
}
.itcare__section-sub { color: var(--rc-text-muted, #6b7280); margin: 0; max-width: 640px; }

.itcare__notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    margin: 0 0 22px;
}

/* ===================== HERO ===================== */
.itcare__hero {
    background: linear-gradient(135deg, #071a33 0%, #0e2a52 60%, #103a6b 100%);
    color: #fff;
    overflow: hidden;
}
.itcare__hero-in {
    width: min(calc(100% - 48px), 1280px);
    margin-inline: auto;
    padding: 64px 0 56px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}
.itcare__eyebrow { color: #ffb070; }
.itcare__hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
.itcare__hero-desc {
    max-width: 620px;
    font-size: 1.04rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 22px;
}
.itcare__crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}
.itcare__crumbs a { color: #fff; text-decoration: none; }
.itcare__crumbs a:hover { color: #ffb070; }
.itcare__hero-art { display: flex; justify-content: center; }
.itcare__hero-art img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
}

/* ===================== STEPPER ===================== */
.itcare__stepper {
    background: #fff;
    border-bottom: 1px solid var(--rc-border, #e2e8f0);
}
.itcare__stepper-list {
    width: min(calc(100% - 48px), 1280px);
    margin-inline: auto;
    list-style: none;
    margin-block: 0;
    padding: 22px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
}
.itcare__step {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding: 12px 14px;
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 12px;
    background: var(--rc-bg-soft, #f8fafc);
    color: var(--rc-text-subdued, #475569);
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.itcare__step:not(:disabled):hover { border-color: var(--rc-brand-accent, #f28c28); }
.itcare__step.is-done { border-color: var(--rc-brand-primary, #0066cc); background: #fff; color: var(--rc-color-ink-strong, #0f172a); }
.itcare__step.is-done .itcare__step-num { background: var(--rc-brand-primary, #0066cc); border-color: var(--rc-brand-primary, #0066cc); color: #fff; }
.itcare__step:disabled { cursor: not-allowed; opacity: 0.55; }
.itcare__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    width: 16px;
    height: 2px;
    background: var(--rc-border, #e2e8f0);
    transform: translateY(-50%);
}
.itcare__step-num {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.9rem;
    background: #fff;
    border: 1.5px solid var(--rc-border, #e2e8f0);
    color: var(--rc-text-subdued, #475569);
}
.itcare__step-label { font-weight: 600; font-size: 0.95rem; }
.itcare__step.is-active {
    border-color: var(--rc-brand-accent, #f28c28);
    background: var(--rc-brand-accent-soft, #fff3e5);
    color: var(--rc-color-ink-strong, #0f172a);
}
.itcare__step.is-active .itcare__step-num {
    background: var(--rc-brand-accent, #f28c28);
    border-color: var(--rc-brand-accent, #f28c28);
    color: #fff;
}

/* ===================== KARTY PAKIETÓW ===================== */
.itcare__packages { padding: 56px 0; }
.itcare__packages-in { width: min(calc(100% - 48px), 1280px); margin-inline: auto; }
.itcare__packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.itcare-pkg {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 22px;
    background: #fff;
    border: 1.5px solid var(--rc-border, #e2e8f0);
    border-radius: 16px;
    text-decoration: none;
    color: var(--rc-color-ink, #152033);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    outline: none;
}
.itcare-pkg:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(7, 26, 51, 0.12); border-color: var(--rc-brand-accent, #f28c28); }
.itcare-pkg:focus-visible { box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.35); }
.itcare-pkg--featured { border-color: var(--rc-brand-accent, #f28c28); box-shadow: 0 12px 30px rgba(242, 140, 40, 0.14); }
.itcare-pkg__media {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 0 2px;
}
.itcare-pkg__media img { display: block; width: 100%; height: 100%; object-fit: contain; }
.itcare-pkg__badge {
    position: absolute;
    top: -12px;
    left: 22px;
    background: var(--rc-brand-accent, #f28c28);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
}
.itcare-pkg__name { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.itcare-pkg__price { display: flex; flex-direction: column; }
.itcare-pkg__price-value { font-size: 1.2rem; font-weight: 800; color: var(--rc-brand-accent, #f28c28); }
.itcare-pkg__price-tax { font-size: 0.78rem; font-weight: 500; color: var(--rc-text-muted, #6b7280); }
.itcare-pkg__for { font-size: 0.9rem; color: var(--rc-text-subdued, #475569); }
.itcare-pkg__list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 8px; }
.itcare-pkg__list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    color: var(--rc-text-dim, #334155);
}
.itcare-pkg__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: var(--rc-brand-accent, #f28c28);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/15px no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/15px no-repeat;
}
.itcare-pkg__select {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--rc-color-ink-strong, #0f172a);
}
.itcare-pkg__radio {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--rc-border, #e2e8f0);
    background: #fff;
    position: relative;
    transition: border-color 0.15s ease;
}
.itcare-pkg.is-selected {
    border-color: var(--rc-brand-accent, #f28c28);
    box-shadow: 0 16px 38px rgba(242, 140, 40, 0.22);
}
.itcare-pkg.is-selected .itcare-pkg__radio { border-color: var(--rc-brand-accent, #f28c28); }
.itcare-pkg.is-selected .itcare-pkg__radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--rc-brand-accent, #f28c28);
}

/* ===================== KREATOR (PANELE KROK PO KROKU) ===================== */
.itcare__wizard { padding: 8px 0 56px; }
.itcare__wizard-in {
    width: min(calc(100% - 48px), 1280px);
    margin-inline: auto;
    background: #fff;
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 18px;
    padding: 30px 28px;
}
.itcare__panel { animation: itcare-fade 0.18s ease; }
.itcare__panel[hidden] { display: none; }
@keyframes itcare-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.itcare__panel-head { margin: 0 0 22px; }
.itcare__form { display: block; }
.itcare__fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}
.itcare__legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--rc-color-ink-strong, #0f172a);
    padding: 0;
    margin: 0 0 14px;
}
.itcare__legend-num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    background: var(--rc-brand-primary-soft, #e8f0fe);
    color: var(--rc-brand-primary, #0066cc);
}
.itcare__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.itcare__field { display: grid; gap: 6px; min-width: 0; }
.itcare__field--full { grid-column: 1 / -1; }
.itcare__field label { font-size: 0.86rem; font-weight: 600; color: var(--rc-text-dim, #334155); }
.itcare__field input,
.itcare__field select,
.itcare__field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 10px;
    font: inherit;
    color: var(--rc-color-ink, #152033);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.itcare__field textarea { resize: vertical; }
.itcare__field input:focus,
.itcare__field select:focus,
.itcare__field textarea:focus {
    outline: none;
    border-color: var(--rc-brand-accent, #f28c28);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.15);
}
.itcare__field.is-invalid input,
.itcare__field.is-invalid select,
.itcare__field.is-invalid textarea {
    border-color: #b42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.15);
}
.itcare__panel-error {
    background: #fdecea;
    color: #b42318;
    border: 1px solid #f5c2bd;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    margin: 0 0 16px;
}
.itcare__check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--rc-text-dim, #334155); }
.itcare__check input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }

.itcare__form-actions { display: grid; gap: 10px; }
.itcare__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    background: var(--rc-brand-accent, #f28c28);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.16s ease, transform 0.16s ease;
}
.itcare__submit:hover,
.itcare__submit:focus-visible { background: #dc7d20; transform: translateY(-1px); }
.itcare__note {
    font-weight: 600;
    color: #166534;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0;
}
.itcare__hint { font-size: 0.82rem; color: var(--rc-text-muted, #6b7280); margin: 0; }
.itcare__pre-submit {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--rc-text-subdued, #475569);
    margin: 0;
}
.itcare__pre-submit-head {
    display: block;
    font-weight: 700;
    color: var(--rc-color-ink-strong, #0f172a);
    margin: 0 0 4px;
}
.itcare-summary__note {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--rc-text-subdued, #475569);
    margin: 0 0 18px;
}
.itcare__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.itcare__form-alert {
    background: #fdecea;
    border: 1px solid #f5c2bd;
    border-radius: 12px;
    padding: 14px 18px;
    margin: 0 0 22px;
    color: #b42318;
}
.itcare__form-alert p { margin: 0 0 6px; font-weight: 700; }
.itcare__form-alert ul { margin: 0; padding-left: 20px; font-size: 0.92rem; }
.itcare__turnstile { margin: 0 0 18px; }
.itcare__done { padding: 72px 0 96px; }
.itcare__done-in {
    width: min(calc(100% - 48px), 720px);
    margin-inline: auto;
    text-align: center;
}
.itcare__done-icon {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--rc-brand-accent-soft, #fff3e5);
    color: var(--rc-brand-accent, #f28c28);
    margin-bottom: 18px;
}
.itcare__done h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; margin: 0 0 12px; color: var(--rc-color-ink-strong, #0f172a); }
.itcare__done-lead { color: var(--rc-text-muted, #6b7280); max-width: 560px; margin: 0 auto 26px; line-height: 1.6; }
.itcare__done-card {
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    background: var(--rc-bg-soft, #f8fafc);
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 28px;
    text-align: left;
}
.itcare__done-card > div { display: flex; flex-direction: column; gap: 2px; }
.itcare__done-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rc-text-muted, #6b7280); }
.itcare__done-value { font-size: 1.3rem; font-weight: 800; color: var(--rc-brand-accent, #f28c28); }

/* Nawigacja kreatora (Dalej / Wstecz) */
.itcare__panel-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}
.itcare__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1.5px solid var(--rc-border, #e2e8f0);
    border-radius: 12px;
    background: #fff;
    color: var(--rc-color-ink-strong, #0f172a);
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.itcare__btn:hover,
.itcare__btn:focus-visible { border-color: var(--rc-brand-accent, #f28c28); transform: translateY(-1px); }
.itcare__btn--primary {
    background: var(--rc-brand-accent, #f28c28);
    border-color: var(--rc-brand-accent, #f28c28);
    color: #fff;
}
.itcare__btn--primary:hover,
.itcare__btn--primary:focus-visible { background: #dc7d20; border-color: #dc7d20; }

/* Chip z wybranym pakietem (kroki 2–4) */
.itcare__chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 8px 12px;
    background: var(--rc-brand-accent-soft, #fff3e5);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--rc-color-ink-strong, #0f172a);
}
.itcare__chip-btn {
    border: 0;
    background: transparent;
    color: var(--rc-brand-accent, #f28c28);
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* Recap danych w podsumowaniu */
.itcare__recap {
    background: var(--rc-bg-soft, #f8fafc);
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 14px;
    padding: 20px 22px;
    margin: 0 0 22px;
}
.itcare__recap-title { font-weight: 800; margin: 0 0 12px; color: var(--rc-color-ink-strong, #0f172a); }
.itcare__recap-empty { color: var(--rc-text-muted, #6b7280); margin: 0; }
.itcare__recap-row { display: flex; gap: 12px; padding: 7px 0; border-top: 1px solid var(--rc-border, #e2e8f0); font-size: 0.92rem; }
.itcare__recap-row:first-of-type { border-top: 0; }
.itcare__recap-key { flex: 0 0 42%; color: var(--rc-text-subdued, #475569); }
.itcare__recap-val { flex: 1; color: var(--rc-color-ink, #152033); font-weight: 600; word-break: break-word; }

/* Podsumowanie (panel 4) */
.itcare__summary {
    background: var(--rc-bg-soft, #f8fafc);
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 18px;
    padding: 30px 28px;
    margin: 0 0 22px;
}
.itcare__summary.is-updating { opacity: 0.55; transition: opacity 0.12s ease; }
.itcare-summary__eyebrow { font-size: 0.76rem; letter-spacing: 0.1em; font-weight: 700; color: var(--rc-brand-accent, #f28c28); margin: 0 0 6px; }
.itcare-summary__name { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; color: var(--rc-color-ink-strong, #0f172a); }
.itcare-summary__for { color: var(--rc-text-subdued, #475569); margin: 0 0 16px; }
.itcare-summary__price { font-size: 1rem; font-weight: 600; margin: 0 0 18px; color: var(--rc-text-dim, #334155); }
.itcare-summary__net { display: block; font-size: 1.5rem; font-weight: 800; color: var(--rc-brand-accent, #f28c28); }
.itcare-summary__gross { display: block; font-size: 0.88rem; font-weight: 500; color: var(--rc-text-muted, #6b7280); }
.itcare-summary__list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.itcare-summary__list li { position: relative; padding-left: 26px; color: var(--rc-text-dim, #334155); }
.itcare-summary__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--rc-brand-accent, #f28c28);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/16px no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/16px no-repeat;
}
.itcare-summary__sla { font-weight: 700; color: var(--rc-color-ink-strong, #0f172a); }
.itcare-summary__security {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--rc-bg-soft, #f8fafc);
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 12px;
    padding: 12px 14px;
}
.itcare-summary__security-icon { color: #16a34a; flex: 0 0 auto; line-height: 0; margin-top: 2px; }
.itcare-summary__security p { font-size: 0.84rem; color: var(--rc-text-subdued, #475569); margin: 0; line-height: 1.5; }

/* ===================== INFRASTRUKTURA ===================== */
.itcare__infrastructure {
    width: min(calc(100% - 48px), 1280px);
    margin: 0 auto 56px;
    border-radius: 18px;
    overflow: hidden;
    background: #071a33;
    box-shadow: 0 20px 45px rgba(7, 26, 51, 0.18);
}
.itcare__infrastructure img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===================== BENEFIT BAR ===================== */
.itcare__benefits { background: var(--rc-bg-dark, #0f172a); color: #fff; }
.itcare__benefits-in {
    width: min(calc(100% - 48px), 1280px);
    margin-inline: auto;
    padding: 36px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.itcare__benefit { display: flex; gap: 14px; align-items: flex-start; }
.itcare__benefit-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(242, 140, 40, 0.16);
    color: #ffb070;
    overflow: hidden;
}
.itcare__benefit-icon img { display: block; width: 40px; height: 40px; object-fit: contain; }
.itcare__benefit-title { font-weight: 700; margin: 0 0 2px; font-size: 1rem; }
.itcare__benefit-text { font-size: 0.86rem; color: rgba(255, 255, 255, 0.72); margin: 0; line-height: 1.5; }

/* ===================== FAQ ===================== */
.itcare__faq { padding: 56px 0 72px; }
.itcare__faq-in { width: min(calc(100% - 48px), 1280px); margin-inline: auto; }
.itcare__faq-list { display: grid; gap: 12px; max-width: 860px; }
.itcare__faq-item {
    background: #fff;
    border: 1px solid var(--rc-border, #e2e8f0);
    border-radius: 12px;
    padding: 16px 20px;
}
.itcare__faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--rc-color-ink-strong, #0f172a);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.itcare__faq-item summary::-webkit-details-marker { display: none; }
.itcare__faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--rc-brand-accent, #f28c28);
    line-height: 1;
}
.itcare__faq-item[open] summary::after { content: "\2212"; }
.itcare__faq-item p { margin: 12px 0 0; color: var(--rc-text-subdued, #475569); line-height: 1.6; }

/* ===================== RESPONSIVE ===================== */
/* 1440 / 1280 — domyślny kontener, bez zmian siatki */

/* 1024 */
@media (max-width: 1024px) {
    .itcare__hero-in { grid-template-columns: 1fr; gap: 24px; }
    .itcare__hero-art { order: -1; justify-content: flex-start; }
    .itcare__hero-art img { max-width: 280px; }
    .itcare__packages-grid { grid-template-columns: repeat(2, 1fr); }
    .itcare__benefits-in { grid-template-columns: repeat(2, 1fr); }
    .itcare__stepper-list { grid-template-columns: repeat(2, 1fr); }
    .itcare__step:nth-child(2)::after { display: none; }
}

/* 768 */
@media (max-width: 768px) {
    .itcare__hero-in { padding: 44px 0 40px; }
    .itcare__packages-grid { grid-template-columns: 1fr 1fr; }
    .itcare__stepper-list { grid-template-columns: 1fr; gap: 10px; }
    .itcare__step::after { display: none !important; }
    .itcare__fields { grid-template-columns: 1fr; }
    .itcare__benefits-in { grid-template-columns: 1fr; }
}

/* 390 (mobile) */
@media (max-width: 480px) {
    .itcare__hero-in,
    .itcare__packages-in,
    .itcare__wizard-in,
    .itcare__infrastructure,
    .itcare__benefits-in,
    .itcare__faq-in { width: calc(100% - 32px); }
    .itcare__packages-grid { grid-template-columns: 1fr; }
    .itcare__wizard-in { padding: 22px 18px; }
    .itcare__summary { padding: 22px 18px; }
    .itcare__step-label { font-size: 0.9rem; }
    .itcare__hero h1 { font-size: 1.7rem; }
}
