/*
==================================================
TASK EARNING
LANDING PAGE CSS
PART 1
HEADER + HERO
==================================================
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #111827;

    background: #ffffff;

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


button,
input {
    font-family: inherit;
}


.container {

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;

}


/* ==================================================
   HEADER
================================================== */

.site-header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

}


.navbar {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* ==================================================
   LOGO
================================================== */

.brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.brand-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    color: #ffffff;

    font-size: 24px;

    font-weight: 900;

    box-shadow:
        0 8px 20px
        rgba(99, 102, 241, 0.25);

}


.brand-name {

    color: #111827;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.brand-name span {

    color: #6366f1;

}


/* ==================================================
   DESKTOP NAV
================================================== */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.nav-link {

    position: relative;

    color: #4b5563;

    font-size: 14px;

    font-weight: 600;

    transition: 0.25s ease;

}


.nav-link:hover,
.nav-link.active {

    color: #6366f1;

}


.nav-link.active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -9px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #6366f1;

    transform: translateX(-50%);

}


/* ==================================================
   HEADER ACTIONS
================================================== */

.header-actions {

    display: flex;

    align-items: center;

    gap: 17px;

}


.login-link {

    color: #374151;

    font-size: 14px;

    font-weight: 700;

}


.login-link:hover {

    color: #6366f1;

}


.header-register-btn {

    padding: 12px 20px;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #7c3aed
        );

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(99, 102, 241, 0.22);

    transition: 0.25s ease;

}


.header-register-btn:hover {

    transform: translateY(-2px);

}


/* ==================================================
   MOBILE BUTTON
================================================== */

.mobile-menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid #e5e7eb;

    border-radius: 11px;

    background: #ffffff;

    color: #374151;

    font-size: 21px;

    cursor: pointer;

}


/* ==================================================
   MOBILE NAV
================================================== */

.mobile-nav {

    display: none;

}


/* ==================================================
   HERO
================================================== */

.hero-section {

    position: relative;

    min-height: 760px;

    padding-top: 130px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8faff 0%,
            #eef2ff 48%,
            #f8f5ff 100%
        );

}


.hero-container {

    min-height: 560px;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 60px;

}


/* ==================================================
   HERO GLOW
================================================== */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

}


.hero-glow-one {

    width: 420px;

    height: 420px;

    top: 70px;

    right: -150px;

    background:
        rgba(129, 140, 248, 0.17);

}


.hero-glow-two {

    width: 300px;

    height: 300px;

    bottom: 50px;

    left: -150px;

    background:
        rgba(167, 139, 250, 0.13);

}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {

    position: relative;

    z-index: 2;

}


.hero-badge {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    margin-bottom: 22px;

    border: 1px solid
        rgba(99, 102, 241, 0.16);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.72);

    color: #5b5bd6;

    font-size: 12px;

    font-weight: 700;

}


.badge-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px
        rgba(34, 197, 94, 0.12);

}


/* ==================================================
   HERO TITLE
================================================== */

.hero-title {

    max-width: 650px;

    color: #111827;

    font-size:
        clamp(
            45px,
            5.2vw,
            70px
        );

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 900;

}


.hero-title span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #6366f1,
            #8b5cf6
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.hero-description {

    max-width: 590px;

    margin-top: 25px;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;

}


/* ==================================================
   HERO BUTTONS
================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 31px;

}


.primary-btn,
.secondary-btn {

    min-height: 52px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 13px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s ease;

}


.primary-btn {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #7c3aed
        );

    box-shadow:
        0 12px 25px
        rgba(99, 102, 241, 0.25);

}


.primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 30px
        rgba(99, 102, 241, 0.32);

}


.secondary-btn {

    color: #374151;

    background: #ffffff;

    border: 1px solid #e2e8f0;

}


.secondary-btn:hover {

    border-color: #c7d2fe;

    color: #6366f1;

    transform: translateY(-2px);

}


/* ==================================================
   TRUST
================================================== */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 27px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #64748b;

    font-size: 12px;

    font-weight: 600;

}


.trust-icon {

    width: 18px;

    height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #16a34a;

    font-size: 11px;

    font-weight: 900;

}


/* ==================================================
   HERO VISUAL
================================================== */

.hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* ==================================================
   EARNING CARD
