/* =========================================================
   ULTRA-PREMIUM Login UI — v5 Complete Redesign
   Scope: login.php
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── CSS Variables ── */
:root {
    --brand-1: #0b1c4d;
    --brand-2: #19b0dc;
    --brand-deep: #060f33;
    --brand-glow: rgba(28, 181, 224, .4);
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, .1);
    --card-bg: rgba(255, 255, 255, .97);
    --shadow-lg: 0 32px 80px -16px rgba(2, 13, 81, .5), 0 12px 32px -8px rgba(2, 13, 81, .28);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: #04091e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* ── Animated Background ── */
.login-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Deep animated gradient base */
.login-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 110% 80% at 75% 15%, rgba(28, 181, 224, .28) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 10% 85%, rgba(11, 28, 77, .55) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(6, 15, 51, .4) 0%, transparent 70%),
        linear-gradient(145deg, #04091e 0%, #080f2e 35%, #091640 60%, #060f33 100%);
    z-index: -2;
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0%   { filter: hue-rotate(0deg) brightness(1); }
    50%  { filter: hue-rotate(8deg) brightness(1.04); }
    100% { filter: hue-rotate(-5deg) brightness(0.97); }
}

/* Animated mesh grid overlay */
.login-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(28, 181, 224, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 181, 224, .05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
    z-index: -1;
    animation: gridPulse 12s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0%   { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* ── Floating Glow Orbs ── */
.bg-glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
}
.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(28, 181, 224, 0.35) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 28s ease-in-out infinite alternate;
    opacity: 0.7;
}
.circle-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(11, 28, 120, 0.5) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: orbFloat2 34s ease-in-out infinite alternate;
    opacity: 0.6;
}
.circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 60, 240, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: orbFloat3 22s ease-in-out infinite alternate;
    opacity: 0.5;
}
.circle-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(28, 181, 224, 0.25) 0%, transparent 70%);
    top: 20%;
    right: 30%;
    animation: orbFloat1 18s ease-in-out infinite alternate-reverse;
    opacity: 0.45;
}

@keyframes orbFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(60px, -40px) scale(1.08); }
    66%  { transform: translate(-30px, 50px) scale(0.95); }
    100% { transform: translate(40px, 30px) scale(1.05); }
}
@keyframes orbFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-70px, 50px) scale(1.1); }
    66%  { transform: translate(40px, -60px) scale(0.92); }
    100% { transform: translate(-50px, -30px) scale(1.06); }
}
@keyframes orbFloat3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(50px, -40px) scale(1.12); }
    100% { transform: translate(-40px, 30px) scale(0.9); }
}

/* ── Container ── */
.login-section__notice-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 100px 32px 0;
    position: relative;
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
}

.login-section__notice-container + .login-section__container {
    padding-top: 20px !important;
}

.login-section__container {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 100px 32px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 100vh;
}

/* ── Left Hero ── */
.login-section__text {
    color: #fff;
    position: static;
    width: auto;
    display: block;
    animation: revealUp 0.9s var(--ease-smooth) both;
}

.login-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(28, 181, 224, .12);
    border: 1px solid rgba(28, 181, 224, .3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #7fdcff;
    box-shadow: 0 0 24px rgba(28, 181, 224, .1), inset 0 1px 0 rgba(255,255,255,.08);
    animation: badgePop 0.7s var(--ease-spring) 0.2s both;
}

.login-section__badge::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #19b0dc;
    box-shadow: 0 0 8px #19b0dc;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #19b0dc; }
    50%       { opacity: .5; box-shadow: 0 0 14px #19b0dc; }
}

.login-section__cta {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #7fdcff;
    margin-bottom: 14px;
    letter-spacing: .01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    animation: revealUp 0.9s var(--ease-smooth) 0.15s both;
}

.login-section__main-heading {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    animation: revealUp 0.9s var(--ease-smooth) 0.1s both;
}

