@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --site-bg: #f5f8ff;
    --site-bg-alt: #eef3ff;
    --site-surface: rgba(255, 255, 255, 0.92);
    --site-surface-strong: #ffffff;
    --site-ink: #14213d;
    --site-muted: #60708e;
    --site-line: rgba(20, 33, 61, 0.10);
    --site-brand: #df2951;
    --site-brand-deep: #b9123d;
    --site-brand-soft: #ffe7ee;
    --site-accent: #0ea5a4;
    --site-accent-soft: #dff7f6;
    --site-hero-start: #0f1735;
    --site-hero-mid: #1d2858;
    --site-hero-end: #df2951;
    --site-footer-start: #0f1735;
    --site-footer-end: #111d47;
    --site-shadow: 0 24px 60px rgba(22, 33, 74, 0.12);
    --site-shadow-soft: 0 14px 34px rgba(22, 33, 74, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 !important;
    background:
        radial-gradient(circle at top left, rgba(223, 41, 81, 0.16) 0, transparent 30%),
        radial-gradient(circle at top right, rgba(14, 165, 164, 0.12) 0, transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 48%, #f7f9ff 100%) !important;
    color: var(--site-ink) !important;
    overflow-x: hidden !important;
    font-family: 'Manrope', sans-serif !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
        linear-gradient(90deg, rgba(20, 33, 61, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(20, 33, 61, 0.03) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
    z-index: 0;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.about-text,
.reg-txt,
.otp-title {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--site-ink) !important;
    letter-spacing: -0.04em !important;
}

p,
li,
label,
input,
select,
textarea,
.btn,
.site-footer-link,
.site-nav-link {
    font-family: 'Manrope', sans-serif !important;
}

.container,
.container-fluid {
    width: 100% !important;
}

.container {
    padding-left: 18px !important;
    padding-right: 18px !important;
}

#ct-nav.site-nav {
    position: sticky !important;
    top: 0;
    padding: 12px 18px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    border-bottom: 1px solid var(--site-line) !important;
    box-shadow: 0 18px 46px rgba(20, 33, 61, 0.08) !important;
    backdrop-filter: blur(14px);
    z-index: 60;
}

#ct-nav.site-nav .site-brand img {
    width: 140px !important;
    filter: saturate(1.02) contrast(1.04);
}

#ct-nav.site-nav .navbar-toggler {
    padding: 10px 11px !important;
    border: 1px solid rgba(20, 33, 61, 0.10) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.08) !important;
}

#ct-nav.site-nav .navbar-toggler:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.18rem rgba(223, 41, 81, 0.16) !important;
}

#ct-nav.site-nav .navbar-collapse.show,
#ct-nav.site-nav .navbar-collapse.collapsing {
    margin-top: 16px !important;
    padding: 16px !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 22px 52px rgba(20, 33, 61, 0.12) !important;
}

#ct-nav.site-nav .navbar-collapse {
    transition: none !important;
}

#ct-nav.site-nav .site-nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 100% !important;
}

#ct-nav.site-nav .navstyle,
#ct-nav.site-nav .site-nav-link.navstyle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 10px 18px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    color: var(--site-ink) !important;
    font: 800 12px/1.2 'Manrope', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    height: auto !important;
    top: auto !important;
}

#ct-nav.site-nav .navstyle:hover,
#ct-nav.site-nav .site-nav-link:hover,
#ct-nav.site-nav .navstyle:focus,
#ct-nav.site-nav .site-nav-link:focus {
    background: var(--site-brand-soft) !important;
    color: var(--site-brand-deep) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

#ct-nav.site-nav .site-nav-link-primary {
    background: linear-gradient(135deg, var(--site-brand) 0%, #f14f73 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(223, 41, 81, 0.22) !important;
}

#ct-nav.site-nav .site-nav-link-primary:hover,
#ct-nav.site-nav .site-nav-link-primary:focus {
    background: linear-gradient(135deg, #cf2148 0%, #ea456b 100%) !important;
    color: #ffffff !important;
}

.howitworks,
.Home-area1,
.Home-area2,
.Home-area3,
.Home-area4,
.Home-area5,
.Home-area6,
.Home-area7,
.login-image,
.faq-bg,
.testimonial-bg1,
.site-footer-panel {
    position: relative;
    overflow: hidden !important;
    border-radius: 34px !important;
}

.howitworks,
.Home-area2,
.Home-area3,
.Home-area4,
.Home-area5,
.Home-area6,
.Home-area7,
.site-footer-panel {
    border: 1px solid var(--site-line) !important;
    box-shadow: var(--site-shadow) !important;
}

.Home-area1,
.Home-area5,
.Home-area7,
.login-image,
.faq-bg,
.hero-image,
.testimonial-bg1,
.topnav,
.whyacash {
    background-image: none !important;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 164, 0.16) 0, transparent 28%),
        linear-gradient(135deg, var(--site-hero-start) 0%, var(--site-hero-mid) 52%, var(--site-hero-end) 100%) !important;
}

.Home-area1::before,
.Home-area5::before,
.Home-area7::before,
.login-image::before,
.faq-bg::before,
.hero-image::before,
.testimonial-bg1::before,
.whyacash::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08) 0, transparent 28%),
        linear-gradient(135deg, rgba(9, 15, 36, 0.14) 0%, rgba(9, 15, 36, 0.08) 100%);
    z-index: 0;
}

.Home-area2,
.Home-area4,
.Home-area6 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 255, 0.98) 100%) !important;
}

.Home-area3 {
    background: linear-gradient(180deg, rgba(251, 252, 255, 0.98) 0%, rgba(239, 244, 255, 0.98) 100%) !important;
}

.hero-text,
.Home-main-area1,
.Home-main-area2,
.Home-main-area3,
.Home-main-area4,
.Home-main-area5,
.Home-main-area6,
.Home-main-area7 {
    position: relative !important;
    z-index: 1 !important;
}

.hero-text {
    padding: 34px !important;
}

.hero-text > .row,
.Home-main-area1 > .row,
.Home-main-area2 > .row,
.Home-main-area3 > .row,
.Home-main-area4 > .row,
.Home-main-area5 > .row,
.Home-main-area6 > .row,
.Home-main-area7 > .row {
    position: relative;
    z-index: 1;
}

.about-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 18px !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    box-shadow: 0 12px 28px rgba(9, 15, 36, 0.14) !important;
    backdrop-filter: blur(8px);
}

.about-title::before {
    content: "Fast Digital Lending";
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.84);
    font: 800 11px/1 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-text {
    margin-bottom: 14px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.05em !important;
    font-weight: 700 !important;
}

