:root {

    /* Brand Colors */
    --primary: #0455C7;
    --primary-light: #4A90FF;
    --primary-soft: rgba(4, 85, 199, 0.08);
    --primary-border: rgba(4, 85, 199, 0.16);

    /* Backgrounds */
    --bg: #F7F9FC;
    --s1: #FFFFFF;
    --s2: #F1F5F9;

    /* Text */
    --white: #1E293B;
    --muted: #64748B;

    /* Borders */
    --border: rgba(15, 23, 42, 0.08);

    /* Accent */
    --green: #00D97E;
    --danger: #FF4D6D;
    --amber: #FFB800;

    /* Legacy Variables */
    --teal: var(--primary);
    --teal-d: rgba(4, 85, 199, 0.08);
    --teal-b: rgba(4, 85, 199, 0.16);

    --purple: #4A90FF;

    /* Buttons */
    --grad: linear-gradient(135deg,
            #0455C7 0%,
            #2F7EFF 55%,
            #66A8FF 100%);

}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    height: 100%;
    background: #0a0a0a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;

    color: var(--white);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #EEF3FA;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
}

/* ── PHONE FRAME (on desktop) ── */
#frame {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg);

    box-shadow:
        0 25px 80px rgba(4, 85, 199, 0.10),
        0 6px 20px rgba(15, 23, 42, 0.08);

    border: 1px solid rgba(4, 85, 199, 0.08);
    ;
}

@media(min-width:500px) {
    body {
        align-items: center;
        padding: 20px 0 40px;
    }

    #frame {
        min-height: auto;
        height: min(860px, 95vh);
        border-radius: 40px;

    }
}

/* ── BACKGROUND ── */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

#bo1 {
    width: 300px;
    height: 300px;
    ;
    top: -15%;
    left: -20%;
}

#bo2 {
    width: 250px;
    height: 250px;
    ;
    bottom: -15%;
    right: -15%;
}

#bo1 {
    background: #4A90FF;
    opacity: .08;
}

#bo2 {
    background: #0455C7;
    opacity: .05;
}

/* ── PROGRESS BAR ── */
#pbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 100;
}

#pfill {
    height: 100%;
    width: 0%;
    background: var(--grad);
    border-radius: 0 2px 2px 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── HEADER ── */
#hdr {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hdr-top-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.hdr-bottom-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 8px;
    justify-content: flex-start;
}

.back-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(4, 85, 199, .12);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0455C7;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow:
        0 6px 18px rgba(4, 85, 199, .08);
    position: relative;
    flex: 0 0 44px;
    margin-right: 12px;
}

.back-btn.vis {
    display: flex;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(4, 85, 199, .12);
}

.back-btn:active {
    transform: scale(.95);
    background: rgba(255, 255, 255, 0.12);
}

.logo-left-wrap {
    flex: 0 0 auto;
    margin-right: 12px;
}

