/* ─────────────── CSS VARIABLES ─────────────── */
:root {
    --primary: #3B0066;
    --primary-dark: #2AB1B1;
    --primary-light: #E0F3F3;
    --secondary: #D9F1F1;
    --accent: #2AB1B1;
    --accent-light: #fff8ed;
    --text-dark: #1a2332;
    --text-black: #000;
    --text-muted: #3D4949;
    --bg-light: #E0F3F3;
    --bg-white: #ffffff;
    --border: #dde8f5;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-card: 0 4px 24px rgba(27, 108, 168, .10);
    --shadow-hover: 0 8px 36px rgba(27, 108, 168, .18);
    --heading-font: "Sora", sans-serif;
    --body-font: "Jost", sans-serif;
}

/* ─────────────── RESET & BASE ─────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

ul li {
    font-size: 1rem;
}

.hero-who-box {
    padding-left: 20px;
    padding-top: 6px;
}

/* ─────────────── NAVBAR ─────────────── */
/* ─────────────── TOPBAR ─────────────── */
.topbar {
    background: var(--primary);
    padding: 8px 0;
    font-size: .82rem;
}

.topbar-link {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.topbar-link:hover {
    color: var(--accent);
}

.topbar-link svg {
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    font-size: 16px;
    height: 18px;
    border-right: 1px solid #ffffff8c;
    /* background: rgba(255, 255, 255, .15); */
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 700;
    transition: background .2s;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* ─────────────── HERO ─────────────── */
.hero-section {

    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: .4px;
}

.hero-title {
    font-size: clamp(1.5625rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

.hero-title span {
    color: var(--primary-dark);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin: 14px 0 15px;
    line-height: 1.4;
}

.hero-perk {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 4px 12px rgba(27, 108, 168, .10);
    flex: 1;
}

.hero_bg_upcontent .hero-subtitles {
    line-height: 1.3;
}

.hero-subtitles {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.head-subtitle {
    font-size: 1.50rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero_rp {
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px 24px 0;
    box-shadow: var(--shadow-card);
    margin-top: 28px;
}

.hero-perks {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    justify-content: space-between;
}

.hero_img_wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.hero-perks {
    position: absolute;
    width: 97%;
    left: 11px;
    bottom: -55px;
    margin: 0 auto;
}

.hero_bg_upcontent .hero-perk img {
    margin-right: 7px;
}

.hero_img_wrap {
    width: 100%;
}

.hero-basic-wrap {
    display: flex;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img.main-img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%;
    max-width: 420px;
    display: block;
    margin: auto;
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-card);
    font-size: .82rem;
    font-weight: 700;
}

.hero-floating-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.wrap_c .bg_highlighted {
    background-color: #daf1f0;
    display: inline-block;
    margin-bottom: 27px;
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
}

/* ─────────────── FORM CARD ─────────────── */
.form-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 19px rgb(112 112 112 / 14%);
    padding: 36px 32px;
    position: sticky;
    top: 80px;
    border: 1px solid #E1E3E4;
}

.form-card-title {
    font-size: 1.50rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.form-card-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}


/* ─── Stepper ─── */
.stepper {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-item.done::after,
.step-item.active::after {
    background: var(--primary);
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    transition: all .3s;
}

.step-item.active .step-circle {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.step-item.done .step-circle {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.step-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 5px;
    text-align: center;
}

.step-item.active .step-label {
    color: var(--primary);
}

.step-item.done .step-label {
    color: var(--green);
}

/* Form steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeUp .4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Sora';
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-size: 1rem;
    padding: 10px 14px;
    transition: border-color .2s, box-shadow .2s;
    background-color: #F3F4F5;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 108, 168, .12);
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    font-size: .78rem;
}

.input-group-text {
    background: #F3F4F5;
    border-color: var(--border);
    color: var(--primary);
    font-weight: 400;
}

.consent-text {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 23px;
    padding-bottom: 20px;
}

.form-check .form-check-input {
    float: left;
    margin-left: -0.5em;
    position: relative;
    top: 21px;
}

.btn-primary-main {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    font-family: 'Sora';
    border-radius: 8px;
    padding: 13px 30px;
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    transition: background .2s, transform .15s, box-shadow .2s;
    cursor: pointer;
}

.form-check {
    background: #F8F9FA;
    border-radius: 8px;
    border: 1.5px solid #E1E3E4;
}

.btn-primary-main:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(27, 108, 168, .22);
}

/* OTP Step */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-inputs input {
    width: 50px;
    height: 52px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    transition: border-color .2s;
}

.otp-inputs input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 108, 168, .12);
}

.otp-resend {
    font-size: .82rem;
    color: var(--text-muted);
    text-align: center;
}

.otp-resend a {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

/* Thanks Step */
.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eafaf3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.thanks-icon i {
    font-size: 2.4rem;
    color: var(--green);
}

/* ─────────────── WHO IS A POSP ─────────────── */
.who-section {
    background: #f0fbf9;
}

.hero-who-img {
    display: flex;
    align-content: center;
    align-items: center;
}

.section-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.0rem);
    font-weight: 600;
    color: var(--primary);
}

.section-title span {
    color: var(--primary);
}

.section-sub p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 12px;
    line-height: 1.5;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
    margin-bottom: 14px;
    padding-left: 75px;
}

.req-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2ab1b1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-icon i {
    color: var(--bg-white);
    font-size: 1rem;
}

.req-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.who-img-wrap {
    position: relative;
    text-align: right;
}


img.wrap_img_who {
    width: 80%;
}

.who-img-wrap img {
    border-radius: 16px;

}

.hero-who-box h3.head-subtitle {
    margin-bottom: 0px;
    padding-left: 20px;
}

/* ─────────────── BENEFITS ─────────────── */
.benefits-section {
    background: var(--bg-white);
}

.benefit-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1.5px solid #3b0066;
    padding: 28px 18px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    height: 100%;
    height: 355px;
    box-shadow: 1px 2px 3px 0px #000;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .benefit-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text-dark); } */
.benefit-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefit-title h4 {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #3B0066;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.benefits-carousel .owl-stage {
    padding: 30px 0;
}

/* ─────────────── WHO CAN ─────────────── */
.whocan-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.whocan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: .5;
}

.whocan-section .section-label {
    color: #a8d8f8;
}

.whocan-section .section-title {
    color: var(--primary);
}

.whocan-card {
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    backdrop-filter: blur(4px);
    transition: background .25s, transform .25s;
}

.whocan-section .hero-perks {
    position: absolute;
    width: 89%;
    left: 34px;
    padding: 20px;
    bottom: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.who-hero-pay {
    padding-left: 14px;
}

.who_can-hero-perk {
    display: flex;
}

.who-hero-pay {
    padding-left: 12px;
}

.whocan-card-title h3 {
    font-size: 18px;
}

/* .whocan-card-icon { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } */
.whocan-card-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.whocan-card-title {
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 3px;
}

.whocan-card-desc {
    font-size: 1rem;
    color: var(--text-dark);
}

.inclusive-badge {
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.inclusive-badge i {
    color: var(--accent);
    font-size: 1.4rem;
}

.inclusive-badge-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.whocan-img {
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .2);
}

p.section-sub {
    font-size: 1.125rem;
}

/* ─────────────── STEPS ─────────────── */

.step-card {
    background-color: transparent;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

/* .step-card:hover { transform: translateY(-5px); } */
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E7E8E9;
    color: #3D4949;
    font-size: 1.4rem;
    box-shadow: 0px 1px 0 0 #dfdfdf96;
    border: 3px solid #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-family: 'Sora';
    justify-content: center;
    margin: 0px auto 18px;
}

.step-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card-desc {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.4rem;
    z-index: 1;
}

.step_border:before {
    content: "";
    position: absolute;
    left: 12%;
    width: 76%;
    background-color: #E7E8E9;
    height: 2px;
    top: 80px;
}

/* ─────────────── PARTNERS ─────────────── */
.partners-section {
    background: var(--bg-white);
}

.partner-logo {
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s;
    height: 120px;
}

.partner-logo img {
    max-height: 120px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter .2s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Partners carousel */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--border);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary);
}

