:root {
    --smlm-primary: #8C66FF;
    --smlm-secondary: #00D1B2;
    --smlm-bg: #F8F9FD;
    --smlm-dark: #1A1A1A;
    --smlm-white: #FFFFFF;
    --smlm-text: #555555;
}

.smlm-hero {
    position: relative;
    background-color: var(--smlm-bg);
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.smlm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Background Blobs */
.smlm-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    border-radius: 50%;
}
.smlm-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--smlm-primary), transparent);
    top: -100px; right: -100px;
}
.smlm-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #A5F3E9, transparent);
    bottom: -50px; left: 20%;
}

/* Text Content */
.smlm-title {
    font-size: 78px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--smlm-dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
}
.smlm-description {
    font-size: 18px;
    color: var(--smlm-text);
    max-width: 450px;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Cards Base */
.smlm-card {
    background: var(--smlm-white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Revenue Card (Bottom Left) */
.smlm-card-revenue {
    width: 380px;
    margin-bottom: 40px;
}
.smlm-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.smlm-label { font-weight: 600; color: #888; font-size: 14px; flex-grow: 1; }
.smlm-avatar-circle { width: 30px; height: 30px; border-radius: 50%; background: #9BB8A9; }
.smlm-revenue-value {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.smlm-currency { font-size: 18px; color: #888; align-self: center; }
.smlm-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}
.smlm-bar {
    flex: 1;
    background: #EBE6FF;
    border-radius: 8px;
}
.smlm-bar-active { background: var(--smlm-primary); background: linear-gradient(45deg, var(--smlm-primary), #B193FF); }
.smlm-chart-labels { display: flex; justify-content: space-between; font-size: 12px; color: #AAA; margin-top: 10px; }

/* CTA Button */
.smlm-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 500px;
}
.smlm-btn-pill {
    background: #222;
    padding: 8px 10px 8px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}
.smlm-btn-pill:hover { transform: translateY(-2px); }
.smlm-btn-text { color: white; font-weight: 600; }
.smlm-btn-arrow {
    background: var(--smlm-primary);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}
.smlm-cta-subtext { font-size: 12px; color: #888; line-height: 1.4; }

/* Right Column Visuals */
.smlm-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.smlm-hero-shot {
    width: 100%;
    max-width: 520px;
}

.smlm-hero-shot-main {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 48px;
    display: block;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.18);
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.smlm-hero-thumb-row {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.smlm-hero-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: #ffffff;
}

.smlm-card-growth { width: 340px; transform: translateX(-40px); }
.smlm-tabs { display: flex; gap: 10px; margin: 15px 0; font-size: 12px; }
.smlm-tabs span { padding: 4px 10px; border: 1px solid #EEE; border-radius: 20px; color: #AAA; }
.smlm-tabs .active { background: #F0F0F0; color: #333; }
.smlm-big-num { font-size: 32px; font-weight: 800; }
.smlm-percent-badge { color: var(--smlm-secondary); font-size: 12px; font-weight: 700; background: #E6FBF9; padding: 4px 8px; border-radius: 6px; }
.smlm-progress-bar { height: 12px; background: #E6FBF9; border-radius: 10px; margin: 15px 0; }
.smlm-progress-fill { width: 60%; height: 100%; background: var(--smlm-secondary); border-radius: 10px; }
.smlm-card-footer { display: flex; justify-content: space-between; font-size: 12px; color: #AAA; }

.smlm-card-promo {
    width: 320px;
    background: white;
    position: relative;
}
.smlm-promo-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.smlm-settings-icon { font-size: 24px; padding: 10px; background: #F8F8F8; border-radius: 12px; }
.smlm-promo-percent { font-size: 28px; font-weight: 700; }
.smlm-learn-more { 
    background: #F9E2B2; border: none; padding: 12px 24px; 
    border-radius: 15px; font-weight: 700; margin-top: 15px; cursor: pointer;
}

.smlm-card-track { width: 340px; transform: translateX(-20px); }
.smlm-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.smlm-tag { font-size: 11px; padding: 6px 12px; border: 1px solid #EEE; border-radius: 20px; color: #777; font-weight: 500; }

/* Responsive */
@media (max-width: 1024px) {
    .smlm-container { grid-template-columns: 1fr; }
    .smlm-visuals { align-items: center; margin-top: 60px; }
    .smlm-card-growth, .smlm-card-track { transform: none; }
    .smlm-title { font-size: 56px; }
    .smlm-hero-shot, .smlm-hero-thumb-row { max-width: 560px; }
}


:root {
    --mlm-text-dark: #1e1e1e;
    --mlm-text-grey: #6e6e73;
    --mlm-accent: #8b5cf6;
    --mlm-bg: #ffffff;
}

.mlm-report-section {
    padding: 100px 20px;
    background-color: var(--mlm-bg);
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
}

.mlm-report-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Visual Column */
.mlm-report-visual-col {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
}

.mlm-report-art-box {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fceaff 0%, #e8f0ff 100%);
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS-based 3D Blob Art */
.mlm-report-blob {
    width: 240px;
    height: 240px;
    background: linear-gradient(45deg, #4f46e5, #ec4899, #06b6d4);
    filter: blur(2px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: inset 10px 10px 50px rgba(255,255,255,0.4);
    animation: mlmBlobRotate 8s ease-in-out infinite;
}

@keyframes mlmBlobRotate {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1); }
    50% { border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%; transform: scale(1.1); }
}

/* Growth Card Overlay */
.mlm-report-growth-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 20px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mlm-report-growth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mlm-report-percent {
    font-size: 28px;
    font-weight: 800;
    color: var(--mlm-text-dark);
}

.mlm-report-arrow-up {
    background: var(--mlm-accent);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mlm-report-growth-text {
    font-size: 13px;
    color: var(--mlm-text-grey);
    line-height: 1.4;
}

/* List Card Overlay */
.mlm-report-list-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 24px;
    width: 300px;
    margin-left: -20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    z-index: 2;
}

.mlm-report-list-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--mlm-text-dark);
}

.mlm-report-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mlm-report-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
}
.avatar-1 { background: linear-gradient(#34d399, #059669); }
.avatar-2 { background: linear-gradient(#f472b6, #db2777); }

.mlm-report-item-info h6 {
    font-size: 14px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.mlm-report-item-info p {
    font-size: 11px;
    color: var(--mlm-text-grey);
    margin: 0;
}

/* Content Column */
.mlm-report-content-col {
    flex: 1;
}

.mlm-report-header-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.mlm-report-counter {
    font-size: 64px;
    font-weight: 300;
    color: #e5e5e7;
    line-height: 1;
}

.mlm-report-heading {
    font-size: 42px;
    font-weight: 600;
    color: var(--mlm-text-dark);
    line-height: 1.1;
    max-width: 400px;
}

.mlm-report-description {
    font-size: 16px;
    color: var(--mlm-text-grey);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.mlm-report-actions {
    display: flex;
    gap: 15px;
}

.mlm-report-btn {
    padding: 18px 35px;
    border-radius: 100px;
    border: 1px solid #d1d1d6;
    background: transparent;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.mlm-report-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .mlm-report-container { flex-direction: column; text-align: center; gap: 60px; }
    .mlm-report-header-row { flex-direction: column; align-items: center; gap: 10px; }
    .mlm-report-visual-col { justify-content: center; }
    .mlm-report-actions { justify-content: center; }
    .mlm-report-list-card { margin-left: 0; margin-top: -50px; }
}


:root {
    --innov-purple: #8C66FF;
    --innov-text-main: #1A1A1A;
    --innov-text-gray: #757575;
    --innov-bg-light: #F8F9FA;
    --innov-white: #FFFFFF;
}

.innov-section {
    padding: 80px 20px;
    background-color: var(--innov-white);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
}

.innov-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Header & Typography */
.innov-header-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.innov-number {
    font-size: 42px;
    font-weight: 300;
    color: #D1D1D1;
    line-height: 1;
}

.innov-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--innov-text-main);
    margin: 0;
}

.innov-title-faded {
    color: #D1D1D1;
}

.innov-description {
    color: var(--innov-text-gray);
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Action Row (Icons & Badge) */
.innov-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.innov-icon-group {
    display: flex;
    gap: 12px;
}

.innov-icon-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.innov-icon-btn i {
    color: #1f2937;
}

.innov-icon-btn:hover {
    background: #E8E8E8;
    transform: translateY(-2px);
}

.innov-sales-badge {
    background: var(--innov-purple);
    border-radius: 20px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 25px;
}

.innov-price-box {
    background: var(--innov-white);
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 20px;
}

.innov-sales-info {
    display: flex;
    flex-direction: column;
    color: var(--innov-white);
}

.innov-sales-label {
    font-size: 18px;
    font-weight: 500;
}

.innov-sales-growth {
    font-size: 12px;
    opacity: 0.9;
}

/* Visual Column (Image & Floating Card) */
.innov-visual {
    position: relative;
}

.innov-img-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    background: #111; /* Dark background as seen in image */
    border-radius: 40px;
    overflow: hidden;
}

.innov-main-img-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e1e, #2d1b4e);
    /* Later you can add background-image here */
}

.innov-floating-card {
    position: absolute;
    bottom: 40px;
    left: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    width: 220px;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

.innov-card-icon {
    background: var(--innov-purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.innov-card-label {
    font-size: 14px;
    color: var(--innov-text-gray);
    display: block;
    margin-bottom: 5px;
}

.innov-card-value {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.innov-card-growth {
    font-size: 13px;
    color: #2ECC71;
    font-weight: 600;
}

.innov-card-growth small {
    color: var(--innov-text-gray);
    font-weight: 400;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
    .innov-container { grid-template-columns: 1fr; }
    .innov-title { font-size: 36px; }
    .innov-img-placeholder { height: 400px; }
}



:root {
    --rvlt-dark: #1a1a1a;
    --rvlt-gray-text: #6e6e73;
    --rvlt-border: #e5e5e7;
    --rvlt-bg-soft: #f5f5f7;
    --rvlt-white: #ffffff;
}

.rvlt-section {
    padding: 80px 20px;
    background-color: var(--rvlt-white);
    font-family: 'Inter', -apple-system, sans-serif;
}

.rvlt-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.rvlt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.rvlt-main-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--rvlt-dark);
}

.rvlt-faded-text {
    color: #D1D1D6; /* Faded/Outline style */
}

.rvlt-header-desc {
    font-size: 16px;
    color: var(--rvlt-gray-text);
    text-align: right;
    line-height: 1.5;
}

/* Content Grid */
.rvlt-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Visual Column (Left) */
.rvlt-img-placeholder {
    width: 100%;
    height: 550px;
    background:
        linear-gradient(135deg, rgba(15, 12, 41, 0.55), rgba(48, 43, 99, 0.55), rgba(36, 36, 62, 0.55)),
        url("../image/subscription-mlm-plan/support-member.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.rvlt-floating-login {
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 260px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.rvlt-login-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.rvlt-login-sub { font-size: 11px; color: #888; line-height: 1.4; margin-bottom: 20px; }

.rvlt-otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.rvlt-otp-inputs span {
    width: 38px;
    height: 38px;
    background: #f0f0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    color: #444;
}

.rvlt-login-btn {
    width: 100%;
    background: #2d2d2d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}

.rvlt-resend { font-size: 10px; color: #666; margin-bottom: 4px; }
.rvlt-resend a { color: #333; text-decoration: none; font-weight: 700; }
.rvlt-timer { font-size: 10px; color: #999; }

/* Steps Column (Right) */
.rvlt-steps-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rvlt-step-item {
    border: 1px solid var(--rvlt-border);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rvlt-step-header {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.rvlt-step-num {
    font-size: 32px;
    font-weight: 300;
    color: #D1D1D6;
    line-height: 1;
}

.rvlt-step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--rvlt-dark);
}

.rvlt-step-content {
    font-size: 14px;
    color: var(--rvlt-gray-text);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rvlt-step-arrow {
    margin-left: auto;
    width: 44px;
    height: 44px;
    background: var(--rvlt-bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Active State */
.rvlt-step-item.rvlt-active {
    background-color: var(--rvlt-bg-soft);
    border-color: transparent;
}

.rvlt-step-item.rvlt-active .rvlt-step-content {
    max-height: 150px;
    margin-top: 10px;
}

.rvlt-step-item.rvlt-active .rvlt-step-arrow {
    background: var(--rvlt-white);
}

@media (max-width: 992px) {
    .rvlt-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rvlt-header-desc { text-align: left; }
    .rvlt-content-grid { grid-template-columns: 1fr; }
}