.Home-area1 .about-text,
.Home-area5 .about-text,
.Home-area7 .about-text,
.login-image .reg-txt,
.faq-bg .about-text,
.hero-image .about-text,
.testimonial-bg1 .about-text,
.howitworks .about-text[style*='#FFF'],
.howitworks .about-text[style*='#fff'] {
    color: #ffffff !important;
}

.Home-area1 p,
.Home-area5 p,
.Home-area7 p,
.faq-bg p,
.hero-image p,
.testimonial-bg1 p,
.Home-area1 h1,
.Home-area5 h1,
.Home-area7 h1,
.faq-bg h1,
.hero-image h1,
.testimonial-bg1 h1,
.Home-area1 h2,
.Home-area5 h2,
.Home-area7 h2,
.faq-bg h2,
.hero-image h2,
.testimonial-bg1 h2,
.Home-area1 h3,
.Home-area5 h3,
.Home-area7 h3,
.faq-bg h3,
.hero-image h3,
.testimonial-bg1 h3,
.Home-area1 a:not(.btn):not(.nav-link),
.Home-area5 a:not(.btn):not(.nav-link),
.Home-area7 a:not(.btn):not(.nav-link),
.faq-bg a:not(.btn):not(.nav-link),
.hero-image a:not(.btn):not(.nav-link),
.testimonial-bg1 a:not(.btn):not(.nav-link) {
    color: rgba(255, 255, 255, 0.94) !important;
    text-shadow: 0 2px 12px rgba(8, 14, 33, 0.28);
}

.Home-area2 p,
.Home-area3 p,
.Home-area4 p,
.Home-area6 p,
.Home-area2 li,
.Home-area3 li,
.Home-area4 li,
.Home-area6 li,
.move-to-right h6,
.move-to-right p,
.move-to-right a,
.white_box p,
.white_box a {
    color: var(--site-ink) !important;
    text-shadow: none !important;
}

.dream_big_text,
.get_instant_para,
.who_can_apply,
.trust_build,
.white_box,
.reghome {
    position: relative;
    z-index: 1;
    padding: 28px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: var(--site-shadow-soft) !important;
}

.dream_big_text,
.get_instant_para,
.who_can_apply,
.trust_build {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
    backdrop-filter: blur(6px);
}

.white_box,
.reghome {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.94) 100%) !important;
    border-color: rgba(20, 33, 61, 0.08) !important;
}

.dream_big_text p,
.get_instant_para p,
.who_can_apply p,
.trust_build p,
.dream_big_text li,
.get_instant_para li,
.who_can_apply li,
.trust_build li {
    color: rgba(255, 255, 255, 0.94) !important;
}

.reghome .reg-txt,
.white_box .reg-txt,
.reghome p,
.white_box p,
.reghome label,
.white_box label,
.reghome .ptext,
.white_box .ptext {
    color: var(--site-ink) !important;
    text-shadow: none !important;
}

.regForm,
.reglogin,
.box.box-primary,
.forgotform,
.loginform,
.lreg,
.popreg {
    padding: 28px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
    box-shadow: 0 24px 48px rgba(14, 22, 50, 0.18) !important;
    backdrop-filter: blur(12px);
}

.reglogin,
.loginform,
.lreg,
.popreg {
    background: linear-gradient(180deg, rgba(14, 23, 53, 0.84) 0%, rgba(23, 36, 82, 0.78) 100%) !important;
}

.reg-inp,
.rform {
    border: 1px solid rgba(20, 33, 61, 0.10) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.06) !important;
}

.form-control,
input.form-control,
select.form-control,
textarea.form-control,
.reg-inp-fld,
.popinput {
    min-height: 52px !important;
    padding: 13px 16px !important;
    border: 1px solid rgba(20, 33, 61, 0.12) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: var(--site-ink) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 20px rgba(20, 33, 61, 0.04) !important;
}

.form-control::placeholder,
.reg-inp-fld::placeholder,
.popinput::placeholder {
    color: #7585a1 !important;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(223, 41, 81, 0.36) !important;
    box-shadow: 0 0 0 0.18rem rgba(223, 41, 81, 0.12), 0 10px 24px rgba(20, 33, 61, 0.06) !important;
    outline: none !important;
}

.btn-apply,
.apply_button,
.login-btn,
.btn-faq,
.btn.btn-primary,
.btn.btn-info,
.btn.btn-warning,
.btn.btn-secondary,
input[type="submit"],
button[type="submit"] {
    border: 0 !important;
    border-radius: 18px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--site-brand) 0%, #f14f73 100%) !important;
    box-shadow: 0 16px 30px rgba(223, 41, 81, 0.22) !important;
    font: 800 14px/1.2 'Manrope', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.btn.btn-info,
.btn.btn-secondary,
.btn.btn-warning {
    background: linear-gradient(135deg, var(--site-accent) 0%, #19b7b5 100%) !important;
    box-shadow: 0 16px 30px rgba(14, 165, 164, 0.18) !important;
}

.btn-apply:hover,
.apply_button:hover,
.login-btn:hover,
.btn-faq:hover,
.btn.btn-primary:hover,
.btn.btn-info:hover,
.btn.btn-warning:hover,
.btn.btn-secondary:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    transform: translateY(-1px);
}

.reg-txt,
.otp-title,
.sign,
.text-white,
.otp-stitle,
.form_mod,
.resend {
    color: #ffffff !important;
}

.move-to-right,
.row-no-gutters {
    padding: 18px !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.94) 100%) !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: 0 14px 28px rgba(20, 33, 61, 0.08) !important;
}

.contact-img,
.mob,
.thumbnail_image {
    border-radius: 24px !important;
    box-shadow: 0 22px 42px rgba(20, 33, 61, 0.14) !important;
}

.carousel .item,
.owl-carousel .item {
    padding: 24px !important;
    border-radius: 26px !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 248, 255, 0.97) 100%) !important;
    box-shadow: 0 18px 34px rgba(20, 33, 61, 0.08) !important;
}

.carousel .item .img-box {
    border-color: rgba(20, 33, 61, 0.12) !important;
}

.site-footer-shell {
    margin-top: 34px !important;
    position: relative;
    z-index: 1;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    clear: both;
}

.site-footer-panel {
    background: linear-gradient(180deg, rgba(15, 23, 53, 0.96) 0%, rgba(17, 29, 71, 0.98) 100%) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 0 !important;
}

.site-footer-card {
    height: 100%;
    padding: 24px 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18) !important;
}

.site-footer-title,
.site-footer-copy {
    color: #ffffff !important;
}

.site-footer-link,
.site-footer-text,
.site-footer-copy a {
    color: rgba(255, 255, 255, 0.78) !important;
}

.desktop .site-footer-card > a {
    display: block !important;
    width: fit-content;
    max-width: 100%;
    text-decoration: none !important;
}

