/* =========================================================
   HEROFAUCET — PREMIUM LANDING PAGE
   CLEAN / RESPONSIVE / NO DUPLICATE CSS
========================================================= */

:root {
    --hf-dark: #242426;
    --hf-dark-2: #303033;
    --hf-dark-3: #3a3838;

    --hf-cyan: #29c0c0;
    --hf-cyan-dark: #159b9b;

    --hf-blue: #1f54e7;
    --hf-blue-dark: #1744c5;

    --hf-text: #20242d;
    --hf-muted: #687080;

    --hf-bg: #f6f8fb;
    --hf-white: #ffffff;

    --hf-border: rgba(20, 30, 50, .08);

    --hf-shadow:
        0 15px 45px rgba(24, 35, 55, .08);

    --hf-shadow-hover:
        0 22px 55px rgba(24, 35, 55, .14);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: var(--hf-bg);
    color: var(--hf-text);
}

section {
    position: relative;
    width: 100%;
}

.container {
    width: 94% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.title {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.title h2 {
    margin: 0 0 12px;

    color: var(--hf-text);

    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: -.6px;
}

.title h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin: 15px auto 0;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--hf-cyan),
            var(--hf-blue)
        );
}

.title p {
    margin: 15px 0 0;

    color: var(--hf-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   HERO
========================================================= */

/* =========================================================
   PREMIUM DARK HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 35px 0 65px;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(41,192,192,.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 20%,
            rgba(31,84,231,.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(41,192,192,.08),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #272729 0%,
            #303033 50%,
            #3a3838 100%
        );

    color: #fff;
}

/* Decorative glow */
.hero::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    top: -190px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,192,192,.16),
            transparent 68%
        );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -180px;
    bottom: -190px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31,84,231,.15),
            transparent 68%
        );

    pointer-events: none;
}


/* Hero content above background effects */

.hero .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-text h1 {
    color: #ffffff;
}

.hero-text h1 span {
    background:
        linear-gradient(
            135deg,
            #45e0df,
            #4d82ff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-text p {
    color: rgba(255,255,255,.72);
}


/* =========================================================
   HERO IMAGE GLOW
========================================================= */

.hero-image::before {
    background:
        radial-gradient(
            circle,
            rgba(41,192,192,.18),
            rgba(31,84,231,.10),
            transparent 70%
        );
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.hero-btns .btn-outline {
    color: #ffffff;

    background: rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.20);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btns .btn-outline:hover {
    color: #ffffff;

    background: rgba(255,255,255,.12);

    border-color:
        rgba(41,192,192,.45);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hero-btns .btn-primary {
    background:
        linear-gradient(
            135deg,
            #1f54e7,
            #29c0c0
        );

    box-shadow:
        0 10px 30px rgba(31,84,231,.28);
}

.hero-btns .btn-primary:hover {
    box-shadow:
        0 15px 35px rgba(41,192,192,.25);
}


/* =========================================================
   HERO IMAGE - PREMIUM MATCHING
========================================================= */

.hero-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
}


/* Old circle background remove */

.hero-image::before {
    display: none;
}


/* Hero Image */

.hero-image img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    max-width: 620px;
    height: auto;

    max-height: 500px;

    object-fit: contain;

    border-radius: 24px;

    filter:
        drop-shadow(0 25px 45px rgba(0,0,0,.28))
        drop-shadow(0 0 30px rgba(41,192,192,.12));

    animation:
        heroFloat 5s ease-in-out infinite;
}


/* Soft premium glow behind image */

.hero-image::after {
    content: "";

    position: absolute;

    width: 82%;
    height: 78%;

    top: 10%;
    right: 4%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(41,192,192,.16) 0%,
            rgba(31,84,231,.11) 42%,
            transparent 72%
        );

    filter: blur(28px);

    z-index: 1;

    pointer-events: none;
}


