:root {
    --primary: #ff7a00;
    --primary-dark: #e86600;
    --primary-light: #fff2e6;

    --dark: #111827;
    --dark-2: #1f2937;

    --text: #4b5563;
    --muted: #6b7280;

    --light: #f8fafc;
    --white: #ffffff;

    --border: #e5e7eb;

    --green: #16a34a;
    --purple: #7c3aed;
    --blue: #2563eb;

    --shadow-sm: 0 4px 15px rgba(17, 24, 39, 0.06);
    --shadow: 0 15px 40px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 25px 70px rgba(17, 24, 39, 0.14);

    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    color: var(--dark);
}

.logo > span > span {
    color: var(--primary);
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
}

.logo-icon svg {
    width: 20px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn svg {
    width: 17px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.20);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 122, 0, 0.28);
}

.btn-outline {
    color: var(--dark);
    background: white;
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background: white;
    border-color: var(--border);
    color: var(--dark);
}

.btn-light:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    min-height: 54px;
    padding: 0 25px;
    border-radius: 12px;
    font-size: 15px;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 122, 0, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    right: -150px;
    top: -100px;
    background: rgba(255, 122, 0, 0.05);
}

.circle-2 {
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -100px;
    background: rgba(124, 58, 237, 0.04);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding: 75px 0 85px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: #c75a00;
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--primary);
    display: block;
}

.hero-description {
    max-width: 570px;
    color: var(--text);
    font-size: 17px;
    margin-top: 22px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f4f7;
    border: 2px solid white;
    margin-left: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-trust strong {
    display: block;
    font-size: 12px;
}

.hero-trust small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}


/* ================= EARNING CARD ================= */

.hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earning-card {
    width: min(390px, 100%);
    background: white;
    border-radius: 25px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.earning-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.small-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 5px;
}