.desktop .site-footer-card > a + a {
    margin-top: 10px;
}

.desktop .site-footer-link {
    display: block !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}

.desktop .site-footer-text {
    margin: 0 0 16px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

.desktop .site-footer-card .sp-status {
    display: inline-flex !important;
    margin-top: 10px;
}

.desktop .site-footer-social {
    margin-top: 22px;
}

.site-footer-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.site-footer-link-list > a {
    display: inline-flex;
}

.site-footer-link:hover,
.site-footer-copy a:hover {
    color: #ffd4de !important;
    text-decoration: none !important;
}

.site-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.site-footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.site-footer-bottom {
    padding-bottom: 0 !important;
}

@media (max-width: 991.98px) {
    #ct-nav.site-nav {
        padding: 10px 0 !important;
    }

    #ct-nav.site-nav .site-nav-shell {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    #ct-nav.site-nav .site-nav-links {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    #ct-nav.site-nav .navstyle,
    #ct-nav.site-nav .site-nav-link.navstyle {
        width: 100% !important;
        font-size: 12px !important;
        padding: 12px 14px !important;
    }

    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-text {
        padding: 22px !important;
    }

    .howitworks,
    .Home-area1,
    .Home-area2,
    .Home-area3,
    .Home-area4,
    .Home-area5,
    .Home-area6,
    .Home-area7,
    .login-image,
    .faq-bg,
    .testimonial-bg1,
    .site-footer-panel {
        border-radius: 24px !important;
    }

    .about-title::before {
        display: none;
    }

    .about-text,
    h1,
    .h1 {
        font-size: 2rem !important;
        line-height: 1.08 !important;
    }

    h2,
    .h2 {
        font-size: 1.65rem !important;
    }

    h3,
    .h3 {
        font-size: 1.32rem !important;
    }

    .dream_big_text,
    .get_instant_para,
    .who_can_apply,
    .trust_build,
    .white_box,
    .reghome,
    .regForm,
    .reglogin,
    .box.box-primary,
    .forgotform,
    .loginform,
    .lreg,
    .popreg,
    .site-footer-card {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    #ct-nav.site-nav {
        padding: 10px 12px !important;
    }

    #ct-nav.site-nav .navbar-collapse.show,
    #ct-nav.site-nav .navbar-collapse.collapsing {
        margin-top: 12px !important;
        padding: 12px !important;
        border-radius: 18px !important;
    }

    #ct-nav.site-nav .site-nav-links {
        gap: 6px !important;
    }

    #ct-nav.site-nav .navstyle,
    #ct-nav.site-nav .site-nav-link.navstyle {
        justify-content: flex-start !important;
        min-height: 42px !important;
        padding: 10px 14px !important;
        border-radius: 14px !important;
        font-size: 13px !important;
        letter-spacing: 0.04em !important;
        text-transform: none !important;
    }

    .site-footer-card-mobile .site-footer-link-list {
        justify-content: center;
        margin-top: 14px;
    }

    .site-footer-card-mobile .site-footer-link-list > a,
    .site-footer-card-mobile .sp-status {
        display: inline-flex;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
    }

    .site-footer-card-mobile .site-footer-link,
    .site-footer-card-mobile .sp-status {
        margin-bottom: 0 !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
    }

    #ct-nav.site-nav .site-brand img {
        width: 130px !important;
    }

    .hero-text {
        padding: 18px !important;
    }

    .hero-text .row,
    .Home-main-area1 .row,
    .Home-main-area2 .row,
    .Home-main-area3 .row,
    .Home-main-area4 .row,
    .Home-main-area5 .row,
    .Home-main-area6 .row,
    .Home-main-area7 .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .about-title {
        padding: 8px 14px !important;
    }

    .about-text {
        font-size: 1.7rem !important;
    }

    .page-shell.about-page .hero-text,
    .page-shell.contact-page .hero-text,
    body .container > .howitworks > .hero-text {
        padding: 18px !important;
    }

    .page-shell.about-page .about-title,
    .page-shell.contact-page .about-title,
    body .container > .howitworks .about-title {
        margin-top: 4px !important;
        margin-bottom: 2px !important;
    }

    .page-shell.about-page .howitworks .about-text,
    .page-shell.contact-page .howitworks .about-text,
    body .container > .howitworks .about-text {
        font-size: 1.85rem !important;
    }

    .howitworks,
    .Home-area1,
    .Home-area2,
    .Home-area3,
    .Home-area4,
    .Home-area5,
    .Home-area6,
    .Home-area7,
    .login-image,
    .faq-bg,
    .testimonial-bg1,
    .site-footer-panel,
    .site-footer-card {
        border-radius: 18px !important;
    }

    .move-to-right,
    .row-no-gutters {
        padding: 14px !important;
    }

    .mobile .Home-main-area1,
    .mobile .Home-main-area2,
    .mobile .Home-main-area3,
    .mobile .Home-main-area4,
    .mobile .Home-main-area5,
    .mobile .Home-main-area6,
    .mobile .Home-main-area7 {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .mobile .Home-area1 p,
    .mobile .Home-area5 p,
    .mobile .Home-area7 p {
        font-size: 16px !important;
        line-height: 1.55 !important;
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .mobile .Home-area1 h1,
    .mobile .Home-area5 h1,
    .mobile .Home-area7 h1,
    .mobile .about-text {
        font-size: 1.5rem !important;
        line-height: 1.12 !important;
        text-align: left !important;
    }

    .mobile .dream_big_text,
    .mobile .get_instant_para,
    .mobile .who_can_apply,
    .mobile .trust_build,
    .mobile .reghome,
    .mobile .reglogin,
    .mobile .regForm,
    .mobile .box.box-primary,
    .mobile .move-to-right,
    .mobile .row-no-gutters {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .mobile .col-12,
    .mobile .col-md-12,
    .mobile .col-md-6,
    .mobile .col-md-5,
    .mobile .col-md-4,
    .mobile .col-md-3,
    .mobile .col-7,
    .mobile .col-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mobile .reg-inp,
    .mobile .rform {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .mobile .form-control,
    .mobile input.form-control,
    .mobile select.form-control,
    .mobile textarea.form-control,
    .mobile .reg-inp-fld,
    .mobile .popinput {
        min-height: 48px !important;
        font-size: 15px !important;
    }

    .mobile .btn-apply,
    .mobile .apply_button,
    .mobile .login-btn,
    .mobile .btn-faq,
    .mobile .btn.btn-primary,
    .mobile .btn.btn-info,
    .mobile .btn.btn-warning,
    .mobile .btn.btn-secondary,
    .mobile input[type="submit"],
.mobile button[type="submit"] {
        width: 100% !important;
    }
}

.page-shell {
    position: relative;
    z-index: 1;
}

.desktop,
.desktop1 {
    display: block !important;
}

.mobile,
.mobile1 {
    display: none !important;
}

.page-shell .row[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.page-shell .row > [class*="col-"] {
    margin-bottom: 0 !important;
}

.home-page-shell,
.about-page-shell,
.contact-page-shell {
    position: relative;
    z-index: 1;
}

.page-shell > .container,
main > .container,
body > .container {
    max-width: 1360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.home-page-shell {
    display: grid;
    gap: 28px;
    max-width: 1440px;
    margin: 0 auto !important;
    padding-top: 18px;
    padding-bottom: 34px;
}

.home-page-section,
.about-hero-section,
.contact-hero-section,
.about-hiring-strip {
    position: relative;
}

.home-page {
    width: 100%;
    overflow: hidden;
}

.home-page .Home-area1,
.home-page .Home-area2,
.home-page .Home-area3,
.home-page .Home-area4,
.home-page .Home-area5,
.home-page .Home-area6,
.home-page .Home-area7 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.home-page .Home-main-area1,
.home-page .Home-main-area2,
.home-page .Home-main-area3,
.home-page .Home-main-area4,
.home-page .Home-main-area5,
.home-page .Home-main-area6,
.home-page .Home-main-area7 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92) !important;
    font: 800 11px/1 'Manrope', sans-serif !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(12, 18, 44, 0.14);
}

.page-kicker.text-center {
    justify-content: center;
    display: flex;
}

.home-kicker::before,
.page-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #7ef0d7;
    box-shadow: 0 0 0 6px rgba(126, 240, 215, 0.16);
}

.home-kicker-mobile {
    margin-top: 8px;
}

.home-hero-grid {
    align-items: center;
    min-height: 100%;
}

.home-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 72px 40px 72px 72px !important;
    color: #ffffff !important;
}

.home-hero-copy p {
    max-width: 52rem;
}

.home-hero-title {
    margin-bottom: 6px !important;
    font-size: clamp(3.8rem, 5.6vw, 5.4rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.06em !important;
}

.home-hero-subtitle {
    max-width: 34rem;
    margin-bottom: 18px !important;
    line-height: 1.2 !important;
}

.home-hero-point,
.home-hero-note {
    max-width: 40rem;
}

.home-hero-point {
    margin-bottom: 8px !important;
    line-height: 1.45 !important;
}

.home-hero-eligibility-title {
    margin-bottom: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
}

.home-hero-note {
    margin-bottom: 8px !important;
    line-height: 1.55 !important;
}

.home-hero-form-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 56px 72px 56px 20px !important;
}

.home-hero-form-card,
.about-content-card,
.contact-form-shell,
.contact-info-card {
    backdrop-filter: blur(10px);
}

.home-hero-form-card {
    width: 100%;
    max-width: 460px;
    margin: 0 0 0 auto !important;
    padding: 30px !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 28px 56px rgba(9, 15, 36, 0.22) !important;
}

.home-hero-form-card .reg-txt,
.home-hero-form-card .ptext,
.home-hero-form-card .ptext a {
    color: var(--site-ink) !important;
}

.home-hero-form {
    width: 100%;
    margin: 0 !important;
}

.home-form-header {
    margin-bottom: 14px;
}

.home-page .home-form-header .reg-txt {
    margin-bottom: 0 !important;
    font-size: clamp(1.8rem, 2.6vw, 2.25rem) !important;
    line-height: 1.15 !important;
}

.home-story-surface,
.home-trending-surface,
.home-process-surface,
.home-features-surface {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.home-page .home-story-section .img_frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 12px;
}

.home-page .home-story-section .img {
    position: relative !important;
    inset: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    margin: 0 auto !important;
}

.home-page .home-story-section .desktop .col-5,
.home-page .home-story-section .desktop .col-7,
.home-page .home-hero-section .desktop .col-7,
.home-page .home-hero-section .desktop .col-5 {
    margin-bottom: 0 !important;
}

.home-page .home-story-section .desktop .col-5 {
    padding-left: 56px !important;
    padding-right: 18px !important;
}

.home-page .home-story-section .desktop .col-7 {
    padding-left: 18px !important;
    padding-right: 56px !important;
}

.home-page .home-story-section .desktop .col-7 p {
    font-size: 1.02rem;
    line-height: 1.95;
}

.home-service-card,
.home-feature-card,
.home-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.home-service-card p,
.home-feature-card p,
.home-stat-card p,
.home-stat-card span,
.home-stat-card h1,
.home-stat-card h4 {
    margin-bottom: 0 !important;
}

.home-process-step img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.home-process-step-copy {
    color: var(--site-ink) !important;
    line-height: 1.6 !important;
}

.home-process-step-copy p:first-child {
    margin-bottom: 10px !important;
}

.home-page .home-trending-section .desktop .container,
.home-page .home-features-section .desktop .container,
.home-page .Home-area6 .desktop .row,
.home-page .home-process-section .desktop .row,
.home-page .Home-area7 .desktop {
    max-width: 1240px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.home-page .home-trending-section .desktop .row,
.home-page .home-features-section .desktop .row,
.home-page .Home-area6 .desktop .row {
    row-gap: 24px;
}

.home-page .home-trending-section .desktop .col-3,
.home-page .home-features-section .desktop .col-3,
.home-page .Home-area6 .desktop .col-4 {
    display: flex;
    margin-bottom: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.home-page .home-trending-section .desktop .col-3 > div,
.home-page .home-features-section .desktop .col-3 > div,
.home-page .Home-area6 .desktop .col-4 > div {
    width: 100%;
    min-height: 100%;
    padding: 34px 22px !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%) !important;
    box-shadow: 0 18px 34px rgba(20, 33, 61, 0.08) !important;
}

.home-page .home-trending-section .desktop .col-3 img,
.home-page .home-features-section .desktop .col-3 img,
.home-page .Home-area6 .desktop .col-4 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.home-page .home-process-section .desktop .col-3 {
    margin-bottom: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.home-page .home-process-section .desktop .row:nth-of-type(2) .col-3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.home-page .Home-area5 .desktop .row.col-12,
.home-page .Home-area5 .mobile .row.col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home-page .Home-area5 .owl-carousel {
    width: 100%;
}

.home-testimonial-card {
    min-height: 100%;
}

.home-testimonial-card p:first-child {
    line-height: 1.8 !important;
}

.home-page .Home-area7 .desktop .row.Home-area7 {
    align-items: center;
    min-height: 420px;
}

.home-page .Home-area7 .desktop .col-6:first-child {
    padding: 72px 28px 72px 64px !important;
}

.home-page .Home-area7 .desktop .col-6:last-child {
    padding: 0 64px 0 24px !important;
    margin-top: 0 !important;
}

.home-page .Home-area7 .desktop .col-6:last-child img {
    max-width: 100%;
    height: auto;
}

.home-cta-copy p {
    margin-bottom: 0 !important;
    max-width: 28rem;
    line-height: 1.18 !important;
}

.about-page-shell,
.contact-page-shell {
    max-width: 1360px;
    margin: 0 auto !important;
    padding-top: 20px;
    padding-bottom: 34px;
}

.page-hero {
    margin-bottom: 28px;
}

.about-page .page-hero-inner,
.contact-page .page-hero-inner {
    padding: 28px !important;
}

.about-hero-row,
.contact-hero-row {
    row-gap: 22px;
}

.about-page-content,
.contact-page-intro {
    padding: 8px 0 0 !important;
    margin-top: 0 !important;
}

.about-content-card {
    padding: 34px !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.95) 100%) !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: var(--site-shadow) !important;
}

.about-content-intro {
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.about-content-intro .page-kicker {
    background: var(--site-brand-soft);
    color: var(--site-brand-deep) !important;
}

.about-content-intro .page-kicker::before {
    background: var(--site-brand);
    box-shadow: 0 0 0 6px rgba(223, 41, 81, 0.12);
}

.about-section-title {
    margin: 0;
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    line-height: 1.05;
}

.about-story-copy p,
.contact-page-intro p {
    color: var(--site-ink) !important;
}

.about-story-copy p {
    font-size: 1.02rem;
    line-height: 1.85;
}

.about-focus-block {
    margin-top: 26px;
    padding: 26px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(239, 244, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(20, 33, 61, 0.08);
}

.about-focus-block h6 {
    margin-bottom: 14px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em !important;
    color: var(--site-brand-deep) !important;
}

.features-list {
    margin-bottom: 0;
    padding-left: 20px;
}

.features-list li + li {
    margin-top: 8px;
}

.about-hiring-strip {
    padding-top: 12px;
}

.contact-page-intro {
    margin-bottom: 12px;
}

.contact-directory-section {
    margin-top: 14px;
    margin-bottom: 22px;
}

.contact-directory-grid {
    align-items: stretch;
    width: 100%;
    row-gap: 20px;
}

.contact-directory-grid > [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: 0 !important;
}

.contact-info-card {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 18px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: var(--site-shadow-soft) !important;
}

.contact-info-card [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact-info-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 40px;
}

.contact-info-card h6,
.contact-info-card a {
    color: var(--site-ink) !important;
}

.contact-info-card a:hover {
    color: var(--site-brand) !important;
}

.contact-visual-column {
    display: flex;
    align-items: stretch;
}

.contact-img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 48px rgba(12, 18, 44, 0.20);
    object-fit: cover;
}

.contact-form-section {
    margin-top: 18px !important;
}

.contact-form-shell {
    width: 100%;
    padding: 24px !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, var(--site-hero-start) 0%, var(--site-hero-mid) 58%, var(--site-hero-end) 100%) !important;
    box-shadow: 0 30px 60px rgba(12, 18, 44, 0.22) !important;
}

.contact-form-shell .box.box-primary {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
}

.contact-form-shell .box-body,
.contact-form-shell .box-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact-form-shell label,
.contact-form-shell .info {
    color: #ffffff !important;
}

.contact-form-shell .box-footer {
    padding-top: 10px;
}

/* Inner content pages use the legacy "howitworks/about-content" pattern.
   Keep these pages cleaner and flatter than the homepage hero treatment. */
.page-shell.about-page .howitworks,
.page-shell.contact-page .howitworks,
body .container > .howitworks {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.98) 100%) !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: 0 18px 38px rgba(20, 33, 61, 0.08) !important;
}

