/* Dynamic Theme Variable Architecture */
:root {
    --theme-accent: #1359D6;
    --theme-accent-rgb: 19, 89, 214;
    --theme-accent-hover: #0f46aa;
    --theme-gradient: linear-gradient(135deg, #1359D6 0%, #578FE5 100%);
    --theme-badge-bg: rgba(19, 89, 214, 0.08);
    --theme-badge-border: rgba(19, 89, 214, 0.18);
}

/* 1. SMM Page Theme overrides */
body.service-smm {
    --theme-accent: #1359D6;
    --theme-accent-rgb: 19, 89, 214;
    --theme-accent-hover: #0f46aa;
    --theme-gradient: linear-gradient(135deg, #1359D6 0%, #578FE5 100%);
    --theme-badge-bg: rgba(19, 89, 214, 0.08);
    --theme-badge-border: rgba(19, 89, 214, 0.18);
}



/* SMM Hero Section Specific Styles */
.smm-course-hero-section {
    position: relative;
    padding: 4rem 0 5rem 0;
    background: #FFFFFF; /* Soft warm cream background */
    overflow: hidden;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-sizing: border-box;
}

.smm-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.smm-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Floating Shapes */
.smm-shape {
    display: none; /* Removed background decorative shapes per user request */
}

.shape-orange-semi {
    top: 10%;
    left: 45%;
    width: 32px;
    height: 32px;
    background: #f59e0b; /* Amber/Orange */
    clip-path: polygon(100% 50%, 0 50%, 0 0, 100% 0);
    border-radius: 32px 32px 0 0;
    transform: rotate(45deg);
}

.shape-blue-dot {
    top: 25%;
    left: 52%;
    width: 16px;
    height: 16px;
    background: #38bdf8;
    border-radius: 50%;
}

.shape-yellow-semi {
    top: 30%;
    right: 20%;
    width: 24px;
    height: 12px;
    background: #fbbf24;
    border-radius: 24px 24px 0 0;
    transform: rotate(-30deg);
}

.shape-blue-drop {
    bottom: 15%;
    left: 42%;
    width: 28px;
    height: 28px;
    background: #38bdf8;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
}

.shape-blue-drop-2 {
    top: 12%;
    right: 12%;
    width: 20px;
    height: 20px;
    background: #60a5fa;
    border-radius: 50%;
}

/* Left Column Styling */
.smm-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 10;
}

.smm-eyebrow {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--theme-accent); /* Coral Orange */
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.smm-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a; /* Slate 900 */
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
    position: relative;
}

.smm-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569; /* Slate 600 */
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Actions Row */
.smm-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

.smm-btn-enroll {
    background: var(--theme-accent); /* Coral Orange */
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(var(--theme-accent-rgb), 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
}

.smm-btn-enroll:hover {
    transform: translateY(-3px);
    background: var(--theme-accent-hover); /* Darker Coral Orange */
    box-shadow: 0 15px 30px rgba(216, 94, 73, 0.35);
}

.smm-btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.3s ease;
}

.promo-play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(var(--theme-accent-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-accent); /* Coral Orange */
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--theme-accent-rgb), 0.1);
}

.smm-btn-promo:hover .promo-play-icon {
    border-color: var(--theme-accent);
    background: var(--theme-accent);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(var(--theme-accent-rgb), 0.25);
}

.smm-btn-promo:hover {
    color: var(--theme-accent);
}

/* Social Proof Row */
.smm-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.smm-avatars {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.proof-avatar:first-child {
    margin-left: 0;
}

.smm-stars-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-icon {
    width: 16px;
    height: 16px;
}

.stars-text {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 500;
}

/* Right Column Styling */
.smm-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
}

.smm-person-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
}

.smm-person-bg-circle {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(var(--theme-accent-rgb), 0.08) 0%, rgba(87, 143, 229, 0.02) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
}

.smm-person-image {
    max-width: 95%;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 3;
}

