/* Navbar */

.site-header {
    width: 100%;
    min-height: 78px;
    background: var(--ddb-soft);
}

.navbar {
    min-height: 78px;
    padding: 4px 0;
}

.navbar-toggler {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(26, 188, 156, 0.28);
    border-radius: 10px;
    padding: 0;
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.navbar-toggler:hover {
    border-color: rgba(26, 188, 156, 0.5);
    background: rgba(26, 188, 156, 0.08);
}

.navbar-toggler:active {
    background: rgba(26, 188, 156, 0.14);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.18);
}

.navbar-toggler-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ddb-primary);
    transform-origin: center;
    transition:
        transform 0.24s ease,
        opacity 0.18s ease;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-brand {
    color: var(--ddb-primary);
    font-size: 28px;
    font-weight: 500;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: #13977d;
}

.brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 9px;
    object-fit: cover;
}

.language-pill {
    width: auto;
    min-width: 0;
    height: 42px;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--ddb-primary);
    border-radius: 30px;
    background: #fff;
    color: var(--ddb-text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        color 0.15s ease;
    -webkit-text-fill-color: currentColor;
}

.language-pill span {
    color: inherit;
    -webkit-text-fill-color: currentColor;
}

.language-pill:hover,
.language-pill:focus {
    border-color: #16a98c;
    color: #13977d;
    box-shadow: 0 6px 16px rgba(26, 188, 156, 0.16);
}

.language-pill:active,
.language-pill.show {
    border-color: #13977d;
    background: rgba(26, 188, 156, 0.08);
    color: var(--ddb-text);
}

.language-pill img:first-child {
    width: 22px;
}

.language-pill .chevron {
    width: 17px;
    margin-left: auto;
}

.language-menu {
    min-width: 157px;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid rgba(26, 188, 156, 0.18);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.12);
}

.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 9px;
    color: var(--ddb-text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    margin-bottom: 4px;
}

.language-option-flag {
    width: 22px;
    flex: 0 0 auto;
}

.language-menu li:last-child .dropdown-item {
    margin-bottom: 0;
}

.language-menu .dropdown-item:hover,
.language-menu .dropdown-item:focus {
    background: rgba(26, 188, 156, 0.1);
    color: #13977d;
}

.language-menu .dropdown-item.active,
.language-menu .dropdown-item:active {
    background: rgba(26, 188, 156, 0.8);
    color: #fff;
}

/* Hero */

.hero-section {
    padding: 25px 0 var(--ddb-section-space);
}

.signup-card .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 17px 0;
    color: rgba(0, 0, 0, 0.5);
}