================================================== */

.earning-card {

    position: relative;

    width: 390px;

    padding: 24px;

    border: 1px solid
        rgba(255, 255, 255, 0.8);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.91);

    box-shadow:
        0 35px 80px
        rgba(57, 67, 120, 0.18);

    backdrop-filter: blur(20px);

    z-index: 3;

    animation:
        floatingCard 5s ease-in-out infinite;

}


/* ==================================================
   EARNING CARD TOP
================================================== */

.earning-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.small-label {

    display: block;

    color: #94a3b8;

    font-size: 11px;

    margin-bottom: 7px;

}


.earning-card-top strong {

    color: #111827;

    font-size: 28px;

}


.earning-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #eef2ff;

    color: #6366f1;

    font-size: 23px;

    font-weight: 900;

}


/* ==================================================
   CHART
================================================== */

.earning-chart {

    height: 125px;

    margin: 25px 0;

    padding: 10px 5px;

    border-bottom: 1px solid #edf0f5;

}


.chart-line {

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-around;

    gap: 8px;

}


.chart-line span {

    width: 30px;

    border-radius:
        7px 7px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #818cf8,
            #6366f1
        );

    animation:
        chartPulse 3s ease-in-out infinite;

}


/* ==================================================
   MINI TASK
================================================== */

.task-mini-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.mini-task {

    min-height: 59px;

    padding: 9px 11px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 13px;

    background: #f8fafc;

}


.mini-task-icon {

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: #ffffff;

    font-weight: 800;

}


.mini-task-icon.youtube {

    background: #ef4444;

}


.mini-task-icon.facebook {

    background: #3b82f6;

}


.mini-task-icon.tiktok {

    background: #111827;

}


.mini-task-info {

    flex: 1;

}


.mini-task-info strong {

    display: block;

    color: #334155;

    font-size: 12px;

}


.mini-task-info small {

    display: block;

    margin-top: 3px;

    color: #94a3b8;

    font-size: 10px;

}


.mini-task b {

    color: #16a34a;

    font-size: 11px;

}


/* ==================================================
   CARD FOOTER
================================================== */

.earning-card-footer {

    display: flex;

    justify-content: space-between;

    margin-top: 17px;

    padding-top: 16px;

    border-top: 1px solid #edf0f5;

}


.earning-card-footer span {

    color: #94a3b8;

    font-size: 11px;

}


.earning-card-footer strong {

    color: #334155;

    font-size: 12px;

}


/* ==================================================
   FLOATING CARDS
================================================== */

.floating-card {

    position: absolute;

    min-width: 190px;

    padding: 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.95);

    box-shadow:
        0 18px 40px
        rgba(30, 41, 59, 0.14);

    z-index: 5;

}


.floating-card-one {

    top: 70px;

    left: -15px;

    animation:
        floatingSmall 4s ease-in-out infinite;

}


.floating-card-two {

    right: -10px;

    bottom: 75px;

    animation:
        floatingSmall 4.5s ease-in-out infinite reverse;

}


.floating-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #dcfce7;

    color: #16a34a;

    font-weight: 900;

}


.floating-icon.wallet {

    background: #eef2ff;

    color: #6366f1;

}


.floating-card strong {

    display: block;

    color: #334155;

    font-size: 11px;

}


.floating-card small {

    display: block;

    margin-top: 3px;

    color: #94a3b8;

    font-size: 10px;

}


/* ==================================================
   HERO STATS
================================================== */

.hero-bottom-wave {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    padding: 23px 0;

    background:
        rgba(255, 255, 255, 0.72);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(12px);

}


.hero-bottom-content {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.hero-stat {

    text-align: center;

    border-right: 1px solid #e2e8f0;

}


.hero-stat:last-child {

    border-right: none;

}


.hero-stat strong {

    display: block;

    color: #111827;

    font-size: 20px;

}


.hero-stat span {

    display: block;

    margin-top: 4px;

    color: #94a3b8;

    font-size: 11px;

}


/* ==================================================
   COMING SECTION
================================================== */

.coming-section {

    padding: 110px 0;

    text-align: center;

}


.section-label {

    display: inline-block;

    margin-bottom: 13px;

    color: #6366f1;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.coming-section h2 {

    color: #111827;

    font-size: 38px;

}


.coming-section p {

    margin-top: 12px;

    color: #94a3b8;

}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes floatingCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}


