    /* Ticker */
    .ticker-bar {
        background: var(--bs-dark);
        overflow: hidden;
        padding: 8px 0;
        border-bottom: 2px solid var(--bs-primary)
    }

    .ticker-track {
        display: flex;
        white-space: nowrap;
        animation: ticker 40s linear infinite
    }

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

    .ticker-track span {
        font-size: 12.5px;
        font-weight: 600;
        color: rgba(255, 255, 255, .85);
        padding: 0 28px
    }

    .ticker-track .sep {
        color: #0be1ff
    }

    @keyframes ticker {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    /* Validity tabs */
    .val-switcher {
        display: flex;
        background: #F2F5F9;
        border-radius: 8px;
        padding: 4px;
        gap: 4px
    }

    .vs-btn {
        flex: 1;
        padding: 10px 8px;
        border: none;
        background: transparent;
        border-radius: 6px;
        font-size: 13.5px;
        font-weight: 600;
        color: #6c757d;
        cursor: pointer;
        font-family: inherit;
        transition: .2s;
        position: relative;
        text-align: center
    }

    .vs-btn.active {
        background: var(--bs-primary);
        color: #fff;
        box-shadow: 0 3px 10px rgba(1, 95, 201, .3)
    }

    .vs-badge {
        position: absolute;
        top: -9px;
        right: 0;
        background: #198754;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 1px 6px;
        border-radius: 20px;
        white-space: nowrap
    }

    .vs-badge-blue {
        background: var(--bs-primary)
    }

    /* Pricing table */
    .price-table-wrap {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 45px -10px rgba(93, 114, 128, .2);
        border: 1px solid rgba(0, 0, 0, .08)
    }

    .pt-head {
        background: var(--bs-dark);
        display: grid;
        grid-template-columns: 2fr 1.3fr 1fr auto;
        padding: 13px 20px;
        gap: 0
    }

    .pt-head span {
        font-size: 11px;
        font-weight: 700;
        color: rgba(255, 255, 255, .65);
        text-transform: uppercase;
        letter-spacing: .5px
    }

    .pt-head span:nth-child(2),
    .pt-head span:nth-child(3) {
        text-align: center
    }

    .pt-head span:last-child {
        text-align: right
    }

    .pt-row {
        display: grid;
        grid-template-columns: 2fr 1.3fr 1fr auto;
        padding: 15px 20px;
        border-bottom: 1px solid #F2F5F9;
        background: #fff;
        transition: background .15s;
        position: relative;
        align-items: center
    }

    .pt-row:last-child {
        border-bottom: none
    }

    .pt-row:hover {
        background: #f0f7ff
    }

    .pt-row.hot {
        background: #fffbf0
    }

    .pt-row.hot::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--bs-secondary)
    }

    .dsc-title {
        font-size: 14px;
        font-weight: 700;
        color: #000
    }

    .dsc-sub {
        font-size: 11.5px;
        color: #6c757d;
        margin-top: 3px
    }

    .price-col {
        text-align: center
    }

    .p-strike {
        font-size: 12px;
        color: #adb5bd;
        text-decoration: line-through;
        display: block
    }

    .p-final {
        font-size: 20px;
        font-weight: 800;
        color: var(--bs-primary);
        display: block;
        line-height: 1.1
    }

    .p-save {
        display: inline-block;
        background: #d1e7dd;
        color: #0f5132;
        font-size: 9.5px;
        font-weight: 700;
        padding: 1px 7px;
        border-radius: 20px;
        margin-top: 2px
    }

    .del-col {
        text-align: center;
        font-size: 12px;
        color: #6c757d;
        font-weight: 600;
        line-height: 1.5
    }

    .del-fast {
        color: #198754;
        font-weight: 700
    }

    .act-col {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: flex-end
    }

    .btn-wa {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #25d366;
        color: #fff;
        padding: 7px 11px;
        border-radius: 7px;
        font-size: 12px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        font-family: inherit;
        transition: .18s;
        white-space: nowrap;
        text-decoration: none
    }

    .btn-wa:hover {
        background: #22c55e;
        transform: translateY(-1px);
        color: #fff
    }

    .btn-qt {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: #F2F5F9;
        color: var(--bs-primary);
        padding: 5px 9px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        border: 1px solid #ccdff4;
        cursor: pointer;
        font-family: inherit;
        transition: .18s;
        white-space: nowrap
    }

    .btn-qt:hover {
        background: var(--bs-primary);
        color: #fff
    }

    .tbadge {
        display: inline-block;
        font-size: 9.5px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 20px;
        margin-left: 5px;
        vertical-align: middle
    }

    .tb-pop {
        background: #fff3cd;
        color: #856404
    }

    .tb-gem {
        background: #cff4fc;
        color: #055160
    }

    .tb-dgft {
        background: #e2d9f3;
        color: #432874
    }

    .tb-nri {
        background: #d1e7dd;
        color: #0f5132
    }

    .tb-no {
        background: #f8d7da;
        color: #842029
    }

    /* Hero stat boxes */
    .stat-box {
        background: rgba(255, 255, 255, .12);
        border-radius: 10px;
        padding: 10px 16px;
        text-align: center;
        backdrop-filter: blur(6px)
    }

    /* Strips */
    .strip-green {
        background: linear-gradient(135deg, #d1e7dd, #a3cfbb);
        border: 1.5px solid #86efac;
        border-radius: 10px;
        padding: 16px 20px
    }

    .strip-yellow {
        background: #fff3cd;
        border: 1.5px solid #ffecb5;
        border-radius: 10px;
        padding: 16px 20px
    }

    /* Form card — matches site .bg-color style */
    .form-card {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(16px);
        border-radius: 12px;
        border: 1px solid rgba(12, 0, 226, .15);
        box-shadow: 0 8px 32px rgba(1, 95, 201, .18);
        padding: 28px 24px;
        position: relative;
        overflow: hidden
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--bs-primary), #0be1ff)
    }


    @keyframes bob {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-5px)
        }
    }

    @keyframes livepulse {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    /* Modal header */
    .modal-hdr {
        background: linear-gradient(135deg, var(--bs-primary), #0077e6);
        padding: 16px 20px;
        border-radius: 10px 10px 0 0
    }

    /* Responsive */
    @media(max-width:900px) {

        .pt-head,
        .pt-row {
            grid-template-columns: 1.8fr 1.1fr auto
        }

        .pt-head span:nth-child(3),
        .del-col {
            display: none
        }
    }

    @media(max-width:600px) {

        .pt-head,
        .pt-row {
            grid-template-columns: 1.5fr 1fr auto
        }

        .tbadge,
        .p-strike,
        .p-save {
            display: none
        }

        .p-final {
            font-size: 16px
        }

        .dsc-title {
            font-size: 12.5px
        }

        .act-col {
            flex-direction: row;
            gap: 4px
        }

        .btn-wa,
        .btn-qt {
            padding: 5px 7px;
            font-size: 10.5px
        }

        .val-switcher {
            max-width: 100%
        }

        .vs-btn {
            font-size: 12px;
            padding: 8px 4px
        }
    }

    /* PREMIUM HERO — matching screenshot exactly */
    .premium-hero {
        background: linear-gradient(135deg, #0b1f5e 0%, #0d2878 40%, #0a3fa8 70%, #0d5fd4 100%);
        padding: 60px 0 56px;
        position: relative;
        overflow: hidden;
        min-height: 520px;
        display: flex;
        align-items: center;
    }

    .premium-hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(13, 95, 212, .5) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
    }

    .premium-hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(1, 95, 201, .3) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
    }

    .ph-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(10px);
        color: rgba(255, 255, 255, .9);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .ph-badge .live-dot {
        width: 8px;
        height: 8px;
        background: #4ade80;
        border-radius: 50%;
        flex-shrink: 0;
        animation: livepulse 1.5s infinite;
    }

    .premium-hero h1 {
        font-size: clamp(28px, 3.8vw, 46px);
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 16px;
        -webkit-text-fill-color: #fff;
    }

    .premium-hero h1 .hl {
        color: #f5a623;
        -webkit-text-fill-color: #f5a623
    }

    .premium-hero .hero-sub {
        color: rgba(255, 255, 255, .75);
        font-size: 14.5px;
        line-height: 1.75;
        max-width: 490px;
        margin-bottom: 24px;
    }

    .ph-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px
    }

    .ph-stat {
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .15);
        backdrop-filter: blur(6px);
        border-radius: 8px;
        padding: 8px 14px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .ph-stat strong {
        color: #fff;
        font-size: 15px;
        font-weight: 800
    }

    .ph-stat span {
        color: rgba(255, 255, 255, .6);
        font-size: 11px
    }

    .ph-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 12px
    }

    .ph-btn-primary {
        background: linear-gradient(135deg, #f5a623, #e09700);
        color: #0b1f5e !important;
        padding: 13px 26px;
        border-radius: 9px;
        font-weight: 800;
        font-size: 15px;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 16px rgba(245, 166, 35, .4);
        transition: .2s;
        text-decoration: none;
        font-family: inherit;
    }

    .ph-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(245, 166, 35, .5);
        color: #0b1f5e !important
    }

    .ph-btn-secondary {
        background: rgba(255, 255, 255, .08);
        border: 1.5px solid rgba(255, 255, 255, .3);
        color: #fff !important;
        padding: 12px 24px;
        border-radius: 9px;
        font-weight: 600;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: .2s;
        text-decoration: none;
        backdrop-filter: blur(6px);
    }

    .ph-btn-secondary:hover {
        background: rgba(255, 255, 255, .16);
        color: #fff !important
    }

    /* Premium form card */
    .ph-form-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 48px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .1);
        padding: 30px 28px;
        position: relative;
        overflow: hidden;
    }

    .ph-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f5a623, #ff8c00);
    }

    .ph-form-card h5 {
        font-size: 18px;
        font-weight: 800;
        color: #0b1f5e;
        text-align: center;
        margin-bottom: 4px;
    }

    .ph-form-card .fc-sub {
        font-size: 12.5px;
        color: #6c757d;
        text-align: center;
        margin-bottom: 20px;
    }

    .ph-form-card .form-control,
    .ph-form-card .form-select {
        border: 1.5px solid #dee2e6;
        border-radius: 8px;
        padding: 10px 13px;
        font-size: 14px;
        transition: border-color .2s, box-shadow .2s;
    }

    .ph-form-card .form-control:focus,
    .ph-form-card .form-select:focus {
        border-color: #015fc9;
        box-shadow: 0 0 0 3px rgba(1, 95, 201, .1);
    }

    .ph-form-card .form-label {
        font-size: 12.5px;
        font-weight: 700;
        color: #0b1f5e;
        margin-bottom: 5px;
    }

    /* Validity tabs in form */
    .ph-val-tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 2px
    }

    .ph-val-tab {
        flex: 1;
        border: 1.5px solid #dee2e6;
        border-radius: 8px;
        padding: 9px 6px;
        text-align: center;
        cursor: pointer;
        transition: .2s;
        background: #fff;
        font-family: inherit;
    }

    .ph-val-tab strong {
        display: block;
        font-size: 14px;
        font-weight: 800;
        color: #0b1f5e
    }

    .ph-val-tab span {
        display: block;
        font-size: 10px;
        color: #6c757d;
        margin-top: 2px
    }

    .ph-val-tab.active {
        border-color: #015fc9;
        background: #e8f2fd
    }

    .ph-val-tab.active strong {
        color: #015fc9
    }

    .ph-val-tab.pop-tab {
        position: relative
    }

    .ph-val-badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: #f5a623;
        color: #0b1f5e;
        font-size: 9px;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .ph-submit {
        width: 100%;
        background: linear-gradient(135deg, #015fc9, #0148a0);
        color: #fff;
        border: none;
        padding: 13px;
        border-radius: 9px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        box-shadow: 0 4px 16px rgba(1, 95, 201, .3);
        transition: .2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .ph-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(1, 95, 201, .4)
    }

    .ph-lock {
        text-align: center;
        font-size: 11px;
        color: #adb5bd;
        margin-top: 8px;
        margin-bottom: 0
    }

    @media(max-width:991px) {
        .premium-hero {
            min-height: auto;
            padding: 44px 0 36px
        }

        .ph-form-card {
            margin-top: 8px
        }
    }

    @media(max-width:575px) {
        .ph-stats {
            gap: 7px
        }

        .ph-stat {
            padding: 7px 10px
        }

        .ph-stat strong {
            font-size: 13px
        }
    }