.login-section__main-heading--bold {
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, #a8e6ff 30%, #19b0dc 55%, #a8e6ff 80%, #ffffff 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: headingShimmer 5s ease-in-out infinite;
}

@keyframes headingShimmer {
    0%, 100% { background-position: 0% 0; }
    50%       { background-position: 100% 0; }
}

.login-section__desc {
    color: rgba(226, 232, 240, 0.85);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 520px;
    animation: revealUp 0.9s var(--ease-smooth) 0.2s both;
}

/* Accent line under text */
.login-section__text::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 4px;
    margin-top: 12px;
    background: linear-gradient(90deg, #19b0dc, rgba(28,181,224,0));
    animation: lineGrow 1s var(--ease-smooth) 0.5s both;
    transform-origin: left;
}

@keyframes lineGrow {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

/* ── Login Card ── */
.login-section__card {
    position: relative;
    margin: 0;
    padding: 32px 28px 26px;
    width: 100%;
    max-width: 380px;
    justify-self: end;
    border-radius: 28px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow:
        0 40px 90px -20px rgba(2, 13, 81, .5),
        0 20px 40px -10px rgba(2, 13, 81, .25),
        0 0 0 1px rgba(255,255,255,.15),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    display: block;
    overflow: hidden;
    animation: cardEntry 1s var(--ease-spring) 0.15s both;
    transition: transform .4s var(--ease-smooth), box-shadow .4s ease;
}

.login-section__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 50px 100px -20px rgba(2, 13, 81, .55),
        0 25px 50px -10px rgba(2, 13, 81, .3),
        0 0 0 1px rgba(255,255,255,.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Rainbow border shimmer on card */
.login-section__card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 29px;
    background: conic-gradient(
        from 0deg,
        transparent 0%, transparent 25%,
        rgba(28, 181, 224, .35) 30%, rgba(28, 181, 224, .6) 50%, rgba(28, 181, 224, .35) 70%,
        transparent 75%, transparent 100%
    );
    background-size: 200% 200%;
    z-index: -1;
    animation: borderSpin 6s linear infinite;
    opacity: 0;
    transition: opacity .4s ease;
}
.login-section__card:hover::before {
    opacity: 1;
}

@keyframes borderSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* One-time shine sweep on load */
.login-section__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(28, 181, 224, .12) 50%, transparent 75%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    border-radius: inherit;
    animation: cardShine 1.8s ease 1s 1 both;
    z-index: 1;
}
.login-section__card > * { position: relative; z-index: 2; }

@keyframes cardShine {
    from { background-position: -120% 0; opacity: 0; }
    20%  { opacity: 1; }
    to   { background-position: 240% 0; opacity: 0; }
}

.login-section__card form { width: 100%; }

/* ── Form Labels ── */
.login-section__card .form-input-group label,
.form-input-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: .02em;
    margin: 0 0 8px;
    text-transform: none;
}

/* ── Input Fields ── */
.login-section__card .form-control,
.form-input-group .form-control {
    width: 100%;
    height: 46px;
    padding: 0 16px 0 46px;
    border-radius: 14px;
    border: 1.5px solid rgba(15, 23, 42, .1);
    background: #f8faff;
    font-size: .95rem;
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        transform .25s var(--ease-spring);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
    outline: none;
}

.login-section__card .form-control::placeholder,
.form-input-group .form-control::placeholder {
    color: #b0bad0;
    font-weight: 400;
}

.login-section__card .form-control:hover,
.form-input-group .form-control:hover {
    border-color: rgba(28, 181, 224, .4);
    background: #fff;
}

.login-section__card .form-control:focus,
.form-input-group .form-control:focus {
    border-color: var(--brand-2);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(28, 181, 224, .13), inset 0 1px 2px rgba(0,0,0,.02);
    transform: translateY(-2px);
}