@keyframes floatingSmall {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

}


@keyframes chartPulse {

    0%,
    100% {

        opacity: 0.72;

    }

    50% {

        opacity: 1;

    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .desktop-nav,
    .header-actions {

        display: none;

    }


    .mobile-menu-btn {

        display: block;

    }


    .mobile-nav {

        position: absolute;

        top: 82px;

        left: 20px;

        right: 20px;

        padding: 10px;

        display: none;

        flex-direction: column;

        gap: 3px;

        border-radius: 16px;

        background: #ffffff;

        box-shadow:
            0 20px 50px
            rgba(15, 23, 42, 0.15);

    }


    .mobile-nav.show {

        display: flex;

    }


    .mobile-nav a {

        padding: 13px;

        border-radius: 10px;

        color: #374151;

        font-size: 14px;

        font-weight: 600;

    }


    .mobile-nav a:hover {

        background: #f1f5ff;

        color: #6366f1;

    }


    .mobile-nav .mobile-register {

        color: #ffffff;

        text-align: center;

        background:
            linear-gradient(
                135deg,
                #6366f1,
                #7c3aed
            );

    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;

        padding-top: 35px;

    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .hero-description {

        max-width: 650px;

    }


    .hero-visual {

        min-height: 430px;

    }


    .hero-section {

        min-height: 1100px;

    }


    .hero-bottom-content {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 20px;

    }


    .hero-stat:nth-child(2) {

        border-right: none;

    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 28px);

    }


    .navbar {

        min-height: 72px;

    }


    .hero-section {

        padding-top: 105px;

        min-height: 1050px;

    }


    .hero-title {

        font-size: 43px;

        letter-spacing: -2px;

    }


    .hero-description {

        font-size: 14px;

        line-height: 1.7;

    }


    .hero-buttons {

        width: 100%;

        flex-direction: column;

    }


    .primary-btn,
    .secondary-btn {

        width: 100%;

    }


    .hero-trust {

        justify-content: center;

        gap: 12px;

    }


    .hero-visual {

        min-height: 410px;

    }


    .earning-card {

        width: min(
            100%,
            355px
        );

        padding: 18px;

    }


    .floating-card {

        min-width: 160px;

    }


    .floating-card-one {

        left: -5px;

        top: 35px;

    }


    .floating-card-two {

        right: -5px;

        bottom: 40px;

    }


    .hero-bottom-wave {

        padding: 18px 0;

    }


    .hero-bottom-content {

        row-gap: 17px;

    }


    .hero-stat strong {

        font-size: 17px;

    }


    .hero-stat span {

        font-size: 9px;

    }


    .coming-section {

        padding: 80px 0;

    }


    .coming-section h2 {

        font-size: 30px;

    }

}
/*
==================================================
HOW IT WORKS
==================================================
*/

.how-section {

    padding: 105px 0;

    background: #ffffff;

}


/*
==================================================
SECTION HEADING
==================================================
*/

.section-heading {

    max-width: 680px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-heading .section-label {

    margin-bottom: 13px;

}


.section-heading h2 {

    color: #111827;

    font-size:
        clamp(
            32px,
            4vw,
            45px
        );

    line-height: 1.15;

    letter-spacing: -1.5px;

}


.section-heading h2 span {

    color: #6366f1;

}


.section-heading p {

    max-width: 600px;

    margin: 16px auto 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.75;

}


/*
==================================================
STEPS GRID
==================================================
*/

.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.step-card {

    position: relative;

    padding: 30px 24px;

    border: 1px solid #edf0f5;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(15, 23, 42, 0.045);

    transition: 0.3s ease;

}


.step-card:hover {

    transform: translateY(-8px);

    border-color: #c7d2fe;

    box-shadow:
        0 20px 45px
        rgba(99, 102, 241, 0.10);

}


/*
==================================================
STEP NUMBER
==================================================
*/

.step-number {

    position: absolute;

    top: 18px;

    right: 20px;

    color: #e2e8f0;

    font-size: 28px;

    font-weight: 900;

}


/*
==================================================
STEP ICON
==================================================
*/

.step-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 21px;

    border-radius: 16px;

    background: #eef2ff;

    font-size: 24px;

}


.step-card h3 {

    color: #1e293b;

    font-size: 16px;

    margin-bottom: 10px;

}


.step-card p {

    color: #64748b;

    font-size: 12px;

    line-height: 1.75;

}


/*
==================================================
PROCESS NOTE
==================================================
*/

.process-note {

    width: fit-content;

    max-width: 100%;

    margin: 38px auto 0;

    padding: 12px 18px;

    display: flex;

    align-items: center;

    gap: 9px;

    border-radius: 100px;

    background: #f0fdf4;

    color: #166534;

    font-size: 12px;

    font-weight: 600;

}


.process-check {

    width: 21px;

    height: 21px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #22c55e;

    color: #ffffff;

    font-size: 11px;

}


/*
==================================================
PLATFORM SECTION
==================================================
*/

.platform-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #f8faff,
            #f8f7ff
        );

}