.page-shell.about-page .hero-text,
.page-shell.contact-page .hero-text,
body .container > .howitworks > .hero-text {
    padding: 24px !important;
}

.page-shell.about-page .about-title,
.page-shell.contact-page .about-title,
body .container > .howitworks .about-title {
    display: inline-flex !important;
    width: auto !important;
    padding: 0 !important;
    margin: 8px auto 6px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.page-shell.about-page .about-title::before,
.page-shell.contact-page .about-title::before,
body .container > .howitworks .about-title::before {
    display: none !important;
}

.page-shell.about-page .howitworks .about-text,
.page-shell.contact-page .howitworks .about-text,
body .container > .howitworks .about-text {
    color: var(--site-ink) !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    line-height: 1.05 !important;
    text-align: center !important;
}

.page-shell.about-page .about-content-card,
.page-shell.contact-page .about-content-card,
body .container > .howitworks .about-content {
    padding: 28px !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: 0 14px 30px rgba(20, 33, 61, 0.06) !important;
}

.page-shell.about-page .about-section-title,
.page-shell.contact-page .about-section-title,
body .container > .howitworks .mv-why-us,
body .container > .howitworks .text-center.mv-why-us b {
    color: var(--site-ink) !important;
}

.page-shell.about-page .about-story-copy p,
.page-shell.contact-page .contact-page-intro p,
body .container > .howitworks .about-content p,
body .container > .howitworks .about-content li {
    color: #465b74 !important;
}

.page-shell.about-page .about-focus-block,
body .container > .howitworks .about-focus-block {
    background: linear-gradient(180deg, rgba(248, 250, 255, 0.98) 0%, rgba(241, 246, 255, 0.96) 100%) !important;
    border-color: rgba(20, 33, 61, 0.08) !important;
    box-shadow: none !important;
}

.page-shell.about-page .features-list li,
body .container > .howitworks .features-list li,
body .container > .howitworks .ul-check li {
    color: #465b74 !important;
}

.page-shell.about-page .page-kicker,
.page-shell.contact-page .page-kicker {
    background: var(--site-brand-soft) !important;
    color: var(--site-brand-deep) !important;
    box-shadow: none !important;
}

.page-shell.about-page .page-kicker::before,
.page-shell.contact-page .page-kicker::before {
    background: var(--site-brand) !important;
    box-shadow: 0 0 0 6px rgba(223, 41, 81, 0.12) !important;
}

@media (min-width: 992px) {
    .about-page-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .home-hero-section .Home-main-area1,
    .home-story-surface .Home-main-area2,
    .home-trending-surface .Home-main-area2,
    .home-process-surface .Home-main-area3,
    .home-features-surface .Home-main-area4 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 991.98px) {
    .home-page-shell,
    .about-page-shell,
    .contact-page-shell {
        gap: 20px;
        padding-top: 12px;
        padding-bottom: 24px;
    }

    .home-kicker,
    .page-kicker {
        font-size: 10px !important;
        letter-spacing: 0.12em;
    }

    .about-content-card,
    .about-focus-block,
    .contact-info-card {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .contact-directory-grid,
    .contact-page-intro,
    .contact-form-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contact-directory-grid > [class*="col-"],
    .contact-form-section,
    .contact-visual-column {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .contact-directory-grid .ml-4 {
        margin-left: 0 !important;
    }

    .contact-page-intro p:not(.page-kicker) {
        text-align: left !important;
    }

    .contact-page-intro strong {
        display: block;
        text-align: left;
    }

    .contact-img {
        max-height: 320px;
    }

    .home-hero-copy {
        padding: 48px 28px !important;
    }

    .home-hero-form-column {
        padding: 0 28px 40px !important;
    }

    .home-hero-title {
        font-size: 3.2rem !important;
    }

    .home-page .home-story-section .desktop .col-5 {
        padding-left: 28px !important;
    }

    .home-page .home-story-section .desktop .col-7 {
        padding-right: 28px !important;
    }

    .home-page .home-trending-section .desktop .container,
    .home-page .home-features-section .desktop .container {
        max-width: 100%;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 767.98px) {
    .desktop,
    .desktop1 {
        display: none !important;
    }

    .mobile,
    .mobile1 {
        display: block !important;
    }

    .page-shell .row[class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page-shell,
    .about-page-shell,
    .contact-page-shell {
        max-width: 100%;
    }

    .home-page-shell {
        padding-left: 14px !important;
        padding-right: 14px !important;
        gap: 18px;
    }

    .home-page .mobile .row.col-12,
    .home-page .mobile .row[class*="col-"] {
        justify-content: flex-start !important;
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page .mobile .Home-main-area1,
    .home-page .mobile .Home-main-area2,
    .home-page .mobile .Home-main-area3,
    .home-page .mobile .Home-main-area4,
    .home-page .mobile .Home-main-area5,
    .home-page .mobile .Home-main-area6,
    .home-page .mobile .Home-main-area7 {
        padding: 24px 18px !important;
    }

    .home-page .mobile .home-kicker,
    .home-page .mobile .reg-txt,
    .home-page .mobile p,
    .home-page .mobile h3 {
        text-align: left !important;
    }

    .home-hero-title-mobile {
        margin-bottom: 8px !important;
        line-height: 1 !important;
    }

    .home-hero-subtitle-mobile {
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
    }

    .home-hero-point-mobile,
    .home-hero-note-mobile {
        margin-bottom: 8px !important;
        line-height: 1.55 !important;
    }

    .home-hero-eligibility-title-mobile {
        margin-bottom: 12px !important;
        letter-spacing: 0.08em !important;
    }

    .home-page .mobile .home-hero-form-card {
        max-width: 100%;
        margin-top: 18px !important;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.14) !important;
    }

    .home-page .mobile .home-hero-form-card .reg-txt,
    .home-page .mobile .home-hero-form-card .ptext,
    .home-page .mobile .home-hero-form-card .ptext a {
        color: #ffffff !important;
    }

    .home-page .mobile .owl-carousel {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page .home-story-section .img_frame {
        min-height: auto;
        padding: 0;
    }

    .home-page .home-story-section .mobile .row.col-12,
    .home-page .home-trending-section .mobile .row.col-12,
    .home-page .home-features-section .mobile .row.col-12,
    .home-page .home-process-section .mobile .row.col-12,
    .home-page .Home-area5 .mobile .row.col-12,
    .home-page .Home-area6 .mobile .row.col-12,
    .home-page .Home-area7 .mobile .row.col-12 {
        margin-top: 0 !important;
        margin-bottom: 18px !important;
    }

    .home-page .mobile .row.col-12 > div {
        width: 100%;
        padding: 24px 18px !important;
        border-radius: 22px !important;
        border: 1px solid rgba(20, 33, 61, 0.08) !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%) !important;
        box-shadow: 0 16px 30px rgba(20, 33, 61, 0.08) !important;
    }

    .home-page .home-hero-section .mobile .row.col-12 > div,
    .home-page .Home-area5 .mobile .row.col-12 > div,
    .home-page .Home-area7 .mobile .row.col-12 > div,
    .home-page .Home-area7 .mobile .row.col-12 > img {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .home-page .home-trending-section .mobile .row.col-12 > div img,
    .home-page .home-features-section .mobile .row.col-12 > div img,
    .home-page .Home-area6 .mobile .row.col-12 > div img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .home-service-card,
    .home-feature-card,
    .home-stat-card {
        gap: 12px;
    }

    .home-page .home-process-section .mobile img {
        max-width: 108px;
        width: 100%;
        height: auto;
    }

    .home-page .home-process-section .mobile p.mb-0 {
        margin-bottom: 8px !important;
    }

    .home-page .Home-area7 .mobile .row.Home-area7 {
        padding: 24px 18px 30px !important;
    }

    .home-page .Home-area7 .mobile p {
        font-size: 1.35rem !important;
        line-height: 1.35 !important;
    }

    .about-page .page-hero-inner,
    .contact-page .page-hero-inner {
        padding: 20px !important;
    }

    .about-page-content,
    .contact-page-intro,
    .contact-form-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .about-story-copy p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-hiring-strip .row {
        row-gap: 14px;
        justify-content: center;
        text-align: center;
    }

    .contact-page-intro p,
    .contact-page-intro h3,
    .contact-page-intro strong {
        text-align: left !important;
    }

    .contact-directory-grid > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .contact-form-shell {
        padding: 20px !important;
    }
}

/* Application flow and public status lookup */
.flow-page,
.status-page {
    position: relative;
    z-index: 1;
    padding: 22px 0 6px;
}

.flow-shell,
.status-shell {
    max-width: 1320px;
    margin: 0 auto;
}

.flow-page .flow-panel,
.status-panel {
    position: relative;
    padding: 0;
    border-radius: 30px !important;
    overflow: hidden;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    background:
        radial-gradient(circle at top right, rgba(223, 41, 81, 0.14) 0, transparent 24%),
        radial-gradient(circle at bottom left, rgba(14, 165, 164, 0.10) 0, transparent 22%),
        linear-gradient(180deg, rgba(249, 251, 255, 0.98) 0%, rgba(241, 246, 255, 0.98) 100%) !important;
    box-shadow: 0 20px 44px rgba(20, 33, 61, 0.08) !important;
}

.flow-page .flow-panel-inner,
.status-panel {
    padding: 32px !important;
}

.flow-grid,
.status-grid {
    align-items: stretch;
    row-gap: 22px;
}

.flow-main-column,
.flow-side-column,
.status-copy-column,
.status-form-column {
    display: flex;
    flex-direction: column;
}

.flow-page-header {
    margin-bottom: 22px;
}

.flow-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(223, 41, 81, 0.10);
    color: var(--site-brand-deep);
    font: 800 11px/1 'Manrope', sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.flow-page-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--site-brand);
}

.flow-step-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.08);
    color: var(--site-ink);
    font-size: 13px;
    font-weight: 700;
}

.flow-page-title,
.status-title {
    margin: 0 0 10px;
    color: var(--site-ink) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
}

.flow-page-summary,
.status-summary {
    margin: 0;
    color: #5d6f86 !important;
    font-size: 16px;
    line-height: 1.75;
}

.flow-step-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.flow-step-track span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 14px;
    background: rgba(20, 33, 61, 0.08);
    color: #7f8da3;
    font-size: 14px;
    font-weight: 800;
}

.flow-step-track span.is-complete {
    background: rgba(14, 165, 164, 0.14);
    color: #0d7d7c;
}

.flow-step-track span.is-active {
    background: linear-gradient(135deg, #d63d61 0%, #a11d3b 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(178, 31, 63, 0.22);
}

.flow-form-wrap {
    padding: 24px !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: 0 16px 34px rgba(20, 33, 61, 0.06) !important;
}

.flow-form-wrap .tab {
    margin-top: 0 !important;
}

.flow-form-wrap .form-control,
.flow-form-wrap textarea,
.status-input {
    min-height: 52px;
    border-radius: 14px !important;
    border: 1px solid rgba(20, 33, 61, 0.12) !important;
    background: #fff !important;
    box-shadow: none !important;
}

.flow-form-wrap textarea {
    min-height: 120px;
}

.flow-form-wrap p,
.flow-help-list .about-content,
.flow-disclaimer-card .rbi-content {
    color: #5d6f86 !important;
    line-height: 1.7;
}

.flow-form-wrap label {
    color: var(--site-ink) !important;
    font-weight: 700;
}

.flow-form-wrap .btn-danger,
.flow-form-wrap button[type="submit"] {
    min-width: 132px;
    min-height: 46px;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #d63d61 0%, #a11d3b 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 26px rgba(178, 31, 63, 0.18) !important;
}

.flow-form-wrap .btn-danger:hover,
.flow-form-wrap button[type="submit"]:hover {
    transform: translateY(-1px);
}

.flow-help-card {
    height: 100%;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--site-hero-start) 0%, var(--site-hero-mid) 56%, #29396d 100%);
    box-shadow: 0 22px 46px rgba(12, 18, 44, 0.18);
}

.flow-help-title {
    margin: 0 0 18px;
    color: #fff !important;
    font-size: 28px !important;
}

.flow-help-list .about-content-title {
    margin-top: 18px;
    margin-bottom: 8px;
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
}

.flow-help-list .about-content {
    color: rgba(255, 255, 255, 0.78) !important;
}

.flow-page .flow-form-wrap .row[style*="padding: 10px"] {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.flow-page .flow-form-wrap .row[style*="padding: 10px"] > [class*="col-"] {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.flow-page .flow-form-wrap .row[style*="padding: 10px"] > [class*="col-"]:last-child {
    display: flex;
    justify-content: flex-end;
}

.flow-page .flow-form-wrap .btn-danger,
.flow-page .flow-form-wrap button[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.flow-page .flow-panel .flow-help-list {
    display: grid;
    gap: 12px;
}

.flow-page .flow-panel .flow-help-list .about-content-title {
    margin: 6px 0 0;
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.45;
}

.flow-page .flow-panel .flow-help-list .about-content {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.78) !important;
    text-shadow: none !important;
    font-size: 14px;
    line-height: 1.65;
}

.flow-disclaimer-row {
    margin-top: 24px;
}

.flow-disclaimer-card {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(20, 33, 61, 0.08);
}

.flow-disclaimer-card strong {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--site-ink);
}

.status-grid {
    row-gap: 20px;
}

.status-copy-column {
    justify-content: center;
    padding: 10px 16px 10px 6px !important;
}

.status-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.status-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.08);
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
}