/* Icon in input */
.form-input-group {
    position: relative;
    margin-bottom: 18px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.input-wrapper .bi {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.15rem;
    pointer-events: none;
    z-index: 5;
    transition: color .22s ease;
}

.input-wrapper:focus-within .bi:first-child {
    color: var(--brand-2);
    filter: drop-shadow(0 0 4px rgba(28, 181, 224, .4));
}

/* ── Login Button ── */
.button_btn__1dRFj {
    position: relative;
    width: 100%;
    height: 48px !important;
    border: none;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800 !important;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: none;
    color: #fff !important;
    cursor: pointer;
    background: linear-gradient(135deg, #0a1b50 0%, #0c4a80 45%, #19b0dc 100%) !important;
    box-shadow:
        0 12px 28px -8px rgba(11, 28, 77, .65),
        0 4px 12px -4px rgba(28, 181, 224, .5),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    overflow: hidden;
    transition: transform .2s var(--ease-spring), box-shadow .25s ease, filter .2s ease;
    margin-top: 6px;
    animation: btnPulse 3.5s ease-in-out infinite;
}

.button_btn__1dRFj::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position .7s var(--ease-smooth);
    pointer-events: none;
}

.button_btn__1dRFj:hover {
    transform: translateY(-3px) scale(1.01);
    animation: none;
    filter: brightness(1.1);
    box-shadow:
        0 18px 40px -8px rgba(11, 28, 77, .7),
        0 8px 20px -4px rgba(28, 181, 224, .65),
        inset 0 1px 0 rgba(255, 255, 255, .3);
}

.button_btn__1dRFj:hover::before {
    background-position: 200% 0;
}

.button_btn__1dRFj:active {
    transform: translateY(0) scale(0.99);
    filter: brightness(.95);
    box-shadow:
        0 6px 14px -4px rgba(11, 28, 77, .5),
        0 2px 6px -2px rgba(28, 181, 224, .35),
        inset 0 2px 4px rgba(0,0,0,.12);
}

.button_btn__1dRFj:focus-visible {
    outline: 3px solid rgba(28, 181, 224, .5);
    outline-offset: 3px;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow:
            0 12px 28px -8px rgba(11, 28, 77, .65),
            0 4px 12px -4px rgba(28, 181, 224, .5),
            inset 0 1px 0 rgba(255, 255, 255, .25);
    }
    50% {
        box-shadow:
            0 16px 36px -8px rgba(11, 28, 77, .7),
            0 6px 20px -4px rgba(28, 181, 224, .75),
            inset 0 1px 0 rgba(255, 255, 255, .3);
    }
}

/* ── Register Button ── */
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 46px;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: .02em;
    color: #0b1c4d !important;
    text-decoration: none !important;
    background: transparent;
    border: 2px solid rgba(11, 28, 77, .2);
    transition: all .25s var(--ease-smooth);
    margin-top: 12px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.btn-secondary-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b1c4d 0%, #1cb5e0 100%);
    opacity: 0;
    transition: opacity .25s ease;
}

.btn-secondary-outline:hover {
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 28, 77, .2);
}

.btn-secondary-outline:hover::before { opacity: 1; }
.btn-secondary-outline > * { position: relative; z-index: 1; }

.btn-secondary-outline:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(11, 28, 77, .12);
}

/* ── Telegram Button ── */
.telegram-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 46px;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    color: #ffffff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #0b1c4d 0%, #1cb5e0 100%) !important;
    box-shadow:
        0 10px 24px -8px rgba(11, 28, 77, .55),
        0 4px 12px -4px rgba(28, 181, 224, .5),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: transform .2s var(--ease-spring), box-shadow .25s ease, filter .2s ease;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.telegram-btn-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position .7s var(--ease-smooth);
}

.telegram-btn-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 16px 32px -8px rgba(11, 28, 77, .6),
        0 8px 16px -4px rgba(28, 181, 224, .65),
        inset 0 1px 0 rgba(255, 255, 255, .3);
}
.telegram-btn-link:hover::before { background-position: 200% 0; }
.telegram-btn-link:active { transform: translateY(0); filter: brightness(.96); }

