/* =======================================================
   CSS: SMM META ADS
   Variables & Global Setup
======================================================== */
:root {
    --color-primary: #820AE5;
    --color-secondary: #F5F0FF;
    --color-primary-light: #e6ccff;
    --color-primary-dark: #2b0e4a;
    --color-text-digibos: #1E0633;
    --color-dark: #333333;
    --color-yellow: #FFD700;
}

html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

.smm-meta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-digibos {
    color: var(--color-text-digibos);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title i,
.section-title .fab,
.section-title .fas {
    margin-right: 8px;
    color: var(--color-primary);
    display: inline-block !important;
}

.smm-meta-hero-list li i,
.smm-meta-benefit-card i,
.smm-meta-usp-card i,
.smm-meta-product i,
.smm-meta-faq i,
.smm-meta-proses i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.smm-meta-hero-list li i,
.smm-meta-usp-list li i {
    color: #28a745 !important;
    font-size: 1.1rem !important;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-container {
        padding: 0 50px !important;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.2rem;
    }

    .section-title i,
    .section-title .fab,
    .section-title .fas {
        font-size: 1.3rem;
    }
}

/* ==============================================
   1. HERO SECTION
============================================== */
.smm-meta-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f0ff;
    padding-top: 80px;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

#smm-meta-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.smm-meta-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(130, 10, 229, 0.55) 0%, rgba(130, 10, 229, 0.2) 50%, rgba(130, 10, 229, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.smm-meta-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.smm-meta-hero-right {
    display: flex;
    justify-content: flex-start;
}

.smm-meta-hero-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.smm-meta-hero-img-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--color-primary);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
    animation: metaOutlinePulse 3s ease-in-out infinite;
}

@keyframes metaOutlinePulse {
    0%, 100% { border-color: var(--color-primary); }
    50% { border-color: var(--color-yellow); }
}

.smm-meta-img-outline-dot {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    z-index: 3;
    animation: metaDotTravel 6s linear infinite;
    box-shadow: 0 0 10px var(--color-primary);
}

@keyframes metaDotTravel {
    0% { top: -6px; left: -6px; }
    25% { top: -6px; left: calc(100% - 6px); }
    50% { top: calc(100% - 6px); left: calc(100% - 6px); }
    75% { top: calc(100% - 6px); left: -6px; }
    100% { top: -6px; left: -6px; }
}

.smm-meta-hero-img-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.smm-meta-hero-left h1 {
    color: var(--color-text-digibos);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.1;
    border-right: 3px solid var(--color-primary);
    white-space: normal;
}

.smm-meta-hero-left h2 {
    color: var(--color-text-digibos);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
}

.highlight-stabilo {
    display: inline-block;
    color: var(--color-primary);
    background-image: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 100%;
    padding: 2px 10px;
    border-radius: 6px;
    transition: background-size 1.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s ease 0.7s;
    will-change: background-size, color, transform;
}

.highlight-stabilo.active {
    background-size: 100% 100%;
    color: #fff !important;
}

.smm-meta-hero-desc {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

.smm-meta-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.smm-meta-hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #000;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    animation: metaListFadeIn 0.6s ease forwards;
}

.smm-meta-hero-list li:nth-child(1) { animation-delay: 2.2s; }
.smm-meta-hero-list li:nth-child(2) { animation-delay: 2.6s; }
.smm-meta-hero-list li:nth-child(3) { animation-delay: 3.0s; }

.smm-meta-hero-list li i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

@keyframes metaListFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.smm-meta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
}

.smm-meta-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(130, 10, 229, 0.4);
    background: #6a00c4;
    color: var(--color-yellow);
}

