/* =========================================
DIRECT SELLING SOFTWARE HERO SECTION
FULL UPDATED CSS
PREMIUM + COMPACT + RESPONSIVE
========================================= */

.digiature-ds-hero-wrap {
    position: relative;
    padding: 80px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

/* =========================================
GRID LINES
========================================= */

.digiature-ds-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);

    background-size: 70px 70px;
    z-index: 1;
}

/* =========================================
FLOATING BLUR SHAPES
========================================= */

.digiature-ds-floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.38;
    z-index: 1;
}

.shape-one {
    width: 300px;
    height: 300px;
    background: #5b7cff;
    top: -80px;
    left: -90px;
}

.shape-two {
    width: 260px;
    height: 260px;
    background: #00c39a;
    right: -50px;
    top: 20%;
}

.shape-three {
    width: 250px;
    height: 250px;
    background: #8d5bff;
    bottom: -100px;
    left: 35%;
}

/* =========================================
LEFT CONTENT
========================================= */

.digiature-ds-hero-content {
    position: relative;
    z-index: 5;
    padding-right: 24px;
}

/* BADGE */

.digiature-ds-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(91, 124, 255, 0.09);
    color: #3151d3;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
    border: 1px solid rgba(91, 124, 255, 0.14);
    backdrop-filter: blur(10px);
}

.digiature-ds-top-badge i {
    font-size: 13px;
}

/* HEADING */

.digiature-ds-hero-content h1 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 600;
    color: #0d1726;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.digiature-ds-hero-content h1 span {
    display: block;
    color: #3151d3;
    font-weight: 500;
}

/* PARAGRAPH */

.digiature-ds-hero-content p {
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
    color: #627082;
    margin-bottom: 0;
}

/* =========================================
HIGHLIGHT BOX
========================================= */

.digiature-ds-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.digiature-ds-highlight-box:hover {
    transform: translateY(-6px);
}

.digiature-ds-highlight-box p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

.digiature-ds-highlight-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 15px;
    background: linear-gradient(135deg, #3151d3, #00c39a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

/* =========================================
BUTTONS
========================================= */

.digiature-ds-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.digiature-ds-primary-btn,
.digiature-ds-outline-btn {
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s ease;
}

.digiature-ds-primary-btn {
    background: linear-gradient(135deg, #3151d3, #00c39a);
    color: #fff;
    box-shadow: 0 16px 40px rgba(49, 81, 211, 0.2);
}

.digiature-ds-primary-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(49, 81, 211, 0.28);
}

.digiature-ds-outline-btn {
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0d1726;
    background: #fff;
}

.digiature-ds-outline-btn:hover {
    background: #0d1726;
    color: #fff;
    transform: translateY(-5px);
}

/* =========================================
RIGHT IMAGE AREA
========================================= */

.digiature-ds-dashboard-area {
    position: relative;
    z-index: 5;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE BOX */

.digiature-ds-main-image {
    position: relative;
    width: 88%;
    height: 430px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    background: #eef4ff;
}

/* IMAGE */

.digiature-ds-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: 0.7s ease;
    display: block;
}

/* IMAGE HOVER */

.digiature-ds-main-image:hover img {
    transform: scale(1.03);
}

/* OVERLAY */

.digiature-ds-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 17, 31, 0.08),
        rgba(8, 17, 31, 0.01)
    );
}

/* =========================================
FLOATING CARDS
========================================= */

.digiature-ds-floating-card {
    position: absolute;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s ease;
    animation: floatY 5s ease-in-out infinite;
    z-index: 3;
}

.digiature-ds-floating-card:hover {
    transform: translateY(-8px);
}

.digiature-ds-floating-card i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3151d3, #00c39a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.digiature-ds-floating-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #0d1726;
}

/* CARD POSITIONS */

.card-one {
    top: 45px;
    left: 0;
}

.card-two {
    top: 300px;
    right: 0;
    animation-delay: 1s;
}

.card-three {
    bottom: 35px;
    left: 30px;
    animation-delay: 2s;
}

/* =========================================
FLOAT ANIMATION
========================================= */

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =========================================
TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-ds-hero-wrap {
        padding: 85px 0 80px;
    }

    .digiature-ds-hero-content {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }

    .digiature-ds-hero-content h1 {
        font-size: 42px;
    }

    .digiature-ds-btn-group {
        justify-content: center;
    }

    .digiature-ds-highlight-box {
        text-align: left;
    }

    .digiature-ds-dashboard-area {
        height: auto;
    }

    .digiature-ds-main-image {
        width: 100%;
        height: auto;
    }

    .digiature-ds-main-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        padding: 0;
    }

    .card-one {
        left: 10px;
    }

    .card-two {
        right: 10px;
    }
}

