
        :root {
            --step-color-white: #fff;
            --step-color-gray-disabled: #e8e8e8;
            --step-color-green: #4ca1af;
            --step-color-green-dark: #2c3e50;
            --step-color-green-light: rgba(26, 188, 156, 0.1);
            --step-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            --step-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --premium-font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        /* --- LAYOUT --- */
        .all-progress-bars-container {
            padding: 40px 20px !important;
        }

        .all-progress-bars-container>h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 3rem;
        }

        .progress-section {
            margin-bottom: 5rem;
            padding: 20px 0;
        }

        h2.progress-title {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        .progress-wrapper {
            gap: 4rem;
            align-items: flex-start;
        }

        /* --- LISTE STİLİ (YATAY) --- */
        .step-progress-bar {
            display: flex;
            align-items: flex-start;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            gap: 10px;
        }

        .step-progress-bar li {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        /* Bağlantı Çizgileri */
        .step-progress-bar li:not(:last-child):after {
            content: "";
            position: absolute;
            top: 30px;
            left: calc(50% + 30px);
            width: 30px;
            height: 3px;
            background-color: var(--step-color-gray-disabled);
            z-index: 1;
        }

        .step-progress-bar li.is-complete:not(:last-child):after {
            background-color: var(--step-color-green);
        }

        /* Daire Noktaları */
        .step-progress-bar li:before {
            content: "";
            display: block;
            width: 60px;
            height: 60px;
            background-color: var(--step-color-gray-disabled);
            border-radius: 50%;
            border: 4px solid var(--step-color-white);
            position: relative;
            z-index: 2;
            transition: var(--step-transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            flex-shrink: 0;
        }

        .step-progress-bar span {
            color: #95a5a6;
            font-size: 1rem;
            font-weight: 500;
            text-align: center;
            max-width: 80px;
            line-height: 1.3;
            transition: var(--step-transition);
            word-wrap: break-word;
        }

        /* Tamamlanan Stil */
        .step-progress-bar .is-complete:before {
            background: linear-gradient(135deg, var(--step-color-green), var(--step-color-green-dark));
            box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
        }

        .step-progress-bar .is-complete span {
            color: var(--step-color-green-dark);
            font-weight: 600;
        }

        /* Aktif Stil (Pulse) */
        .step-progress-bar .is-active:before {
            background-color: var(--step-color-white);
            border-color: var(--step-color-green);
            border-width: 5px;
            width: 70px;
            height: 70px;
            box-shadow: 0 0 0 6px rgba(26, 188, 156, 0.15), 0 4px 20px rgba(26, 188, 156, 0.4);
            animation: pulse 2s infinite;
        }

        .step-progress-bar .is-active span {
            color: var(--step-color-green);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Hover Efekti */
        .step-progress-bar li:hover:before {
            transform: translateY(-3px) scale(1.05);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 #2c3e5066;
            }

            70% {
                box-shadow: 0 0 0 15px rgba(26, 188, 156, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(26, 188, 156, 0);
            }
        }

        /* --- PREMIUM CIRCLE STYLE --- */
        .circle-progress-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .premium-circle-card {
            background: #fff;
            padding: 20px;
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .premium-circle-progress {
            position: relative;
            width: 180px;
            height: 180px;
        }

        .premium-circle-progress svg {
            transform: rotate(-90deg);
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .progress-ring-circle {
            stroke-dasharray: 502;
            stroke-dashoffset: 502;
            transition: stroke-dashoffset 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .circle-inner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .percentage-value {
            font-family: var(--premium-font);
            font-size: 2.8rem;
            font-weight: 800;
            color: #2c3e50;
            line-height: 1;
            letter-spacing: -1px;
        }

        .percentage-small-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            color: #bdc3c7;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 2px;
        }

        .percentage-label {
            font-size: 0.75rem;
            color: var(--step-color-green);
            font-weight: 700;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(26, 188, 156, 0.1);
            padding: 4px 10px;
            border-radius: 20px;
        }

        /* --- LARGE DESKTOP (1200px+) --- */
        @media (min-width: 1200px) {
            .step-progress-bar li:not(:last-child):after {
                width: 40px;
                left: calc(50% + 30px);
            }
            
            .step-progress-bar {
                gap: 15px;
            }
        }

        /* --- DESKTOP/TABLET (992px - 1199px) --- */
        @media (min-width: 992px) and (max-width: 1199px) {
            .progress-wrapper {
                gap: 2rem;
            }
            
            .step-progress-bar {
                gap: 5px;
            }

            .step-progress-bar li:before {
                width: 50px;
                height: 50px;
            }

            .step-progress-bar .is-active:before {
                width: 58px;
                height: 58px;
            }

            .step-progress-bar li:not(:last-child):after {
                top: 25px;
                left: calc(50% + 25px);
                width: 20px;
            }

            .step-progress-bar span {
                font-size: 0.75rem;
                max-width: 60px;
            }

            .premium-circle-progress {
                width: 150px;
                height: 150px;
            }

            .percentage-value {
                font-size: 2.2rem;
            }
        }

        /* --- TABLET (768px - 991px) --- */
        @media (min-width: 768px) and (max-width: 991px) {
            .all-progress-bars-container {
                padding: 30px 15px !important;
            }

            .progress-wrapper {
                flex-direction: column;
                gap: 2.5rem;
                align-items: center;
            }

            .step-progress-bar {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 15px;
                justify-content: flex-start;
                gap: 8px;
                -webkit-overflow-scrolling: touch;
            }

            .step-progress-bar li:before {
                width: 45px;
                height: 45px;
            }

            .step-progress-bar .is-active:before {
                width: 52px;
                height: 52px;
            }

            .step-progress-bar li:not(:last-child):after {
                top: 22px;
                left: calc(50% + 22px);
                width: 25px;
            }

            .step-progress-bar span {
                font-size: 0.7rem;
                max-width: 55px;
            }

            h2.progress-title {
                font-size: 1.3rem;
                margin-bottom: 2rem;
            }

            .premium-circle-card {
                padding: 15px;
            }

            .premium-circle-progress {
                width: 160px;
                height: 160px;
            }

            .percentage-value {
                font-size: 2.4rem;
            }
        }

        /* --- MOBILE (576px - 767px) --- */
        @media (min-width: 576px) and (max-width: 767px) {
            .all-progress-bars-container {
                padding: 20px 10px !important;
            }

            .progress-section {
                margin-bottom: 3rem;
                padding: 15px 0;
            }

            .progress-wrapper {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            h2.progress-title {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
                text-align: center;
            }

            .step-progress-bar {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 15px;
                justify-content: flex-start;
                gap: 5px;
                -webkit-overflow-scrolling: touch;
            }

            .step-progress-bar::-webkit-scrollbar {
                height: 4px;
            }

            .step-progress-bar::-webkit-scrollbar-thumb {
                background-color: var(--step-color-green);
                border-radius: 4px;
            }

            .step-progress-bar li:before {
                width: 40px;
                height: 40px;
            }

            .step-progress-bar .is-active:before {
                width: 48px;
                height: 48px;
                border-width: 4px;
            }

            .step-progress-bar li:not(:last-child):after {
                top: 20px;
                left: calc(50% + 20px);
                width: 20px;
                height: 2px;
            }

            .step-progress-bar span {
                font-size: 0.65rem;
                max-width: 50px;
            }

            .step-progress-bar li {
                gap: 8px;
            }

            .premium-circle-card {
                padding: 10px;
                box-shadow: none;
            }

            .premium-circle-progress {
                width: 140px;
                height: 140px;
            }

            .percentage-value {
                font-size: 2rem;
            }

            .percentage-small-label {
                font-size: 0.55rem;
            }

            .percentage-label {
                font-size: 0.65rem;
                padding: 3px 8px;
            }
        }

        /* --- SMALL MOBILE (max-width: 575px) --- */
        @media (max-width: 575px) {
            .all-progress-bars-container {
                padding: 15px 5px !important;
            }

            .progress-section {
                margin-bottom: 2rem;
                padding: 10px 0;
            }

            .progress-wrapper {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            h2.progress-title {
                font-size: 1rem;
                margin-bottom: 1rem;
                text-align: center;
                letter-spacing: 0.5px;
            }

            /* Switch to vertical layout on very small screens */
            .step-progress-bar {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 0;
                padding: 0 10px;
            }

            .step-progress-bar li {
                flex-direction: row;
                align-items: center;
                gap: 15px;
                width: 100%;
                padding: 10px 0;
            }

            .step-progress-bar li:before {
                width: 35px;
                height: 35px;
                flex-shrink: 0;
            }

            .step-progress-bar .is-active:before {
                width: 42px;
                height: 42px;
                border-width: 3px;
            }

            /* Vertical connecting lines */
            .step-progress-bar li:not(:last-child):after {
                top: 45px;
                left: 17px;
                width: 2px;
                height: 20px;
            }

            .step-progress-bar span {
                font-size: 0.8rem;
                max-width: none;
                text-align: left;
            }

            .step-progress-bar .is-active span {
                font-size: 0.85rem;
            }

            .premium-circle-card {
                padding: 8px;
                box-shadow: none;
                background: transparent;
            }

            .premium-circle-progress {
                width: 120px;
                height: 120px;
            }

            .percentage-value {
                font-size: 1.6rem;
            }

            .percentage-small-label {
                font-size: 0.5rem;
                letter-spacing: 1px;
            }

            .percentage-label {
                font-size: 0.6rem;
                padding: 2px 6px;
                margin-top: 3px;
            }

            .facts-counter {
                padding: 15px 0 !important;
            }

            .facts-counter li {
                min-width: 100%;
                flex: 0 0 100%;
            }
        }

        /* --- EXTRA SMALL MOBILE (max-width: 400px) --- */
        @media (max-width: 400px) {
            .step-progress-bar li:before {
                width: 30px;
                height: 30px;
            }

            .step-progress-bar .is-active:before {
                width: 36px;
                height: 36px;
            }

            .step-progress-bar li:not(:last-child):after {
                left: 14px;
                top: 40px;
            }

            .step-progress-bar span {
                font-size: 0.75rem;
            }

            .premium-circle-progress {
                width: 100px;
                height: 100px;
            }

            .percentage-value {
                font-size: 1.4rem;
            }

            .percentage-label {
                font-size: 0.55rem;
            }
        }