/* Floating Cards Common */
.smm-floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smm-floating-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* 1. Heart Card */
.heart-card {
    top: 10%;
    right: 2%;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 250px;
}

.heart-icon-bg {
    width: 32px;
    height: 32px;
    background: rgba(87, 143, 229, 0.18); /* Light Peach tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.heart-card .card-message {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

/* 2. Income Card */
.income-card {
    right: -5%;
    top: 36%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    width: 170px;
    box-sizing: border-box;
}

.income-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.income-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
}

.income-growth {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--theme-accent); /* Coral Orange */
    margin-bottom: 1rem;
}

.income-chart {
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* 3. Review Card */
.review-card {
    right: -2%;
    bottom: 8%;
    padding: 1.25rem;
    width: 260px;
    box-sizing: border-box;
}

.reviewer-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.review-quote {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
    margin: 0;
}

.reviewer-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.reviewer-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

/* Bottom Brands Bar */
.smm-brands-bar {
    width: 100%;
    margin-top: 5rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    box-sizing: border-box;
}

.brands-bar-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.brands-bar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    width: 100%;
}

.smm-brand-logo-img {
    max-height: 42px;
    max-width: 145px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6); /* Elegant grayscale matching the screenshot */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.smm-brand-logo-img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.06);
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 1200px) {
    .smm-hero-grid {
        gap: 2rem;
    }
    
    .income-card {
        right: 0;
    }
    
    .review-card {
        right: 0;
    }
}

@media (max-width: 992px) {
    .smm-course-hero-section {
        padding: 7rem 0 4rem 0;
    }
    
    .smm-hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .smm-hero-left {
        align-items: center;
        text-align: center;
    }
    
    .smm-desc {
        margin: 0 auto 2.5rem auto;
    }
    
    .smm-actions {
        justify-content: center;
    }
    
    .smm-social-proof {
        justify-content: center;
    }
    
    .smm-hero-right {
        height: auto;
        padding: 2rem 0;
    }
    
    .smm-person-container {
        height: 450px;
    }
    
    .smm-person-bg-circle {
        width: 350px;
        height: 350px;
    }
    
    .heart-card {
        top: 0;
        right: 10%;
    }
    
    .income-card {
        right: 5%;
        top: 30%;
    }
    
    .review-card {
        right: 8%;
        bottom: 0;
    }
    
    .brands-bar-logos {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .smm-course-hero-section {
        padding: 6rem 0 3rem 0;
    }
    
    .smm-title {
        font-size: 2.5rem;
    }
    
    .smm-actions {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .smm-btn-enroll {
        width: 100%;
        max-width: 320px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .smm-person-container {
        height: 380px;
    }
    
    .smm-person-bg-circle {
        width: 280px;
        height: 280px;
    }
    
    .heart-card {
        right: 5%;
        padding: 0.75rem 1rem;
    }
    
    .income-card {
        right: 0;
        top: 25%;
        width: 140px;
        padding: 1rem;
    }
    
    .review-card {
        right: 2%;
        bottom: -5%;
        width: 220px;
        padding: 1rem;
    }
    
    .smm-brands-bar {
        margin-top: 4rem;
        padding-top: 2rem;
    }
    
    .brands-bar-logos {
        gap: 2rem;
    }
    
    .brand-logo {
        font-size: 1.2rem;
    }
    
    .canva-font {
        font-size: 1.35rem;
    }
}

/* SMM Benefits Section Specific Styles */
.smm-benefits-section {
    padding: 6rem 0;
    background-color: transparent;
    box-sizing: border-box;
}

.smm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.smm-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.smm-section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-accent); /* Coral orange SMM accent */
    display: block;
    margin-bottom: 0.75rem;
}

.smm-section-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 750px;
    margin: 0 auto;
}

.smm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.smm-benefit-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.smm-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.benefit-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.75rem;
    transition: transform 0.3s ease;
}