.status-form-card {
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 18px 36px rgba(20, 33, 61, 0.08);
}

.status-form-column {
    justify-content: center;
}

.status-form-card h2 {
    margin-bottom: 10px;
    color: var(--site-ink) !important;
    font-size: 28px !important;
}

.status-form-card p {
    color: #5d6f86 !important;
    line-height: 1.7;
}

.status-input {
    font-size: 16px !important;
}

.status-label {
    display: block;
    margin: 18px 0 10px;
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
}

.status-reg-inp {
    margin-bottom: 16px !important;
}

.status-submit {
    width: 100%;
}

.status-alert {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff1f3;
    border: 1px solid #f4c8d0;
    color: #b9123d;
    font-weight: 700;
}

.status-hero {
    position: relative;
    overflow: hidden;
    padding: 38px !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at top right, rgba(223, 41, 81, 0.12) 0, transparent 24%),
        radial-gradient(circle at bottom left, rgba(14, 165, 164, 0.10) 0, transparent 22%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.99) 0%, rgba(240, 246, 255, 0.99) 100%) !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.10) !important;
}

.status-hero-grid {
    align-items: center;
    row-gap: 22px;
}

.status-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(223, 41, 81, 0.10);
    color: var(--site-brand-deep) !important;
    font: 800 11px/1 'Manrope', sans-serif !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--site-brand);
}