/* Hero Marquee / Glassmorphism Card */
.smm-meta-hero-marquee {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.smm-meta-glass-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: perspective(800px) rotateX(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.smm-meta-glass-card:hover {
    transform: perspective(800px) rotateX(0deg) translateY(-4px);
    box-shadow: 0 16px 48px rgba(130, 10, 229, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.smm-meta-glass-word {
    padding: 8px 8px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: transform 0.3s ease;
}

.smm-meta-glass-word:hover {
    transform: scale(1.1);
}

.smm-meta-glass-phrase {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.smm-meta-glass-sep {
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 900;
    margin: 0 10px;
    line-height: 1;
}

@keyframes glassPhrase1 {
    0%, 5% { opacity: 0; }
    8%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
}
@keyframes glassPhrase2 {
    0%, 25% { opacity: 0; }
    30%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes glassPhrase3 {
    0%, 50% { opacity: 0; }
    55%, 70% { opacity: 1; }
    75%, 100% { opacity: 0; }
}
@keyframes glassPhrase4 {
    0%, 75% { opacity: 0; }
    80%, 95% { opacity: 1; }
    100% { opacity: 0; }
}

.smm-meta-glass-word.black-bg {
    color: #000;
    font-weight: 900;
}

.smm-meta-glass-word.grey-bg {
    color: #555;
    font-weight: 700;
}

/* HERO: TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .smm-meta-hero-left h1 { font-size: 2rem; }
    .smm-meta-hero-left h2 { font-size: 1.1rem; }
    .smm-meta-hero-desc { font-size: 0.9rem; max-width: 100%; }
    .smm-meta-hero-img-card { max-width: 400px; }

    .smm-meta-glass-card { padding: 16px 20px; }
    .smm-meta-glass-word { font-size: 0.75rem; padding: 6px 8px; }
    .smm-meta-glass-sep { font-size: 1.3rem; margin: 0 6px; }
}

/* HERO: MOBILE */
@media (max-width: 768px) {
    .smm-meta-hero {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: auto;
        align-items: flex-start;
    }

    .smm-meta-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .smm-meta-hero-left { order: 1; }
    .smm-meta-hero-right { order: 2; justify-content: center; }

    .smm-meta-hero-left h1 { font-size: 1.8rem; border-right: none; }
    .smm-meta-hero-left h2 { font-size: 1.1rem; }
    .smm-meta-hero-desc { max-width: 100%; }
    .smm-meta-hero-img-card { max-width: 100%; }

    .smm-meta-hero-marquee { margin-top: 30px; }
    .smm-meta-glass-card { padding: 14px 12px; gap: 0; }
    .smm-meta-glass-word { font-size: 0.65rem; padding: 4px 5px; }
    .smm-meta-glass-sep { display: none; }

    .smm-meta-glass-phrase {
        opacity: 0;
    }

    .smm-meta-glass-phrase:nth-child(1) { animation: glassPhrase1 6s linear infinite; }
    .smm-meta-glass-phrase:nth-child(3) { animation: glassPhrase2 6s linear infinite; }
    .smm-meta-glass-phrase:nth-child(5) { animation: glassPhrase3 6s linear infinite; }
    .smm-meta-glass-phrase:nth-child(7) { animation: glassPhrase4 6s linear infinite; }
}

/* ==============================================
   2. USP SECTION
============================================== */
.smm-meta-usp {
    padding: 80px 0;
    background: #ffffff;
}

.smm-meta-usp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.smm-meta-usp-left h2 {
    margin-bottom: 20px;
}

.smm-meta-usp-sub {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.smm-meta-usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smm-meta-usp-list li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    list-style: none;
}

.smm-meta-usp-list li i {
    color: #28a745 !important;
    font-size: 1.1rem !important;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.smm-meta-usp-list li strong {
    color: var(--color-text-digibos);
}

.smm-meta-usp-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .smm-meta-usp-right {
        order: -1;
    }
}

.smm-meta-usp-img-card {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.smm-meta-usp-img-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(130, 10, 229, 0.15);
}

.smm-meta-usp-img-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-usp-layout { gap: 30px; }
}

@media (max-width: 768px) {
    .smm-meta-usp { padding: 60px 0; }
    .smm-meta-usp-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .smm-meta-usp-right { order: 0; }
}

/* ==============================================
   3. TESTIMONI SECTION (Logo Marquee)
============================================== */
.smm-meta-testimoni {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.smm-meta-testimoni .smm-meta-container {
    box-shadow: 0 -20px 40px -10px rgba(0, 0, 0, 0.08), 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 12px;
}

.smm-meta-logo-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.smm-meta-logo-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: metaLogoScroll 30s linear infinite;
}

@keyframes metaLogoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.smm-meta-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.smm-meta-logo-item:hover {
    border-color: var(--color-primary);
    border-radius: 12px;
}

.smm-meta-logo-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-logo-track { gap: 40px; }
    .smm-meta-logo-item img { height: 40px; }
}

@media (max-width: 768px) {
    .smm-meta-testimoni { padding: 40px 0; }
    .smm-meta-logo-track { gap: 30px; }
    .smm-meta-logo-item img { height: 32px; }
    .smm-meta-logo-item { padding: 8px 12px; }
}

/* ==============================================
   4. PROSES SECTION
============================================== */
.smm-meta-proses {
    padding: 80px 0;
    background: #fafafa;
}

.smm-meta-proses-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.smm-meta-proses-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.smm-meta-proses-step.animate {
    animation: metaProsesStepIn 0.8s ease forwards;
}

.smm-meta-proses-step:nth-child(1).animate { animation-delay: 0.1s; }
.smm-meta-proses-step:nth-child(2).animate { animation-delay: 0.3s; }
.smm-meta-proses-step:nth-child(3).animate { animation-delay: 0.5s; }

@keyframes metaProsesStepIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.smm-meta-proses-step.animate .smm-meta-proses-badge {
    animation: metaBadgePop 0.6s ease forwards;
}

.smm-meta-proses-step:nth-child(1).animate .smm-meta-proses-badge { animation-delay: 0.2s; }
.smm-meta-proses-step:nth-child(2).animate .smm-meta-proses-badge { animation-delay: 0.4s; }
.smm-meta-proses-step:nth-child(3).animate .smm-meta-proses-badge { animation-delay: 0.6s; }

@keyframes metaBadgePop {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.2) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.smm-meta-proses-step.animate .smm-meta-proses-line {
    animation: metaLineGrow 0.8s ease forwards;
}

.smm-meta-proses-step:nth-child(1).animate .smm-meta-proses-line { animation-delay: 0.3s; }
.smm-meta-proses-step:nth-child(2).animate .smm-meta-proses-line { animation-delay: 0.5s; }

@keyframes metaLineGrow {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

.smm-meta-proses-line {
    position: absolute;
    top: 30px;
    left: calc(50% + 35px);
    right: calc(-50% + 35px);
    height: 3px;
    background: #E2E8F0;
    z-index: 1;
    transform-origin: left;
}

.smm-meta-proses-step:last-child .smm-meta-proses-line {
    display: none;
}

.smm-meta-proses-badge {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-yellow);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(130, 10, 229, 0.3);
}

.smm-meta-proses-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin: 0 0 10px 0;
}

.smm-meta-proses-content p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-proses-steps { gap: 25px; }
    .smm-meta-proses-badge { width: 50px; height: 50px; font-size: 1.2rem; }
    .smm-meta-proses-content h3 { font-size: 1rem; }
}

@media (max-width: 768px) {
    .smm-meta-proses { padding: 60px 0; }
    .smm-meta-proses-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .smm-meta-proses-step {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }
    .smm-meta-proses-badge {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .smm-meta-proses-line { display: none; }
    .smm-meta-proses-content { flex: 1; }
    .smm-meta-proses-content h3 { font-size: 1rem; }
    .smm-meta-proses-content p { font-size: 0.85rem; }
}

/* ==============================================
   5. BENEFIT SECTION
============================================== */
.smm-meta-benefit {
    padding: 80px 0;
    background: #ffffff;
}

.smm-meta-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.smm-meta-benefit-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.smm-meta-benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(130, 10, 229, 0.12);
}

.smm-meta-benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.smm-meta-benefit-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.smm-meta-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin: 0;
}

.smm-meta-benefit-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .smm-meta-benefit-card { padding: 25px 20px; }
    .smm-meta-benefit-card h3 { font-size: 1rem; }
}