.signup-card .divider::before,
.signup-card .divider::after {
    content: "";
    flex: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.signup-card .social-btn {
    --bs-btn-color: var(--ddb-text);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #13977d;
    --bs-btn-hover-bg: rgba(26, 188, 156, 0.06);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: #117d69;
    --bs-btn-active-bg: rgba(26, 188, 156, 0.1);
    --bs-btn-active-border-color: rgba(26, 188, 156, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: var(--ddb-text);
    box-shadow: var(--ddb-shadow);
}

.signup-card .social-btn + .social-btn {
    margin-top: 20px;
}

.signup-card .social-btn:hover,
.signup-card .social-btn:focus {
    background: rgba(26, 188, 156, 0.06);
    color: #13977d;
    box-shadow:
        0 0 0 1px rgba(26, 188, 156, 0.16),
        0 8px 18px rgba(44, 62, 80, 0.08);
}

.signup-card .social-btn:active,
.signup-card .social-btn.active,
.signup-card .social-btn:first-child:active {
    border-color: rgba(26, 188, 156, 0.2);
    background: rgba(26, 188, 156, 0.1);
    color: #117d69;
    box-shadow: 0 0 0 1px rgba(26, 188, 156, 0.18);
}

.signup-card .social-btn img {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.signup-card .social-btn .apple-logo {
    filter: brightness(0);
}

.hero-row {
    --bs-gutter-x: 1.5rem;
}

.hero-section h1 {
    margin: 0 0 18px;
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.2;
}

.hero-copy {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-illustration {
    width: 438px;
    aspect-ratio: 1;
    max-width: 100%;
    border-radius: 9px;
    overflow: hidden;
}

.hero-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Signup */

.signup-section {
    padding: 0 0 var(--ddb-section-space);
}

.signup-card {
    width: 501px;
    max-width: 100%;
    min-height: 408px;
    padding: 36px 56px 52px;
    border-radius: 29px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
}

.signup-card h2 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

/* Task Cards */

.task-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 255px;
}

.task-card {
    display: block;
    width: 155px;
    min-height: 202px;
    padding: 14px 16px 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
    color: inherit;
    text-align: center;
    text-decoration: none;
    transform: translateY(0) scale(1);
    transition:
        width 0.28s ease-in-out,
        min-height 0.28s ease-in-out,
        padding 0.28s ease-in-out,
        transform 0.28s ease-in-out;
    will-change: transform;
}

.task-card.small {
    width: 123px;
    min-height: 160px;
    padding: 13px 12px 10px;
}

.task-card img {
    width: 124px;
    height: 124px;
    margin: 0 auto 7px;
    border-radius: 15px;
    object-fit: cover;
    transition:
        width 0.28s ease-in-out,
        height 0.28s ease-in-out,
        border-radius 0.28s ease-in-out;
}

.task-card.small img {
    width: 99px;
    height: 99px;
}

.task-card h3 {
    margin: 0 0 6px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-card.small h3,
.task-card.small p {
    font-size: 14px;
}

.task-card p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-card:hover,
.task-card:focus-within {
    transform: translateY(-2px) scale(1.015);
}

.task-showcase:has(.task-card.small:hover) .task-card.featured,
.task-showcase:has(.task-card.small:focus-within) .task-card.featured {
    width: 123px;
    min-height: 160px;
    padding: 13px 12px 10px;
    transform: translateY(0) scale(1);
}

.task-showcase:has(.task-card.small:hover) .task-card.featured img,
.task-showcase:has(.task-card.small:focus-within) .task-card.featured img {
    width: 99px;
    height: 99px;
}

.task-showcase .task-card.small:hover,
.task-showcase .task-card.small:focus-within {
    width: 155px;
    min-height: 202px;
    padding: 14px 16px 18px;
    transform: translateY(-2px) scale(1.015);
}

.task-showcase .task-card.small:hover img,
.task-showcase .task-card.small:focus-within img {
    width: 124px;
    height: 124px;
}

.task-showcase .task-card.small:hover h3,
.task-showcase .task-card.small:hover p,
.task-showcase .task-card.small:focus-within h3,
.task-showcase .task-card.small:focus-within p {
    font-size: 16px;
}

.rating-box {
    width: 300px;
    margin: 14px auto 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.rating-box p {
    margin-bottom: 8px;
}

.rating-box span {
    color: var(--ddb-primary);
}

.rating-box .rating-score {
    color: #000;
    font-weight: 400;
}

.stars {
    display: flex;
    gap: 8px;
}

.stars img {
    width: 36px;
    height: 35px;
    object-fit: contain;
}

/* Stats */

.stats-section {
    padding: 0 0 var(--ddb-section-space);
}

.stat-item {
    display: flex;
    min-height: 168px;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    white-space: nowrap;
}

.stat-item strong {
    display: block;
    color: var(--ddb-primary);
    font-size: 96px;
    font-weight: 500;
    line-height: 1;
}

.stat-value-wrap {
    display: flex;
    height: 116px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 14px;
}

.stat-value-wrap small {
    display: block;
    align-self: flex-start;
    margin-top: -8px;
    margin-left: 8px;
    color: var(--ddb-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.stat-item span {
    display: block;
    margin-top: 0;
    color: var(--ddb-muted);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.stat-item:nth-child(3) .stat-value-wrap small {
    width: 62px;
    text-align: center;
}

.stat-item:nth-child(4) span {
    width: 177px;
    white-space: normal;
}

/* How It Works */

.how-section {
    padding: 0 0 var(--ddb-section-space);
}

section h2 {
    margin-bottom: 44px;
    color: var(--ddb-text);
    font-size: 36px;
    font-weight: 500;
}

.step-card {
    max-width: 265px;
    margin: 0 auto;
}

.step-media {
    width: 218px;
    height: 201px;
    margin: 0 auto 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
    overflow: hidden;
}

.step-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.6);
    transform-origin: center;
}

.step-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 500;
}

.step-card p {
    color: rgba(44, 62, 80, 0.8);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

/* Earning Methods */

.earning-section {
    padding-bottom: var(--ddb-section-space);
}

.earning-section h2 {
    margin-bottom: 44px;
}

.earning-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
    margin-bottom: 72px;
}

.earning-row-media {
    grid-template-columns: 364px 403px;
    justify-content: center;
    gap: 122px;
}

.earning-media {
    width: 364px;
    max-width: 100%;
    height: 227px;
    display: grid;
    place-items: center;
    padding: 0 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
}

.earning-media img {
    width: 450px;
    height: 450px;
    margin-top: -150px;
    margin-left: -60px;
    object-fit: contain;
}

.earning-copy h3 {
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 500;
}

.earning-row-media .earning-copy h3 {
    white-space: nowrap;
}

.earning-copy p,
.earning-meta {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

.earning-copy p {
    margin-bottom: 22px;
}

.earning-meta {
    display: flex;
    gap: 34px;
    font-weight: 400;
}

.earning-meta strong {
    font-weight: 600;
}

.earning-meta.stacked {
    display: grid;
    gap: 20px;
}

.mini-task-grid {
    --mini-task-gap: 21px;
    --mini-task-shift: 576px;
    display: block;
    overflow: hidden;
    padding: 34px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
}

.mini-task-track {
    display: flex;
    gap: var(--mini-task-gap);
    width: max-content;
    animation: mini-task-marquee 16s linear infinite;
}

.mini-task-grid:hover .mini-task-track,
.mini-task-grid:focus-within .mini-task-track {
    animation-play-state: paused;
}

.mini-task-set {
    display: flex;
    flex: 0 0 auto;
    gap: var(--mini-task-gap);
}

.mini-task-grid .task-card {
    box-shadow: var(--ddb-shadow);
}

.mini-task-grid .task-card:hover,
.mini-task-grid .task-card:focus-within {
    transform: translateY(-4px) scale(1.08);
}

@keyframes mini-task-marquee {
    to {
        transform: translateX(calc(var(--mini-task-shift) * -1));
    }
}

.app-card-grid {
    --app-card-gap: 26px;
    --app-card-shift: 447px;
    display: block;
    overflow: hidden;
    width: 470px;
    max-width: 100%;
    min-height: 227px;
    padding: 34px 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
}

.app-card-track {
    display: flex;
    gap: var(--app-card-gap);
    width: max-content;
    animation: app-card-marquee 14s linear infinite;
}

.app-card-grid:hover .app-card-track,
.app-card-grid:focus-within .app-card-track {
    animation-play-state: paused;
}

.app-card-set {
    display: flex;
    flex: 0 0 auto;
    gap: var(--app-card-gap);
}

.app-card-set a {
    display: grid;
    place-items: center;
    width: 123px;
    height: 160px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
    transform: translateY(0) scale(1);
    transition: transform 0.25s ease;
    will-change: transform;
}

.app-card-set a:hover,
.app-card-set a:focus-visible {
    transform: translateY(-3px) scale(1.06);
}

.app-card-grid img {
    width: 106px;
    height: auto;
    object-fit: contain;
}

.app-card-set a:nth-child(2) img {
    width: 99px;
    height: 99px;
    border-radius: 15px;
}

.app-card-set a:nth-child(3) img {
    width: 114px;
    height: 113px;
}

@keyframes app-card-marquee {
    from {
        transform: translateX(calc(var(--app-card-shift) * -1));
    }

    to {
        transform: translateX(0);
    }
}

.survey-preview {
    display: grid;
    grid-template-columns: 329px 234px;
    gap: 24px;
    align-items: center;
}

.survey-question,
.survey-ratings > div {
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
}

.survey-question {
    padding: 35px 29px;
}

.survey-question p,
.survey-bars,
.survey-ratings span {
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.survey-question p {
    margin-bottom: 14px;
}

.survey-bars {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 13px;
}

.survey-bars td {
    padding: 0;
    vertical-align: middle;
}

.survey-bars td:first-child {
    width: 31px;
    white-space: nowrap;
}

.survey-bars td:last-child {
    width: 100%;
    padding-left: 8px;
}

.survey-question i {
    display: block;
    height: 15px;
    border-radius: 20px;
    background: rgba(26, 188, 156, 0.5);
    transform-origin: left center;
    transition: transform 4.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.survey-preview.is-pending .survey-question i {
    transform: scaleX(0);
}

.survey-preview.is-visible .survey-question i {
    transform: scaleX(1);
}

.survey-preview.is-visible .survey-bars tr:nth-child(2) i {
    transition-delay: 0.08s;
}

.survey-preview.is-visible .survey-bars tr:nth-child(3) i {
    transition-delay: 0.16s;
}

.survey-question .bar-muted {
    background: rgba(44, 62, 80, 0.7);
}

.survey-question .bar-wide {
    width: 86%;
}

.survey-question .bar-short {
    width: 52%;
}

.survey-question .bar-mid {
    width: 68%;
}

.survey-ratings {
    display: grid;
    gap: 18px;
}

.survey-ratings > div {
    padding: 18px 26px;
}

.small-stars img {
    width: 22px;
    height: 22px;
}

/* Withdrawal Methods */

.withdrawal-section {
    padding-bottom: var(--ddb-section-space);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 234px));
    gap: 34px 36px;
    justify-content: center;
}

.payment-grid div {
    display: grid;
    place-items: center;
    height: 130px;
    border-radius: 10px;
    background: #e9ecef;
    box-shadow: none;
}

.payment-grid img {
    max-width: 150px;
    max-height: 52px;
    object-fit: contain;
}

/* Live Withdrawal */

.live-section {
    padding-bottom: var(--ddb-section-space);
}

.live-card {
    --live-card-inline-padding: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    width: 1009px;
    max-width: 100%;
    min-height: 521px;
    margin: 0 auto;
    padding: 32px 0 40px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--ddb-shadow);
}

.live-col {
    min-width: 0;
}

.live-cta {
    padding-right: var(--live-card-inline-padding);
    padding-left: var(--live-card-inline-padding);
}

.live-illustration {
    width: 300px;
    height: 261px;
    margin: 27px auto 20px;
    border-radius: 9px;
    overflow: hidden;
}

.live-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.live-cta h2 {
    margin-bottom: 14px;
    font-size: 24px;
}

.live-list h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 6px;
    font-size: 32px;
}

.live-list {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-right: var(--live-card-inline-padding);
}

.live-list h2 span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ddb-primary);
}

.withdrawal-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 17px;
    min-height: 79px;
    margin-bottom: 0;
    padding: 14px 31px 14px 23px;
    border-radius: 16px;
    background: #e9ecef;
    box-shadow: none;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.withdrawal-item img {
    width: 50px;
    height: 50px;
}

/* FAQ */

.faq-section {
    padding-bottom: var(--ddb-section-space);
}

.faq-list {
    width: 814px;
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 18px;
    border: 0;
}

.accordion-button {
    min-height: 63px;
    border-radius: 8px !important;
    background: #e9eff2;
    color: var(--ddb-text);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #e9eff2;
    color: var(--ddb-text);
    box-shadow: none;
}

.accordion-button:hover {
    background: rgba(26, 188, 156, 0.1);
    color: #13977d;
}

.accordion-button:active {
    background: rgba(26, 188, 156, 0.16);
    color: #117d69;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.2);
}

.accordion-body {
    color: var(--ddb-muted);
    font-family: "Inter", sans-serif;
}

/* Responsive */

@media (min-width: 1600px) {
    .homepage-body .page-container {
        max-width: 1240px;
    }

    .homepage-body .site-header,
    .homepage-body .navbar {
        min-height: 82px;
    }

    .homepage-body .navbar-brand {
        font-size: 30px;
    }

    .homepage-body .brand-mark {
        width: 62px;
        height: 62px;
    }

    .homepage-body .language-pill {
        height: 48px;
        font-size: 17px;
    }

    .homepage-body .navbar-actions .btn {
        min-height: 48px;
        font-size: 17px;
    }

    .hero-section {
        padding-top: 36px;
        padding-bottom: 104px;
    }

    .hero-section h1 {
        font-size: clamp(56px, 4vw, 68px);
    }

    .hero-copy {
        font-size: 22px;
    }

    .hero-illustration {
        width: 450px;
    }

    .signup-section {
        padding-top: 0;
        padding-bottom: 104px;
    }

    .signup-card {
        width: 520px;
        min-height: 444px;
        padding: 40px 58px 54px;
        border-radius: 32px;
    }

    .signup-card h2 {
        margin-bottom: 28px;
        font-size: 27px;
    }

    .signup-card .form-control,
    .signup-card .btn {
        min-height: 52px;
        font-size: 18px;
    }

    .signup-card .social-btn img {
        width: 34px;
        height: 34px;
    }

    .signup-card .divider {
        margin: 22px 0;
        font-size: 17px;
    }

    .task-showcase {
        gap: 28px;
        min-height: 284px;
    }

    .task-card {
        width: 186px;
        min-height: 242px;
        padding: 17px 19px 22px;
        border-radius: 24px;
    }

    .task-card.small {
        width: 148px;
        min-height: 192px;
        padding: 15px 14px 12px;
    }

    .task-card img {
        width: 149px;
        height: 149px;
        margin-bottom: 9px;
        border-radius: 18px;
    }

    .task-card.small img {
        width: 119px;
        height: 119px;
    }

    .task-card h3,
    .task-card p {
        font-size: 18px;
    }

    .task-card.small h3,
    .task-card.small p {
        font-size: 16px;
    }

    .task-showcase:has(.task-card.small:hover) .task-card.featured,
    .task-showcase:has(.task-card.small:focus-within) .task-card.featured {
        width: 148px;
        min-height: 192px;
        padding: 15px 14px 12px;
    }

    .task-showcase:has(.task-card.small:hover) .task-card.featured img,
    .task-showcase:has(.task-card.small:focus-within) .task-card.featured img {
        width: 119px;
        height: 119px;
    }

    .task-showcase .task-card.small:hover,
    .task-showcase .task-card.small:focus-within {
        width: 186px;
        min-height: 242px;
        padding: 17px 19px 22px;
    }

    .task-showcase .task-card.small:hover img,
    .task-showcase .task-card.small:focus-within img {
        width: 149px;
        height: 149px;
    }

    .task-showcase .task-card.small:hover h3,
    .task-showcase .task-card.small:hover p,
    .task-showcase .task-card.small:focus-within h3,
    .task-showcase .task-card.small:focus-within p {
        font-size: 18px;
    }

    .rating-box {
        width: 350px;
        margin-top: 20px;
        font-size: 18px;
    }

    .rating-box p {
        margin-bottom: 12px;
    }

    .stars {
        gap: 10px;
    }

    .stars img {
        width: 42px;
        height: 41px;
    }

    .stats-section {
        padding-top: 0;
        padding-bottom: 104px;
    }

    .stat-item {
        min-height: 188px;
    }

    .stat-value-wrap {
        height: 126px;
        margin-bottom: 16px;
    }

    .stat-item strong {
        font-size: 100px;
    }

    .stat-value-wrap small {
        font-size: 22px;
    }

    .stat-item span {
        font-size: 25px;
    }

    .stat-item:nth-child(4) span {
        width: 210px;
    }

    .how-section {
        padding-bottom: 104px;
    }

    section h2 {
        margin-bottom: 52px;
        font-size: 38px;
    }

    .step-card {
        max-width: 300px;
    }

    .step-media {
        width: 238px;
        height: 220px;
        margin-bottom: 32px;
        border-radius: 24px;
    }

    .step-card h3 {
        font-size: 26px;
    }

    .step-card p {
        font-size: 19px;
    }

    .earning-section,
    .withdrawal-section,
    .live-section,
    .faq-section {
        padding-bottom: 104px;
    }

    .earning-section h2 {
        margin-bottom: 52px;
    }

    .earning-row {
        gap: 96px;
        margin-bottom: 84px;
    }

    .earning-row-media {
        grid-template-columns: 400px 460px;
        gap: 112px;
    }

    .earning-media {
        width: 400px;
        height: 250px;
        border-radius: 24px;
    }

    .earning-media img {
        width: 500px;
        height: 500px;
        margin-top: -166px;
        margin-left: -66px;
    }

    .earning-copy h3 {
        font-size: 26px;
    }

    .earning-copy p,
    .earning-meta {
        font-size: 19px;
    }

    .mini-task-grid {
        --mini-task-shift: 690px;
        --mini-task-gap: 25px;
        padding: 40px 24px;
        border-radius: 24px;
    }

    .app-card-grid {
        --app-card-gap: 30px;
        --app-card-shift: 534px;
        width: 520px;
        min-height: 252px;
        padding: 40px 30px;
        border-radius: 24px;
    }

    .app-card-set a {
        width: 148px;
        height: 192px;
        border-radius: 24px;
    }

    .app-card-grid img {
        width: 127px;
    }

    .app-card-set a:nth-child(2) img {
        width: 119px;
        height: 119px;
    }

    .app-card-set a:nth-child(3) img {
        width: 136px;
        height: 136px;
    }

    .survey-preview {
        grid-template-columns: 390px 280px;
        gap: 30px;
    }

    .survey-question {
        padding: 42px 34px;
    }

    .survey-question p,
    .survey-bars,
    .survey-ratings span {
        font-size: 20px;
    }

    .survey-ratings > div {
        padding: 22px 30px;
    }

    .small-stars img {
        width: 26px;
        height: 26px;
    }

    .payment-grid {
        grid-template-columns: repeat(3, minmax(0, 260px));
        gap: 40px 42px;
    }

    .payment-grid div {
        height: 152px;
        border-radius: 12px;
    }

    .payment-grid img {
        max-width: 180px;
        max-height: 62px;
    }

    .live-card {
        --live-card-inline-padding: 52px;
        width: 1040px;
        min-height: 560px;
        padding: 40px 0 46px;
        border-radius: 34px;
    }

    .live-list {
        gap: 14px;
    }

    .live-illustration {
        width: 360px;
        height: 313px;
        margin: 32px auto 24px;
    }

    .live-cta h2 {
        font-size: 28px;
    }

    .live-list h2 {
        margin-bottom: 8px;
        font-size: 34px;
    }

    .live-list h2 span {
        width: 26px;
        height: 26px;
    }

    .withdrawal-item {
        grid-template-columns: 60px 1fr auto;
        gap: 20px;
        min-height: 92px;
        padding: 16px 36px 16px 28px;
        border-radius: 18px;
        font-size: 20px;
    }

    .withdrawal-item img {
        width: 60px;
        height: 60px;
    }

    .faq-list {
        width: 880px;
    }

    .accordion-item {
        margin-bottom: 22px;
    }

    .accordion-button {
        min-height: 72px;
        padding-right: 28px;
        padding-left: 28px;
        font-size: 20px;
    }

    .accordion-body {
        font-size: 18px;
    }
}

@media (max-width: 1399.98px) {
    .homepage-body .page-container {
        max-width: 1040px;
    }

    .hero-section h1 {
        font-size: clamp(40px, 3.7vw, 52px);
    }

    .hero-copy {
        font-size: 18px;
    }

    .hero-illustration {
        width: min(340px, 100%);
    }

    .signup-card {
        width: 460px;
        min-height: 374px;
        padding: 32px 48px 44px;
    }

    .signup-card h2 {
        font-size: 22px;
    }

    .task-showcase {
        gap: 18px;
        min-height: 232px;
    }

    .task-card {
        width: 142px;
        min-height: 186px;
        padding: 13px 14px 16px;
    }

    .task-card.small {
        width: 112px;
        min-height: 146px;
        padding: 12px 11px 9px;
    }

    .task-card img {
        width: 112px;
        height: 112px;
    }

    .task-card.small img {
        width: 88px;
        height: 88px;
    }

    .task-card h3,
    .task-card p {
        font-size: 15px;
    }

    .task-card.small h3,
    .task-card.small p {
        font-size: 13px;
    }

    .task-showcase:has(.task-card.small:hover) .task-card.featured,
    .task-showcase:has(.task-card.small:focus-within) .task-card.featured {
        width: 112px;
        min-height: 146px;
        padding: 12px 11px 9px;
    }

    .task-showcase:has(.task-card.small:hover) .task-card.featured img,
    .task-showcase:has(.task-card.small:focus-within) .task-card.featured img {
        width: 88px;
        height: 88px;
    }

    .task-showcase .task-card.small:hover,
    .task-showcase .task-card.small:focus-within {
        width: 142px;
        min-height: 186px;
        padding: 13px 14px 16px;
    }

    .task-showcase .task-card.small:hover img,
    .task-showcase .task-card.small:focus-within img {
        width: 112px;
        height: 112px;
    }

    .task-showcase .task-card.small:hover h3,
    .task-showcase .task-card.small:hover p,
    .task-showcase .task-card.small:focus-within h3,
    .task-showcase .task-card.small:focus-within p {
        font-size: 15px;
    }

    .rating-box {
        width: 280px;
        font-size: 15px;
    }

    .stars img {
        width: 32px;
        height: 31px;
    }

    .stat-item strong {
        font-size: 70px;
    }

    .stat-value-wrap {
        height: 88px;
    }

    .stat-value-wrap small {
        font-size: 18px;
    }

    .stat-item span {
        font-size: 21px;
    }

    section h2 {
        font-size: 32px;
    }

    .step-media {
        width: 200px;
        height: 184px;
    }

    .step-card h3 {
        font-size: 22px;
    }

    .step-card p {
        font-size: 16px;
    }

    .earning-row {
        gap: 52px;
    }

    .earning-row-media {
        grid-template-columns: 330px 370px;
        gap: 68px;
    }

    .earning-media {
        width: 330px;
        height: 206px;
    }

    .earning-media img {
        width: 408px;
        height: 408px;
        margin-top: -136px;
        margin-left: -54px;
    }

    .earning-copy h3 {
        font-size: 22px;
    }

    .earning-copy p,
    .earning-meta {
        font-size: 16px;
    }

    .app-card-grid {
        width: 430px;
        min-height: 210px;
    }

    .survey-preview {
        grid-template-columns: 302px 218px;
        gap: 20px;
    }

    .survey-question p,
    .survey-bars,
    .survey-ratings span {
        font-size: 16px;
    }

    .live-card {
        --live-card-inline-padding: 40px;
        width: 840px;
        min-height: 470px;
        padding: 30px 0 36px;
    }

    .live-list {
        gap: 12px;
    }

    .live-illustration {
        width: 270px;
        height: 235px;
    }

    .live-list h2 {
        font-size: 28px;
    }

    .withdrawal-item {
        grid-template-columns: 44px 1fr auto;
        min-height: 70px;
        font-size: 16px;
    }

    .withdrawal-item img {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: clamp(42px, 5.4vw, 60px);
    }

    .task-showcase {
        gap: 18px;
    }

    .stat-item strong {
        font-size: 76px;
    }

    .stat-value-wrap {
        height: 92px;
    }

    section h2 {
        margin-bottom: 40px;
    }

    .earning-row {
        gap: 56px;
    }

    .earning-row-media {
        grid-template-columns: minmax(0, 364px) minmax(0, 403px);
        gap: 64px;
    }

    .survey-preview {
        grid-template-columns: minmax(0, 329px) minmax(0, 234px);
    }

    .live-card {
        --live-card-inline-padding: 36px;
        padding: 32px 0;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .site-header .page-container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar {
        padding: 8px 0;
    }

    .brand-mark {
        width: 52px;
        height: 52px;
    }

    .navbar-brand {
        font-size: 23px;
    }

    .navbar-collapse {
        overflow: hidden;
        transition: height 0.32s ease;
    }

    .navbar-collapse.collapsing {
        height: 0;
        overflow: hidden;
        transition: height 0.32s ease;
    }

    .navbar-actions {
        align-items: stretch !important;
        flex-direction: column;
        gap: 12px !important;
        padding: 16px 0 10px;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .language-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .navbar-actions .btn {
        width: 100%;
    }

    .language-menu {
        width: 100%;
    }

    .hero-section h1 {
        font-size: clamp(34px, 7vw, 48px);
    }

    .hero-illustration {
        width: min(438px, 100%);
    }

    .task-showcase,
    .earning-row,
    .survey-preview {
        grid-template-columns: 1fr;
    }

    .earning-row-media {
        gap: 32px;
    }

    .earning-row-media .earning-media {
        justify-self: center;
    }

    .earning-row-media .earning-copy {
        text-align: center;
    }

    .earning-row-media .earning-copy h3 {
        white-space: normal;
    }

    .mini-task-grid {
        padding: 30px 18px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, minmax(0, 234px));
    }

    .live-card {
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        padding: 32px;
    }

    .live-cta,
    .live-list {
        width: 100%;
        max-width: 520px;
        padding-right: 0;
        padding-left: 0;
    }

    section h2 {
        margin-bottom: 36px;
    }

    .how-section .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 2rem;
    }

    .step-card {
        display: grid;
        grid-template-columns: 88px 1fr;
        width: 100%;
        max-width: none;
        align-items: center;
        column-gap: 12px;
        row-gap: 4px;
        margin: 0;
        text-align: left;
    }

    .step-media {
        grid-row: 1 / span 2;
        width: 88px;
        height: 80px;
        margin: 0;
        border-radius: 14px;
    }

    .step-media img {
        transform: scale(1.2);
    }

    .step-card h3 {
        align-self: end;
        margin-bottom: 8px;
        font-size: 18px;
    }

    .step-card p {
        grid-column: 2;
        align-self: start;
        margin-bottom: 0;
        font-size: 13px;
    }

    .stat-item {
        min-height: 118px;
        padding: 0 8px;
    }

    .stat-value-wrap {
        height: 70px;
        margin-bottom: 10px;
    }

    .stat-item strong {
        font-size: 52px;
    }

    .stat-value-wrap small {
        font-size: 14px;
    }

    .stat-item span {
        font-size: 15px;
        line-height: 1.15;
        white-space: normal;
    }

    .stat-value-wrap small {
        margin-top: -5px;
        margin-left: 5px;
    }

    .stat-item:nth-child(4) span {
        width: 126px;
    }
}

@media (max-width: 767.98px) {
    .site-header .page-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-section {
        padding-top: 32px;
    }

    .hero-section h1 {
        font-size: clamp(30px, 6vw, 40px);
    }

    .hero-copy {
        font-size: 16px;
    }

    section h2 {
        margin-bottom: 32px;
        font-size: 30px;
        line-height: 1.18;
    }

    .signup-card {
        padding-right: 32px;
        padding-left: 32px;
    }

    .task-showcase {
        max-width: 100%;
        overflow: hidden;
    }

    .stats-section .row {
        --bs-gutter-y: 1.5rem;
    }

    .earning-row {
        gap: 32px;
        margin-bottom: 60px;
    }

    .earning-copy h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .earning-copy p,
    .earning-meta {
        font-size: 15px;
        line-height: 1.35;
    }

    .earning-meta {
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .earning-row-media .earning-meta {
        justify-content: center;
        text-align: center;
    }

    .mini-task-grid,
    .app-card-grid,
    .survey-question,
    .survey-ratings > div,
    .live-card {
        border-radius: 16px;
    }

    .withdrawal-item {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 14px;
        padding-right: 20px;
        padding-left: 18px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 28px 0 48px;
        text-align: left;
    }

    .hero-row {
        --bs-gutter-x: 0;
    }

    .hero-row > .col-8 {
        padding-left: 14px;
    }

    .hero-section h1 {
        margin-bottom: 8px;
        font-size: 28px;
        line-height: 1.15;
    }

    .hero-copy {
        font-size: 12px;
        line-height: 1.25;
    }

    .hero-copy-break {
        display: none;
    }

    .hero-illustration {
        width: min(128px, 100%);
        margin-left: auto;
    }

    section h2 {
        margin-bottom: 28px;
        font-size: 24px;
        line-height: 1.18;
    }

    .earning-section h2 {
        margin-bottom: 20px;
    }

    .earning-row-media {
        gap: 18px;
    }

    .earning-row {
        gap: 24px;
        margin-bottom: 56px;
    }

    .earning-row:last-child {
        margin-bottom: 32px;
    }

    .earning-row-media .earning-media {
        width: 248px;
        height: 154px;
        padding: 0 14px;
    }

    .earning-row-media .earning-media img {
        width: 310px;
        height: 310px;
        margin-top: -100px;
        margin-left: -48px;
    }

    .earning-row-media .earning-copy {
        max-width: 310px;
        margin: 0 auto;
    }

    .earning-copy h3 {
        margin-bottom: 14px;
        font-size: 18px;
        line-height: 1.25;
    }

    .earning-copy p,
    .earning-meta {
        font-size: 12px;
        line-height: 1.35;
    }

    .earning-copy p {
        margin-bottom: 16px;
    }

    .signup-section .row {
        --bs-gutter-x: 0;
    }

    .signup-card {
        width: 100%;
        min-height: 0;
        padding: 24px 20px 28px;
        border-radius: 20px;
    }

    .signup-card h2 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .signup-card .form-control,
    .signup-card .btn {
        min-height: 40px;
        font-size: 14px;
    }

    .signup-card .divider {
        margin: 14px 0;
    }

    .signup-card .social-btn {
        gap: 8px;
    }

    .signup-card .social-btn + .social-btn {
        margin-top: 14px;
    }

    .signup-card .social-btn img {
        width: 24px;
        height: 24px;
    }

    .task-showcase {
        gap: 9px;
        min-height: 170px;
        flex-wrap: nowrap;
    }

    .mini-task-grid {
        --mini-task-shift: 452px;
        padding: 24px 14px;
    }

    .earning-row-app .earning-copy {
        order: 1;
    }

    .earning-row-app .app-card-grid {
        --app-card-gap: 16px;
        --app-card-shift: 324px;
        order: 2;
        width: 100%;
        min-height: 160px;
        padding: 20px 14px;
    }

    .earning-row-app .app-card-set {
        gap: var(--app-card-gap);
    }

    .earning-row-app .app-card-set a {
        width: 92px;
        height: 120px;
        border-radius: 14px;
    }

    .earning-row-app .app-card-grid img {
        width: 78px;
    }

    .earning-row-app .app-card-set a:nth-child(2) img {
        width: 74px;
        height: 74px;
        border-radius: 12px;
    }

    .earning-row-app .app-card-set a:nth-child(3) img {
        width: 82px;
        height: 82px;
    }

    .survey-preview {
        gap: 14px;
    }

    .survey-question {
        padding: 22px 24px;
    }

    .survey-question p,
    .survey-bars,
    .survey-ratings span {
        font-size: 14px;
    }

    .survey-question p {
        margin-bottom: 16px;
    }

    .survey-bars {
        border-spacing: 0 10px;
    }

    .survey-bars td:first-child {
        width: 25px;
    }

    .survey-bars td:last-child {
        padding-left: 6px;
    }

    .survey-question i {
        height: 10px;
    }

    .survey-ratings {
        gap: 14px;
    }

    .survey-ratings > div {
        padding: 14px 24px;
    }

    .small-stars img {
        width: 16px;
        height: 16px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, minmax(132px, 1fr));
        gap: 18px;
    }

    .payment-grid div {
        height: 92px;
        border-radius: 8px;
    }

    .payment-grid img {
        max-width: 104px;
        max-height: 36px;
    }

    .live-card {
        gap: 28px;
        min-height: 0;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .live-illustration {
        width: 190px;
        height: 165px;
        margin: 0 auto 14px;
    }

    .live-illustration img {
        width: 100%;
        height: 100%;
    }

    .live-cta h2 {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .live-cta .btn {
        width: 100%;
        max-width: 300px;
        min-height: 40px;
        font-size: 13px;
    }

    .live-list h2 {
        gap: 8px;
        margin-bottom: 4px;
        font-size: 20px;
    }

    .live-list h2 span {
        width: 14px;
        height: 14px;
    }

    .withdrawal-item {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 58px;
        padding: 11px 14px;
        border-radius: 12px;
        font-size: 13px;
    }

    .withdrawal-item img {
        width: 36px;
        height: 36px;
    }

    .faq-list {
        width: 100%;
    }

    .accordion-item {
        margin-bottom: 12px;
    }

    .accordion-button {
        min-height: 52px;
        padding: 12px 16px;
        align-items: center;
        font-size: 13px;
        line-height: 1.25;
    }

    .accordion-body {
        padding: 12px 16px 16px;
        font-size: 13px;
        line-height: 1.35;
    }

    .task-card {
        width: 112px;
        min-height: 150px;
        padding: 10px 8px 11px;
        border-radius: 14px;
    }

    .task-card.small {
        width: 92px;
        min-height: 128px;
        padding: 8px 7px 9px;
    }

    .task-card img {
        width: 88px;
        height: 88px;
        margin-bottom: 5px;
        border-radius: 10px;
    }

    .task-card.small img {
        width: 72px;
        height: 72px;
    }

    .task-card h3,
    .task-card p,
    .task-card.small h3,
    .task-card.small p {
        font-size: 10px;
        line-height: 1.15;
    }

    .task-showcase:has(.task-card.small:hover) .task-card.featured,
    .task-showcase:has(.task-card.small:focus-within) .task-card.featured {
        width: 92px;
        min-height: 128px;
        padding: 8px 7px 9px;
    }

    .task-showcase:has(.task-card.small:hover) .task-card.featured img,
    .task-showcase:has(.task-card.small:focus-within) .task-card.featured img {
        width: 72px;
        height: 72px;
    }

    .task-showcase .task-card.small:hover,
    .task-showcase .task-card.small:focus-within {
        width: 112px;
        min-height: 150px;
        padding: 10px 8px 11px;
    }

    .task-showcase .task-card.small:hover img,
    .task-showcase .task-card.small:focus-within img {
        width: 88px;
        height: 88px;
    }

    .task-showcase .task-card.small:hover h3,
    .task-showcase .task-card.small:hover p,
    .task-showcase .task-card.small:focus-within h3,
    .task-showcase .task-card.small:focus-within p {
        font-size: 10px;
    }

    .rating-box {
        width: 100%;
        text-align: center;
        font-size: 12px;
    }

    .rating-box .d-flex {
        justify-content: center;
    }

    .stars {
        gap: 4px;
    }

    .stars img {
        width: 20px;
        height: 20px;
    }
}
