/* Start custom CSS for html, class: .elementor-element-7b96f2c *//* 26_article_smm.css */
.smm-landing-page-wrapper {
    /* Vibrant Theme Variables for SMM */
    --smm-primary: #ec4899; /* Pink 500 */
    --smm-primary-hover: #db2777; /* Pink 600 */
    --smm-secondary: #8b5cf6; /* Violet 500 */
    --smm-tertiary: #f97316; /* Orange 500 */
    --smm-bg-main: #ffffff;
    --smm-bg-light: #f8fafc; /* Slate 50 */
    --smm-text-main: #0f172a; /* Slate 900 */
    --smm-text-muted: #64748b; /* Slate 500 */
    --smm-border: #e2e8f0; /* Slate 200 */
    --smm-gradient: linear-gradient(135deg, var(--smm-primary), var(--smm-secondary), var(--smm-tertiary));
    --smm-gradient-hover: linear-gradient(135deg, var(--smm-secondary), var(--smm-primary));

    font-family: 'Inter', 'Kanit', sans-serif;
    color: var(--smm-text-main);
    background-color: var(--smm-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    
    /* Strict Reset */
    h1, h2, h3, h4, h5, h6, p, ul, li {
        margin: 0;
        padding: 0;
        font-family: inherit;
        color: inherit;
        line-height: normal;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    * {
        box-sizing: border-box;
    }

    /* Layout */
    .smm-landing-section {
        padding: 100px 0;
        position: relative;
    }

    .smm-bg-alt {
        background-color: var(--smm-bg-light);
    }

    .smm-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 10;
    }

    /* Vibrant Loop Animations Background */
    .smm-blur-circle {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.15;
        z-index: 1;
        pointer-events: none;
        animation: smmFloat 15s ease-in-out infinite alternate;
    }
    .smm-blur-pink {
        width: 500px; height: 500px; background: var(--smm-primary);
        top: -100px; left: -100px;
    }
    .smm-blur-violet {
        width: 400px; height: 400px; background: var(--smm-secondary);
        bottom: 10%; right: -50px; animation-delay: -5s;
    }
    .smm-blur-orange {
        width: 350px; height: 350px; background: var(--smm-tertiary);
        top: 40%; left: 30%; animation-delay: -10s; opacity: 0.1;
    }

    /* Core Animations Setup */
    @keyframes smmFadeInUp {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes smmFloat {
        0% { transform: translate(0, 0); }
        33% { transform: translate(20px, -30px); }
        66% { transform: translate(-20px, 10px); }
        100% { transform: translate(0, 0); }
    }

    @keyframes smmFloatVertical {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
    }

    @keyframes smmPulseGlow {
        0% { box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); }
        50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
        100% { box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); }
    }
    
    @keyframes smmBgRotate {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Utility Animation Classes */
    .animate-up { animation: smmFadeInUp 0.8s ease-out forwards; }
    .animate-float { animation: smmFloatVertical 4s ease-in-out infinite; }
    .animate-float-slow { animation: smmFloatVertical 6s ease-in-out infinite; }
    .animate-glow-loop { animation: smmPulseGlow 3s infinite ease-in-out; }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }

    /* Buttons */
    .smm-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 36px;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1.125rem;
    }

    .smm-btn-primary {
        background: var(--smm-gradient);
        background-size: 200% auto;
        color: #ffffff;
        box-shadow: 0 10px 20px -5px rgba(236, 72, 153, 0.4);
        animation: smmBgRotate 4s ease infinite;
    }

    .smm-btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.5);
    }

    .smm-btn-outline {
        background-color: transparent;
        color: var(--smm-text-main);
        border: 2px solid var(--smm-border);
    }

    .smm-btn-outline:hover {
        border-color: var(--smm-secondary);
        color: var(--smm-secondary);
        background-color: rgba(139, 92, 246, 0.05);
    }

    /* Hero Section */
    .smm-hero {
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 80px 0 0;
    }

    .smm-hero-content {
        flex: 1;
    }

    .smm-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        background: linear-gradient(to right, rgba(236,72,153,0.1), rgba(139,92,246,0.1));
        color: var(--smm-primary);
        border: 1px solid rgba(236,72,153,0.2);
        font-weight: 600;
        font-size: 0.875rem;
        border-radius: 100px;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .smm-hero-title {
        font-size: 4rem;
        font-weight: 800;
        color: var(--smm-text-main);
        line-height: 1.15;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }

    .smm-hero-title span {
        background: var(--smm-gradient);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: smmBgRotate 5s ease infinite;
    }

    .smm-hero-desc {
        font-size: 1.25rem;
        color: var(--smm-text-muted);
        margin-bottom: 40px;
        max-width: 600px;
    }

    .smm-hero-actions {
        display: flex;
        gap: 16px;
    }

    .smm-hero-image {
        flex: 1.1;
        position: relative;
    }

    .smm-hero-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 4px solid white;
    }

    /* Section Headers */
    .smm-section-header {
        text-align: center;
        margin-bottom: 64px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .smm-section-title {
        font-size: 2.75rem;
        font-weight: 800;
        color: var(--smm-text-main);
        margin-bottom: 20px;
    }

    .smm-section-desc {
        font-size: 1.125rem;
        color: var(--smm-text-muted);
    }

    /* Services Grid Pattern */
    .smm-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
        z-index: 2;
    }

    .smm-card {
        background-color: white;
        border-radius: 20px;
        padding: 40px 32px;
        border: 1px solid var(--smm-border);
        transition: all 0.3s ease;
        text-align: center;
    }

    .smm-card:hover {
        transform: translateY(-8px);
        border-color: var(--smm-secondary);
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.08);
    }

    .smm-card-icon {
        width: 72px;
        height: 72px;
        background: var(--smm-bg-light);
        color: var(--smm-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto 24px;
        transition: all 0.3s ease;
    }

    .smm-card:hover .smm-card-icon {
        background: var(--smm-gradient);
        color: white;
        transform: scale(1.1);
    }

    .smm-card-title {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--smm-text-main);
    }

    .smm-card-text {
        color: var(--smm-text-muted);
        font-size: 0.95rem;
    }

    /* Content Blocks */
    .smm-block {
        display: flex;
        align-items: center;
        gap: 64px;
        position: relative;
        z-index: 2;
    }

    .smm-block.reverse {
        flex-direction: row-reverse;
    }

    .smm-block-image {
        flex: 1;
        position: relative;
    }

    /* Modern abstract frame behind block images */
    .smm-block-image::after {
        content: '';
        position: absolute;
        inset: -15px;
        background: var(--smm-gradient);
        border-radius: 28px;
        z-index: -1;
        opacity: 0.15;
    }

    .smm-block-image img {
        width: 100%;
        border-radius: 24px;
        border: 4px solid white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .smm-block-content {
        flex: 1;
    }

    .smm-list {
        margin-top: 32px;
    }

    .smm-list-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .smm-list-icon {
        background: var(--smm-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 28px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .smm-list-text h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--smm-text-main);
        margin-bottom: 8px;
    }

    .smm-list-text p {
        color: var(--smm-text-muted);
        line-height: 1.6;
    }

    /* Platforms Strip */
    .smm-platforms {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        padding: 60px 0;
        border-top: 1px solid var(--smm-border);
        border-bottom: 1px solid var(--smm-border);
        background: white;
    }
    
    .smm-platform-icon {
        font-size: 3rem;
        color: var(--smm-text-muted);
        transition: all 0.3s ease;
        opacity: 0.6;
    }

    .smm-platform-icon:hover {
        opacity: 1;
        transform: translateY(-5px);
    }
    
    .smm-platform-icon.fb:hover { color: #1877F2; }
    .smm-platform-icon.ig:hover { color: #E4405F; }
    .smm-platform-icon.line:hover { color: #00C300; }
    .smm-platform-icon.tt:hover { color: #000000; }
    .smm-platform-icon.yt:hover { color: #FF0000; }

    /* FAQ Section */
    .smm-accordion {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        z-index: 2;
    }

    .smm-accordion-item {
        background-color: white;
        border-radius: 16px;
        border: 1px solid var(--smm-border);
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }

    .smm-accordion-item:hover {
        border-color: var(--smm-primary);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .smm-accordion-header {
        padding: 24px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        cursor: pointer;
    }

    .smm-accordion-icon {
        background: var(--smm-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 24px;
        font-weight: bold;
    }

    .smm-accordion-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--smm-text-main);
    }

    .smm-accordion-body {
        padding: 0 24px 24px 64px;
        color: var(--smm-text-muted);
        line-height: 1.7;
    }

    /* CTA Section */
    .smm-cta {
        background: var(--smm-gradient);
        background-size: 200% auto;
        animation: smmBgRotate 6s ease infinite;
        border-radius: 32px;
        padding: 80px 40px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .smm-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
        opacity: 0.5;
    }

    .smm-cta-content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto;
    }

    .smm-cta-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 24px;
        color: white;
    }

    .smm-cta-desc {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 40px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .smm-hero, .smm-block { flex-direction: column; text-align: center; }
        .smm-block.reverse { flex-direction: column; }
        .smm-hero-title { font-size: 3.5rem; }
        .smm-list-item { text-align: left; }
        .smm-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .smm-grid { grid-template-columns: 1fr; }
        .smm-landing-section { padding: 60px 0; }
        .smm-section-title { font-size: 2.25rem; }
        .smm-hero-title { font-size: 2.5rem; }
        .smm-hero-actions { flex-direction: column; }
        .smm-hero-actions .smm-btn { width: 100%; }
        .smm-platforms { padding: 30px 0; gap: 24px; }
    }
}/* End custom CSS */