/*
==================================================
PLATFORM GRID
==================================================
*/

.platform-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


/*
==================================================
PLATFORM CARD
==================================================
*/

.platform-card {

    padding: 24px;

    border: 1px solid #e8eaf3;

    border-radius: 21px;

    background: #ffffff;

    transition: 0.3s ease;

}


.platform-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(30, 41, 59, 0.09);

}


/*
==================================================
PLATFORM TOP
==================================================
*/

.platform-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.platform-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 900;

}


.youtube-icon {

    background: #ef4444;

}


.facebook-icon {

    background: #3b82f6;

}


.tiktok-icon {

    background: #111827;

}


.instagram-icon {

    background:
        linear-gradient(
            135deg,
            #f97316,
            #ec4899,
            #8b5cf6
        );

}


.platform-status {

    padding: 6px 9px;

    border-radius: 100px;

    background: #ecfdf5;

    color: #16a34a;

    font-size: 9px;

    font-weight: 800;

}


/*
==================================================
PLATFORM CONTENT
==================================================
*/

.platform-card h3 {

    margin-top: 22px;

    color: #1e293b;

    font-size: 18px;

}


.platform-card p {

    min-height: 66px;

    margin-top: 9px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.7;

}


/*
==================================================
PLATFORM BOTTOM
==================================================
*/

.platform-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 14px;

    border-top: 1px solid #edf0f5;

}


.platform-bottom span {

    color: #94a3b8;

    font-size: 10px;

}


.platform-bottom strong {

    color: #6366f1;

    font-size: 10px;

}


/*
==================================================
TASK NOTE
==================================================
*/

.tasks-note {

    max-width: 700px;

    margin: 40px auto 0;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 15px;

    border: 1px solid #e0e7ff;

    border-radius: 17px;

    background: #eef2ff;

}


.tasks-note-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #ffffff;

    font-size: 20px;

}


.tasks-note strong {

    display: block;

    color: #3730a3;

    font-size: 13px;

}


.tasks-note p {

    margin-top: 4px;

    color: #6366f1;

    font-size: 11px;

    line-height: 1.5;

}


/*
==================================================
TABLET
==================================================
*/

@media (max-width: 1000px) {

    .steps-grid,
    .platform-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/*
==================================================
MOBILE
==================================================
*/

@media (max-width: 600px) {

    .how-section,
    .platform-section {

        padding: 80px 0;

    }


    .section-heading {

        margin-bottom: 35px;

    }


    .section-heading h2 {

        font-size: 31px;

    }


    .section-heading p {

        font-size: 13px;

    }


    .steps-grid,
    .platform-grid {

        grid-template-columns: 1fr;

    }


    .step-card {

        padding: 25px 21px;

    }


    .platform-card p {

        min-height: auto;

    }


    .process-note {

        border-radius: 15px;

        text-align: left;

    }


    .tasks-note {

        align-items: flex-start;

        padding: 16px;

    }

}
/*
==================================================
FEATURES SECTION
==================================================
*/

.features-section {

    padding: 110px 0;

    background: #ffffff;

}


.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.feature-card {

    position: relative;

    padding: 28px 25px;

    border: 1px solid #edf0f5;

    border-radius: 20px;

    background: #ffffff;

    transition: 0.3s ease;

    overflow: hidden;

}


.feature-card::after {

    content: "";

    position: absolute;

    width: 90px;

    height: 90px;

    right: -45px;

    bottom: -45px;

    border-radius: 50%;

    background: #eef2ff;

    transition: 0.3s ease;

}


.feature-card:hover {

    transform: translateY(-7px);

    border-color: #c7d2fe;

    box-shadow:
        0 20px 45px
        rgba(99, 102, 241, 0.09);

}


.feature-card:hover::after {

    transform: scale(1.5);

}


.feature-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: #eef2ff;

    font-size: 23px;

}