.status-headline {
    margin: 0 0 12px;
    color: var(--site-ink) !important;
    font-size: clamp(2.2rem, 4.6vw, 4rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.05em !important;
}

.status-lead {
    max-width: 42rem;
    margin: 0;
    color: #5d6f86 !important;
    font-size: 17px;
    line-height: 1.8;
}

.status-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.08);
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
}

.status-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.status-info-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 14px 28px rgba(20, 33, 61, 0.05);
}

.status-info-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d63d61 0%, #a11d3b 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.status-info-card h3 {
    margin: 0 0 8px;
    color: var(--site-ink) !important;
    font-size: 18px !important;
}

.status-info-card p {
    margin: 0;
    color: #60728a !important;
    line-height: 1.65;
}

.status-hero-form-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.status-lookup-card {
    width: 100%;
    max-width: 420px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--site-hero-start) 0%, var(--site-hero-mid) 62%, #233a73 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 54px rgba(12, 18, 44, 0.18);
}

.status-lookup-top {
    margin-bottom: 16px;
}

.status-lookup-top h2 {
    margin: 0 0 6px;
    color: #fff !important;
    font-size: 30px !important;
}

.status-lookup-top p,
.status-form-note {
    color: rgba(255, 255, 255, 0.72) !important;
}

.status-lookup-form .status-label {
    color: #fff !important;
}

