
    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

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

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

    .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: #f5a623
    }

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

    .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), #f5a623)
    }

    /* Tier cards */
    .tier-card {
        border-radius: 12px;
        padding: 24px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: .3s;
        border: 2px solid #dee2e6;
        background: #fff
    }

    .tier-pro {
        border-color: var(--bs-primary);
        transform: scale(1.02)
    }

    .tier-ra {
        background: linear-gradient(135deg, #0b1f5e, #015fc9);
        border-color: #f5a623
    }

    .tier-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 10px;
        font-weight: 800;
        padding: 3px 10px;
        border-radius: 20px
    }

    .tier-badge-pop {
        background: var(--bs-primary);
        color: #fff
    }

    .tier-badge-top {
        background: #f5a623;
        color: #0b1f5e
    }

    .tier-comm {
        font-size: 38px;
        font-weight: 800;
        line-height: 1;
        margin: 10px 0 4px
    }

    .tier-list {
        list-style: none;
        padding: 0;
        margin: 14px 0 0;
        display: flex;
        flex-direction: column;
        gap: 7px
    }

    .tier-list li {
        font-size: 13px;
        display: flex;
        align-items: flex-start;
        gap: 8px
    }

    .tier-list li::before {
        content: '✓';
        font-weight: 800;
        flex-shrink: 0;
        margin-top: 1px
    }

    /* Calc */
    .calc-section {
        background: #0b1f5e
    }

    .calc-input-dark {
        width: 100%;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        padding: 10px 12px;
        border-radius: 7px;
        font-size: 14px;
        outline: none;
        font-family: inherit
    }

    .calc-input-dark:focus {
        border-color: #f5a623;
        box-shadow: 0 0 0 3px rgba(245, 166, 35, .2)
    }

    .calc-result-box {
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        padding: 20px
    }

    .calc-total {
        background: rgba(245, 166, 35, .15);
        border: 1px solid rgba(245, 166, 35, .25);
        border-radius: 10px;
        padding: 14px;
        text-align: center;
        margin-top: 12px
    }

    /* Comparison */
    .comp-wrap {
        overflow-x: auto;
        border-radius: 12px
    }

    .comp-tbl {
        min-width: 560px;
        border-collapse: collapse;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 14px rgba(0, 0, 0, .08)
    }

    .comp-tbl thead tr {
        background: #0b1f5e
    }

    .comp-tbl thead th {
        padding: 13px 14px;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        border: none;
        white-space: nowrap
    }

    .comp-tbl thead th.th-hl {
        background: var(--bs-primary)
    }

    .comp-tbl tbody tr {
        border-bottom: 1px solid #dee2e6
    }

    .comp-tbl tbody tr:hover {
        background: #f8fbff
    }

    .comp-tbl tbody td {
        padding: 10px 14px;
        font-size: 12px;
        border: none;
        vertical-align: middle
    }

    .comp-tbl tbody td:first-child {
        font-weight: 600;
        color: #0b1f5e;
        white-space: nowrap
    }

    .td-y {
        color: #00a854;
        font-weight: 700
    }

    .td-n {
        color: #dc3545
    }

    .td-m {
        color: #e09700
    }

    .td-hl {
        background: rgba(1, 95, 201, .05);
        color: var(--bs-primary);
        font-weight: 600
    }

    /* Multi-brand */
    .mb-section {
        background: #0b1f5e
    }

    .br-card {
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 12px;
        padding: 18px;
        height: 100%;
        transition: .25s
    }

    .br-card:hover {
        background: rgba(255, 255, 255, .12);
        transform: translateY(-3px)
    }

    .br-card.signx-card {
        border-color: rgba(245, 166, 35, .6);
        background: rgba(245, 166, 35, .08)
    }

    .br-card ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 5px
    }

    .br-card li {
        font-size: 12px;
        color: rgba(255, 255, 255, .65);
        display: flex;
        gap: 6px
    }

    .br-card li::before {
        content: '✓';
        color: #00a854;
        font-weight: 700
    }

    /* USP product cards */
    .usp-card {
        background: #fff;
        border: 1.5px solid #dee2e6;
        border-radius: 12px;
        padding: 20px;
        height: 100%;
        transition: .25s
    }

    .usp-card:hover {
        border-color: var(--bs-primary);
        box-shadow: 0 6px 24px rgba(1, 95, 201, .1);
        transform: translateY(-3px)
    }

    .usp-tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 20px;
        margin-bottom: 10px
    }

    /* Testimonials */
    .testi-partner {
        background: #fff;
        border: 1.5px solid #dee2e6;
        border-radius: 12px;
        padding: 20px;
        height: 100%;
        position: relative;
        transition: .25s
    }

    .testi-partner:hover {
        border-color: var(--bs-primary);
        box-shadow: 0 5px 20px rgba(1, 95, 201, .1);
        transform: translateY(-3px)
    }

    .testi-partner .qt {
        position: absolute;
        top: 10px;
        right: 14px;
        font-size: 40px;
        color: #e8f0fe;
        font-family: serif;
        line-height: 1
    }

    .switch-badge {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        font-size: 11px;
        font-weight: 700;
        color: var(--bs-primary);
        background: #e8f0fe;
        padding: 2px 8px;
        border-radius: 100px;
        margin-top: 3px
    }

    /* FAQ */
    .faq-partner {
        border: 1.5px solid #dee2e6;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 8px;
        transition: border-color .2s
    }

    .faq-partner.open {
        border-color: var(--bs-primary)
    }

    .faq-pq {
        padding: 15px 18px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 14px;
        color: #0b1f5e;
        background: #fff;
        gap: 12px;
        user-select: none
    }

    .faq-partner.open .faq-pq {
        color: var(--bs-primary)
    }

    .faq-tog {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #F2F5F9;
        border: 1.5px solid #dee2e6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        flex-shrink: 0;
        transition: .25s
    }

    .faq-partner.open .faq-tog {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff;
        transform: rotate(45deg)
    }

    .faq-pa {
        padding: 0 18px;
        max-height: 0;
        overflow: hidden;
        transition: all .3s;
        font-size: 13px;
        color: #6c757d;
        line-height: 1.7;
        background: #fff
    }

    .faq-partner.open .faq-pa {
        max-height: 300px;
        padding: 0 18px 15px
    }

    /* Mobile sticky */
    .mobile-cta-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9990;
        background: #fff;
        border-top: 1px solid #dee2e6;
        padding: 10px 16px;
        gap: 8px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, .1)
    }

    @media(max-width:767px) {
        .mobile-cta-bar {
            display: flex
        }

        .mobile-cta-bar a,
        .mobile-cta-bar button {
            flex: 1;
            justify-content: center;
            padding: 11px 12px;
            font-size: 13px
        }

        body {
            padding-bottom: 70px
        }
    }

    /* 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
        }
    }

    .partner-logo {
        height: 48px;
        filter: grayscale(100%);
        transition: all 0.3s ease;
    }

    .partner-logo:hover {
        filter: grayscale(0%);
    }
