/* ==================== SMO BANNER MAIN CONTAINER ==================== */
        .smo-banner-main-wrapper {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 50%, rgba(15, 20, 25, 0.95) 100%);
            overflow: hidden;
            padding: 20px;
        }

        /* ==================== BACKGROUND ANIMATION LAYERS ==================== */
        .smo-bg-animation-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        /* ==================== HEXAGON GRID BACKGROUND ==================== */
        .smo-hexagon-grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(30deg, transparent 24%, rgba(255, 107, 107, 0.04) 25%, rgba(255, 107, 107, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 107, 107, 0.04) 75%, rgba(255, 107, 107, 0.04) 76%, transparent 77%, transparent),
                linear-gradient(150deg, transparent 24%, rgba(255, 107, 107, 0.04) 25%, rgba(255, 107, 107, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 107, 107, 0.04) 75%, rgba(255, 107, 107, 0.04) 76%, transparent 77%, transparent);
            background-size: 70px 70px;
            animation: smo-hexagon-scroll 30s linear infinite;
        }

        @keyframes smo-hexagon-scroll {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(70px) translateX(35px); }
        }

        /* ==================== SOCIAL PLATFORM ORBS ==================== */
        .smo-platform-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.07;
            animation: smo-orb-dance 20s ease-in-out infinite;
        }

        .smo-orb-instagram {
            width: 320px;
            height: 320px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            top: -80px;
            left: -80px;
            animation-delay: 0s;
        }

        .smo-orb-facebook {
            width: 280px;
            height: 280px;
            background: #4267B2;
            bottom: -60px;
            right: -60px;
            animation-delay: 4s;
        }

        .smo-orb-tiktok {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #00f7ef, #ff0050);
            top: 35%;
            right: -50px;
            animation-delay: 8s;
        }

        @keyframes smo-orb-dance {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -25px) scale(1.05); }
            50% { transform: translate(-25px, 30px) scale(0.95); }
            75% { transform: translate(25px, 20px) scale(1.02); }
        }

        /* ==================== MAIN CONTENT GRID LAYOUT ==================== */
        .smo-content-grid-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1350px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* ==================== LEFT CONTENT SECTION ==================== */
        .smo-left-content-section {
            animation: smo-content-slide-left 1s ease-out;
        }

        @keyframes smo-content-slide-left {
            from {
                opacity: 0;
                transform: translateX(-70px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ==================== MAIN HEADLINE TITLE ==================== */
        .smo-main-headline-title {
            font-size: clamp(2.3rem, 6.5vw, 4.2rem);
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.05;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .smo-headline-gradient-accent {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 35%, #00f7ef 70%, #ff0050 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ==================== SUBTITLE DESCRIPTION ==================== */
        .smo-subtitle-description {
            font-size: clamp(1.05rem, 2.8vw, 1.3rem);
            color: #d5d5d5;
            margin-bottom: 28px;
            line-height: 1.75;
        }

        .smo-subtitle-accent-text {
            color: #ff6b6b;
            font-weight: 800;
        }

        /* ==================== PLATFORM ICONS SHOWCASE ==================== */
        .smo-platform-icons-showcase {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .smo-platform-icon-item {
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 107, 0.15);
            border: 2px solid rgba(255, 107, 107, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .smo-platform-icon-item:hover {
            background: rgba(255, 107, 107, 0.25);
            border-color: rgba(255, 107, 107, 0.6);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        }

        /* ==================== STRATEGY HIGHLIGHT SECTION ==================== */
        .smo-strategy-highlight-section {
            background: rgba(255, 107, 107, 0.08);
            border: 2px solid rgba(255, 107, 107, 0.2);
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
        }

        .smo-strategy-label {
            color: #ff6b6b;
            font-size: 0.95rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 14px;
        }

        .smo-strategy-features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .smo-strategy-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #c0c0c0;
            font-size: 0.92rem;
        }

        .smo-strategy-feature-badge {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* ==================== CTA BUTTONS CONTAINER ==================== */
        .smo-cta-buttons-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 38px;
        }

        .smo-btn-base-style {
            padding: 16px 42px;
            border: none;
            border-radius: 50px;
            font-size: 1.08rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
        }

        .smo-btn-primary-gradient {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: #fff;
            box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
        }

        .smo-btn-primary-gradient:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255, 107, 107, 0.6);
        }

        .smo-btn-secondary-outline {
            background: transparent;
            color: #00f7ef;
            border: 2px solid #00f7ef;
            box-shadow: 0 0 20px rgba(0, 247, 239, 0.2);
        }

        .smo-btn-secondary-outline:hover {
            background: rgba(0, 247, 239, 0.08);
            transform: translateY(-4px);
            box-shadow: 0 10px 35px rgba(0, 247, 239, 0.4);
        }

        .smo-btn-base-style::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.25);
            transition: left 0.4s ease;
        }

        .smo-btn-base-style:hover::before {
            left: 100%;
        }

        /* ==================== METRICS SHOWCASE ==================== */
        .smo-metrics-showcase {
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
        }

        .smo-metric-item {
            display: flex;
            flex-direction: column;
        }

        .smo-metric-value-number {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b6b, #00f7ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .smo-metric-label-text {
            font-size: 0.92rem;
            color: #888;
            margin-top: 6px;
        }

        /* ==================== RIGHT VISUAL SECTION ==================== */
        .smo-right-visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: smo-content-slide-right 1s ease-out;
        }

        @keyframes smo-content-slide-right {
            from {
                opacity: 0;
                transform: translateX(70px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ==================== VISUAL DISPLAY CONTAINER ==================== */
        .smo-visual-display-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ==================== SMO SHOWCASE CARD ==================== */
        .smo-showcase-card-main {
            width: 88%;
            height: 88%;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 107, 107, 0.25);
            border-radius: 28px;
            backdrop-filter: blur(15px);
            padding: 45px;
            position: relative;
            overflow: hidden;
            animation: smo-card-rotate-subtle 8s ease-in-out infinite;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @keyframes smo-card-rotate-subtle {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            50% { transform: translateY(-18px) rotateY(2deg); }
        }

        .smo-showcase-card-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff6b6b, #ee5a6f, transparent);
            animation: smo-card-line-scan 5s ease-in-out infinite;
        }

        @keyframes smo-card-line-scan {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .smo-showcase-card-main::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00f7ef, transparent);
            animation: smo-card-bottom-glow 5s ease-in-out infinite;
        }

        @keyframes smo-card-bottom-glow {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.8; }
        }

        /* ==================== SMO ICON EMOJI ==================== */
        .smo-icon-emoji-large {
            font-size: 90px;
            margin-bottom: 28px;
            animation: smo-icon-wobble 4s ease-in-out infinite;
        }

        @keyframes smo-icon-wobble {
            0%, 100% { transform: rotate(-3deg); }
            25% { transform: rotate(3deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(-3deg); }
        }

        /* ==================== SMO CONTENT WRAPPER ==================== */
        .smo-content-wrapper-section {
            text-align: center;
            width: 100%;
        }

        .smo-showcase-title-main {
            color: #fff;
            font-size: 1.95rem;
            margin-bottom: 16px;
            font-weight: 900;
        }

        .smo-showcase-description-text {
            color: #aaa;
            font-size: 0.98rem;
            margin-bottom: 28px;
            line-height: 1.7;
        }

        /* ==================== SOCIAL STATS CARDS ==================== */
        .smo-social-stats-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .smo-social-stat-card {
            background: rgba(255, 107, 107, 0.08);
            border-left: 4px solid #ff6b6b;
            padding: 14px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .smo-stat-label-smo {
            color: #c0c0c0;
            font-size: 0.88rem;
        }

        .smo-stat-value-smo {
            color: #ff6b6b;
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* ==================== RESPONSIVE TABLET (768PX) ==================== */
        @media (max-width: 768px) {
            .smo-content-grid-main {
                grid-template-columns: 1fr;
                gap: 38px;
                padding: 20px;
            }

            .smo-main-headline-title {
                font-size: 1.9rem;
            }

            .smo-subtitle-description {
                font-size: 1rem;
            }

            .smo-cta-buttons-container {
                gap: 12px;
            }

            .smo-btn-base-style {
                padding: 13px 32px;
                font-size: 0.95rem;
            }

            .smo-visual-display-container {
                height: 350px;
            }

            .smo-showcase-card-main {
                padding: 30px;
            }

            .smo-icon-emoji-large {
                font-size: 65px;
            }

            .smo-showcase-title-main {
                font-size: 1.5rem;
            }

            .smo-orb-instagram {
                width: 250px;
                height: 250px;
            }

            .smo-orb-facebook {
                width: 200px;
                height: 200px;
            }

            .smo-orb-tiktok {
                width: 180px;
                height: 180px;
            }
        }

        /* ==================== RESPONSIVE MOBILE (480PX) ==================== */
        @media (max-width: 480px) {
            .smo-banner-main-wrapper {
                min-height: 100vh;
                padding: 12px;
            }

            .smo-main-headline-title {
                font-size: 1.4rem;
            }

            .smo-subtitle-description {
                font-size: 0.9rem;
            }

            .smo-cta-buttons-container {
                flex-direction: column;
                gap: 10px;
            }

            .smo-btn-base-style {
                width: 100%;
                text-align: center;
                padding: 12px 22px;
                font-size: 0.9rem;
            }

            .smo-visual-display-container {
                height: 280px;
            }

            .smo-showcase-card-main {
                padding: 18px;
            }

            .smo-icon-emoji-large {
                font-size: 50px;
            }

            .smo-showcase-title-main {
                font-size: 1.2rem;
            }

            .smo-strategy-feature-item {
                font-size: 0.8rem;
            }

            .smo-metrics-showcase {
                gap: 25px;
            }

            .smo-metric-value-number {
                font-size: 1.8rem;
            }

            .smo-strategy-features-list {
                grid-template-columns: 1fr;
            }
        }

        /* ==================== PAGE LOAD ANIMATION ==================== */
        @keyframes smo-page-load {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .smo-banner-main-wrapper {
            animation: smo-page-load 1.3s ease-out;
        }