.smm-benefit-card:hover .benefit-icon-box {
    transform: scale(1.1);
}

.benefit-icon-box i,
.benefit-icon-box svg {
    width: 24px;
    height: 24px;
}

/* Card custom accent colors matching brand palette */
.smm-benefit-card.card-coral {
    border-top: 4px solid var(--theme-accent);
}
.smm-benefit-card.card-peach {
    border-top: 4px solid #578FE5;
}
.smm-benefit-card.card-beige {
    border-top: 4px solid #96B9EE;
}

.benefit-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.85rem 0;
    letter-spacing: -0.01em;
}

.benefit-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* SMM Feature Sections Specific Styles */
.smm-feature-section {
    padding: 6rem 0;
    background-color: transparent;
    box-sizing: border-box;
}

.smm-feature-section.bg-light {
    background-color: transparent; /* Soft warm cream matching SMM theme */
}

.smm-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.smm-feature-image-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.smm-feature-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
}

.feature-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.feature-bg-shape {
    position: absolute;
    top: -4%;
    left: -4%;
    width: 108%;
    height: 108%;
    border-radius: 24px;
    z-index: 1;
}

.feature-bg-shape.shape-peach {
    background: linear-gradient(135deg, #fff2ed 0%, #ffd6ca 100%);
    transform: rotate(-2deg);
}

.feature-bg-shape.shape-beige {
    background: linear-gradient(135deg, #fffcf6 0%, #fdeacc 100%);
    transform: rotate(2deg);
}

/* Floating Badges */
.feature-floating-badge {
    position: absolute;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float-badge 6s ease-in-out infinite;
}

.feature-floating-badge.badge-top-right {
    top: 5%;
    right: -8%;
}

.feature-floating-badge.badge-bottom-left {
    bottom: 5%;
    left: -8%;
    animation-delay: -3s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--theme-accent-rgb), 0.1);
    color: var(--theme-accent);
}

.badge-icon i,
.badge-icon svg {
    width: 18px;
    height: 18px;
}

.badge-details {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.badge-stat {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--theme-accent); /* Coral Orange */
    line-height: 1.1;
}

.badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.15rem;
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

.smm-feature-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.smm-feature-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-accent);
    margin-bottom: 1rem;
}

.smm-feature-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem 0;
}

.smm-feature-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 2rem 0;
}

.smm-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-accent);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 0.9rem 2.25rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 25px rgba(var(--theme-accent-rgb), 0.25);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.smm-btn-cta:hover {
    background-color: #e0604b;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--theme-accent-rgb), 0.35);
}

/* Responsive breakdowns for benefits and feature sections */
@media (max-width: 1024px) {
    .smm-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .smm-feature-grid {
        gap: 4rem;
    }
    
    .feature-floating-badge.badge-top-right {
        right: -4%;
    }
    
    .feature-floating-badge.badge-bottom-left {
        left: -4%;
    }
}

@media (max-width: 768px) {
    .smm-benefits-section,
    .smm-feature-section {
        padding: 4.5rem 0;
    }
    
    .smm-feature-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .smm-feature-grid.img-right .smm-feature-text-col {
        order: 2;
    }
    
    .smm-feature-grid.img-right .smm-feature-image-col {
        order: 1;
    }
    
    .smm-feature-image-wrapper {
        max-width: 400px;
    }
    
    .feature-floating-badge.badge-top-right {
        right: 0%;
    }
    
    .feature-floating-badge.badge-bottom-left {
        left: 0%;
    }
}

@media (max-width: 480px) {
    .smm-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .smm-section-title {
        font-size: 1.75rem;
    }
    
    .smm-feature-title {
        font-size: 1.6rem;
    }
    
    .feature-floating-badge {
        padding: 0.75rem 1rem;
        gap: 0.6rem;
    }
}

/* ==========================================
   SMM Workflow (How It Works) Section
   ========================================== */