.header-logo-left {
    width: 200px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.step-pill {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    display: none;
    flex: none;
    color: #0455C7;
    background: rgba(4, 85, 199, 0.08);
    border: 1px solid rgba(4, 85, 199, 0.15);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(4, 85, 199, 0.05);
}

.step-pill.vis {
    display: inline-block;
}

.logo-txt {
    margin-left: auto;
    flex: 0 0 auto;
}

.header-logo-right {
    width: 71px;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ── SCREENS ── */
#screens {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.sc {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 220px 0 80px;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sc.ab {
    padding-top: 130px;
}

.sc::-webkit-scrollbar {
    display: none;
}

.sc.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.sc.exit {
    opacity: 0;
    transform: translateX(-40%);
}

/* stagger children */
.sc.active .ani {
    animation: fadeUp 0.4s ease both;
}

.ani.d1 {
    animation-delay: 0.05s !important;
}

.ani.d2 {
    animation-delay: 0.14s !important;
}

.ani.d3 {
    animation-delay: 0.23s !important;
}

.ani.d4 {
    animation-delay: 0.32s !important;
}

.ani.d5 {
    animation-delay: 0.42s !important;
}

.ani.d6 {
    animation-delay: 0.52s !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── HERO AREA ── */
.hero {
    padding: 0 24px 0;
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* Primary Blue */
.hi-t {
    background: rgba(4, 85, 199, 0.08);
    border: 1.5px solid rgba(4, 85, 199, 0.15);

    box-shadow: 0 6px 18px rgba(4, 85, 199, 0.06);
}

/* Light Blue */
.hi-p {
    background: rgba(74, 144, 255, 0.08);
    border: 1.5px solid rgba(74, 144, 255, 0.18);

    box-shadow: 0 6px 18px rgba(74, 144, 255, 0.06);

    margin-top: 44px;
}

/* Soft Sky Blue */
.hi-g {
    background: rgba(102, 168, 255, 0.08);
    border: 1.5px solid rgba(102, 168, 255, 0.18);

    box-shadow: 0 6px 18px rgba(102, 168, 255, 0.06);
}

/* Very Light Blue */
.hi-a {
    background: rgba(4, 85, 199, 0.05);
    border: 1.5px solid rgba(4, 85, 199, 0.12);

    box-shadow: 0 6px 18px rgba(4, 85, 199, 0.05);
}

h1.hl {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 8vw, 34px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 9px;
}

h1.hl em {
    font-style: normal;
    color: var(--teal);
}

.sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 10px;
}

.sub strong {
    color: var(--white);
}

.kicker {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
    color: #0455C7;
    letter-spacing: 2px;
}


/* ── BODY AREA ── */
.body {
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* ── FORM ELEMENTS ── */
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.label {
    color: #0455C7;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.inp-wrap {
    background: var(--s1);
    border: 1.5px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
}

.inp-wrap:focus-within {
    border-color: var(--teal);
}

.inp-pfx {
    background: var(--s2);
    border-right: 1px solid var(--border);
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

input[type=tel],
input[type=text],
input[type=email] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    padding: 17px 16px;
    min-width: 0;
    caret-color: var(--teal);
}

input[type=text] {
    font-size: 15px;
    font-weight: 600;
}

input::placeholder {
    color: var(--muted);
    font-weight: 400;
    font-size: 14px;
}

/* ── OTP ── */
.otp-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.ob {
    flex: 1;
    height: 60px;
    background: #FFFFFF;

    border: 2px solid rgba(4, 85, 199, 0.10);

    border-radius: 15px;
    color: #64748B;

    font-family: 'Outfit', sans-serif;
    border-radius: 15px;
    font-family: 'Outfit', sans-serif;
    ;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    outline: none;
    caret-color: var(--teal);
    transition: border-color 0.18s, transform 0.12s;
}

.ob:focus {
    border-color: #0455C7;

    color: #0455C7;

    box-shadow:
        0 0 0 4px rgba(4, 85, 199, 0.12);

    transform: translateY(-2px);
}

/* After a digit is entered */
.ob.filled {
    color: #0455C7;
    /* blue digit */

    background: rgba(4, 85, 199, 0.04);

    border-color: #0455C7;

    box-shadow:
        0 4px 12px rgba(4, 85, 199, 0.10);
}

/* ── TC CHECKBOX ── */
.tc-row {
    background: var(--s1);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.tc-row.on {
    border-color: var(--teal);
    background: rgba(0, 229, 195, 0.05);
}

.tc-chk {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--s2);
    border: 2px solid var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.18s;
}

.tc-row.on .tc-chk {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
}

.tc-txt {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.tc-txt a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
}

.tc-txt strong {
    color: var(--white);
}


.doc-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 22px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    box-shadow:
        0 4px 15px rgba(15, 23, 42, .05);
}

.doc-card:hover {
    transform: translateY(-4px);

    border-color: rgba(4, 85, 199, .25);

    box-shadow:
        0 14px 35px rgba(4, 85, 199, .10);
}

.doc-input-wrap {
    display: none;
    margin: 10px 0 18px;
}

.doc-input-wrap.show {
    display: block;
}

.doc-card:active {
    transform: scale(0.98);
}

.doc-card.sel {
    border-color: #0455C7;

    background: linear-gradient(135deg,
            #FFFFFF,
            #F4F8FF);

    box-shadow:
        0 12px 35px rgba(4, 85, 199, .15);
}

.doc-card.dim {
    opacity: 0.42;
}

.dc-icon {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: #F4F8FF;

    border: 1px solid #DCE7F9;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    overflow: hidden;
}

.doc-card,
.tc-row,
.info-box,
.receipt,
.name-tag,
.priv-block {
    background: var(--s1);

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.04);

    border: 1px solid var(--border);
}

.dc-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.dc-name {
    font-family: 'Outfit', sans-serif;

    font-size: 17px;
    font-weight: 700;

    color: #1E293B;

    margin-bottom: 4px;
}

.dc-info {
    flex: 1;
}

/* .dc-name{font-family:'Outfit',sans-serif;font-size:16px;font-weight:700;color:#fff;margin-bottom:2px;} */
.dc-sub {
    font-size: 12px;
}

.dc-sub.t {
    color: var(--teal);
}

.dc-sub.m {
    color: #64748B;
    font-size: 13px;
    line-height: 1.4;
}

.dc-radio {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    border: 2px solid #94A3B8;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    transition: all .25s ease;
}

.dc-dot {
    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #0455C7;

    opacity: 0;

    transition: .25s;
}

.doc-card.sel .dc-radio {
    border-color: #0455C7;
}

.doc-card.sel .dc-dot {
    opacity: 1;
}

.doc-card.sel .dc-radio {
    border-color: var(--teal);
}

/* .dc-dot{width:11px;height:11px;border-radius:50%;background:var(--teal);opacity:0;transition:opacity 0.18s;} */
.doc-card.sel .dc-dot {
    opacity: 1;
}

/* ── PRIVACY CHIPS ── */
.priv-block {
    border-radius: 18px;
    padding: 16px 17px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb-y {
    background: rgba(0, 217, 126, 0.06);
    border: 1px solid rgba(0, 217, 126, 0.2);
}

.pb-n {
    background: rgba(255, 77, 109, 0.05);
    border: 1px solid rgba(255, 77, 109, 0.15);
}

.pb-head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pb-y .pb-head {
    color: var(--green);
}

.pb-n .pb-head {
    color: var(--danger);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    border-radius: 100px;
    padding: 5px 13px;
    font-size: 12px;
    font-weight: 700;
}

.cy {
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.25);
    color: var(--green);
}

/* .cn{background:rgba(255,77,109,0.08);border:1px solid rgba(255,77,109,0.2);color:var(--danger);} */
.cn {
    background: rgba(255, 77, 109, 0.08);

    border: 1px solid rgba(255, 77, 109, 0.18);

    color: #E54866;
}

/* ── EXPIRY TABS ── */
.exp-row {
    display: flex;
    gap: 8px;
}

.et {
    flex: 1;
    padding: 11px 6px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.18s;
}

.et.on {
    background: rgba(0, 229, 195, 0.09);
    border: 1.5px solid rgba(0, 229, 195, 0.3);
    color: var(--teal);
}

.et.off {
    background: var(--s2);
    border: 1px solid var(--border);
    color: var(--muted);
}

/* ── INFO BANNER ── */
.info-box {
    background: rgba(0, 229, 195, 0.05);
    border: 1px solid rgba(0, 229, 195, 0.15);
    border-radius: 15px;
    padding: 13px 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ib-ico {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.ib-txt {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.ib-txt strong {
    color: var(--white);
}

/* ── TRUST PILLS ── */
.trust-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

/* .trust-pill{
  background:var(--teal-d);border:1px solid var(--bt);
  border-radius:100px;padding:6px 12px;
  font-size:11px;font-weight:700;color:var(--teal);white-space:nowrap;
} */
.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;

    background: rgba(255, 255, 255, .85);

    border: 1px solid rgba(4, 85, 199, .12);

    border-radius: 14px;

    color: #0455C7;

    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 4px 12px rgba(4, 85, 199, .06);

    transition: all .25s ease;
}

@media (max-width: 480px) {

    .trust-row {
        display: flex;
        flex-wrap: nowrap;
        /* Don't move to next line */
        gap: 6px;
    }

    .trust-pill {
        flex: 1;
        /* Each pill takes equal width */
        min-width: 0;

        justify-content: center;

        padding: 10px 8px;

        font-size: 11px;

        white-space: nowrap;
    }

    .tc-txt a {
        font-size: 9px;
    }

}

.trust-pill:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(4, 85, 199, .12);
}

/* ── DL CONNECTING ── */
.dl-logo {
    width: 68px;
    height: 68px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 12px;
    box-shadow: 0 0 0 8px var(--teal-d);
}

.dl-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
}

.dld {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.2;
    animation: dlb 1.2s ease-in-out infinite;
}

.dld:nth-child(2) {
    animation-delay: .2s;
}

.dld:nth-child(3) {
    animation-delay: .4s;
}

@keyframes dlb {

    0%,
    80%,
    100% {
        opacity: .2;
    }

    40% {
        opacity: 1;
    }
}

.dl-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dl-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    position: relative;
    font-size: 13px;
    transition: color 0.3s;
    color: var(--muted);
}

.dl-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    width: 2px;
    height: calc(100% - 8px);
    background: var(--border);
}