/* =========================================
MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {
    .digiature-ds-hero-wrap {
        padding: 70px 0 65px;
    }

    /* CONTENT */

    .digiature-ds-hero-content {
        margin-bottom: 45px;
        text-align: center;
        padding-right: 0;
    }

    .digiature-ds-hero-content h1 {
        font-size: 32px;
        line-height: 1.22;
        margin-bottom: 18px;
    }

    .digiature-ds-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* HIGHLIGHT BOX */

    .digiature-ds-highlight-box {
        flex-direction: column;
        padding: 16px;
        border-radius: 18px;
        gap: 12px;
        margin-top: 24px;
    }

    .digiature-ds-highlight-box p {
        font-size: 14px;
    }

    /* BUTTONS */

    .digiature-ds-btn-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }

    .digiature-ds-primary-btn,
    .digiature-ds-outline-btn {
        width: 100%;
        text-align: center;
        padding: 13px 18px;
    }

    /* IMAGE AREA */

    .digiature-ds-dashboard-area {
        height: auto;
        display: block;
        margin-top: 20px;
    }

    .digiature-ds-main-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .digiature-ds-main-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        padding: 0;
        display: block;
    }

    .digiature-ds-image-overlay {
        background: rgba(0, 0, 0, 0.03);
    }

    /* FLOATING CARDS */

    .digiature-ds-floating-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        width: 100%;
        margin-top: 14px;
        padding: 13px 14px;
        border-radius: 16px;

        animation: none;
    }

    .digiature-ds-floating-card i {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 14px;
    }

    .digiature-ds-floating-card h4 {
        font-size: 14px;
    }
}

/* =========================================
DIRECT SELLING ADVANTAGES SECTION
========================================= */

.digiature-ds-advantages-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

/* =========================================
HEADING
========================================= */

.digiature-ds-advantage-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.digiature-ds-advantage-heading span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(34, 102, 255, 0.08);
    color: #2266ff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-ds-advantage-heading h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.digiature-ds-advantage-heading p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #64748b;
}

/* =========================================
HEXAGON LAYOUT
========================================= */

.digiature-ds-hexagon-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* COLUMNS */

.digiature-ds-hex-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* CENTER BOX */

.digiature-ds-center-box {
    width: 250px;
    height: 220px;
    background: #ffffff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 6px solid #f3f4f6;
    transition: 0.4s ease;
}

.digiature-ds-center-box:hover {
    transform: translateY(-8px);
}

.digiature-ds-center-box h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
}

/* =========================================
HEX CARDS
========================================= */

.digiature-ds-hex-card {
    width: 260px;
    min-height: 90px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 22px;
    transition: 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.digiature-ds-hex-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.digiature-ds-hex-card h4 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* =========================================
CARD COLORS
========================================= */

.pink-card {
    background: linear-gradient(135deg, #ff0f7b, #f89b29);
}

.yellow-card {
    background: linear-gradient(135deg, #ffb703, #ff8f00);
}

.orange-card {
    background: linear-gradient(135deg, #ff0303dc, #960303);
}

.dark-card {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.purple-card {
    background: linear-gradient(135deg, #7b2ff7, #5f72ff);
}

.green-card {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

/* =========================================
BOTTOM TEXT
========================================= */

.digiature-ds-bottom-text {
    max-width: 850px;
    margin: 65px auto 0;
    text-align: center;
}

.digiature-ds-bottom-text p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #64748b;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-ds-advantages-section {
        padding: 90px 0;
    }

    .digiature-ds-advantage-heading h2 {
        font-size: 38px;
    }

    .digiature-ds-hexagon-layout {
        flex-direction: column;
        gap: 28px;
    }

    .digiature-ds-center-box {
        order: -1;
    }

    .digiature-ds-hex-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .digiature-ds-advantages-section {
        padding: 75px 0;
    }

    .digiature-ds-advantage-heading {
        margin-bottom: 50px;
    }

    .digiature-ds-advantage-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-ds-advantage-heading p,
    .digiature-ds-bottom-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-ds-center-box {
        width: 210px;
        height: 190px;
        padding: 20px;
    }

    .digiature-ds-center-box h3 {
        font-size: 22px;
    }

    .digiature-ds-hex-card {
        width: 100%;
        min-height: 78px;
        padding: 16px;
    }

    .digiature-ds-hex-card h4 {
        font-size: 14px;
    }

    .digiature-ds-hex-column {
        width: 100%;
        gap: 16px;
    }
}

/* MLM Compensation Plans We Develop*/

/* =========================================
MLM PLANS SECTION
========================================= */

.digiature-mlm-plans-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

/* =========================================
BACKGROUND EFFECTS
========================================= */

.digiature-mlm-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    z-index: 1;
}

.circle-one {
    width: 320px;
    height: 320px;
    background: #7161ef;
    top: -120px;
    left: -100px;
}

.circle-two {
    width: 320px;
    height: 320px;
    background: #1e2952;
    bottom: -120px;
    right: -100px;
}

/* =========================================
HEADING
========================================= */

.digiature-mlm-heading {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.digiature-mlm-heading span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(113, 97, 239, 0.08);
    color: #7161ef;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-mlm-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #1e2952;
    margin-bottom: 20px;
}

.digiature-mlm-heading p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #64748b;
}

/* =========================================
HORIZONTAL CARD
========================================= */

.digiature-mlm-horizontal-card {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(113, 97, 239, 0.08);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.06);
    transition: 0.45s ease;
    margin-bottom: 40px;
}

.digiature-mlm-horizontal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.1);
}

/* REVERSE CARD */

.reverse-card {
    flex-direction: row-reverse;
}

/* =========================================
IMAGE SIDE
========================================= */

.digiature-mlm-image-side {
    position: relative;
    width: 38%;
    min-height: 100%;
    overflow: hidden;
    background: #1e2952;
}