@media (max-width: 768px) {
    .smm-meta-benefit { padding: 60px 0; }
    .smm-meta-benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .smm-meta-benefit-card { padding: 25px 20px; }
}

/* ==============================================
   6. PRODUCT SECTION (Pricing Cards)
============================================== */
.smm-meta-product {
    padding: 80px 0;
    background: #ffffff;
}

.main-header.hero-section-in-view .header-nav .nav-list a,
.main-header.hero-section-in-view .header-action .btn-running-border {
    color: var(--color-dark);
}

.main-header.hero-section-in-view .header-logo img {
    filter: brightness(0.2);
}

.main-header.hero-section-in-view .header-nav .dropdown-menu a {
    color: initial;
}

.main-header.hero-section-in-view .mobile-menu-toggle span {
    background-color: var(--color-dark);
}

.main-header.hero-section-in-view .header-action .btn-running-border {
    border-color: var(--color-dark);
}

.main-header.hero-section-in-view .header-action .btn-running-border:hover {
    background: var(--color-dark);
    color: #fff;
}

.smm-meta-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    align-items: start;
}

.smm-meta-pricing-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.smm-meta-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.smm-meta-pricing-card.smm-meta-recommended {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(130, 10, 229, 0.12);
    animation: metaRecommendedPulse 2.5s infinite ease-in-out;
}