/* ── WhatsApp / Outline Buttons ── */
.btn-secondary-outline-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 46px;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: #128C7E !important;
    text-decoration: none !important;
    background: transparent;
    border: 2px solid rgba(37, 211, 102, .5);
    transition: all .25s var(--ease-smooth);
    margin-top: 12px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.btn-secondary-outline-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #25D366, #128C7E);
    opacity: 0;
    transition: opacity .25s ease;
}

.btn-secondary-outline-wa:hover {
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, .25);
}
.btn-secondary-outline-wa:hover::before { opacity: 1; }
.btn-secondary-outline-wa > * { position: relative; z-index: 1; }
.btn-secondary-outline-wa:active { transform: translateY(0); }

/* ── Notice Ticker ── */
.compact-notice-box {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-left: 4px solid #38bdf8;
    border-radius: 14px;
    padding: 8px 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35), 0 0 0 1px rgba(56,189,248,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    width: 100%;
    overflow: hidden;
    animation: revealUp 0.8s var(--ease-smooth) both;
}

.notice-badge-tag {
    background: linear-gradient(135deg, #0284c7, #2563eb);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(2, 132, 199, .3);
}

.notice-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.notice-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-left: 100%;
    animation: horizontalTicker 22s linear infinite;
    font-size: 0.84rem;
    font-weight: 600;
    color: #f1f5f9;
}

.notice-ticker-track:hover { animation-play-state: paused; }