.dl-item.done::after {
    background: rgba(0, 229, 195, 0.3);
}

.dl-item.done {
    color: var(--teal);
}

.dl-item.act {
    color: var(--white);
    font-weight: 600;
}

.dl-n {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.dn-done {
    background: var(--teal);
    color: #000;
}

.dn-act {
    background: rgba(0, 229, 195, 0.15);
    border: 2px solid var(--teal);
    color: var(--teal);
    animation: dnp 1.2s infinite;
}

.dn-wait {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

@keyframes dnp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 195, .4);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(0, 229, 195, 0);
    }
}

/* ── SUCCESS ── */
.sring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 200, 100, 0.07);
    border: 2px solid rgba(0, 200, 100, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto 22px;
    animation: sRingIn 0.55s cubic-bezier(.34, 1.56, .64, 1) both;
    position: relative;
}

.sring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 200, 100, 0.1);
    animation: sRingSpin 8s linear infinite;
}

@keyframes sRingIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes sRingSpin {
    to {
        transform: rotate(360deg);
    }
}

.receipt {
    background: var(--s1);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.rr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rr:last-child {
    border-bottom: none;
}

.rk {
    font-size: 12px;
    color: var(--muted);
}

.rv {
    font-size: 13px;
    font-weight: 700;
}

.rv.t {
    color: var(--teal);
}

.rv.g {
    color: var(--green);
}

.rv.d {
    color: var(--danger);
}

/* ── BUTTONS ── */
.btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 17px;


    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;

    transition: transform 0.12s, box-shadow 0.15s;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn {
    background: var(--grad);
    color: white;

    box-shadow:
        0 12px 30px rgba(4, 85, 199, 0.25);
}

.btn:active {
    transform: scale(0.97);
    box-shadow: 0 4px 14px rgba(0, 229, 195, 0.12);
}

.btn:disabled {
    opacity: 0.36;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-ghost {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: transparent;
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-google {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: var(--s1);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s;
}

.btn-google:active {
    background: var(--s2);
}

.g-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background: conic-gradient(#4285F4 0 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75%);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.foot {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
}

/* ── FOREIGN BANNER ── */
.foreign-bar {
    background: linear-gradient(130deg, rgba(124, 92, 252, 0.12), rgba(0, 229, 195, 0.06));
    border: 1.5px solid rgba(124, 92, 252, 0.3);
    border-radius: 17px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
}

.foreign-bar:active {
    opacity: 0.85;
}

.fb-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.fb-text .ft1 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.fb-text .ft2 {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.fb-arr {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    margin-left: auto;
    white-space: nowrap;
}

/* ── CONFETTI ── */
.cfp {
    position: fixed;
    width: 7px;
    height: 7px;
    opacity: 0;
    z-index: 999;
    border-radius: 2px;
    animation: cffall 2.8s ease-in both;
    pointer-events: none;
}

@keyframes cffall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* ── HOTEL BADGE ── */
/* .hotel-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,229,195,0.08);border:1px solid rgba(0,229,195,0.22);
  border-radius:100px;padding:7px 14px;
  font-size:13px;font-weight:600;color:var(--teal);
  margin-bottom:20px;
  margin-top:43px;
} */

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 18px;

    border-radius: 999px;

    background: rgba(4, 85, 199, 0.08);

    border: 1px solid rgba(4, 85, 199, 0.18);

    color: #0455C7;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(4, 85, 199, 0.06);
    margin-top: 10px;
    margin-bottom: 20px;
}

/* ── NAME TAG (success) ── */
.name-tag {
    background: linear-gradient(130deg, rgba(0, 229, 195, 0.08), rgba(124, 92, 252, 0.08));
    border: 1.5px solid rgba(0, 229, 195, 0.2);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.nt-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
    background: rgba(0, 229, 195, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
}

.nt-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.nt-sub {
    font-size: 12px;
    color: var(--teal);
    margin-top: 2px;
}

/* ── OTP HINT ── */
.otp-hint {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

.otp-hint a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
}

/* demo bar */
#demo-bar {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 500;
    background: rgba(10, 15, 24, 0.92);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 100px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--amber);
    font-weight: 600;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    max-width: calc(100vw - 32px);
}

#demo-bar span {
    opacity: 0.7;
}

.demo-skip {
    padding: 3px 10px;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 100px;
    color: var(--amber);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.doc-input-wrap {
    display: none;
    width: 100%;
    margin-top: 12px;
}

.doc-input-wrap.show {
    display: block;
}


.doc-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 229, 195, 0.12);
}