.digiature-mlm-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.digiature-mlm-horizontal-card:hover .digiature-mlm-image-side img {
    transform: scale(1.06);
}

/* OVERLAY */

.digiature-mlm-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 41, 82, 0.65),
        rgba(30, 41, 82, 0.08)
    );
}

/* =========================================
CONTENT SIDE
========================================= */

.digiature-mlm-content-side {
    width: 62%;
    padding: 34px;
}

/* TOP */

.digiature-mlm-plan-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

/* ICON */

.digiature-mlm-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7161ef, #8d7cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 18px 35px rgba(113, 97, 239, 0.22);
}

/* TITLE */

.digiature-mlm-content-side h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #1e2952;
    margin: 0;
}

/* DESCRIPTION */

.digiature-mlm-content-side p {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 22px;
}

/* FEATURES */

.digiature-mlm-content-side h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e2952;
    margin-bottom: 18px;
}

/* FEATURE GRID */

.digiature-mlm-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* FEATURE ITEM */

.digiature-mlm-feature-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8faff;
    border: 1px solid rgba(113, 97, 239, 0.08);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #475569;
    transition: 0.35s ease;
}

.digiature-mlm-feature-item:hover {
    transform: translateY(-4px);
    background: rgba(113, 97, 239, 0.05);
}

/* BOTTOM TEXT */

