.gx-growth *,
        .gx-growth *::before,
        .gx-growth *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .gx-growth {
            background:  url("https://snoika.swtesthost.space/wp-content/uploads/2025/11/bez-nazvy-1500-x-500-piks.-9-1.png") no-repeat center/cover;
            font-family: Plus Jakarta Sans;
            display: flex;
            justify-content: center;
            padding: 40px;
    border-radius: 16px
        }

        .gx-growth .gx-h2 {
            font-size: 14px;
            font-weight: 700;
            color: #014AE5;
        }

        .gx-growth .gx-h3 {
            font-size: 10px;
            font-weight: 700;
        }

        .gx-growth .gx-h4 {
            font-size: 8px;
            font-weight: 400;
        }

        .gx-growth .gx-h5 {
            font-size: 6px;
            font-weight: 400;
        }

        .gx-growth .growth-section {
            width: 608px;
            height: 455px;
            background: linear-gradient(90deg, #dbe3e8, #ffffff);
            border-radius: 18px;
            padding: 22px 14px;
            overflow: hidden;
    justify-content: center;
    display: flex;
            flex-direction: column;
        }

        .gx-growth .growth-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gx-growth .growth-title {
            color: #111827;
        }

        .gx-growth .stroke {
            margin-bottom: -2px;
        }

        .gx-growth .growth-subtitle {
            color: #6b7280;
            margin-top: 2px;
        }

        .gx-growth .growth-tag {
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 700;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color: transparent;
        }

        .gx-growth .legend-and-metrics {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }

        .gx-growth .growth-legend {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 8px;
            color: #6b7280;
        }

        .gx-growth .dot-actual {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #013199;
        }

        .gx-growth .growth-metric-box {
            display: flex;
            gap: 32px;
        }

        .gx-growth .metric-item {
            text-align: right;
        }

        .gx-growth .metric-number {
            color: #013199;
        }

        .gx-growth .metric-sub {
            color: #6b7280;
            margin-top: 2px;
        }

        .gx-growth .chart-container {
            width: 100%;
            height: 170px;

            padding-left: 6px;
            padding-right: 6px;

            margin-top: 4px;
            margin-bottom: 4px;

            position: relative;
        }

        .gx-growth #growthChart {
            width: calc(100% - 12px) !important;
            height: 100% !important;
        }

        .gx-growth canvas {
            outline: none !important;
        }

        .gx-growth .bottom-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 16px;
        }

        .gx-growth .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 8px 7px;
            border: 1px solid #f1f5f9;
            border: 0.5px solid rgba(0, 0, 0, 0.1);
        }

        .gx-growth .stat-title {
            color: #6b7280;
            margin-bottom: 6px;
        }

        .gx-growth .stat-value {
            color: #013199;
            margin-bottom: 2px;
        }

        .gx-growth .stat-sub {
            color: #6b7280;
        }

        /* ================================
           MOBILE ADAPTIVE
        ================================== */
        @media (max-width: 640px) {
            .gx-growth .growth-section {
                width: 100%;
                height: auto;
                padding: 16px 14px;
                border-radius: 14px;
            }

            .gx-growth .growth-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .gx-growth .growth-tag {
                font-size: 8px;
                padding: 4px 10px;
                border-radius: 14px;
                align-self: flex-end;
            }

            .gx-growth .svg-icon {
                width: 8px;
                height: 8px;
                margin-bottom: -2px;
            }

            .gx-growth .legend-and-metrics {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-top: 10px;
            }

            .gx-growth .growth-legend {
                gap: 8px;
                font-size: 7px;
                order: 1;
            }

            .gx-growth .growth-metric-box {
                width: 100%;
                justify-content: space-between;
                margin-top: 5px;
                margin-bottom: 0;
                gap: 0;
                order: 0;
            }

            .gx-growth .metric-number {
                font-size: 12px;
            }

            .gx-growth .metric-sub {
                font-size: 7px;
            }

            .gx-growth .chart-container {
                height: 180px !important;
                margin-top: 10px;
            }

            .gx-growth #growthChart {
                height: 100% !important;
            }

            .gx-growth .bottom-stats {
                grid-template-columns: 1fr;
                margin-top: 18px;
                gap: 10px;
            }

            .gx-growth .stat-card {
                padding: 10px;
                border-radius: 10px;
            }

            .gx-growth .stat-title {
                font-size: 7px;
            }

            .gx-growth .stat-value {
                font-size: 14px;
            }

            .gx-growth .stat-sub {
                font-size: 8px;
            }
        }