.status-lookup-form .status-reg-inp {
    margin-bottom: 14px !important;
}

.status-lookup-form .status-input {
    min-height: 54px;
    padding-left: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: rgba(255, 255, 255, 0.96) !important;
}

.status-form-note {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.6;
}

.status-lookup-form .status-submit {
    width: 100%;
    min-height: 52px;
    border-radius: 16px !important;
}

@media (max-width: 991.98px) {
    .flow-page .flow-panel-inner,
    .status-panel {
        padding: 22px !important;
    }

    .flow-main-column,
    .flow-side-column,
    .status-copy-column,
    .status-form-column {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .status-copy-column {
        padding: 0 !important;
    }

    .status-info-grid {
        grid-template-columns: 1fr;
    }

    .status-hero {
        padding: 24px !important;
    }

    .status-hero-form-col {
        justify-content: stretch;
    }

    .status-lookup-card {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .flow-page,
    .status-page {
        padding-top: 14px;
    }

    .flow-shell {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .flow-page .flow-panel,
    .status-panel {
        border-radius: 22px !important;
    }

    .flow-page .flow-panel-inner,
    .status-panel {
        padding: 16px !important;
    }

    .flow-page-header {
        margin-bottom: 16px;
    }

    .flow-page-kicker,
    .flow-step-badge {
        margin-bottom: 10px;
    }

    .flow-page-title {
        font-size: 1.8rem !important;
        line-height: 1.08 !important;
    }

    .flow-page-summary {
        font-size: 14px;
        line-height: 1.65;
    }

    .flow-step-track {
        gap: 8px;
        margin-top: 16px;
    }

    .flow-step-track span {
        height: 36px;
        border-radius: 12px;
        font-size: 12px;
    }

    .flow-form-wrap,
    .flow-help-card,
    .status-form-card,
    .flow-disclaimer-card {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    .flow-form-wrap {
        margin-bottom: 16px;
    }

    .flow-page .flow-form-wrap .row[style*="padding: 10px"] {
        flex-wrap: nowrap !important;
        padding: 10px 0 0 !important;
    }

    .flow-page .flow-form-wrap .btn-danger,
    .flow-page .flow-form-wrap button[type="submit"] {
        min-width: 112px;
        min-height: 44px;
        padding: 12px 16px !important;
        font-size: 12px !important;
        border-radius: 14px !important;
    }

    .flow-help-card {
        height: auto;
    }

    .flow-help-title,
    .status-form-card h2 {
        font-size: 22px !important;
        line-height: 1.15 !important;
    }

    .flow-page .flow-panel .flow-help-list {
        gap: 10px;
    }

    .flow-page .flow-panel .flow-help-list .about-content-title {
        font-size: 13px;
        line-height: 1.4;
    }

    .flow-page .flow-panel .flow-help-list .about-content {
        font-size: 13px;
        line-height: 1.6;
    }

    .flow-disclaimer-row {
        margin-top: 16px;
    }

    .flow-disclaimer-card .rbi-content {
        font-size: 13px;
        line-height: 1.65;
    }

    .status-hero {
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .status-headline {
        font-size: 2rem !important;
    }

    .status-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .status-chip-row {
        gap: 8px;
    }

    .status-chip {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .status-info-card,
    .status-lookup-card {
        padding: 18px;
        border-radius: 20px;
    }

    .status-lookup-top h2 {
        font-size: 24px !important;
    }
}

/* Professional auth pages */
.auth-page {
    padding: 20px 0 28px;
}

.auth-shell {
    max-width: 1180px;
}

.auth-hero {
    position: relative;
    overflow: hidden;
    padding: 38px !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 164, 0.09) 0, transparent 26%),
        radial-gradient(circle at bottom right, rgba(223, 41, 81, 0.12) 0, transparent 26%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.99) 0%, rgba(240, 246, 255, 0.99) 100%) !important;
    border: 1px solid rgba(20, 33, 61, 0.08) !important;
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.10) !important;
}

.auth-hero-grid {
    align-items: center;
    row-gap: 22px;
}

.auth-copy-column {
    padding-right: 24px;
}

.auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(223, 41, 81, 0.10);
    color: var(--site-brand-deep) !important;
    font: 800 11px/1 'Manrope', sans-serif !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.auth-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--site-brand);
}