.digiature-mlm-bottom-text {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(113, 97, 239, 0.12);
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-mlm-plans-section {
        padding: 90px 0;
    }

    .digiature-mlm-heading h2 {
        font-size: 40px;
    }

    .digiature-mlm-horizontal-card,
    .reverse-card {
        flex-direction: column;
    }

    .digiature-mlm-image-side,
    .digiature-mlm-content-side {
        width: 100%;
    }

    .digiature-mlm-image-side {
        height: 320px;
    }

    .digiature-mlm-content-side {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .digiature-mlm-plans-section {
        padding: 75px 0;
    }

    .digiature-mlm-heading {
        margin-bottom: 50px;
    }

    .digiature-mlm-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-mlm-heading p {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-mlm-horizontal-card {
        border-radius: 24px;
        margin-bottom: 28px;
    }

    .digiature-mlm-image-side {
        height: 240px;
    }

    .digiature-mlm-content-side {
        padding: 22px 18px;
    }

    .digiature-mlm-plan-top {
        gap: 14px;
        margin-bottom: 18px;
    }

    .digiature-mlm-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 20px;
    }

    .digiature-mlm-content-side h3 {
        font-size: 24px;
    }

    .digiature-mlm-content-side p,
    .digiature-mlm-bottom-text,
    .digiature-mlm-feature-item {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-mlm-content-side h4 {
        font-size: 16px;
    }

    .digiature-mlm-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* =========================================
MLM SOLUTIONS SECTION
========================================= */

.digiature-mlm-solutions-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #fff8f0;
}

/* =========================================
BACKGROUND EFFECTS
========================================= */

.digiature-mlm-pattern {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    z-index: 1;
}

.pattern-one {
    width: 320px;
    height: 320px;
    background: #163550;
    top: -100px;
    left: -80px;
}

.pattern-two {
    width: 300px;
    height: 300px;
    background: #7161ef;
    bottom: -120px;
    right: -100px;
}

/* =========================================
HEADING
========================================= */

.digiature-mlm-solutions-heading {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.digiature-mlm-solutions-heading span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(22, 53, 80, 0.08);
    color: #163550;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-mlm-solutions-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #163550;
    margin-bottom: 20px;
}

.digiature-mlm-solutions-heading p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #5f6b7a;
}

/* =========================================
CARD
========================================= */

.digiature-mlm-solution-card {
    position: relative;
    z-index: 5;
    height: 100%;
    padding: 34px 28px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(22, 53, 80, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.45s ease;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

/* DARK CARD */

.digiature-mlm-solution-card.dark-card {
    background: linear-gradient(135deg, #163550 0%, #1f4668 100%);
    border: none;
}

.digiature-mlm-solution-card.dark-card h3,
.digiature-mlm-solution-card.dark-card p {
    color: #ffffff;
}

/* HOVER */

.digiature-mlm-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

/* =========================================
PATTERN INSIDE CARD
========================================= */

.digiature-mlm-card-pattern {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(rgba(113, 97, 239, 0.12) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.7;
}

/* =========================================
ICON
========================================= */

.digiature-mlm-solution-icon {
    position: relative;
    z-index: 3;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, #7161ef, #927fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 18px 35px rgba(113, 97, 239, 0.24);
    transition: 0.4s ease;
}

.digiature-mlm-solution-card:hover .digiature-mlm-solution-icon {
    transform: rotate(-8deg) scale(1.05);
}

/* =========================================
TEXT
========================================= */

.digiature-mlm-solution-card h3 {
    position: relative;
    z-index: 3;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 600;
    color: #163550;
    margin-bottom: 18px;
}

.digiature-mlm-solution-card p {
    position: relative;
    z-index: 3;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    color: #5f6b7a;
    margin: 0;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-mlm-solutions-section {
        padding: 90px 0;
    }

    .digiature-mlm-solutions-heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .digiature-mlm-solutions-section {
        padding: 75px 0;
    }

    .digiature-mlm-solutions-heading {
        margin-bottom: 50px;
    }

    .digiature-mlm-solutions-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-mlm-solutions-heading p {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-mlm-solution-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .digiature-mlm-solution-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .digiature-mlm-solution-card h3 {
        font-size: 22px;
    }

    .digiature-mlm-solution-card p {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Features */
/* =========================================
MLM FEATURES SECTION
========================================= */

.digiature-mlm-features-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================
BACKGROUND SHAPES
========================================= */

.digiature-mlm-features-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
}

.shape-one {
    width: 300px;
    height: 300px;
    background: #7161ef;
    top: -120px;
    left: -100px;
}

.shape-two {
    width: 260px;
    height: 260px;
    background: #163550;
    right: -80px;
    bottom: -100px;
}

/* =========================================
LEFT CONTENT
========================================= */

.digiature-mlm-features-content {
    position: sticky;
    top: 120px;
}

.digiature-mlm-features-content span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(113, 97, 239, 0.08);
    color: #7161ef;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-mlm-features-content h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    color: #163550;
    margin-bottom: 22px;
}

.digiature-mlm-features-content p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #5f6b7a;
    margin-bottom: 26px;
}

.digiature-mlm-feature-bottom {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #163550 0%, #22496b 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    box-shadow: 0 20px 40px rgba(22, 53, 80, 0.14);
}

/* =========================================
FEATURE GRID
========================================= */

.digiature-mlm-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* =========================================
FEATURE BOX
========================================= */

.digiature-mlm-feature-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: 0.4s ease;
    overflow: hidden;
}

.digiature-mlm-feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(113, 97, 239, 0.04), transparent);
    opacity: 0;
    transition: 0.4s ease;
}

.digiature-mlm-feature-box:hover::before {
    opacity: 1;
}

.digiature-mlm-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

/* =========================================
ICON
========================================= */

.digiature-mlm-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #7161ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 12px 25px rgba(113, 97, 239, 0.2);
}

/* ICON COLORS */

.blue-icon {
    background: #0ea5e9;
}

.green-icon {
    background: #22c55e;
}

.purple-icon {
    background: #8b5cf6;
}

.orange-icon {
    background: #f59e0b;
}

.cyan-icon {
    background: #06b6d4;
}

.red-icon {
    background: #ef4444;
}

.teal-icon {
    background: #14b8a6;
}

.yellow-icon {
    background: #eab308;
}

.dark-icon {
    background: #163550;
}

/* =========================================
TEXT
========================================= */

.digiature-mlm-feature-box h3 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #163550;
    margin: 0;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-mlm-features-section {
        padding: 90px 0;
    }

    .digiature-mlm-features-content {
        position: relative;
        top: 0;
    }

    .digiature-mlm-features-content h2 {
        font-size: 38px;
    }

    .digiature-mlm-features-grid {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .digiature-mlm-features-section {
        padding: 75px 0;
    }

    .digiature-mlm-features-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-mlm-features-content p,
    .digiature-mlm-feature-bottom {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-mlm-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .digiature-mlm-feature-box {
        padding: 16px;
        border-radius: 16px;
    }

    .digiature-mlm-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .digiature-mlm-feature-box h3 {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Integration */
/* =========================================
CRYPTO MLM SECTION
========================================= */

.digiature-crypto-mlm-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #7daa92 0%, #c2fbef 100%);
}

/* =========================================
BACKGROUND GLOW
========================================= */

.digiature-crypto-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
}

.crypto-glow-one {
    width: 320px;
    height: 320px;
    background: #163550;
    top: -120px;
    left: -120px;
}

.crypto-glow-two {
    width: 300px;
    height: 300px;
    background: #ffffff;
    right: -100px;
    bottom: -100px;
}

/* =========================================
LEFT CONTENT
========================================= */

.digiature-crypto-content span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(22, 53, 80, 0.08);
    color: #163550;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-crypto-content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #163550;
    margin-bottom: 22px;
}

.digiature-crypto-content p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #2d4f55;
    margin-bottom: 34px;
}

/* =========================================
FEATURE LIST
========================================= */

.digiature-crypto-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* =========================================
FEATURE ITEM
========================================= */

.digiature-crypto-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.digiature-crypto-feature-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* =========================================
ICON
========================================= */

.digiature-crypto-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #163550 0%, #255a63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 15px 30px rgba(22, 53, 80, 0.16);
}

/* =========================================
TEXT
========================================= */

.digiature-crypto-feature-item h3 {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #163550;
    margin: 0;
}

/* =========================================
BOTTOM BOX
========================================= */