#row-a .doc-input,
#row-d .doc-input,
#row-v .doc-input,
#row-pan .doc-input {

    width: 100% !important;
    padding: 18px 20px !important;

    margin: 12px 0 18px !important;

    border-radius: 18px !important;

    border: 1.5px solid #D9E3F2 !important;

    background: #FFFFFF !important;

    color: #1E293B !important;

    font-size: 15px !important;
    font-weight: 500 !important;

    outline: none !important;

    box-sizing: border-box !important;

    display: block !important;

    box-shadow:
        0 4px 14px rgba(15, 23, 42, .05);

    transition: all .25s ease;
}

#row-a .doc-input:focus,
#row-d .doc-input:focus,
#row-v .doc-input:focus,
#row-pan .doc-input:focus {

    border-color: #0455C7 !important;

    box-shadow:
        0 0 0 4px rgba(4, 85, 199, .10),
        0 8px 24px rgba(4, 85, 199, .08);
}

#row-a .doc-input::placeholder,
#row-d .doc-input::placeholder,
#row-v .doc-input::placeholder,
#row-pan .doc-input::placeholder {

    color: #94A3B8 !important;
}

.doc-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 12px 0 16px;
}

.doc-error {
    display: block;
    width: 100%;
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 12px;
    line-height: 1.5;
}