.notice-bullet { color: #38bdf8; font-size: 1.1rem; }

@keyframes horizontalTicker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ── Trust Banner ── */
.trust-banner-container {
    margin-top: 24px;
    margin-bottom: 24px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    padding: 20px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 16px 48px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
    animation: revealUp 0.9s var(--ease-smooth) 0.3s both;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    padding: 16px;
    transition: all .3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.trust-card-riskfree  { border-left: 3px solid #4ade80; }
.trust-card-zeroinvest { border-left: 3px solid #38bdf8; }

.trust-title-en {
    font-size: 1rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-title-hi {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.trust-text {
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 0;
}
.trust-text strong { color: #ffffff; }

.badge-free {
    background: rgba(56, 189, 248, 0.18);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, .38);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 4px;
}

/* ── Pricing ── */
.pricing-desktop { display: block; }
.pricing-mobile-container {
    display: none;
    width: 100%;
    max-width: 420px;
    justify-self: center;
    margin-top: 20px;
}

.pricing-section { margin-top: 24px; width: 100%; }

.pricing-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #38bdf8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-section-title::before,
.pricing-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
}
.pricing-section-title::before { background: linear-gradient(90deg, rgba(56,189,248,.3), transparent); }
.pricing-section-title::after  { background: linear-gradient(90deg, transparent, rgba(56,189,248,.3)); }

.pricing-table {
    background: rgba(10, 17, 40, .65);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 16px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}

.pricing-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .2s ease, transform .2s var(--ease-smooth), padding-left .2s ease;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover {
    background: rgba(255,255,255,.06);
    padding-left: 26px;
}

.pricing-service-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.pricing-service-name {
    font-size: .88rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.pricing-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pricing-amount {
    font-size: .95rem;
    font-weight: 800;
    color: #4ade80;
    text-shadow: 0 0 14px rgba(74, 222, 128, .35);
    font-variant-numeric: tabular-nums;
}

.pricing-amount span {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
}

.service-badge {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}

.badge-active {
    background: rgba(34, 197, 94, .18);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, .38);
}

.badge-disabled {
    background: rgba(239, 68, 68, .15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, .35);
}

/* ── Admin Contact ── */
.admin-contact-container {
    text-align: right;
    margin-top: 8px;
    padding-right: 4px;
}

.admin-tg-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-2);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity .2s, transform .2s;
}
.admin-tg-link:hover { opacity: .8; transform: translateX(2px); }

/* ── Keyframe Animations ── */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes cardEntry {
    from { opacity: 0; transform: translateY(32px) scale(.95); filter: blur(8px); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes badgePop {
    from { opacity: 0; transform: scale(.7) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Disclaimer box inside card ── */
.login-section__card [style*="background: rgba(25"] {
    border-radius: 12px !important;
    border-left-width: 3px !important;
    transition: box-shadow .2s ease;
}
.login-section__card [style*="background: rgba(25"]:hover {
    box-shadow: 0 4px 16px rgba(28,181,224,.1) !important;
}

/* ── Desktop ── */
@media (min-width: 993px) {
    html, body {
        height: 100vh !important;
        overflow: hidden !important;
    }
    .login-section {
        height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }
    .login-section__container {
        padding: 16px 40px !important;
        gap: 48px !important;
        height: 100vh !important;
        min-height: 100vh !important;
        align-content: center !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 380px) !important;
    }
    .login-section__text, .login-section__card { min-width: 0 !important; }
    .trust-banner-container {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
        padding: 12px !important;
    }
    .trust-card { padding: 10px 14px !important; }
    .trust-title-en { font-size: 0.82rem !important; margin-bottom: 3px !important; }
    .trust-title-hi { font-size: 0.76rem !important; margin-bottom: 4px !important; }
    .trust-text { font-size: 0.7rem !important; line-height: 1.3 !important; }
    .pricing-section { margin-top: 10px !important; }
    .pricing-row { padding: 7px 14px !important; }
    .pricing-service-name { font-size: 0.78rem !important; }
    .pricing-amount { font-size: 0.88rem !important; }
    .login-section__desc { margin-bottom: 6px !important; font-size: 0.82rem !important; }
    .login-section__cta { font-size: 0.9rem !important; margin-bottom: 4px !important; }
    .login-section__badge { margin-bottom: 8px !important; padding: 4px 12px !important; font-size: 0.68rem !important; }
    .login-section__main-heading { font-size: clamp(1.8rem, 2.8vw, 2.8rem) !important; }
    .login-section__card { padding: 26px 24px 22px !important; }
}

/* ── Mobile ── */
@media (max-width: 992px) {
    html, body { overflow-x: hidden !important; }

    .pricing-desktop { display: none !important; }
    .pricing-mobile-container { display: block !important; }

    .login-section__container {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 20px 16px 40px !important;
        gap: 20px !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .login-section__text {
        text-align: center !important;
        width: 100% !important;
    }

    .login-section__badge { margin: 0 auto 16px !important; }

    .login-section__card {
        justify-self: unset !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 22px !important;
    }

    .login-section__desc {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    .login-section__text::after {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .compact-notice-box { margin-bottom: 12px !important; padding: 6px 10px !important; border-radius: 12px !important; }
    .notice-badge-tag { font-size: 0.62rem !important; padding: 3px 8px !important; }
    .trust-banner-container { margin-top: 16px !important; margin-bottom: 16px !important; padding: 16px 14px !important; border-radius: 18px !important; }
    .trust-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .trust-card { padding: 14px !important; border-radius: 14px !important; }
    .trust-title-en { font-size: 0.95rem !important; }
    .trust-title-hi { font-size: 0.85rem !important; }
    .trust-text { font-size: 0.78rem !important; }
    .pricing-mobile-container { margin-top: 14px !important; margin-bottom: 14px !important; }
    .pricing-table { border-radius: 16px !important; }
    .pricing-row { padding: 10px 14px !important; }
    .pricing-service-name { font-size: 0.82rem !important; }
    .pricing-amount { font-size: .92rem !important; }
}

@media (max-width: 576px) {
    .login-section__container { padding: 14px 12px 36px !important; gap: 16px !important; }
    .login-section__card { padding: 22px 16px 18px !important; border-radius: 18px !important; }
    .login-section__main-heading { font-size: 1.85rem !important; }
    .login-section__desc { font-size: .88rem !important; }
    .login-section__card .form-control { height: 50px !important; border-radius: 12px !important; }
    .button_btn__1dRFj { height: 52px !important; border-radius: 13px !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