.digiature-crypto-bottom-box {
    margin-top: 30px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #163550 0%, #214d58 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* =========================================
RIGHT VISUAL
========================================= */

.digiature-crypto-visual-box {
    position: relative;
    height: 650px;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.45),
        rgba(255, 255, 255, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

/* GRID */

.digiature-crypto-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* CENTER */

.digiature-crypto-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.digiature-crypto-center-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #163550 0%, #255a63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 54px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
    animation: cryptoPulse 4s infinite ease-in-out;
}

@keyframes cryptoPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
ORBITS
========================================= */

.digiature-crypto-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(22, 53, 80, 0.22);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 320px;
    height: 320px;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-two {
    width: 480px;
    height: 480px;
    animation: rotateOrbit 28s linear infinite reverse;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =========================================
FLOATING CARDS
========================================= */

.digiature-crypto-floating-card {
    position: absolute;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #163550;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    animation: floatCard 4s ease-in-out infinite;
}

.digiature-crypto-floating-card i {
    color: #163550;
}

.card-one {
    top: 90px;
    left: 70px;
}

.card-two {
    top: 140px;
    right: 70px;
}

.card-three {
    bottom: 120px;
    left: 90px;
}

.card-four {
    bottom: 100px;
    right: 90px;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-crypto-mlm-section {
        padding: 90px 0;
    }

    .digiature-crypto-content h2 {
        font-size: 40px;
    }

    .digiature-crypto-visual-box {
        height: 520px;
    }
}

@media (max-width: 767px) {
    .digiature-crypto-mlm-section {
        padding: 75px 0;
    }

    .digiature-crypto-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-crypto-content p,
    .digiature-crypto-bottom-box {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-crypto-feature-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .digiature-crypto-feature-item {
        padding: 16px;
        border-radius: 18px;
    }

    .digiature-crypto-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .digiature-crypto-feature-item h3 {
        font-size: 14px;
    }

    .digiature-crypto-visual-box {
        height: 420px;
        border-radius: 28px;
    }

    .digiature-crypto-center-inner {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }

    .orbit-one {
        width: 220px;
        height: 220px;
    }

    .orbit-two {
        width: 320px;
        height: 320px;
    }

    .digiature-crypto-floating-card {
        padding: 10px 14px;
        border-radius: 14px;
        font-size: 12px;
        gap: 8px;
    }

    .card-one {
        top: 40px;
        left: 20px;
    }

    .card-two {
        top: 70px;
        right: 20px;
    }

    .card-three {
        bottom: 70px;
        left: 20px;
    }

    .card-four {
        bottom: 40px;
        right: 20px;
    }
}
/* Platforms */
/* =========================================
AI MLM SECTION
========================================= */

.digiature-ai-mlm-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;

    background:
        linear-gradient(rgba(130, 90, 90, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(130, 90, 90, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, #e6e0dd 0%, #ffffff 100%);

    background-size:
        38px 38px,
        38px 38px,
        cover;
}

/* =========================================
BACKGROUND SHAPES
========================================= */

.digiature-ai-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
}

.shape-one {
    width: 320px;
    height: 320px;
    background: #825a5a;
    top: -120px;
    left: -120px;
}

.shape-two {
    width: 300px;
    height: 300px;
    background: #cdbaba;
    right: -100px;
    bottom: -100px;
}

/* =========================================
HEADING
========================================= */

.digiature-ai-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 5;
}

.digiature-ai-heading span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(130, 90, 90, 0.08);
    color: #825a5a;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-ai-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #3e3232;
    margin-bottom: 20px;
}

.digiature-ai-heading p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #5f5b5b;
}

/* =========================================
LEFT SIDE
========================================= */

.digiature-ai-modern-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN CARD */

.digiature-ai-main-card {
    position: relative;
    width: 100%;
    max-width: 470px;
    padding: 42px 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    z-index: 5;
}

.digiature-ai-main-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(130, 90, 90, 0.08);
    top: -120px;
    right: -100px;
}

/* MAIN ICON */

.digiature-ai-main-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg, #825a5a 0%, #a06d6d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 26px;
    box-shadow: 0 20px 45px rgba(130, 90, 90, 0.18);
    animation: aiIconFloat 4s ease-in-out infinite;
}

@keyframes aiIconFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* TEXT */

.digiature-ai-main-card h3 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 600;
    color: #3e3232;
    margin-bottom: 18px;
}

.digiature-ai-main-card p {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    color: #5f5b5b;
    margin-bottom: 34px;
}

/* PROGRESS */

.digiature-ai-progress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.digiature-ai-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.digiature-ai-progress-head span {
    font-size: 14px;
    font-weight: 500;
    color: #3e3232;
}

.digiature-ai-progress-bar {
    height: 10px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(130, 90, 90, 0.1);
}

.progress-fill {
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, #825a5a, #b18181);
    animation: progressAnim 3s ease;
}

.progress-fill.one {
    width: 96%;
}

.progress-fill.two {
    width: 92%;
}

.progress-fill.three {
    width: 98%;
}

@keyframes progressAnim {
    from {
        width: 0;
    }
}

/* MINI CARD */
.digiature-ai-mini-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3e3232;
    margin-bottom: 3px;
}

.digiature-ai-mini-card span {
    font-size: 13px;
    color: #777;
}

/* FLOATING BOXES */

.digiature-ai-side-box {
    position: absolute;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    color: #3e3232;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    animation: aiBoxFloat 4s ease-in-out infinite;
}

.digiature-ai-side-box i {
    color: #825a5a;
}

.box-left {
    left: 10px;
    bottom: 150px;
}

.box-right {
    right: 10px;
    top: 180px;
}

.box-bottom {
    right: 70px;
    bottom: 50px;
}

/* =========================================
RIGHT FEATURES
========================================= */