.doc-field {
    display: block !important;
    width: 100% !important;
}

.doc-field .doc-input {
    display: block !important;
    width: 100% !important;
    flex: none !important;
    /* MOST IMPORTANT */
    min-width: 100% !important;
    /* MOST IMPORTANT */
    margin-bottom: 6px !important;
}

.doc-field .doc-error {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    white-space: normal !important;
    word-break: break-word !important;
    margin-top: 6px !important;
    color: #ff6b6b !important;
}

.verify-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
}

.bubble-ring {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 5px solid #0455C7;

    padding: 8px;

    background: #FFFFFF;

    box-shadow:
        0 15px 35px rgba(4, 85, 199, .12),
        0 0 18px rgba(56, 182, 255, .18);

    transition: .3s ease;
}

.bubble-inner {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    overflow: hidden;
    position: relative;

    background: #FFFFFF;

    border: 1px solid rgba(4, 85, 199, .12);
}

.bubble-water {
    position: absolute;

    left: -50%;
    top: 100%;

    width: 200%;
    height: 200%;

    border-radius: 40%;

    background: linear-gradient(180deg,
            rgba(56, 182, 255, .85),
            rgba(4, 85, 199, .85));

    animation: spinBubble 8s linear infinite;

    transition: top .1s linear;
}