/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials-section {
    background: var(--bg-white);
}

.testimonial-card {
    padding: 28px 24px;
    height: 100%;
    position: relative;
    text-align: center;
    background: #F8F9FA;
    border-radius: var(--radius-lg);
    border: 1.5px solid #E1E3E4;
}

.testimonial-avatar {
    width: 114px !important;
    height: 114px;
    border-radius: 50%;
    object-fit: cover;
    text-align: center;
    margin: 0 auto;
}

.testimonial-name h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.testimonial-name {
    margin-top: 12px;
}

.testimonial-role p {
    font-size: .78rem;
    color: #2ab1b1;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 14px;
    font-style: normal;
}


/* ─────────────── FAQ ─────────────── */
.faq-section {
    background: #F8F9FA;
    border-top: 1.5px solid #E1E3E4;
}

.faq-sidebar {
    background: #D9F1F1;
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid #2ab1b17a;
}

.faq-title h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.faq-sidebar-sub p {
    font-size: 20px;
    line-height: 30px;
}

.faq-sidebar-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-sidebar-sub {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-sidebar-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: .3;
    margin-bottom: 12px;
}

.accordion-item {
    border: 1.5px solid #E1E3E4 !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: .9rem;
    color: var(--primary);
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-light);
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0);
}

.accordion-body {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-support-btn {
    background: #fff;
    color: #2AB1B1;
    text-align: center;
    border: none;
    border: 1px solid #2ab1b17a;
    border-radius: 4px;
    padding: 11px 24px;
    font-family: 'Sora';
    font-weight: 400;
    font-size: 1rem;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    justify-content: center;
}

.faq_sider img {
    width: 30px;
}

h2.accordion-header button {
    font-size: 18px;
}

.faq-section button:not(.collapsed) {
    background: #ffffff !important;
}

.faq-section h2.accordion-header button {
    font-size: 18px;
    letter-spacing: 0.9px;
    line-height: 30px;
}

.faq-section .accordion-body {
    padding: 0px 20px 20px 20px;

}

.contact-support-btn:hover {
    background: var(--primary-dark);
}

/* ─────────────── FOOTER ─────────────── */
.desclaimer_setion {
    background-color: #2ab1b1;
}

.disclaimer {
    text-align: center;
}

.disclaimer p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .topbar {
        text-align: center;
    }

    .topbar .container {
        justify-content: center !important;
        flex-direction: column;
        gap: 8px !important;
    }

    .footer-main {
        padding: 40px 0 30px;
    }
}