.digiature-ai-feature-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.digiature-ai-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(130, 90, 90, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.digiature-ai-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.digiature-ai-feature-card.dark-card {
    background: linear-gradient(135deg, #825a5a 0%, #9f7474 100%);
}

.digiature-ai-feature-card.dark-card h3,
.digiature-ai-feature-card.dark-card p {
    color: #ffffff;
}

/* ICON */

.digiature-ai-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #825a5a 0%, #9f7474 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 14px 30px rgba(130, 90, 90, 0.18);
}

.dark-card .digiature-ai-feature-icon {
    background: rgba(255, 255, 255, 0.14);
}

/* TEXT */

.digiature-ai-feature-content h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #3e3232;
    margin-bottom: 10px;
}

.digiature-ai-feature-content p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: #5f5b5b;
    margin: 0;
}

/* BOTTOM BOX */

.digiature-ai-bottom-box {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #3e3232 0%, #5a4646 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    margin-top: 10px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-ai-mlm-section {
        padding: 90px 0;
    }

    .digiature-ai-heading h2 {
        font-size: 40px;
    }

    .digiature-ai-modern-visual {
        min-height: 560px;
    }
}

@media (max-width: 767px) {
    .digiature-ai-mlm-section {
        padding: 75px 0;
    }

    .digiature-ai-heading {
        margin-bottom: 50px;
    }

    .digiature-ai-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-ai-heading p,
    .digiature-ai-feature-content p,
    .digiature-ai-bottom-box {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-ai-modern-visual {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .digiature-ai-main-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .digiature-ai-main-card h3 {
        font-size: 26px;
    }

    .digiature-ai-main-icon {
        width: 70px;
        height: 70px;
        border-radius: 22px;
        font-size: 30px;
    }

    .digiature-ai-mini-card {
        top: 0;
        left: 0;
        padding: 12px 14px;
    }

    .digiature-ai-side-box {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .box-left {
        left: 0;
        bottom: 90px;
    }

    .box-right {
        right: 0;
        top: 90px;
    }

    .box-bottom {
        right: 30px;
        bottom: 0;
    }

    .digiature-ai-feature-card {
        padding: 18px;
        border-radius: 20px;
    }

    .digiature-ai-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .digiature-ai-feature-content h3 {
        font-size: 17px;
    }
}
/* Payment gateway */
/* =========================================
PAYMENT GATEWAY SECTION
========================================= */

.digiature-payment-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f4f4 0%, #ffffff 100%);
}

/* =========================================
BACKGROUND GLOW
========================================= */

.digiature-payment-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.16;
}

.glow-one {
    width: 320px;
    height: 320px;
    background: #3658e6;
    top: -120px;
    left: -120px;
}

.glow-two {
    width: 300px;
    height: 300px;
    background: #7f96ff;
    right: -100px;
    bottom: -100px;
}

/* =========================================
LEFT CONTENT
========================================= */

.digiature-payment-content {
    position: relative;
    z-index: 5;
}

.digiature-payment-content span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(54, 88, 230, 0.08);
    color: #3658e6;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.digiature-payment-content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #1f2c4c;
    margin-bottom: 22px;
}

.digiature-payment-content p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #5f677a;
    margin-bottom: 34px;
}

/* =========================================
PAYMENT LIST
========================================= */

.digiature-payment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* PAYMENT ITEM */

.digiature-payment-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(54, 88, 230, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.digiature-payment-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

/* DARK ITEM */

.digiature-payment-item.dark-item {
    background: linear-gradient(135deg, #3658e6 0%, #4d6cff 100%);
}

.digiature-payment-item.dark-item h3,
.digiature-payment-item.dark-item p {
    color: #ffffff;
}

/* ICON */

.digiature-payment-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3658e6 0%, #5d7cff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 16px 35px rgba(54, 88, 230, 0.18);
}

.dark-item .digiature-payment-icon {
    background: rgba(255, 255, 255, 0.14);
}

/* TEXT */

.digiature-payment-text h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #1f2c4c;
    margin-bottom: 6px;
}

.digiature-payment-text p {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #667085;
    margin: 0;
}

/* =========================================
BOTTOM BOX
========================================= */

.digiature-payment-bottom {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1f2c4c 0%, #3658e6 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* =========================================
RIGHT VISUAL
========================================= */

.digiature-payment-visual {
    position: relative;
    height: 650px;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.72),
        rgba(255, 255, 255, 0.3)
    );
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
}

/* =========================================
MONEY BACKGROUND
========================================= */

.digiature-payment-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* MONEY SYMBOLS */

.digiature-payment-grid::before {
    content: "$  ₹  €  ₿  $  ₹  €  ₿  $  ₹  €  ₿";
    position: absolute;
    top: 8%;
    left: -10%;
    width: 140%;
    font-size: 90px;
    font-weight: 700;
    letter-spacing: 40px;
    color: rgba(54, 88, 230, 0.05);
    transform: rotate(-12deg);
    white-space: nowrap;
    animation: moneyMove 20s linear infinite;
}

/* TEXT BACKGROUND */

.digiature-payment-grid::after {
    content: "PAYMENT  WALLET  PAYOUT  CRYPTO  BANKING";
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 140%;
    font-size: 58px;
    font-weight: 600;
    letter-spacing: 18px;
    color: rgba(54, 88, 230, 0.04);
    transform: rotate(8deg);
    white-space: nowrap;
    animation: moneyMoveReverse 24s linear infinite;
}