.feature-card h3 {

    color: #1e293b;

    font-size: 16px;

    margin-bottom: 9px;

}


.feature-card p {

    color: #64748b;

    font-size: 12px;

    line-height: 1.75;

}


/*
==================================================
SERVICES SECTION
==================================================
*/

.services-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #f8faff,
            #f7f5ff
        );

}


.services-wrapper {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 60px;

    align-items: center;

}


/*
==================================================
SERVICE INTRO
==================================================
*/

.service-intro-badge {

    width: fit-content;

    padding: 7px 11px;

    margin-bottom: 17px;

    border-radius: 100px;

    background: #eef2ff;

    color: #6366f1;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .6px;

}


.service-intro h3 {

    max-width: 500px;

    color: #111827;

    font-size: 39px;

    line-height: 1.15;

    letter-spacing: -1.5px;

}


.service-intro > p {

    max-width: 500px;

    margin-top: 18px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;

}


/*
==================================================
SERVICE POINTS
==================================================
*/

.service-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;

    margin-top: 27px;

}


.service-points div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #475569;

    font-size: 11px;

    font-weight: 600;

}


.service-points span {

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #16a34a;

    font-size: 10px;

}


/*
==================================================
SERVICE CARDS
==================================================
*/

.service-cards {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.service-card {

    min-height: 145px;

    padding: 22px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    border: 1px solid #e8eaf3;

    border-radius: 19px;

    background: #ffffff;

    transition: .3s ease;

}


.service-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(30, 41, 59, .08);

}


.service-card-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    font-size: 18px;

    font-weight: 800;

}


.service-card h4 {

    color: #1e293b;

    font-size: 13px;

    margin-bottom: 7px;

}


.service-card p {

    color: #64748b;

    font-size: 10px;

    line-height: 1.7;

}


/*
==================================================
BENEFITS SECTION
==================================================
*/

.benefits-section {

    padding: 110px 0;

    background: #ffffff;

}


.benefits-box {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        0.85fr;

    gap: 60px;

    padding: 60px;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #111827,
            #1e1b4b
        );

    box-shadow:
        0 30px 70px
        rgba(15, 23, 42, .18);

}


.benefits-box::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -120px;

    top: -140px;

    border-radius: 50%;

    background:
        rgba(99, 102, 241, .25);

}


.benefits-content {

    position: relative;

    z-index: 2;

}


.benefits-content .section-label {

    color: #a5b4fc;

}


.benefits-content h2 {

    max-width: 600px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -1.5px;

}


.benefits-content h2 span {

    color: #a5b4fc;

}


.benefits-content > p {

    max-width: 550px;

    margin: 18px 0 28px;

    color: #cbd5e1;

    font-size: 13px;

    line-height: 1.8;

}


.benefits-content .primary-btn {

    width: fit-content;

}


/*
==================================================
BENEFIT LIST
==================================================
*/

.benefits-list {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 13px;

}


.benefit-item {

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    border: 1px solid
        rgba(255,255,255,.09);

    border-radius: 16px;

    background:
        rgba(255,255,255,.06);

}


.benefit-number {

    width: 39px;

    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(129,140,248,.18);

    color: #a5b4fc;

    font-size: 11px;

    font-weight: 800;

}


.benefit-item strong {

    display: block;

    color: #ffffff;

    font-size: 12px;

}


.benefit-item p {

    margin-top: 4px;

    color: #94a3b8;

    font-size: 10px;

}


/*
==================================================
TABLET
==================================================
*/