/* ─────────────── BTN CTA ─────────────── */
.btn-cta {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform .2s, box-shadow .2s, background .2s;
    cursor: pointer;
    display: inline-block;
}

.btn-cta:hover {
    /*background: #e09010; */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 161, 36, .3);

}

/* ─────────────── FLOATING CTA (mobile) ─────────────── */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 14px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
    z-index: 998;
}

.whocan-card-icon img {
    max-width: none;
}

@media (min-width: 991px) {
    .testimonial-text p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 1024px) {
    .hero-subtitles {
        font-size: 13px;

    }

    .hero-perks {
        bottom: -46px;
    }
}

@media (max-width: 991px) {
    .floating-cta {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .pb-90 {
        padding-bottom: 60px;
    }

    .disclaimer p {
        font-size: 22px;
        color: #fff;
    }

    .pt-90 {
        padding-top: 60px;
    }

    .hero_content_wrap {
        text-align: center;
    }

    .who-section {
        text-align: center;
    }

    .hero_rp {
        text-align: left;
        margin-bottom: 40px;
    }

    .who_content {
        padding-left: 0;
    }

    .faq-section_wrap {
        text-align: center;
    }

    img.wrap_img_who {
        width: 100%;
    }

    .hero_bg_upcontent .hero-subtitles {
        text-align: left;
        font-size: 13px;
    }

    .hero-perk {
        /*display: flex;*/
        flex-wrap: unset;
        gap: 8px;
        width: 25%;
        align-content: center;
        justify-content: start;
        align-items: center;
        padding: 8px;
    }

    .hero_bg_upcontent .hero-perk img {
        margin-right: 10px;
    }

    .faq_sidebar_wrap {
        text-align: center;
    }

    .hero-basic-wrap {
        display: flex;
        justify-content: center;
    }

    .who_content .section-title,
    .who_content .section-sub {
        text-align: center;
    }

    .left-aligh {
        padding-left: 92px;
    }
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }

    .step-arrow {
        display: none;
    }

    .disclaimer p {
        font-size: 14px;
        color: #fff;
        line-height: 17px;
    }

    .wrap_c .bg_highlighted {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .hero-section.pt-90 {
        padding-top: 20px;
        padding-bottom: 45px;

    }

    .hero-perk {
        display: flex;
        flex-wrap: nowrap;
        width: auto;
        gap: 8px;
        align-content: center;
        margin-bottom: 8px;
        padding: 10px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .who_content .section-title,
    .who_content .section-sub {
        text-align: center;
    }

    .hero-subtitles {
        color: var(--primary);
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 1.2;
        padding-top: 11px;
    }

    .hero_bg_upcontent {
        margin-top: 30px;
    }

    .hero-perks {
        padding: 4px 8px;
    }

    .hero-perks {
        left: 9px;
        bottom: -74px;
        gap: 10px;
        flex-direction: column;
        width: 95%;
    }

    .who-section {
        text-align: center;
    }

    .req-item {
        text-align: left;
    }

    .benefits-section.pt-90 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .whocan-section.pt-90 {
        padding-top: 10px;
    }

    .head-subtitle {
        font-size: 1.125rem;
    }

    .whocan-section .hero-perks {
        position: absolute;
        width: 89%;
        left: 16px;
        padding: 20px;
        bottom: 25px;
    }

    .benefit-title h4 {
        font-weight: 400;
        font-size: 1.125rem;
        margin-bottom: 8px;
        color: #3B0066;
        line-height: 1.4;
    }

    .steps-section.pt-90 {
        padding-top: 29px;
        padding-bottom: 47px;
    }

    .step_border:before {
        content: "";
        position: absolute;
        left: 12%;
        width: 76%;
        background-color: #fff;
        height: 0;
        top: 80px;
    }

    .step-card {
        padding: 10px 24px;
    }

    .partners-section.pb-90 {
        padding-top: 0;
        padding-bottom: 40px;
    }

    section.testimonials-section.pb-90 {
        padding-bottom: 0;
        padding-top: 9px;
    }

    .faq-title h3 {
        font-size: 24px;

    }

    .faq-section.pt-90 {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .faq-section_wrap {
        text-align: center;
    }

    .form-card {
        padding: 33px 15px;
    }

    .hero-who-box h3.head-subtitle {
        text-align: left;
    }

    .faq-section h2.accordion-header button {
        font-size: 16px;
        letter-spacing: 0.9px;
        line-height: 25px;
    }

    .accordion-item {
        margin-top: 16px;
    }

    .who-img-wrap {
        padding-top: 26px;
    }

    .form-card-title {
        font-size: 1.375rem;

    }

    .whocan-card-title h3 {
        font-size: 16px;
    }

    div#faqAccordion {
        margin-top: 30px;
    }

    img.wrap_img_who {
        width: 100%;
    }

    .hero-perks {
        display: flex;
        flex-direction: column;
    }

    .whocan-card-icon {
        width: 100px;
        display: contents;
    }

    .whocan-card {
        padding: 14px 13px;
    }

    .hero_bg_upcontent .hero-perk img {
        margin-right: 0;
    }

    .hero-who-img img.img-fluid {
        width: 46px;
    }

    .hero-who-box {
        padding-left: 11px;
        padding-top: 6px;
    }

    .req-item {
        padding-left: 56px;
    }

    .hero-who-box h3.head-subtitle {
        padding-left: 11px;
    }

    .req-icon {
        width: 26px;
        height: 26px;
    }
}


/* ─────────────── SCROLL ANIMATION ─────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}