/* ANIMATION */

@keyframes moneyMove {
    0% {
        transform: rotate(-12deg) translateX(0px);
    }

    100% {
        transform: rotate(-12deg) translateX(-120px);
    }
}

@keyframes moneyMoveReverse {
    0% {
        transform: rotate(8deg) translateX(0px);
    }

    100% {
        transform: rotate(8deg) translateX(120px);
    }
}

/* EXTRA GLOW */

.digiature-payment-visual::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(54, 88, 230, 0.08);
    top: -80px;
    right: -80px;
    filter: blur(10px);
}

.digiature-payment-visual::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(54, 88, 230, 0.06);
    bottom: -60px;
    left: -60px;
    filter: blur(10px);
}

/* =========================================
CENTER CARD
========================================= */

.digiature-payment-center-card {
    position: absolute;
    width: 420px;
    max-width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 32px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
    text-align: center;
    z-index: 5;
}

/* ICON */

.digiature-payment-center-icon {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg, #3658e6 0%, #6782ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 38px;
    margin: 0 auto 24px;
    box-shadow: 0 20px 45px rgba(54, 88, 230, 0.18);
    animation: payPulse 4s ease-in-out infinite;
}

@keyframes payPulse {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* TEXT */

.digiature-payment-center-card h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #1f2c4c;
    margin-bottom: 14px;
}

.digiature-payment-center-card p {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    color: #667085;
    margin-bottom: 30px;
}

/* FLOW */

.digiature-payment-flow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3658e6, #5d7cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

.flow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #3658e6, #9db0ff);
}

/* FLOATING */

.digiature-payment-float {
    position: absolute;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    color: #1f2c4c;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    animation: payFloat 4s ease-in-out infinite;
    z-index: 5;
}

.digiature-payment-float i {
    color: #3658e6;
}

.float-one {
    top: 90px;
    left: 60px;
}

.float-two {
    top: 150px;
    right: 60px;
}
@keyframes payFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .digiature-payment-section {
        padding: 90px 0;
    }

    .digiature-payment-content h2 {
        font-size: 40px;
    }

    .digiature-payment-visual {
        height: 560px;
    }
}

@media (max-width: 767px) {
    .digiature-payment-section {
        padding: 75px 0;
    }

    .digiature-payment-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .digiature-payment-content p,
    .digiature-payment-bottom,
    .digiature-payment-center-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .digiature-payment-item {
        padding: 16px;
        border-radius: 18px;
    }

    .digiature-payment-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 16px;
        font-size: 20px;
    }

    .digiature-payment-text h3 {
        font-size: 17px;
    }

    .digiature-payment-visual {
        height: 450px;
        border-radius: 28px;
    }

    .digiature-payment-center-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .digiature-payment-center-icon {
        width: 75px;
        height: 75px;
        border-radius: 22px;
        font-size: 30px;
    }

    .digiature-payment-center-card h3 {
        font-size: 24px;
    }

    .flow-step {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .flow-line {
        width: 34px;
    }

    .digiature-payment-float {
        padding: 10px 14px;
        border-radius: 14px;
        font-size: 12px;
    }

    .float-one {
        top: 30px;
        left: 20px;
    }

    .float-two {
        top: 80px;
        right: 20px;
    }

    .float-three {
        bottom: 70px;
        left: 20px;
    }

    .float-four {
        bottom: 30px;
        right: 20px;
    }

    .digiature-payment-grid::before {
        font-size: 42px;
        letter-spacing: 18px;
    }

    .digiature-payment-grid::after {
        font-size: 26px;
        letter-spacing: 10px;
    }
}

/* Industries */
.mlm-industries-section {
    background: linear-gradient(135deg, #e9f5db, #f6fbf0);
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
}

.mlm-industries-section::before,
.mlm-industries-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(96, 111, 73, 0.12);
    border-radius: 50%;
    filter: blur(60px);
}

.mlm-industries-section::before {
    top: -80px;
    left: -80px;
}

.mlm-industries-section::after {
    bottom: -100px;
    right: -100px;
}

.mlm-container {
    max-width: 1200px;
    margin: auto;
}

.mlm-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #606f49;
    margin-bottom: 40px;
}

.mlm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mlm-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(96, 111, 73, 0.15);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mlm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(96, 111, 73, 0.15);
    border-color: rgba(96, 111, 73, 0.35);
}

.mlm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #606f49, transparent);
}

.mlm-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.mlm-card h3 {
    font-size: 18px;
    color: #606f49;
    margin-bottom: 10px;
}

.mlm-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* responsive */
@media (max-width: 1024px) {
    .mlm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mlm-grid {
        grid-template-columns: 1fr;
    }

    .mlm-title {
        font-size: 24px;
    }
}

/* Benefits */
.mlm-benefits-section {
    padding: 50px 0;
    background: #f4f7f9;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.benefits-wrapper {
    max-width: 800px;
    margin: auto;
}
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

/* Number Boxes */
.number-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}
.green-border {
    border-left: 3px solid #8cc63f;
    border-bottom: 3px solid #8cc63f;
}
.blue-border {
    border-left: 3px solid #00aeef;
    border-bottom: 3px solid #00aeef;
}