@media (max-width: 950px) {

    .features-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .services-wrapper {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .service-intro {

        text-align: center;

    }


    .service-intro-badge {

        margin-left: auto;

        margin-right: auto;

    }


    .service-intro h3,
    .service-intro > p {

        margin-left: auto;

        margin-right: auto;

    }


    .service-points {

        max-width: 550px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }


    .benefits-box {

        grid-template-columns: 1fr;

        gap: 35px;

    }

}


/*
==================================================
MOBILE
==================================================
*/

@media (max-width: 600px) {

    .features-section,
    .services-section,
    .benefits-section {

        padding: 80px 0;

    }


    .features-grid {

        grid-template-columns: 1fr;

    }


    .feature-card {

        padding: 24px 21px;

    }


    .service-intro h3 {

        font-size: 31px;

    }


    .service-points {

        grid-template-columns: 1fr;

    }


    .service-cards {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: auto;

    }


    .benefits-box {

        padding: 35px 23px;

        border-radius: 22px;

    }


    .benefits-content h2 {

        font-size: 31px;

    }


    .benefits-content .primary-btn {

        width: 100%;

    }

}
/*
==================================================
TESTIMONIALS
==================================================
*/

.testimonials-section {

    padding: 110px 0;

    background: #ffffff;

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.testimonial-card {

    padding: 25px;

    border: 1px solid #edf0f5;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(15, 23, 42, .04);

    transition: .3s ease;

}


.testimonial-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(99, 102, 241, .09);

}


.testimonial-top {

    display: flex;

    align-items: center;

    gap: 11px;

}


.user-avatar {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

}


.testimonial-top strong {

    display: block;

    color: #1e293b;

    font-size: 12px;

}


.testimonial-top span {

    display: block;

    margin-top: 3px;

    color: #94a3b8;

    font-size: 9px;

}


.stars {

    margin-left: auto;

    color: #f59e0b;

    font-size: 11px;

    letter-spacing: 1px;

}


.testimonial-text {

    min-height: 92px;

    margin-top: 22px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.8;

}


.testimonial-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 14px;

    border-top: 1px solid #edf0f5;

}


.testimonial-bottom span {

    color: #94a3b8;

    font-size: 9px;

}


.testimonial-bottom span:first-child {

    color: #16a34a;

    font-weight: 700;

}


/*
==================================================
ACTIVITY
==================================================
*/

.activity-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #f8faff,
            #f7f5ff
        );

}


.activity-box {

    display: grid;

    grid-template-columns:
        1fr
        .9fr;

    gap: 70px;

    align-items: center;

}


.activity-intro h2 {

    max-width: 550px;

    color: #111827;

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -1.5px;

}


.activity-intro h2 span {

    color: #6366f1;

}


.activity-intro p {

    max-width: 540px;

    margin-top: 18px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.8;

}


.activity-stats {

    display: flex;

    gap: 40px;

    margin-top: 30px;

}


.activity-stats div {

    display: flex;

    flex-direction: column;

}


.activity-stats strong {

    color: #1e293b;

    font-size: 23px;

}


.activity-stats span {

    margin-top: 4px;

    color: #94a3b8;

    font-size: 10px;

}


/*
==================================================
ACTIVITY FEED
==================================================
*/

.activity-feed {

    padding: 22px;

    border: 1px solid #e5e7eb;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 20px 50px
        rgba(15, 23, 42, .07);

}


.activity-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf0f5;

}


.activity-header strong {

    display: block;

    color: #1e293b;

    font-size: 13px;

}


.activity-header span:not(.live-indicator) {

    display: block;

    margin-top: 4px;

    color: #94a3b8;

    font-size: 9px;

}


.live-indicator {

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 6px 9px;

    border-radius: 100px;

    background: #f0fdf4;

    color: #16a34a;

    font-size: 8px;

    font-weight: 800;

}


.live-indicator i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    animation:
        livePulse 1.5s infinite;

}


/*
==================================================
ACTIVITY ITEM
==================================================
*/

.activity-item {

    min-height: 67px;

    display: flex;

    align-items: center;

    gap: 11px;

    border-bottom: 1px solid #f1f5f9;

}


.activity-item:last-child {

    border-bottom: none;

}


.activity-avatar {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: #eef2ff;

    color: #6366f1;

    font-size: 12px;

    font-weight: 800;

}


.activity-info {

    flex: 1;

}


.activity-info strong {

    display: block;

    color: #334155;

    font-size: 10px;

}