.auth-headline {
    margin: 0 0 12px;
    color: var(--site-ink) !important;
    font-size: clamp(2.2rem, 4.6vw, 3.9rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.05em !important;
}

.auth-lead {
    max-width: 42rem;
    margin: 0;
    color: #5d6f86 !important;
    font-size: 17px;
    line-height: 1.8;
}

.auth-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.auth-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.08);
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
}

.auth-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.auth-info-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 14px 28px rgba(20, 33, 61, 0.05);
}

.auth-info-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d63d61 0%, #a11d3b 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.auth-info-card h3 {
    margin: 0 0 8px;
    color: var(--site-ink) !important;
    font-size: 18px !important;
}

.auth-info-card p {
    margin: 0;
    color: #60728a !important;
    line-height: 1.65;
}

.auth-form-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.auth-card {
    width: 100%;
    max-width: 430px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--site-hero-start) 0%, var(--site-hero-mid) 62%, #233a73 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 54px rgba(12, 18, 44, 0.18);
}

.auth-card-top {
    margin-bottom: 18px;
}

.auth-card-top h2 {
    margin: 0 0 6px;
    color: #fff !important;
    font-size: 30px !important;
}

.auth-card-top p,
.auth-note,
.auth-alt-links,
.auth-alt-links a {
    color: rgba(255, 255, 255, 0.76) !important;
}

.auth-form .auth-label {
    display: block;
    margin: 16px 0 10px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
}

.auth-form .auth-input-wrap {
    margin-bottom: 14px !important;
}

.auth-form .auth-input {
    min-height: 54px;
    padding-left: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: none !important;
    color: var(--site-ink) !important;
}

.auth-form .auth-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    border-radius: 16px !important;
}

.auth-note {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.6;
}

.auth-alt-links {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.auth-alt-links a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-alt-links a:hover {
    color: #fff !important;
}

.auth-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8797b1 0%, #677891 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
    .auth-copy-column,
    .auth-form-column {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-right: 15px;
    }

    .auth-info-grid {
        grid-template-columns: 1fr;
    }

    .auth-hero {
        padding: 24px !important;
    }

    .auth-form-column {
        justify-content: stretch;
    }

    .auth-card {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .auth-page {
        padding-top: 14px;
    }

    .auth-hero {
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .auth-headline {
        font-size: 2rem !important;
    }

    .auth-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .auth-chip-row {
        gap: 8px;
    }

    .auth-chip {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .auth-info-card,
    .auth-card {
        padding: 18px;
        border-radius: 20px;
    }

    .auth-card-top h2 {
        font-size: 24px !important;
    }
}
