/**
 * SRK Seo Audit Steps Shortcode
 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* MAIN WRAPPER - full width */
        .srk-seo-steps-wrapper {
            width: 100%;
            background: transparent;
        }

        .srk-steps-container {
            width: 100%;
            padding: 50px;
            position: relative;
            border-radius: 30px;
            overflow: hidden;  
            background: linear-gradient(
                135deg,
                #f0f4fa 0%,
                #e8eef5 15%,
                #fef9f0 30%,
                #eef2f8 45%,
                #fdf7ec 60%,
                #e9eff6 75%,
                #f2f6fc 90%,
                #fef7ed 100%
            );
            background-size: 400% 400%;
            animation: srkEnhancedGradientShift 10s cubic-bezier(0.45, 0.05, 0.2, 0.99) infinite alternate;
        }

        /* Animated gradient */
        @keyframes srkEnhancedGradientShift {
            0% {
                background-position: 0% 50%;
            }
            25% {
                background-position: 50% 30%;
            }
            50% {
                background-position: 100% 50%;
            }
            75% {
                background-position: 50% 70%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Glow effect - NOW CONTAINED INSIDE */
        .srk-steps-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at center,
                rgba(242, 133, 0, 0.08) 0%,
                rgba(8, 28, 89, 0.04) 40%,
                transparent 80%
            );
            animation: srkPulseGlow 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes srkPulseGlow {
            0% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                opacity: 0.3;
            }
        }

        /* Light beam effect - NOW CONTAINED INSIDE */
        .srk-steps-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(242, 133, 0, 0.04) 40px,
                rgba(242, 133, 0, 0.07) 60px,
                transparent 60px,
                transparent 100px
            );
            animation: srkSlowDrift 25s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes srkSlowDrift {
            0% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            50% {
                transform: translate(1%, 1%) rotate(2deg) scale(1.02);
            }
            100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
        }

        /* Header styles */
        .srk-steps-header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .srk-steps-header h2 {
            font-size: clamp(1.5rem, 5vw, 2.2rem);
            font-weight: 700;
            color: #081c59;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .srk-steps-header h2 span {
            color: #f28500;
        }

        .srk-steps-header .srk-subhead {
            font-size: clamp(0.9rem, 3vw, 1rem);
            color: #4a5568;
            max-width: 550px;
            margin: 0 auto;
        }

        /* GRID - 3 columns in a ROW */
        .srk-steps-grid {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        /* Step cards */
        .srk-step-card {
            flex: 1;
            min-width: 250px;
            background: #ffffff;
            border-radius: 1.25rem;
            padding: 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #eef2f8;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .srk-step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #081c59, #f28500);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .srk-step-card:hover::before {
            transform: scaleX(1);
        }

        .srk-step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px -8px rgba(8, 28, 89, 0.2);
            border-color: #f28500;
        }

        .srk-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #081c59;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.9rem;
            width: 32px;
            height: 32px;
            border-radius: 40px;
            margin-bottom: 1rem;
        }

        .srk-step-icon {
            font-size: 2.2rem;
            color: #f28500;
            margin-bottom: 0.8rem;
            background: rgba(242, 133, 0, 0.1);
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            transition: all 0.2s;
        }

        .srk-step-card:hover .srk-step-icon {
            background: rgba(242, 133, 0, 0.15);
            transform: scale(1.05);
        }

        .srk-step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #081c59;
            margin: 0.6rem 0 0.5rem 0;
            line-height: 1.3;
        }

        .srk-step-description {
            color: #4a5568;
            line-height: 1.5;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        /* RESPONSIVE */
        @media (max-width: 850px) {
            .srk-steps-grid {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .srk-step-card {
                flex: 1 1 280px;
                min-width: 260px;
            }
        }

        @media (max-width: 700px) {
            .srk-steps-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .srk-step-card {
                width: 100%;
                max-width: 450px;
                flex: none;
            }
        }

        @media (max-width: 480px) {
            .srk-steps-container {
                padding: 50px;
            }
        }