.activity-info span {

    display: block;

    margin-top: 4px;

    color: #94a3b8;

    font-size: 8px;

}


.activity-item b {

    color: #16a34a;

    font-size: 10px;

}


/*
==================================================
TRUST SECTION
==================================================
*/

.trust-section {

    padding: 90px 0;

    background: #ffffff;

}


.trust-heading {

    text-align: center;

    margin-bottom: 40px;

}


.trust-heading span {

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.trust-heading h2 {

    margin-top: 9px;

    color: #1e293b;

    font-size: 28px;

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border: 1px solid #edf0f5;

    border-radius: 20px;

    overflow: hidden;

}


.trust-box {

    padding: 27px 20px;

    text-align: center;

    border-right: 1px solid #edf0f5;

}


.trust-box:last-child {

    border-right: none;

}


.trust-box-icon {

    width: 46px;

    height: 46px;

    margin: 0 auto 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #eef2ff;

    font-size: 19px;

}


.trust-box strong {

    display: block;

    color: #334155;

    font-size: 12px;

}


.trust-box p {

    margin-top: 6px;

    color: #94a3b8;

    font-size: 9px;

    line-height: 1.6;

}


/*
==================================================
ANIMATION
==================================================
*/

@keyframes livePulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(34,197,94,.35);

    }

    70% {

        box-shadow:
            0 0 0 6px
            rgba(34,197,94,0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(34,197,94,0);

    }

}


/*
==================================================
TABLET
==================================================
*/

@media (max-width: 950px) {

    .testimonial-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .testimonial-card:last-child {

        grid-column:
            1 / -1;

    }


    .activity-box {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .activity-intro {

        text-align: center;

    }


    .activity-intro h2,
    .activity-intro p {

        margin-left: auto;

        margin-right: auto;

    }


    .activity-stats {

        justify-content: center;

    }


    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-box:nth-child(2) {

        border-right: none;

    }


    .trust-box:nth-child(-n+2) {

        border-bottom: 1px solid #edf0f5;

    }

}


/*
==================================================
MOBILE
==================================================
*/

@media (max-width: 600px) {

    .testimonials-section,
    .activity-section,
    .trust-section {

        padding: 80px 0;

    }


    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .testimonial-card:last-child {

        grid-column: auto;

    }


    .testimonial-text {

        min-height: auto;

    }


    .activity-intro h2 {

        font-size: 31px;

    }


    .activity-stats {

        gap: 25px;

    }


    .activity-stats strong {

        font-size: 19px;

    }


    .activity-feed {

        padding: 15px;

    }


    .trust-grid {

        grid-template-columns: 1fr;

    }


    .trust-box {

        border-right: none;

        border-bottom: 1px solid #edf0f5;

    }


    .trust-box:last-child {

        border-bottom: none;

    }

}
/*
==================================================
FAQ SECTION
==================================================
*/

.faq-section {

    padding: 110px 0;

    background: #ffffff;

}


.faq-wrapper {

    max-width: 820px;

    margin: 0 auto;

}


.faq-item {

    margin-bottom: 12px;

    border: 1px solid #e8eaf0;

    border-radius: 15px;

    background: #ffffff;

    overflow: hidden;

    transition: .3s ease;

}


.faq-item.active {

    border-color: #c7d2fe;

    box-shadow:
        0 10px 30px
        rgba(99, 102, 241, .07);

}


.faq-question {

    width: 100%;

    padding: 20px 22px;

    border: none;

    outline: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: transparent;

    color: #1e293b;

    cursor: pointer;

    text-align: left;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

}


.faq-plus {

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #eef2ff;

    color: #6366f1;

    font-size: 19px;

    font-weight: 500;

    transition: .3s ease;

}


.faq-item.active .faq-plus {

    transform: rotate(45deg);

    background: #6366f1;

    color: #ffffff;

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease,
        padding .35s ease;

}


.faq-answer p {

    padding: 0 22px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.8;

}


.faq-item.active .faq-answer {

    max-height: 250px;

    padding-bottom: 20px;

}


/*
==================================================
FINAL CTA
==================================================
*/

.final-cta-section {

    padding: 30px 0 110px;

    background: #ffffff;

}


.final-cta-box {

    position: relative;

    min-height: 360px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 60px 30px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #7c3aed
        );

    text-align: center;

    box-shadow:
        0 30px 70px
        rgba(79, 70, 229, .22);

}