@keyframes metaRecommendedPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(130, 10, 229, 0.12); }
    50% { box-shadow: 0 10px 40px rgba(130, 10, 229, 0.25); }
}

.smm-meta-pricing-card.smm-meta-recommended:hover {
    transform: translateY(-5px);
}

.smm-meta-rec-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 0 0 8px 8px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    z-index: 5;
    text-transform: uppercase;
}

.smm-meta-pricing-header {
    padding: 30px 25px 15px;
    text-align: center;
}

.smm-meta-pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 10px;
    display: inline-block;
    position: relative;
}

.smm-meta-pricing-header h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.smm-meta-pricing-card.animated-header .smm-meta-pricing-header h3::after {
    transform: scaleX(1);
}

.smm-meta-pricing-header p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.smm-meta-pricing-summary {
    margin: 0 20px;
    padding: 18px;
    background: #f8f9fc;
    border-radius: 10px;
    text-align: center;
}

.smm-meta-recommended .smm-meta-pricing-summary {
    background: var(--color-primary-light);
}

.smm-meta-summary-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-text-digibos);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smm-meta-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.smm-meta-summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 6px;
}

.smm-meta-summary-list li:last-child {
    margin-bottom: 0;
}

.smm-meta-summary-list .smm-meta-check {
    color: #28a745;
    font-weight: 900;
    flex-shrink: 0;
}

.smm-meta-pricing-price {
    padding: 20px 25px;
    text-align: center;
}

.smm-meta-price-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.smm-meta-price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text-digibos);
    transition: color 0.3s ease;
}

.smm-meta-recommended .smm-meta-price-value {
    color: var(--color-primary);
}

.smm-meta-recommended .smm-meta-price-value:hover {
    color: #6a00c4;
}

.smm-meta-price-period {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

.smm-meta-pricing-cta {
    padding: 0 25px 20px;
    text-align: center;
}

.smm-meta-cta-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.smm-meta-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(130, 10, 229, 0.3);
    background: #6a00c4;
    color: var(--color-yellow);
}

.smm-meta-cta-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.smm-meta-cta-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.smm-meta-pricing-accordion {
    margin: 0 25px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.smm-meta-accordion-toggle {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-digibos);
    background: #f8f9fc;
    transition: background 0.3s;
    user-select: none;
}

.smm-meta-accordion-toggle:hover {
    background: #f0f4fb;
}

.smm-meta-accordion-arrow {
    width: 20px;
    height: 20px;
    fill: var(--color-text-digibos);
    transition: transform 0.3s ease;
}

.smm-meta-pricing-accordion.active .smm-meta-accordion-arrow {
    transform: rotate(180deg);
}

.smm-meta-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