.earning-amount {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.earning-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.earning-chart {
    height: 155px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.chart-bars {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
}

.chart-bars span {
    width: 30px;
    max-width: 12%;
    border-radius: 8px 8px 2px 2px;
    background: linear-gradient(180deg, var(--primary), #ffb26b);
    opacity: 0.85;
}

.earning-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.earning-footer span {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

.earning-footer strong {
    font-size: 14px;
}

.growth {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--green);
    background: #f0fdf4;
    padding: 6px 9px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.growth svg {
    width: 14px;
}


/* Floating Cards */

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.task-complete {
    left: -5px;
    bottom: 58px;
}

.secure-card {
    right: -5px;
    top: 58px;
}

.floating-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 17px;
}

.floating-icon.green {
    background: #dcfce7;
    color: var(--green);
}

.floating-icon.purple {
    background: #ede9fe;
    color: var(--purple);
}

.floating-card strong {
    display: block;
    font-size: 11px;
}

.floating-card span {
    display: block;
    font-size: 10px;
    color: var(--muted);
}


/* ================= STATS ================= */

.stats-section {
    background: var(--dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    font-size: 25px;
    font-weight: 800;
}

.stat-item span {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    margin-top: 3px;
}


/* ================= SECTIONS ================= */

.section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 670px;
    margin: 0 auto 55px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 850;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 15px;
}


/* ================= STEPS ================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.3s;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #ffd8ba;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    font-weight: 900;
    color: #f3f4f6;
}

.step-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    margin-bottom: 22px;
}

.step-icon svg {
    width: 24px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}

.step-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ================= TASKS ================= */

.tasks-section {
    background: var(--light);
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.task-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: 0.3s;
}

.task-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.task-card-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-card-icon svg {
    width: 22px;
}

.task-card-icon.orange {
    background: #fff2e6;
    color: var(--primary);
}

.task-card-icon.blue {
    background: #eff6ff;
    color: var(--blue);
}

.task-card-icon.purple {
    background: #f5f3ff;
    color: var(--purple);
}

.task-card-icon.green {
    background: #f0fdf4;
    color: var(--green);
}

.task-card-content {
    flex: 1;
}

.task-card h3 {
    font-size: 17px;
}

.task-card p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 5px;
}

.task-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.task-bottom span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 11px;
}

.task-bottom span svg {
    width: 13px;
}

.task-bottom strong {
    color: var(--primary);
    font-size: 11px;
}


/* ================= WHY US ================= */

.why-section {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.why-content h2 {
    max-width: 500px;
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.why-content h2 span {
    color: var(--primary);
}

.why-content > p {
    max-width: 560px;
    color: var(--muted);
    font-size: 14px;
    margin: 17px 0 28px;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 18px;
}

.feature h3 {
    font-size: 14px;
}

.feature p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}


/* Phone Card */

.why-visual {
    display: flex;
    justify-content: center;
}

.phone-card {
    width: 320px;
    padding: 25px;
    border-radius: 27px;
    background: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.phone-top svg {
    width: 18px;
    color: var(--muted);
}

.phone-balance {
    padding: 25px 0 15px;
}

.phone-balance small {
    color: var(--muted);
    font-size: 11px;
}

.phone-balance strong {
    display: block;
    font-size: 30px;
    margin-top: 2px;
}

.mini-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 7px;
    border-bottom: 1px solid var(--border);
}

.mini-chart span {
    width: 12%;
    background: var(--primary);
    opacity: 0.75;
    border-radius: 5px 5px 0 0;
}

.recent-task {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.recent-task:last-child {
    border-bottom: 0;
}

.recent-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-icon svg {
    width: 15px;
}

.recent-task div:nth-child(2) {
    flex: 1;
}

.recent-task strong {
    display: block;
    font-size: 11px;
}

.recent-task span {
    display: block;
    color: var(--green);
    font-size: 9px;
}

.recent-task b {
    color: var(--green);
    font-size: 12px;
}


/* ================= CTA ================= */

.cta-section {
    padding: 25px 0 100px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 25px;
    padding: 70px 30px;
    text-align: center;
    color: white;
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.cta-box::before {
    width: 300px;
    height: 300px;
    left: -120px;
    top: -150px;
}

.cta-box::after {
    width: 250px;
    height: 250px;
    right: -100px;
    bottom: -140px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 13px;
}

.cta-icon svg {
    width: 23px;
}

.cta-box h2 {
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.1;
}

.cta-box p {
    max-width: 500px;
    margin: 12px auto 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


/* ================= FAQ ================= */

.faq-section {
    padding-top: 50px;
    background: var(--light);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 13px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
}

.faq-question svg {
    width: 18px;
    color: var(--muted);
    transition: transform 0.25s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ================= FOOTER ================= */

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
}

.footer-brand p {
    max-width: 300px;
    color: #9ca3af;
    font-size: 12px;
    margin-top: 15px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    font-size: 12px;
    margin-bottom: 5px;
    color: white;
}

.footer-column a {
    color: #9ca3af;
    font-size: 11px;
    transition: 0.2s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #6b7280;
    font-size: 10px;
}


/* ================= ANIMATION ================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu > a {
        display: block;
        padding: 12px 0;
        color: var(--text);
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-menu-buttons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .mobile-menu-buttons .btn {
        flex: 1;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 390px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-content {
        text-align: center;
    }

    .why-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .feature {
        text-align: left;
        max-width: 500px;
        margin: auto;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        display: none;
    }
}


@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav-container {
        height: 68px;
    }

    .mobile-menu {
        top: 68px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 55px 0 65px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        text-align: left;
    }

    .hero-visual {
        min-height: 340px;
    }

    .earning-card {
        padding: 22px;
    }

    .earning-amount {
        font-size: 27px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .task-complete {
        left: -25px;
        bottom: 25px;
    }

    .secure-card {
        right: -25px;
        top: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .tasks-grid {
        grid-template-columns: 1fr;
    }

    .task-card {
        padding: 20px;
    }

    .why-content h2 {
        font-size: 35px;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-box {
        padding: 55px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 37px;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .earning-card {
        width: calc(100% - 20px);
    }

    .floating-card {
        display: none;
    }

    .phone-card {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}