@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");


        :root {
            --navy: #0e1526;
            --teal: #22c396;
            --teal-dark: #1aa07c;
            --blue: #2f7cf6;
            --mint-bg: #e9f9f0;
            --mint-bg-2: #dff5e9;
            --text-dark: #101828;
            --text-muted: #5b6474;
            --white: #fff;
            --border: #e3e6ec;
            padding-top: env(safe-area-inset-top, 0px);
            padding-bottom: env(safe-area-inset-bottom, 0px);
            box-sizing: border-box;
            --text-navy: #101828; 
            --text-teal: #22c396; 
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: env(safe-area-inset-top, 0px)
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #fff;
            color: var(--text-dark);
            line-height: 1.5;
            overflow-x: hidden
        }

        h1,
        h2,
        h3 {
            font-family: 'Poppins', sans-serif
        }

        img {
            max-width: 100%;
            display: block
        }

        a {
            text-decoration: none;
            color: inherit
        }

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none
        }

        /* nav */
        header.nav {
            background: var(--navy);
            position: sticky;
            top: 0;
            z-index: 50
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            max-width: 1200px;
            margin: 0 auto
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            font-family: 'Poppins', sans-serif
        }

        .logo-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--teal);
            flex: none
        }

        .logo span {
            color: var(--teal)
        }

        .nav-links {
            display: none;
            gap: 28px;
            color: #c6ccd8;
            font-size: 15px
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px
        }

        .nav-right a {
            color: #e7eaf0;
            font-size: 14px;
            font-weight: 500
        }

        .nav-signup {
            background: var(--teal);
            color: #06281f;
            padding: 9px 18px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 14px
        }

        /* signup hero */
        .signup-hero {
            background: var(--navy);
            color: #fff;
            padding: 22px 0 40px
        }

        .back-link {
            display: inline-block;
            color: #9aa3b2;
            font-size: 13px;
            margin-bottom: 16px
        }

        .signup-grid {
            display: flex;
            flex-direction: column;
            gap: 28px
        }

        .signup-left h1 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25
        }

        .signup-left h1 span {
            color: var(--teal)
        }

        .signup-left>p {
            color: #aeb6c4;
            font-size: 14px;
            margin-top: 12px;
            max-width: 440px
        }

        .feature-list {
            list-style: none;
            margin-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600
        }

        .fic {
            width: 32px;
            height: 32px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
            font-size: 14px;
            color:#e3e6ec
        }

        .f-green {
            background: var(--teal)
        }

        .f-blue {
            background: var(--blue)
        }

        .f-purple {
            background: #8b5cf6
        }

        .f-orange {
            background: #f59e0b
        }

        .signup-img {
            margin-top: 22px;
            border-radius: 18px;
            overflow: hidden
        }

        .signup-img img {
            width: 100%;
            height: 260px;
            object-fit: cover
        }

        /* form card */
        .form-card {
            background: #fff;
            border-radius: 20px;
            padding: 26px 22px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
        }

        .form-card h3 {
            font-size: 19px;
            font-weight: 700
        }

        .form-card>p {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px
        }

        .form-card>p a {
            color: var(--teal-dark);
            font-weight: 600
        }

        .form-card>div.acc-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 10px;
            flex-wrap: wrap
        }

        .acc-row .login-link {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
            text-align: right
        }

        .login-link-text{
            color: var(--text-teal);
            font-weight: 600;
        }

        .acc-row .login-link b {
            color: var(--teal-dark)
        }
         .acc-row-text{
            color: var(--text-navy);
        }

        .stepper {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 22px 0 8px
        }

        .stepper::before {
            content: "";
            position: absolute;
            top: 15px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--border);
            z-index: 0
        }

        .step {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1
        }

        .step .circ {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--border);
            color: #9aa3b2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700
        }

        .step.active .circ {
            background: var(--teal);
            border-color: var(--teal);
            color: #fff
        }

        .step .lbl {
            font-size: 10px;
            color: #9aa3b2;
            text-align: center
        }

        .step.active .lbl {
            color: var(--text-dark);
            font-weight: 600
        }

        .field {
            margin-top: 16px
        }

        .field label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px
        }

        .field input[type=text],
        .field input[type=email],
        .field select {
            width: 100%;
            padding: 11px 13px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            color: var(--text-dark);
            background: #fff
        }

        .field input:focus,
        .field select:focus {
            outline: 2px solid var(--teal);
            outline-offset: 1px
        }

        .mobile-row {
            display: flex;
            gap: 8px
        }

        .mobile-row select {
            width: 78px;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0 6px;
            font-size: 14px
        }

        .mobile-row input {
            flex: 1
        }

        .gender-row {
            display: flex;
            gap: 8px
        }

        .gender-opt {
            flex: 1;
            position: relative
        }

        .gender-opt input {
            position: absolute;
            opacity: 0
        }

        .gender-opt label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 6px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted)
        }

        .gender-opt input:checked+label {
            border-color: var(--teal);
            background: var(--mint-bg);
            color: var(--teal-dark)
        }

        .digilocker-box {
            margin-top: 20px;
            background: #eaf2ff;
            border-radius: 14px;
            padding: 16px
        }

        .digilocker-box .dl-head {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .digilocker-box .dl-ic {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px
        }

        .digilocker-box h4 {
            font-size: 14px;
            font-weight: 700
        }

        .digilocker-box p {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px
        }

        .dl-btn {
            margin-top: 12px;
            width: 100%;
            background: var(--blue);
            color: #fff;
            padding: 11px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px
        }

        .dl-note {
            font-size: 11px;
            color: #7a8494;
            margin-top: 10px
        }

        .agree {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 16px;
            font-size: 12px;
            color: var(--text-muted)
        }

        .agree input {
            margin-top: 2px
        }

        .agree a {
            color: var(--teal-dark);
            font-weight: 600
        }

        .next-btn {
            margin-top: 18px;
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            background: #eef0f3;
            color: #a3aab6;
            transition: background .2s, color .2s
        }

        .next-btn.enabled {
            background: var(--navy);
            color: #fff;
            cursor: pointer
        }

        .confirm {
            display: none;
            margin-top: 12px;
            background: var(--mint-bg);
            color: var(--teal-dark);
            font-size: 12px;
            font-weight: 600;
            padding: 10px 12px;
            border-radius: 10px
        }

        .confirm.show {
            display: block
        }

        /* trust stats */
        .trust-stats {
            background: var(--mint-bg);
            padding: 34px 0
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            text-align: center
        }

        .stats-row .circ2 {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .05)
        }

        .stats-row h5 {
            font-size: 13px;
            font-weight: 700
        }

        .stats-row span {
            font-size: 11px;
            color: var(--text-muted)
        }

        /* footer (shared) */
        footer {
            background: var(--navy);
            color: #c6ccd8;
            padding: 44px 0 20px
        }

        .foot-top {
            display: flex;
            flex-direction: column;
            gap: 30px
        }

        .foot-brand p {
            font-size: 13px;
            margin-top: 10px;
            max-width: 280px;
            color: #9aa3b2
        }

        .social {
            display: flex;
            gap: 10px;
            margin-top: 16px
        }

        .social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px
        }

        .foot-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px
        }

        .foot-cols h4 {
            font-size: 13px;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 600
        }

        .foot-cols li {
            list-style: none;
            font-size: 13px;
            margin-bottom: 9px;
            color: #9aa3b2
        }

        .newsletter {
            display: flex
        }

        .newsletter input {
            flex: 1;
            padding: 10px 12px;
            border-radius: 10px 0 0 10px;
            border: 1px solid rgba(255, 255, 255, .15);
            background: rgba(255, 255, 255, .06);
            color: #fff;
            font-size: 13px
        }

        .newsletter button {
            background: var(--teal);
            color: #06281f;
            padding: 0 16px;
            border-radius: 0 10px 10px 0;
            font-weight: 700
        }

        .foot-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            margin-top: 32px;
            padding-top: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 12px;
            color: #8b93a3
        }

        .foot-bottom .links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px
        }

        @media(min-width:900px) {
            .nav-links {
                display: flex
            }

            .signup-grid {
                flex-direction: row;
                align-items: flex-start;
                gap: 50px
            }

            .signup-left {
                flex: 1
            }

            .signup-right {
                flex: 1;
                max-width: 460px
            }

            .signup-left h1 {
                font-size: 38px
            }

            .signup-img img {
                height: 300px
            }

            .stats-row {
                grid-template-columns: repeat(4, 1fr)
            }

            .foot-top {
                flex-direction: row;
                justify-content: space-between
            }

            .foot-cols {
                grid-template-columns: repeat(3, 1fr);
                flex: 2
            }

            .foot-bottom {
                flex-direction: row;
                justify-content: space-between
            }
        }
  