.smm-workflow-section {
    padding: 6rem 0;
    background-color: transparent;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.workflow-badge {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-accent);
    background-color: var(--theme-badge-bg);
    border: 1px solid var(--theme-badge-border);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1rem;
}

.text-orange-gradient {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smm-section-desc {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 1rem auto 0 auto;
    line-height: 1.6;
}

.smm-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4.5rem;
}

.smm-workflow-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.smm-workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--theme-badge-bg);
    border-color: var(--theme-badge-border);
}

/* Visual Wrapper */
.workflow-visual-wrap {
    height: 160px;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle, rgba(var(--theme-accent-rgb), 0.02) 0%, transparent 70%);
    border-radius: 12px;
}

/* Common Visual Center Button */
.visual-center-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(var(--theme-accent-rgb), 0.25);
    z-index: 5;
}

.visual-center-btn i,
.visual-center-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.25px;
}

/* Step 1 Visual: Concentric pulse rings */
.concentric-ring {
    position: absolute;
    border: 1px solid rgba(var(--theme-accent-rgb), 0.08);
    border-radius: 50%;
    animation: ring-pulse 4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.ring-1 {
    width: 90px;
    height: 90px;
    animation-delay: 0s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 155px;
    height: 155px;
    animation-delay: 2.6s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.15);
        opacity: 0.1;
    }
}

/* Step 2 Visual: Avatar Cloud */
.avatar-cloud {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-avatar {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.cloud-avatar.av-center {
    width: 60px;
    height: 60px;
    z-index: 6;
    border: 3.5px solid var(--theme-accent);
    box-shadow: 0 8px 24px rgba(var(--theme-accent-rgb), 0.3);
    animation: center-glow 3s infinite ease-in-out;
}

@keyframes center-glow {
    0%, 100% { box-shadow: 0 8px 20px rgba(var(--theme-accent-rgb), 0.3); }
    50% { box-shadow: 0 12px 30px rgba(var(--theme-accent-rgb), 0.5); }
}

.cloud-avatar.av-1 {
    width: 32px;
    height: 32px;
    top: 15px;
    left: 45px;
    opacity: 0.6;
}

.cloud-avatar.av-2 {
    width: 36px;
    height: 36px;
    top: 25px;
    right: 40px;
    opacity: 0.7;
}

.cloud-avatar.av-3 {
    width: 30px;
    height: 30px;
    bottom: 20px;
    left: 35px;
    opacity: 0.5;
}

.cloud-avatar.av-4 {
    width: 34px;
    height: 34px;
    bottom: 15px;
    right: 50px;
    opacity: 0.6;
}

.smm-workflow-card:hover .cloud-avatar:not(.av-center) {
    transform: scale(0.9) translate(2px, -2px);
}

/* Step 3 Visual: Mini Dashboard */
.mini-dashboard {
    width: 140px;
    height: 100px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    background-color: #ffffff;
    position: relative;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
}

.dashboard-bar {
    width: 16px;
    background-color: rgba(var(--theme-accent-rgb), 0.08);
    border-radius: 4px;
    transition: height 1s ease-in-out;
}

.bar-1 { height: 35%; animation: grow-bar-1 3s infinite ease-in-out; }
.bar-2 { height: 65%; animation: grow-bar-2 3s infinite ease-in-out; }
.bar-3 { height: 45%; animation: grow-bar-3 3s infinite ease-in-out; }
.bar-4 { height: 80%; animation: grow-bar-4 3s infinite ease-in-out; }

@keyframes grow-bar-1 { 0%, 100% { height: 35%; } 50% { height: 50%; } }
@keyframes grow-bar-2 { 0%, 100% { height: 65%; } 50% { height: 85%; } }
@keyframes grow-bar-3 { 0%, 100% { height: 45%; } 50% { height: 30%; } }
@keyframes grow-bar-4 { 0%, 100% { height: 80%; } 50% { height: 95%; } }

.dashboard-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--theme-badge-bg);
}

