        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        body {
            background: #0B0D11;
            color: #E2E2E2;
            font-family: 'Manrope', sans-serif;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased
        }

        .bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(75, 107, 251, 0.08), transparent)
        }

        .wrap {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 24px;
            z-index: 1
        }

        .topnav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none
        }

        .logo-ic {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #4B6BFB, #3451DB);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 14px;
            color: #fff
        }

        .logo-t {
            font-weight: 800;
            font-size: 20px;
            color: #fff;
            letter-spacing: -.03em
        }

        .back {
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
            text-decoration: none
        }

        .back:hover {
            color: #4B6BFB
        }

        h1 {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -.02em
        }

        .sub {
            font-size: 15px;
            color: rgba(255, 255, 255, .35);
            margin-bottom: 32px;
            max-width: 560px
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 32px;
            align-items: start
        }

        @media(max-width:900px) {
            .grid {
                grid-template-columns: 1fr
            }
        }

        .card {
            background: rgba(255, 255, 255, .025);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 18px;
            padding: 28px
        }

        .section {
            margin-bottom: 28px
        }

        .section:last-child {
            margin-bottom: 0
        }

        .stitle {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3);
            margin-bottom: 14px
        }

        .slider-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 4px
        }

        .slider-val {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            min-width: 80px
        }

        .slider {
            flex: 1;
            -webkit-appearance: none;
            appearance: none;
            height: 6px;
            background: rgba(255, 255, 255, .08);
            border-radius: 3px;
            outline: none
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: #4B6BFB;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid #0B0D11;
            box-shadow: 0 0 0 1px rgba(75, 107, 251, .3)
        }

        .slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #4B6BFB;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid #0B0D11
        }

        .slider-hint {
            font-size: 12px;
            color: rgba(255, 255, 255, .3)
        }

        .toggle-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px
        }

        .toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 12px;
            cursor: pointer;
            transition: all .15s
        }

        .toggle:hover {
            border-color: rgba(75, 107, 251, .25);
            background: rgba(75, 107, 251, .03)
        }

        .toggle.on {
            border-color: #4B6BFB;
            background: rgba(75, 107, 251, .08)
        }

        .toggle-info {
            flex: 1
        }

        .toggle-t {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 2px
        }

        .toggle-d {
            font-size: 12px;
            color: rgba(255, 255, 255, .35)
        }

        .toggle-p {
            font-size: 13px;
            font-weight: 600;
            color: #4B6BFB;
            margin-left: 12px;
            white-space: nowrap
        }

        .sw {
            width: 36px;
            height: 20px;
            background: rgba(255, 255, 255, .1);
            border-radius: 10px;
            position: relative;
            flex-shrink: 0;
            transition: all .15s
        }

        .sw::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 16px;
            height: 16px;
            background: #fff;
            border-radius: 50%;
            transition: all .15s
        }

        .toggle.on .sw {
            background: #4B6BFB
        }

        .toggle.on .sw::after {
            left: 18px
        }

        .input {
            width: 100%;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 10px;
            padding: 12px 14px;
            font-size: 14px;
            color: #fff;
            outline: none;
            font-family: 'Manrope', sans-serif;
            transition: border .15s
        }

        .input:focus {
            border-color: rgba(75, 107, 251, .5)
        }

        .fi {
            margin-bottom: 14px
        }

        .fl {
            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 6px
        }

        .quote {
            position: sticky;
            top: 24px;
            background: linear-gradient(180deg, rgba(75, 107, 251, .12), rgba(75, 107, 251, .04));
            border: 1px solid rgba(75, 107, 251, .2);
            border-radius: 18px;
            padding: 28px;
            overflow: hidden
        }

        .qhead {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 12px
        }

        .qprice {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px
        }

        .qamt {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -.03em;
            line-height: 1
        }

        .qunit {
            font-size: 14px;
            color: rgba(255, 255, 255, .4)
        }

        .qper {
            font-size: 13px;
            color: rgba(255, 255, 255, .3);
            margin-bottom: 18px
        }

        .qline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 255, 255, .06);
            font-size: 13px;
            color: rgba(255, 255, 255, .5)
        }

        .qline span:last-child {
            color: #fff;
            font-weight: 600
        }

        .billing-toggle {
            display: flex;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 10px;
            padding: 3px;
            margin-bottom: 18px;
            gap: 2px
        }

        .bt {
            flex: 1;
            padding: 7px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, .4);
            cursor: pointer;
            border-radius: 7px;
            transition: all .15s;
            border: none;
            background: none;
            font-family: 'Manrope', sans-serif;
            font-weight: 600
        }

        .bt.active {
            background: rgba(75, 107, 251, .15);
            color: #fff
        }

        .save-pill {
            display: inline-block;
            background: #4B6BFB;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
            vertical-align: middle
        }

        .btn-primary {
            width: 100%;
            background: #4B6BFB;
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 14px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Manrope', sans-serif;
            margin-top: 20px;
            transition: opacity .15s
        }

        .btn-primary:hover {
            opacity: .9
        }

        .btn-primary:disabled {
            opacity: .4;
            cursor: not-allowed
        }

        .err {
            background: rgba(239, 68, 68, .08);
            border: 1px solid rgba(239, 68, 68, .15);
            border-radius: 10px;
            padding: 10px 14px;
            margin-top: 12px;
            font-size: 12px;
            color: #f87171;
            display: none
        }