/* Floating animation */

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-image {
        margin-top: 5px;
    }

    .hero-image img {
        width: min(100%, 560px);
        max-height: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hero-image {
        margin-top: 10px;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;

        border-radius: 18px;

        filter:
            drop-shadow(0 18px 30px rgba(0,0,0,.22));
    }

    .hero-image::after {
        width: 90%;
        height: 70%;

        left: 5%;
        right: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-image img {
        width: 100%;
        max-width: 100%;

        border-radius: 14px;
    }

}

/* =========================================================
   ADS
========================================================= */

.ads-container {
    width: 94%;
    max-width: 1320px;

    margin: 22px auto;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   STATISTICS
========================================================= */

#statistics {
    padding: 90px 0;

    background: #fff;
}

.stats-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;
}

.stat-box {
    position: relative;

    width: 100%;

    padding: 28px 18px;

    text-align: center;

    background: #fff;

    border:
        1px solid var(--hf-border);

    border-radius: 16px;

    box-shadow: var(--hf-shadow);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.stat-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--hf-cyan),
            var(--hf-blue)
        );
}

.stat-box:hover {
    transform: translateY(-6px);

    box-shadow:
        var(--hf-shadow-hover);
}

.stat-box img {
    width: 48px;
    height: 48px;

    object-fit: contain;

    margin-bottom: 15px;
}

.stat-box h3 {
    margin: 0 0 6px;

    color: #20242d;

    font-size: 23px;
    font-weight: 800;
}

.stat-box p {
    margin: 0;

    color: #7a8290;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   OFFERWALLS
========================================================= */

#offerwalls {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #f6f8fb,
            #ffffff
        );
}

