@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

main * {
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.text-muted {
    color: #6b7280 !important;
    font-weight: 500;
}

.bg-linght {
    background-color: #eff5ff !important;
}

.common-title {
    color: #0f1728;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
}

.common-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.625;
}

.section-py {
    padding-block: 75px;

    @media (max-width: 767px) {
        padding-block: 50px;
    }
}

/* HERO SECTION */
.hero-section {
    overflow: hidden;
    background: linear-gradient(135deg, #0b5fff 0%, #24638d 60%, #0a4fd4 100%);

    .hero-badge {
        background: rgba(255, 255, 255, 0.15);
        font-size: 0.875rem;
        font-weight: 500;
        border: 1px solid #ffffff40;
        color: #fff;
    }

    .hero-title {
        font-size: 48px;
        font-weight: 800;
        color: #fff;
    }

    .hero-text {
        font-size: 18px;
        color: #bfdbfe;
        font-weight: 400;
    }

    .accepted-label {
        color: #93c5fd;
        font-size: 0.875rem;
    }

    .crypto-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgb(255, 255, 255);
        padding: 4px;
        flex: none;
    }

    .crypto-text {
        font-size: 0.875rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        color: #fff;
    }

    .gradient-btn {
        background: linear-gradient(135deg, #ffd54a, #f5c400);
    }

    .btn-main {
        text-decoration: none;
        font-size: 1rem;
        border-radius: 0.75rem;
        color: #000;
        font-weight: 600;
        border: none;

        &:hover {
            opacity: 0.9;
        }
    }

    .btn-outline-custom {
        text-decoration: none;
        background: rgba(255, 255, 255, 0.15);
        font-size: 1rem;
        color: #fff;
        font-weight: 600;
        border-radius: 0.75rem;
        border: 1px solid #ffffff40;

        &:hover {
            background-color: rgb(255 255 255 / 0.25);
        }
    }

    .hero-features {
        font-size: 0.875rem;
        color: #bfdbfe;
    }

    .hero-image-wrapper {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .float-card-bottom {
        position: absolute;
        bottom: -20px;
        left: -32px;
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: 1rem;
        min-width: 200px;
    }

    .float-card-top {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        padding: 0.75rem 1rem;
        text-align: center;
    }

    .small-text {
        font-size: 0.75rem;
    }

    .amount-text {
        font-size: 24px;
    }

    .total-text {
        font-size: 1.1rem;
        color: #1d4ed8;
    }

    .pulse-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #4ade80;
        animation: pulse 1.5s infinite;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

@media (max-width: 767px) {
    .float-card-bottom {
        left: -10px;
    }
    .float-card-top {
        top: 10px;
        right: 10px;
    }
}

/* CRYPTO SECTION */
.crypto-section {
    .crypto-image-wrapper {
        border-radius: 1rem;
    }

    .crypto-img {
        height: 450px;
        object-fit: cover;
    }

    .crypto-label {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
    }

    .crypto-icon-lg {
        width: 32px;
        height: 32px;
    }

    .crypto-badge {
        background: #f0fdf4;
        color: #15803d;
        border: 1px solid #bbf7d0;
        border-radius: 5px;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 4px 8px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .crypto-assets-text {
        letter-spacing: 0.12em;
    }

    .crypto-pill {
        background: #e9f3ff;
        color: #1d4ed8;
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 600;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .crypto-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .crypto-desc {
        line-height: 1.7;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        background: #e5f1ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
        flex: none;
    }

    .assets-float {
        position: absolute;
        bottom: -24px;
        right: -24px;
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: 1.25rem;
        border: 1px solid #f1f5f9;

        @media (max-width: 767px) {
            right: -15px;
        }
    }
    .feature-head {
        font-size: 16px;
        font-weight: 600;
    }
    .feature-text {
        font-size: 14px;
        font-weight: 400;
        color: #333;
    }

    @media (max-width: 767px) {
        .crypto-img {
            height: 260px;
        }
    }
}

/* BENEFITS */
.benefit-section {
    /* badge */
    .benefit-badge {
        background: #fffbeb;
        color: #92400e;
        border: 1px solid #fde68a;
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 600;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* heading */
    .benefit-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* card (already hai, but ensure) */
    .benefit-card {
        border-radius: 1rem;
        padding: 20px;
        transition: box-shadow 0.2s;

        &:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
    }

    /* icon base (IMPORTANT — tum puch rahe the ye kaha hai) */
    .benefit-icon {
        width: 48px;
        height: 48px;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    /* text */
    .benefit-heading {
        font-size: 18px;
    }

    .benefit-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* ─── EXACT inline conversion (card backgrounds + border) ─── */
    .benefit-blue {
        background: linear-gradient(135deg, #eff6ff, #fff);
        border-color: #dbeafe !important;
    }

    .benefit-yellow {
        background: linear-gradient(135deg, #fffbeb, #fff);
        border-color: #fde68a !important;
    }

    .benefit-green {
        background: linear-gradient(135deg, #f0fdf4, #fff);
        border-color: #bbf7d0 !important;
    }

    .benefit-purple {
        background: linear-gradient(135deg, #faf5ff, #fff);
        border-color: #e9d5ff !important;
    }

    /* ─── EXACT inline conversion (icon backgrounds) ─── */
    .benefit-icon-blue {
        background: #2563eb;
    }

    .benefit-icon-yellow {
        background: #facc15;
    }

    .benefit-icon-green {
        background: #22c55e;
    }

    .benefit-icon-purple {
        background: #9333ea;
    }
}

/* CTA SECTION */
.cta-section {
    .cta-inner-part {
        background: linear-gradient(135deg, #0b5fff 0%, #24638d 60%, #0a4fd4 100%);
        border-radius: 20px;
    }

    .gradient-btn {
        background: linear-gradient(135deg, #ffd54a, #f5c400);
        text-decoration: none;
        font-size: 1rem;
        border-radius: 0.75rem;
        color: #000;
        font-weight: 600;
        border: none;

        &:hover {
            opacity: 0.9;
        }
    }

    .mid-cta-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* inline conversion */

    .cta-badge {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid #ffffff40;
        color: #fff;
        font-size: 12px;
        letter-spacing: 0.08em;
        padding: 6px 15px;
        border-radius: 50px;
    }

    .cta-title {
        font-size: clamp(1.6rem, 4vw, 2.3rem);
    }

    .cta-text {
        color: #bfdbfe;
        line-height: 1.7;
    }

    .cta-chip {
        background: #004e99;
        border: 1px solid #ffffff40;
        color: #fff;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 0.5rem;
    }

    .cta-chip-text {
        font-size: 0.875rem;
    }
}

/* COMPARE SECTION */
.compare-table-section {
    .table-responsive {
        border-radius: 16px;
    }
    .compare-badge {
        background: #e9f3ff;
        color: #1d4ed8;
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 600;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* ===== heading ===== */
    .compare-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* ===== description ===== */
    .compare-desc {
        max-width: 480px;
    }

    /* ===== table ===== */
    .compare-table {
        min-width: 700px;
    }

    /* ===== header cells ===== */
    .compare-th {
        width: 25%;
        font-size: 0.875rem;
    }

    /* ===== FUNDERIAL HEADER (EXACT) ===== */
    .col-funderial-head {
        background: #0b5fff !important;
        color: #fff;
        width: 25%;
        position: relative;
        text-align: center;
        vertical-align: middle;
    }

    /* ===== ⭐ badge inside header ===== */
    .compare-top-badge {
        background: #facc15;
        color: #78350f;
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 99px;
        white-space: nowrap;
    }

    /* ===== header inner layout ===== */
    .compare-head {
        position: relative;
        padding-top: 1.5rem;
    }

    /* ===== header title ===== */
    .compare-head-title {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin-top: 5px;
    }

    .compare-head-sub {
        color: #bfdbfe;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .compare-head {
        font-size: 16px;
        font-weight: 600;
    }
    .compare-sub {
        font-size: 0.75rem;
        font-weight: 500;
    }

    .compare-td {
        font-size: 0.875rem;
        font-weight: 400;
        color: #000;
        padding: 15px 15px;
    }

    .compare-value {
        font-size: 0.875rem;
        color: #6b7280;
        font-weight: 400;
    }

    .col-funderial {
        background: rgba(37, 99, 235, 0.05);
    }
    .table-check {
        color: #22c55e;
        width: 20px;
        height: 20px;
    }

    .table-x {
        color: #ef4444;
        width: 20px;
        height: 20px;
    }
tbody, td, tfoot, th, thead, tr{
    border-color: #f2f3f5;
}
    .compare-table td,
    .compare-table th {
        vertical-align: middle;
    }

    .compare-table tbody tr:hover {
        background-color: #f9fafb;
    }
    thead th {
        border-bottom-color: #dee2e6 !important;
    }
}

/* HOW IT WORKS */
.work-process-sec {
    /* top badge */
    .how-badge {
        background: #e9f3ff;
        color: #1d4ed8;
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 600;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* heading */
    .how-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* description */
    .how-desc {
        max-width: 480px;
    }

    /* step card */
    .step-card {
        transition: box-shadow 0.2s;
        position: relative;
        background: #fff;
        padding: 25px 20px;
        border-radius: 20px;
        border: 1px solid #e6e6e6;

        &:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
    }

    /* STEP NUMBER (IMPORTANT — missed before) */
    .step-num {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #0b5fff;
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1rem;
    }

    /* step titles */
    .how-step-title {
        font-size: 1.25rem;
    }

    /* step text */
    .how-step-text {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    /* badges inside cards */
    .how-badge-blue {
        background: #e9f3ff;
        color: #1d4ed8;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .how-badge-green {
        background: #f0fdf4;
        color: #15803d;
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* CONNECTING LINE (IMPORTANT — missed before) */
    .steps-line {
        position: absolute;
        top: 40px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, #e5e7eb, #c7d2fe, #e5e7eb);
        z-index: 0;
    }

    /* ensure cards above line */
    .step-card {
        z-index: 1;
    }

    /* icon alignment (crypto icons row) */
    .step-card img {
        display: inline-block;
    }

    /* responsive fix */
    @media (max-width: 767px) {
        .steps-line {
            display: none;
        }
    }
}

.crypto-form-section {
    background: linear-gradient(135deg, #0b5fff 0%, #24638d 60%, #0a4fd4 100%);
    .form-left-area {
        position: sticky;
        top: 150px;
    }
    .form-right-part {
        box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2) !important;
        background: #fff;
        border-radius: 20px;
        padding: 35px;

        @media (max-width:576px) {
              padding: 35px 20px;
        
        }
    }
    /* ── Revenue / Crypto toggle buttons ── */
    .revenue-btn {
        border: 2px solid #cbd5e1;
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 0.93rem;
        font-weight: 500;
        cursor: pointer;
        color: #334155;
        background: #fff;
        transition: all 0.15s;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .revenue-btn.active,
    .revenue-btn:hover {
        border-color: #0b5fff;
        background: #eff5ff;
        color: #0b5fff;
    }

    /* ── Form inputs ── */
    .form-input {
        border: 1.5px solid #cbd5e1;
        border-radius: 8px;
        padding: 11px 14px;
        font-size: 0.97rem;
        width: 100%;
        outline: none;
        transition: border 0.15s;
    }

    .form-input:focus {
        border-color: #0b5fff;
        box-shadow: none;
    }

    /* ── BBB / SSL badges ── */
    .bbb-badge {
        border: 2px solid #003087;
        border-radius: 8px;
        padding: 8px 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
    }

    .ssl-badge {
        border: 2px solid #21a366;
        border-radius: 8px;
        padding: 8px 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
    }

    .gradient-btn {
        background: linear-gradient(135deg, #ffd54a, #f5c400);
        text-decoration: none;
        font-size: 1rem;
        border-radius: 0.75rem;
        color: #000;
        font-weight: 600;
        border: none;

        &:hover {
            opacity: 0.9;
        }
    }
}