.optimizing-pill {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--theme-accent);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 10px rgba(var(--theme-accent-rgb), 0.25);
    white-space: nowrap;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: active-pulse 1.5s infinite ease-in-out;
}

@keyframes active-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
}

/* Step 4 Visual: Orbiting badges */
.orbiting-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-line {
    position: absolute;
    border: 1px dashed rgba(var(--theme-accent-rgb), 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-1 {
    width: 105px;
    height: 105px;
}

.orbit-2 {
    width: 145px;
    height: 145px;
}

.orbit-badge {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 4;
}

.orbit-badge i,
.orbit-badge svg {
    width: 11px;
    height: 11px;
    stroke-width: 2px;
}

/* Social logos specific colors */
.instagram-badge {
    color: #e1306c;
    animation: orbit-instagram 16s infinite linear;
}
.whatsapp-badge {
    color: #25d366;
    animation: orbit-whatsapp 22s infinite linear;
}
.facebook-badge {
    color: #1877f2;
    animation: orbit-facebook 18s infinite linear;
}
.linkedin-badge {
    color: #0077b5;
    animation: orbit-linkedin 20s infinite linear;
}

@keyframes orbit-instagram {
    from { transform: rotate(0deg) translate(52.5px) rotate(0deg); }
    to { transform: rotate(360deg) translate(52.5px) rotate(-360deg); }
}

@keyframes orbit-whatsapp {
    from { transform: rotate(120deg) translate(72.5px) rotate(-120deg); }
    to { transform: rotate(480deg) translate(72.5px) rotate(-480deg); }
}

@keyframes orbit-facebook {
    from { transform: rotate(180deg) translate(52.5px) rotate(-180deg); }
    to { transform: rotate(540deg) translate(52.5px) rotate(-540deg); }
}

@keyframes orbit-linkedin {
    from { transform: rotate(270deg) translate(72.5px) rotate(-270deg); }
    to { transform: rotate(630deg) translate(72.5px) rotate(-630deg); }
}

/* Content Area */
.workflow-step-num {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme-accent);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.workflow-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.85rem 0;
    letter-spacing: -0.01em;
}

.workflow-card-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

/* Responsive Overrides for SMM Workflow Section */
@media (max-width: 1024px) {
    .smm-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .smm-workflow-section {
        padding: 4.5rem 0;
    }
    
    .smm-workflow-grid {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .smm-workflow-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .smm-workflow-card {
        padding: 2rem 1.5rem;
    }
}




/* =============================================================
   Additional Mobile Responsiveness Overrides (Fine-Tuning)
   ============================================================= */

@media (max-width: 768px) {
    /* Stack capabilities bento grid to 1 column on all mobile screens for readability */
    .smm-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    /* Center text alignments on mobile features */
    .smm-feature-text-col {
        align-items: center !important;
        text-align: center !important;
    }
    
    .smm-btn-cta {
        width: 100% !important;
        max-width: 320px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    /* Adjust hero right section containing floating cards for mobile views */
    .smm-hero-right {
        height: auto !important;
        min-height: 320px !important;
        padding: 1.5rem 0 !important;
    }
    
    .smm-person-container {
        height: 280px !important;
    }
    
    .smm-person-bg-circle {
        width: 200px !important;
        height: 200px !important;
    }
    
    /* Hide the large review testimonial card on small mobile screens to save space and prevent overlap */
    .smm-floating-card.review-card {
        display: none !important;
    }
    
    /* Scale and reposition other floating badges to fit small screens */
    .smm-floating-card.income-card {
        right: 4% !important;
        top: 25% !important;
        transform: scale(0.8) !important;
        transform-origin: right center !important;
    }
    
    .smm-floating-card.heart-card {
        left: 4% !important;
        top: 5% !important;
        transform: scale(0.8) !important;
        transform-origin: left center !important;
        max-width: 160px !important;
    }
}