@keyframes spinBubble {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bubble-glare {
    position: absolute;

    top: -120%;
    left: -120%;

    width: 200%;
    height: 200%;

    border-radius: 50%;

    transform: rotate(45deg);

    background: rgba(255, 255, 255, .35);
}

.bubble-percent {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 5;

    font-family: 'Outfit', sans-serif;

    font-size: 46px;
    font-weight: 800;

    color: #1E293B;

    text-shadow:
        0 2px 10px rgba(4, 85, 199, .15);
}

.verify-status {
    margin-top: 28px;

    font-family: 'Outfit', sans-serif;

    font-size: 22px;
    font-weight: 700;

    color: #1E293B;

    text-align: center;

    min-height: 28px;

    transition: .3s ease;
}

.verify-sub {
    margin-top: 14px;

    max-width: 300px;

    color: #64748B;

    font-size: 14px;
    line-height: 1.8;

    text-align: center;
}

.iv-popup {
    border-radius: 28px !important;

    background: #FFFFFF !important;

    border: 1px solid rgba(4, 85, 199, .12) !important;

    box-shadow:
        0 20px 50px rgba(4, 85, 199, .12),
        0 8px 20px rgba(15, 23, 42, .06) !important;

    backdrop-filter: blur(18px);
}

.iv-title {
    font-family: 'Outfit', sans-serif !important;

    font-weight: 700 !important;

    color: #1E293B !important;
}

.iv-btn {
    border-radius: 14px !important;

    font-family: 'Outfit', sans-serif !important;

    font-weight: 600 !important;

    padding: 12px 28px !important;

    background: linear-gradient(90deg,
            #0455C7,
            #38B6FF) !important;

    color: white !important;

    border: none !important;

    box-shadow:
        0 10px 25px rgba(4, 85, 199, .18) !important;
}

.iv-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(4, 85, 199, .25) !important;
}

.iv-btn:focus {
    box-shadow: none !important;
}

.verify-success {
    width: 90px;
    height: 90px;

    margin-top: 35px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    font-weight: 900;

    color: #00D97E;

    background: rgba(0, 217, 126, .08);

    border: 2px solid rgba(0, 217, 126, .25);

    box-shadow:
        0 0 40px rgba(0, 217, 126, .25);

    opacity: 0;
    transform: scale(.4);

    transition: .45s cubic-bezier(.34, 1.56, .64, 1);
}

.verify-success.show {
    opacity: 1;
    transform: scale(1);
}

.verify-progress {
    width: 100%;
    max-width: 320px;

    margin: 38px auto 0;
}

.verify-track {
    height: 12px;

    border-radius: 100px;

    overflow: hidden;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .06);
}

.verify-fill {
    height: 100%;
    width: 0%;

    border-radius: 100px;

    background: linear-gradient(90deg,
            #F02617,
            #7C5CFC,
            #38B6FF);

    box-shadow:
        0 0 25px rgba(56, 182, 255, .5);

    transition: width .3s ease;
}

.verify-percent-text {
    margin-top: 10px;

    text-align: right;

    font-size: 13px;
    font-weight: 700;

    color: #38B6FF;
}

.verify-popup {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;

    width: auto !important;
    max-width: none !important;
    height: auto !important;

    padding: 0 !important;
    overflow: visible !important;
}

.verify-popup .swal2-image {
    width: 220px !important;
    height: auto !important;

    max-width: 80vw !important;

    margin: 0 auto !important;
    display: block !important;

    object-fit: contain !important;

    filter:
        drop-shadow(0 0 12px rgba(56, 182, 255, .5)) drop-shadow(0 0 25px rgba(56, 182, 255, .25));

    animation: verifyPulse 1.2s ease-in-out infinite;
}

@keyframes verifyPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}





button:focus,
a:focus,
input:focus {
    outline: none;
}


.hero-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

#demo-bar {
    display: none !important;
}

.name-error {
    display: block;
    margin-top: 6px;

    color: #EF4444;

    font-size: 12px;

    min-height: 16px;
}

.ib-ico {
    color: #111827;
    /* black/dark navy */
    font-size: 20px;
}