.offer-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.offer-box {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 28px 20px;

    background: rgba(255,255,255,.96);

    border:
        1px solid var(--hf-border);

    border-radius: 18px;

    box-shadow: var(--hf-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.offer-box:hover {
    transform: translateY(-5px);

    border-color:
        rgba(41,192,192,.20);

    box-shadow:
        var(--hf-shadow-hover);
}

.offer-box img {
    width: 82px !important;
    height: 82px !important;

    max-width: 82px !important;
    max-height: 82px !important;

    display: block;

    object-fit: contain !important;

    margin: 0 auto 18px !important;

    padding: 10px;

    border-radius: 18px;

    background: #fff;

    border:
        1px solid rgba(20,30,50,.07);

    box-shadow:
        0 10px 25px rgba(0,0,0,.10),
        0 2px 8px rgba(0,0,0,.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.offer-box:hover img {
    transform:
        translateY(-4px)
        scale(1.06);

    box-shadow:
        0 15px 32px rgba(0,0,0,.16),
        0 0 22px rgba(41,192,192,.12);
}

.offer-box h4 {
    margin: 2px 0 7px;

    color: #1f2937;

    font-size: 16px;
    font-weight: 700;
}

.offer-box p {
    max-width: 260px;

    margin: 0;

    color: #6b7280;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FEATURES
========================================================= */

#features {
    padding: 90px 0;

    background: #fff;
}

.feature-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.feature-box {
    position: relative;

    width: 100%;

    padding: 30px 22px;

    background: #fff;

    border:
        1px solid var(--hf-border);

    border-radius: 16px;

    box-shadow: var(--hf-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.feature-box:hover {
    transform: translateY(-5px);

    border-color:
        rgba(41,192,192,.20);

    box-shadow:
        var(--hf-shadow-hover);
}

.feature-box i {
    width: 48px;
    height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 13px;

    color: #fff;

    font-size: 19px !important;

    background:
        linear-gradient(
            135deg,
            var(--hf-cyan),
            var(--hf-blue)
        );

    box-shadow:
        0 8px 20px rgba(31,84,231,.15);
}

.feature-box h4 {
    margin: 0 0 9px;

    color: #252a33;

    font-size: 15px;
    font-weight: 750;
}

.feature-box p {
    margin: 0;

    color: #747d8b;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   PAYMENT
========================================================= */

#payments {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #f5f8fc,
            #eef4fb
        );
}

.payment-wrap {
    width: 100%;

    overflow-x: auto;

    background: #fff;

    border:
        1px solid var(--hf-border);

    border-radius: 18px;

    box-shadow: var(--hf-shadow);
}

.payment-wrap table {
    width: 100%;

    border-collapse: collapse;
}

.payment-wrap th {
    padding: 16px 20px;

    background:
        linear-gradient(
            135deg,
            var(--hf-dark),
            var(--hf-dark-2)
        );

    color: rgba(255,255,255,.88);

    text-align: left;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .3px;
}

.payment-wrap td {
    padding: 15px 20px;

    color: #4d5664;

    font-size: 13px;

    border-bottom:
        1px solid rgba(30,40,60,.06);
}

.payment-wrap tr:last-child td {
    border-bottom: 0;
}

.payment-wrap tr {
    transition:
        background .2s ease;
}

.payment-wrap tr:hover td {
    background: #f7fbfc;
}

.payment-wrap td img {
    width: 20px;
    height: 20px;

    object-fit: contain;

    vertical-align: middle;
}

.payment-wrap .badge {
    display: inline-flex;

    align-items: center;

    padding: 5px 10px;

    border-radius: 20px;

    background:
        rgba(25,175,105,.10);

    color: #159b63;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 90px 0;

    background: #fff;
}

.faq-grid {
    width: 94%;
    max-width: 1320px;

    margin-left: auto;
    margin-right: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    align-items: center;

    gap: 55px;
}

.faq-image {
    display: flex;

    align-items: center;
    justify-content: center;
}

.faq-image img {
    width: 100%;
    max-width: 430px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 30px rgba(30,50,80,.10)
        );
}

.faq-item {
    margin-bottom: 12px;

    padding: 19px 22px;

    background: #fff;

    border:
        1px solid var(--hf-border);

    border-radius: 13px;

    box-shadow:
        0 7px 25px rgba(20,30,50,.045);

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.faq-item:hover {
    border-color:
        rgba(41,192,192,.25);

    transform: translateX(3px);
}

.faq-item h4 {
    margin: 0 0 8px;

    color: #262b34;

    font-size: 14px;
    font-weight: 750;
}

.faq-item p {
    margin: 0;

    color: #737d8b;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   TRUST / CTA
========================================================= */

.hf-trust {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #272729,
            #3a3838
        );

    color: #fff;
}

.hf-trust-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.hf-trust-text h2 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 28px;
    font-weight: 800;
}

.hf-trust-text p {
    max-width: 700px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.8;
}

.hf-trust-points {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.hf-trust-points span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.09);

    color:
        rgba(255,255,255,.85);

    font-size: 11px;
    font-weight: 600;
}

.hf-trust-points i {
    color: var(--hf-cyan);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .container,
    .faq-grid,
    .ads-container {
        max-width: 1380px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-wrap {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .offer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .feature-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .hero {
        padding: 65px 0;
    }

    .hero-wrap {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 35px;
    }

    .hero-text {
        max-width: 760px;

        margin: 0 auto;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image img {
        max-width: 430px;
    }

    .faq-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .faq-image {
        order: 1;
    }

    .faq-grid > div:last-child {
        order: 2;
    }

    .hf-trust-box {
        flex-direction: column;

        text-align: center;
    }

    .hf-trust-points {
        justify-content: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .container {
        width: 92% !important;

        max-width: none !important;
    }

    .faq-grid,
    .ads-container {
        width: 92%;
    }

    .title {
        margin-bottom: 30px;
    }

    .title h2 {
        font-size: 27px;
    }

    .title p {
        font-size: 13px;
    }

    #statistics,
    #offerwalls,
    #features,
    #payments,
    .faq-section {
        padding: 65px 0;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

    .offer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

    .stat-box,
    .offer-box,
    .feature-box {
        padding: 22px 15px;
    }

    .offer-box img {
        width: 72px !important;
        height: 72px !important;

        max-width: 72px !important;
        max-height: 72px !important;

        padding: 8px;

        border-radius: 15px;

        margin-bottom: 14px !important;
    }

    .offer-box h4 {
        font-size: 15px;
    }

    .offer-box p {
        font-size: 12px;
    }

    .payment-wrap table {
        min-width: 650px;
    }

    .hf-trust {
        padding: 55px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container,
    .faq-grid,
    .ads-container {
        width: 94% !important;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero-text h1 {
        font-size: 35px;

        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 14px;

        line-height: 1.75;
    }

    .hero-btns {
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-image img {
        max-width: 330px;
    }

    .stats-grid,
    .offer-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 16px;
    }

    .hf-trust-text h2 {
        font-size: 23px;
    }
}