/* Text & Icons */
.text-content {
    flex-grow: 1;
    border-bottom: 1px dashed #ccc;
    padding: 10px;
    margin-right: 20px;
}
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blue-bg {
    background: #00aeef;
}
.green-bg {
    background: #8cc63f;
}
/* why choose */
.mlm-why-section {
    background: linear-gradient(135deg, #fffdfa, #f7f5f2);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* soft floating background texture */
.mlm-why-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(210, 205, 198, 0.35);
    border-radius: 50%;
    filter: blur(80px);
    top: -100px;
    left: -120px;
}

.mlm-why-container {
    max-width: 1100px;
    margin: auto;
}

.mlm-why-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.mlm-why-subtitle {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* GRID */
.mlm-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD */
.mlm-why-card {
    background: #ffffff;
    border: 1px solid rgba(210, 205, 198, 0.5);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.mlm-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(210, 205, 198, 0.9);
}

.mlm-why-card span {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

.mlm-why-card h3 {
    font-size: 15px;
    color: #444;
    font-weight: 600;
}

/* FOOTER TEXT */
.mlm-why-footer {
    margin-top: 35px;
    text-align: center;
    font-size: 15px;
    color: #555;
    padding: 14px 20px;
    border-radius: 10px;
    background: rgba(210, 205, 198, 0.2);
    border: 1px solid rgba(210, 205, 198, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mlm-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mlm-why-grid {
        grid-template-columns: 1fr;
    }

    .mlm-why-title {
        font-size: 24px;
    }
}

/* Future */
.mlm-future-section {
    padding: 40px 0;
    background-color: #fff;
}

/* Banner Styling */
.section-banner {
    background: #d7dfe8;
    color: white;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
}
.center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

/* Boxes */
.left-box,
.right-box {
    width: 45%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Dots */
.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.gold {
    background: #ffc107;
}
.orange {
    background: #fd7e14;
}
.pink {
    background: #e83e8c;
}

.section-footer {
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
}

/* CTA */
.mlm-cta-section-light {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;

    /* LIGHT BASE */
    background: linear-gradient(135deg, #fffaf3, #f6f1e8);
}

/* ===== MOVING BACKGROUND BLOBS ===== */
.bg-move-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    animation: floatBlob 22s ease-in-out infinite;
}

/* warm beige blob */
.bg-blob.one {
    background: #ddb892;
    top: -140px;
    left: -160px;
}

/* accent blob */
.bg-blob.two {
    background: #7f5539;
    bottom: -160px;
    right: -160px;
    animation-duration: 28s;
}

/* floating motion */
@keyframes floatBlob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    50% {
        transform: translate(60px, -45px) scale(1.08);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* ===== CONTENT ===== */
.mlm-cta-container-light {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.mlm-cta-title-light {
    font-size: 34px;
    font-weight: 700;

    /* COLOR CHANGING EFFECT */
    background: linear-gradient(270deg, #7f5539, #ddb892, #a47148, #7f5539);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientShift 8s ease infinite;

    margin-bottom: 15px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.mlm-cta-text-light {
    font-size: 15px;
    color: #5a4a3b;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 30px;
}

/* BUTTON */
.mlm-cta-btn-light {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #7f5539, #a47148);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(127, 85, 57, 0.25);
}

.mlm-cta-btn-light:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(127, 85, 57, 0.35);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .mlm-cta-title-light {
        font-size: 24px;
    }

    .mlm-cta-text-light {
        font-size: 14px;
    }
}
/* FAQ */
.mlm-faq-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #faf9ec, #f7f5e6);
    overflow: hidden;
}

/* ===== MOVING BACKGROUND ===== */
.bg-move-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    animation: floatBlob 24s ease-in-out infinite;
}

.bg-blob.one {
    background: #7b8f4b;
    top: -140px;
    left: -150px;
}

.bg-blob.two {
    background: #d6d1b1;
    bottom: -160px;
    right: -160px;
    animation-duration: 30s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    50% {
        transform: translate(60px, -45px) scale(1.08);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* ===== CONTAINER ===== */
.mlm-faq-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.mlm-faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #3f4a2a;
    margin-bottom: 35px;
}

/* ===== FAQ ITEM ===== */
.faq-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(123, 143, 75, 0.25);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

/* ===== QUESTION ROW ===== */
.faq-question {
    width: 100%;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #3f4a2a;
    cursor: pointer;
    transition: 0.3s ease;
}

/* left text */
.faq-q-text {
    flex: 1;
    text-align: left;
}

/* arrow icon */
.faq-arrow {
    display: inline-block;
    font-size: 16px;
    color: #7b8f4b;
    transition:
        transform 0.35s ease,
        color 0.3s ease;
}

/* hover effect */
.faq-question:hover {
    background: rgba(123, 143, 75, 0.08);
}

.faq-question:hover .faq-arrow {
    color: #556b33;
}

/* ===== ANSWER ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 0 18px;
}

/* ===== ACTIVE STATE ===== */
.faq-item.active {
    border-color: rgba(123, 143, 75, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 0 18px 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: #7b8f4b;
}

.faq-item.active .faq-question {
    background: rgba(123, 143, 75, 0.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .mlm-faq-title {
        font-size: 24px;
    }
}
