/* === HERO ALARM === */
        .hero-alarm {
            position: relative;
            background: #0a0e1a;
            color: #fff;
            padding: 140px 0 100px;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-alarm::before {
            content: '';
            position: absolute;
            top: -15%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255,107,107,0.22) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 14s ease-in-out infinite;
            filter: blur(20px);
        }
        .hero-alarm::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -8%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,212,59,0.16) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 11s ease-in-out infinite reverse;
            filter: blur(20px);
        }
        .hero-alarm__grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(255,107,107,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,107,107,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 1;
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
                    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        }
        .hero-alarm__particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }
        .hero-alarm__particle--1 { top: 18%; left: 8%; width: 6px; height: 6px; background: #ff6b6b; box-shadow: 0 0 24px #ff6b6b; animation: float-slow 8s ease-in-out infinite; }
        .hero-alarm__particle--2 { top: 70%; left: 14%; width: 4px; height: 4px; background: #ffd43b; box-shadow: 0 0 20px #ffd43b; animation: float-slow 11s ease-in-out infinite reverse; }
        .hero-alarm__particle--3 { top: 28%; right: 12%; width: 8px; height: 8px; background: #ff9999; box-shadow: 0 0 28px #ff9999; animation: float-slow 10s ease-in-out infinite; }
        .hero-alarm__particle--4 { top: 75%; right: 18%; width: 5px; height: 5px; background: #ffd43b; box-shadow: 0 0 22px #ffd43b; animation: float-slow 9s ease-in-out infinite reverse; }

        .hero-alarm .container {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }
        .hero-alarm__text { max-width: 600px; }
        .hero-alarm__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(255,107,107,0.12);
            border: 1px solid rgba(255,107,107,0.3);
            border-radius: 50px;
            color: #ff9999;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 28px;
        }
        .hero-alarm__badge::before {
            content: '⚠';
            font-size: 0.95rem;
        }
        .hero-alarm h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 3.6vw, 2.95rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.8px;
            margin-bottom: 22px;
        }
        .hero-alarm h1 .gradient-warm {
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-alarm h1 .gradient {
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-alarm__desc {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.65);
            margin-bottom: 36px;
            line-height: 1.75;
        }
        .hero-alarm__actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-alarm__meta {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .hero-alarm__meta-num {
            font-family: 'Outfit', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-alarm__meta-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* === HERO VISUAL: alarm dashboard === */
        .hero-alarm__visual {
            position: relative;
        }
        .alarm-card {
            position: relative;
            background: linear-gradient(180deg, rgba(20,28,50,0.95), rgba(10,14,26,0.95));
            border: 1px solid rgba(255,107,107,0.18);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(255,107,107,0.3), 0 16px 32px rgba(0,0,0,0.4);
        }
        .alarm-card__bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,107,107,0.06);
        }
        .alarm-card__dots {
            display: flex;
            gap: 6px;
        }
        .alarm-card__dots span {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }
        .alarm-card__dots span:nth-child(1) { background: #ff6b6b; }
        .alarm-card__dots span:nth-child(2) { background: #ffd43b; }
        .alarm-card__dots span:nth-child(3) { background: #00d4aa; }
        .alarm-card__title {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            color: #ff9999;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .alarm-card__title::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff6b6b;
            box-shadow: 0 0 12px #ff6b6b;
            animation: pulse-dot 1.2s ease infinite;
        }
        .alarm-card__hero {
            padding: 28px 22px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            text-align: center;
        }
        .alarm-card__hero-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .alarm-card__hero-amount {
            font-family: 'Outfit', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 6px;
        }
        .alarm-card__hero-sub {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }
        .alarm-card__list {
            padding: 8px 0;
        }
        .alarm-card__item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 11px 22px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            transition: background 0.3s;
        }
        .alarm-card__item:last-child { border-bottom: none; }
        .alarm-card__item-text {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .alarm-card__item-text::before {
            content: '⚠';
            color: #ff6b6b;
            font-size: 0.9rem;
        }
        .alarm-card__item-tag {
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: #ff9999;
            background: rgba(255,107,107,0.15);
            padding: 3px 9px;
            border-radius: 50px;
            border: 1px solid rgba(255,107,107,0.3);
            white-space: nowrap;
        }
        .alarm-card__foot {
            padding: 14px 22px;
            background: linear-gradient(135deg, rgba(0,212,170,0.08), rgba(108,99,255,0.08));
            border-top: 1px solid rgba(0,212,170,0.2);
            font-size: 0.82rem;
            color: rgba(255,255,255,0.75);
            text-align: center;
        }
        .alarm-card__foot strong { color: #33ffd2; }

        @media (max-width: 1024px) {
            .hero-alarm .container { grid-template-columns: 1fr; gap: 40px; }
            .hero-alarm__text { max-width: 100%; }
            .hero-alarm__visual { max-width: 540px; margin: 0 auto; width: 100%; }
        }
        @media (max-width: 768px) {
            .hero-alarm { padding: 90px 0 50px; min-height: auto; }
            .hero-alarm .container { gap: 32px; }
            .hero-alarm h1 { font-size: 1.85rem; letter-spacing: -0.5px; margin-bottom: 16px; }
            .hero-alarm__desc { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
            .hero-alarm__badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 18px; }
            .hero-alarm__actions .btn { padding: 13px 22px; font-size: 0.92rem; flex: 1 1 auto; justify-content: center; min-width: 140px; }
            .hero-alarm__meta { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; padding-top: 22px; }
            .hero-alarm__meta-num { font-size: 1.3rem; }
            .hero-alarm__meta-label { font-size: 0.72rem; }
            .alarm-card { display: none; }
            .hero-alarm__visual { display: none; }
        }

        /* === PENALTIES GRID === */
        .penalty-card {
            background: #fff;
            border: 1px solid rgba(255,107,107,0.12);
            border-left: 4px solid #ff6b6b;
            border-radius: 12px;
            padding: 24px;
            transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .penalty-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(255,107,107,0.12);
            border-left-color: #c53030;
        }
        .penalty-card__amount {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.45rem;
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        .penalty-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.02rem;
            color: #1a1f36;
            margin-bottom: 10px;
        }
        .penalty-card p {
            font-size: 0.88rem;
            color: #5a6178;
            line-height: 1.7;
        }
        .penalty-card__art {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.72rem;
            color: #c53030;
            background: rgba(255,107,107,0.08);
            padding: 3px 9px;
            border-radius: 50px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .penalty-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) { .penalty-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .penalty-grid { grid-template-columns: 1fr; } }

        /* === KALKULATOR KARY === */
        .penalty-calc-section {
            background: #0a0e1a;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .penalty-calc-section::before {
            content: '';
            position: absolute;
            top: -180px; left: -150px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255,107,107,0.22), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 13s ease-in-out infinite;
            filter: blur(20px);
        }
        .penalty-calc-section::after {
            content: '';
            position: absolute;
            bottom: -200px; right: -150px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255,212,59,0.18), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 11s ease-in-out infinite reverse;
            filter: blur(20px);
        }
        .penalty-calc-section__grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(255,107,107,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,107,107,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 1;
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
                    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        }
        .penalty-calc-section .container {
            position: relative;
            z-index: 2;
        }
        .penalty-calc-section .section-title { color: #fff; }
        .penalty-calc-section .section-desc { color: rgba(255,255,255,0.65); }
        .penalty-calc-section .section-tag {
            background: rgba(255,107,107,0.12);
            border-color: rgba(255,107,107,0.3);
            color: #ff9999;
        }

        .pc-wrapper-outer {
            padding: 1.5px;
            background: linear-gradient(135deg, rgba(255,107,107,0.55), rgba(255,212,59,0.55), rgba(255,107,107,0.55));
            border-radius: 26px;
            box-shadow: 0 30px 80px -20px rgba(255,107,107,0.3), 0 16px 40px rgba(0,0,0,0.4);
        }
        .pc-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: linear-gradient(180deg, rgba(20,28,50,0.92), rgba(10,14,26,0.96));
            border-radius: 24px;
            padding: 40px;
            -webkit-backdrop-filter: blur(20px);
                    backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        .pc-wrapper::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 80%; height: 60%;
            background: radial-gradient(ellipse at center, rgba(255,107,107,0.08), transparent 70%);
            pointer-events: none;
            filter: blur(40px);
        }
        @media (max-width: 900px) {
            .pc-wrapper { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
        }
        .pc-inputs label {
            display: block;
            color: rgba(255,255,255,0.85);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.92rem;
            margin: 18px 0 8px;
        }
        .pc-inputs label:first-of-type { margin-top: 0; }
        .pc-inputs input[type="number"],
        .pc-inputs select {
            width: 100%;
            background: rgba(255,255,255,0.04);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            padding: 13px 16px;
            outline: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .pc-inputs input[type="number"]:hover,
        .pc-inputs select:hover {
            border-color: rgba(255,107,107,0.3);
            background: rgba(255,255,255,0.06);
        }
        .pc-inputs input[type="number"]:focus,
        .pc-inputs select:focus {
            border-color: #ff6b6b;
            background: rgba(255,107,107,0.05);
            box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
        }
        .pc-inputs__hint {
            font-size: 0.77rem;
            color: rgba(255,255,255,0.4);
            margin-top: 5px;
            display: block;
        }
        .pc-inputs select option {
            background: #1a1f36;
            color: #fff;
        }
        .pc-results {
            background: linear-gradient(135deg, rgba(255,107,107,0.08), rgba(255,212,59,0.08));
            border: 1px solid rgba(255,107,107,0.2);
            border-radius: 18px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
            position: relative;
            z-index: 1;
        }
        .pc-results::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,107,107,0.6), transparent);
            border-radius: 18px 18px 0 0;
        }
        .pc-result-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding-bottom: 14px;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
        }
        .pc-result-row:last-of-type { border-bottom: none; padding-bottom: 0; }
        .pc-result-row__label { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
        .pc-result-row__val {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.45rem;
            color: #fff;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .pc-result-row__val.bump {
            animation: bumpUp 0.4s ease;
        }
        @keyframes bumpUp {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }
        .pc-result-row--max .pc-result-row__val {
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
            filter: drop-shadow(0 0 12px rgba(255,107,107,0.3));
        }
        .pc-result-row--protection .pc-result-row__val {
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.55rem;
            filter: drop-shadow(0 0 14px rgba(0,212,170,0.4));
        }
        .pc-cta {
            margin-top: 12px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.06);
            text-align: center;
        }
        .pc-cta .btn {
            box-shadow: 0 8px 32px rgba(0,212,170,0.4);
        }
        @media (max-width: 600px) {
            .pc-wrapper { padding: 18px; gap: 18px; }
            .pc-wrapper-outer { border-radius: 22px; }
            .pc-results { padding: 20px 18px; gap: 14px; border-radius: 16px; }
            .pc-result-row { flex-direction: column; align-items: flex-start; gap: 4px; padding-bottom: 12px; }
            .pc-result-row__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; color: rgba(255,255,255,0.55); }
            .pc-result-row__val { font-size: 1.35rem; white-space: nowrap; }
            .pc-result-row--max .pc-result-row__val { font-size: 1.7rem; }
            .pc-result-row--protection .pc-result-row__val { font-size: 1.4rem; }
            .pc-cta .btn { width: 100%; padding: 14px 18px; font-size: 0.92rem; justify-content: center; white-space: nowrap; }
            .pc-inputs label { font-size: 0.86rem; margin: 14px 0 6px; }
            .pc-inputs input[type="number"], .pc-inputs select { padding: 11px 14px; font-size: 0.95rem; }
            .pc-inputs__hint { font-size: 0.72rem; }
        }

        /* === PROCEDURA UOKIK timeline === */
        .uokik-flow {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            position: relative;
        }
        .uokik-flow::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: linear-gradient(90deg, #00d4aa, #ff6b6b);
            opacity: 0.25;
            z-index: 0;
        }
        .uokik-step {
            background: #fff;
            border: 1px solid rgba(108,99,255,0.1);
            border-radius: 16px;
            padding: 28px 18px;
            position: relative;
            z-index: 1;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }
        .uokik-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(255,107,107,0.12);
        }
        .uokik-step__num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b6b, #c53030);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            margin: -50px auto 16px;
            box-shadow: 0 8px 24px rgba(255,107,107,0.4);
        }
        .uokik-step h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.98rem;
            color: #1a1f36;
            margin-bottom: 8px;
        }
        .uokik-step p {
            font-size: 0.82rem;
            color: #5a6178;
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .uokik-flow { grid-template-columns: repeat(2, 1fr); }
            .uokik-flow::before { display: none; }
        }
        @media (max-width: 600px) {
            .uokik-flow { grid-template-columns: 1fr; }
        }

        /* === CTA cross-link === */
        .protection-cta {
            background: linear-gradient(135deg, #0a0e1a 0%, #1a1f36 50%, #142940 100%);
            border-radius: 28px;
            padding: 64px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .protection-cta::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,212,170,0.18), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 12s ease-in-out infinite;
        }
        .protection-cta > * { position: relative; z-index: 2; }
        .protection-cta__eyebrow {
            display: inline-block;
            color: #33ffd2;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .protection-cta h2 {
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .protection-cta h2 .gradient {
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .protection-cta__desc {
            color: rgba(255,255,255,0.65);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 640px;
            margin: 0 auto 32px;
        }
        .protection-cta__bullets {
            display: flex;
            gap: 28px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 36px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        .protection-cta__bullets span::before {
            content: '✓';
            color: #00d4aa;
            font-weight: 800;
            margin-right: 6px;
        }
        @media (max-width: 600px) {
            .protection-cta { padding: 40px 20px; border-radius: 20px; }
            .protection-cta__bullets { gap: 12px; font-size: 0.85rem; }
        }

        /* Errors list — wspólne style */
        .errors-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            max-width: 920px;
            margin: 0 auto;
        }
        .error-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            background: #fff;
            border: 1px solid rgba(108,99,255,0.08);
            border-radius: 14px;
            padding: 20px 24px;
            transition: all .3s;
        }
        .error-item:hover {
            transform: translateX(4px);
            border-color: rgba(255,107,107,0.2);
            box-shadow: 0 4px 20px rgba(255,107,107,0.06);
        }
        .error-item__icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: rgba(255,107,107,0.1);
            color: #ff6b6b;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .error-item__body h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: #1a1f36;
            margin-bottom: 6px;
        }
        .error-item__body p {
            font-size: 0.9rem;
            color: #5a6178;
            line-height: 1.7;
        }