.final-cta-content {

    position: relative;

    z-index: 3;

    max-width: 700px;

}


.cta-label {

    display: inline-block;

    padding: 7px 12px;

    border: 1px solid
        rgba(255,255,255,.18);

    border-radius: 100px;

    background:
        rgba(255,255,255,.10);

    color: #ddd6fe;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

}


.final-cta-content h2 {

    margin-top: 18px;

    color: #ffffff;

    font-size:
        clamp(
            34px,
            5vw,
            52px
        );

    line-height: 1.1;

    letter-spacing: -2px;

}


.final-cta-content h2 span {

    color: #ddd6fe;

}


.final-cta-content p {

    max-width: 580px;

    margin: 17px auto 0;

    color: #e0e7ff;

    font-size: 13px;

    line-height: 1.8;

}


.cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 28px;

}


.cta-primary-btn,
.cta-secondary-btn {

    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;

}


.cta-primary-btn {

    background: #ffffff;

    color: #4f46e5;

}


.cta-primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.15);

}


.cta-secondary-btn {

    border: 1px solid
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.08);

    color: #ffffff;

}


.cta-secondary-btn:hover {

    background:
        rgba(255,255,255,.16);

    transform: translateY(-3px);

}


/*
==================================================
CTA DECORATIONS
==================================================
*/

.cta-decoration {

    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,.10);

}


.cta-decoration-one {

    width: 330px;

    height: 330px;

    left: -120px;

    top: -150px;

}


.cta-decoration-two {

    width: 420px;

    height: 420px;

    right: -160px;

    bottom: -230px;

}


/*
==================================================
FOOTER
==================================================
*/

.site-footer {

    padding: 75px 0 0;

    background: #0b1120;

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 55px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    font-weight: 900;

}


.footer-logo > span:last-child span {

    color: #818cf8;

}


.footer-logo-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    color: #ffffff;

    font-size: 17px;

    font-weight: 900;

}


.footer-brand p {

    max-width: 330px;

    margin-top: 17px;

    color: #94a3b8;

    font-size: 11px;

    line-height: 1.8;

}


.footer-status {

    width: fit-content;

    margin-top: 18px;

    padding: 7px 10px;

    display: flex;

    align-items: center;

    gap: 6px;

    border-radius: 100px;

    background:
        rgba(34,197,94,.08);

    color: #86efac;

    font-size: 9px;

    font-weight: 700;

}


.footer-status span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #22c55e;

}


/*
==================================================
FOOTER COLUMNS
==================================================
*/

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h4 {

    margin-bottom: 7px;

    color: #ffffff;

    font-size: 12px;

}


.footer-column a {

    width: fit-content;

    color: #94a3b8;

    text-decoration: none;

    font-size: 10px;

    transition: .25s ease;

}


.footer-column a:hover {

    color: #a5b4fc;

    transform: translateX(3px);

}


/*
==================================================
FOOTER BOTTOM
==================================================
*/

.footer-bottom {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid
        rgba(255,255,255,.07);

}


.footer-bottom p {

    color: #64748b;

    font-size: 9px;

}


.footer-bottom-links {

    display: flex;

    gap: 20px;

}


.footer-bottom-links a {

    color: #64748b;

    text-decoration: none;

    font-size: 9px;

}


.footer-bottom-links a:hover {

    color: #a5b4fc;

}


/*
==================================================
MOBILE
==================================================
*/

@media (max-width: 700px) {

    .faq-section {

        padding: 80px 0;

    }


    .faq-question {

        padding: 17px;

        font-size: 12px;

    }


    .faq-answer p {

        padding-left: 17px;

        padding-right: 17px;

        font-size: 11px;

    }


    .final-cta-section {

        padding-bottom: 80px;

    }


    .final-cta-box {

        min-height: 400px;

        padding: 45px 20px;

        border-radius: 22px;

    }


    .final-cta-content h2 {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .cta-buttons {

        flex-direction: column;

    }


    .cta-primary-btn,
    .cta-secondary-btn {

        width: 100%;

    }


    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 35px 20px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        padding: 18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

    }

}


@media (max-width: 430px) {

    .footer-main {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }

}