.smm-meta-pricing-accordion.active .smm-meta-accordion-body {
    max-height: 500px;
}

.smm-meta-accordion-list {
    list-style: none;
    padding: 15px 16px;
    margin: 0;
    border-top: 1px solid #e2e8f0;
}

.smm-meta-accordion-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
}

.smm-meta-accordion-list li:last-child {
    margin-bottom: 0;
}

.smm-meta-accordion-list li .smm-meta-check {
    color: #28a745;
    font-weight: 900;
    flex-shrink: 0;
}

.smm-meta-accordion-list li .smm-meta-cross {
    color: #dc3545;
    font-weight: 900;
    flex-shrink: 0;
}

.smm-meta-loading {
    padding: 40px;
    font-size: 1rem;
    color: #888;
    grid-column: 1 / -1;
}

/* Trial Card */
.smm-meta-trial-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    background: var(--color-secondary);
    border-radius: 14px;
    padding: 30px 40px;
    margin-top: 40px;
    border: 2px solid var(--color-primary);
    animation: metaTrialPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(130, 10, 229, 0.1);
}

@keyframes metaTrialPulse {
    0%, 100% { border-color: var(--color-primary); box-shadow: 0 8px 30px rgba(130, 10, 229, 0.1); }
    50% { border-color: var(--color-yellow); box-shadow: 0 8px 40px rgba(130, 10, 229, 0.25); }
}

.smm-meta-trial-logo-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.smm-meta-trial-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.smm-meta-trial-middle h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-text-digibos);
    margin: 0 0 8px;
}

.smm-meta-trial-middle > p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.4;
}

.smm-meta-trial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.smm-meta-trial-features span {
    background: #fff;
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--color-primary);
}

.smm-meta-trial-cta-col {
    text-align: center;
    min-width: 220px;
}

.smm-meta-trial-cta-col h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 16px;
}

.smm-meta-cta-trial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.smm-meta-cta-trial:hover {
    transform: translateY(-3px);
    background: #6a00c4;
    color: var(--color-yellow);
    box-shadow: 0 8px 20px rgba(130, 10, 229, 0.3);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-product-grid { gap: 20px; }
    .smm-meta-pricing-header { padding: 25px 20px 12px; }
    .smm-meta-pricing-header h3 { font-size: 1.2rem; }
    .smm-meta-price-value { font-size: 1.7rem; }
    .smm-meta-pricing-summary { margin: 0 15px; padding: 14px; }
    .smm-meta-pricing-accordion { margin: 0 20px 20px; }
    .smm-meta-trial-card { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .smm-meta-trial-logo-wrap { margin: 0 auto; }
    .smm-meta-trial-features { justify-content: center; }
}

@media (max-width: 768px) {
    .smm-meta-product { padding: 60px 0; }
    .smm-meta-product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .smm-meta-pricing-card.smm-meta-recommended { order: -1; }
    .smm-meta-pricing-header { padding-top: 35px; }
    .smm-meta-trial-card { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 24px 20px; }
    .smm-meta-trial-logo-wrap { margin: 0 auto; }
    .smm-meta-trial-features { justify-content: center; }
    .smm-meta-trial-cta-col { min-width: auto; }
}

/* ==============================================
   7. FAQ SECTION
============================================== */
.smm-meta-faq {
    padding: 80px 0;
    background: #fafafa;
}

.smm-meta-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.smm-meta-faq-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.smm-meta-faq-q {
    padding: 18px 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.smm-meta-faq-q:hover {
    background: #f0f4fb;
}

.smm-meta-faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: 0.3s;
}

.smm-meta-faq-card.active .smm-meta-faq-icon {
    transform: rotate(45deg);
    color: #e5007e;
}

.smm-meta-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #555;
}

.smm-meta-faq-card.active .smm-meta-faq-a {
    max-height: 300px;
    padding-bottom: 18px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smm-meta-faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .smm-meta-faq-q { padding: 15px; font-size: 0.95rem; }
    .smm-meta-faq-a { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .smm-meta-faq { padding: 60px 0; }
    .smm-meta-faq-layout {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 20px;
    }
}