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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #07111f;
        color: #fff;
        line-height: 1.6;
    }

    /* BACKGROUND */
    body:before {
        content: '';
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at top right, rgba(99, 102, 241, .18), transparent 30%),
            radial-gradient(circle at bottom left, rgba(59, 130, 246, .12), transparent 30%);
        z-index: -1;
    }

    /* CONTAINER */
    .container {
        width: 92%;
        max-width: 1180px;
        margin: auto;
    }

    /* NAV */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 26px 0;
    }

    .logo {
        font-size: 28px;
        font-weight: 800;
    }

    .logo span {
        color: #7c8cff;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .menu a {
        color: #c9d4e7;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: .2s;
    }

    .menu a:hover {
        color: #fff;
    }

    /* HERO */
    .hero {
        padding: 80px 0 40px;
        text-align: center;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        padding: 10px 18px;
        border-radius: 999px;
        font-size: 13px;
        color: #cdd7e8;
        margin-bottom: 28px;
    }

    /* .badge{
    font-family:
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Noto Color Emoji",
        sans-serif;
} */

    .hero h1 {
        font-size: 68px;
        line-height: 1.05;
        font-weight: 800;
        max-width: 980px;
        margin: auto;
        letter-spacing: -2px;
    }

    .hero h1 span {
        color: #8ea2ff;
    }

    .hero-sub {
        margin: 30px auto 0;
        max-width: 860px;
        font-size: 24px;
        color: #d3def0;
        font-weight: 500;
        line-height: 1.5;
    }

    .hero-mini {
        margin-top: 22px;
        color: #93a3bb;
        font-size: 17px;
    }

    .cta-wrap {
        margin-top: 42px;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 18px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-size: 17px;
        font-weight: 700;
        transition: .2s;
    }

    .btn-primary {
        background: linear-gradient(135deg, #637bff, #4f46e5);
        color: #fff;
        box-shadow: 0 20px 50px rgba(79, 70, 229, .35);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        color: #fff;
    }

    /* TRUST BAR */
    .trust-bar {
        margin-top: 46px;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 18px;
        padding: 20px 26px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        font-size: 15px;
        color: #dce6f8;
    }

    .trust-bar strong {
        color: #fff;
    }

    /* SECTION */
    .section {
        padding: 90px 0;
    }

    .section-title {
        text-align: center;
        font-size: 44px;
        line-height: 1.15;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .section-sub {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 50px;
        color: #b8c5da;
        font-size: 20px;
    }

    /* PREVIEW */
    .preview {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
    }

    .preview img {
        width: 100%;
        display: block;
    }

    /* GRID */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    .card {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 22px;
        padding: 30px;
        text-align: left;
    }

    .card-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        background: linear-gradient(135deg, #637bff, #4f46e5);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 22px;
    }

    .card h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .card p {
        color: #b9c5d9;
        font-size: 17px;
    }

    /* CONFIDENCE */
    .confidence {
        text-align: center;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 28px;
        padding: 60px 40px;
    }

    .confidence h2 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }

    .confidence p {
        max-width: 860px;
        margin: auto;
        color: #c6d3e7;
        font-size: 22px;
    }

    .save-box {
        margin-top: 34px;
        display: inline-block;
        background: rgba(99, 123, 255, .12);
        border: 1px solid rgba(99, 123, 255, .25);
        padding: 18px 24px;
        border-radius: 18px;
        font-size: 18px;
        color: #dfe8ff;
    }

    /* HOW */
    .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 22px;
    }

    .step {
        background: rgba(255, 255, 255, .04);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, .06);
        padding: 28px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #5a67ff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin: auto auto 18px;
    }

    .step h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .step p {
        color: #b7c4d8;
    }

    /* PRICING */
    .pricing {
        background: linear-gradient(180deg, rgba(99, 123, 255, .12), rgba(255, 255, 255, .03));
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 28px;
        padding: 60px 30px;
        text-align: center;
    }

    .price {
        font-size: 84px;
        font-weight: 800;
        line-height: 1;
        margin: 20px 0;
    }

    .price small {
        font-size: 24px;
        color: #aab7cf;
    }

    .pricing p {
        color: #c2d0e4;
        font-size: 20px;
        max-width: 700px;
        margin: auto;
    }

    /* FOOTER */
    footer {
        padding: 50px 0;
        border-top: 1px solid rgba(255, 255, 255, .06);
        margin-top: 70px;
    }

    .footer-wrap {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        align-items: center;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: #9eb0ca;
        text-decoration: none;
        font-size: 14px;
    }

    .copy {
        color: #7687a0;
        font-size: 14px;
    }

    /* =========================================
   SAMPLE REPORT PREVIEW
========================================= */

    .preview-shell {
        width: 58%;
        max-width: 920px;
        min-width: 320px;
        margin: 50px auto 0;
        border-radius: 28px;
        overflow: hidden;
        background: #0f1b2d;
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
    }

    .preview-topbar {
        height: 58px;
        background: #111d31;
        display: flex;
        align-items: center;
        padding: 0 22px;
        gap: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .preview-topbar span {
        margin-left: 12px;
        color: #b8c5da;
        font-size: 14px;
        font-weight: 600;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .red {
        background: #ff5f57;
    }

    .yellow {
        background: #febc2e;
    }

    .green {
        background: #28c840;
    }

    .preview-wrapper {
        position: relative;
        overflow: hidden;
    }

    .preview-image {
        width: 100%;
        display: block;
    }

    /* BOTTOM BLUR */

    .preview-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 36%;
        backdrop-filter: blur(18px);
        background: linear-gradient(to bottom,
                rgba(7, 17, 31, 0),
                rgba(7, 17, 31, .97));
    }

    /* LOCK CONTENT */
    /* PREMIUM LOCK OVERLAY */

    .preview-lock-content {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 18px;
        z-index: 5;

        display: flex;
        align-items: center;
        gap: 14px;

        padding: 14px 18px;

        border-radius: 16px;

        background: rgba(7, 17, 31, .42);

        backdrop-filter: blur(8px);

        border: 1px solid rgba(255, 255, 255, .06);
    }

    .lock-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;

        border-radius: 12px;

        background: rgba(255, 255, 255, .08);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 18px;
    }

    .lock-text h3 {
        font-size: 15px;
        line-height: 1.2;
        margin-bottom: 4px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.2px;
    }

    .lock-text p {
        color: #cdd8ea;
        font-size: 12px;
        line-height: 1.5;
        max-width: 700px;
    }

    /* NOTICE BOX */

    .preview-note-box {
        width: 58%;
        max-width: 920px;
        margin: 24px auto 0;
        background: linear-gradient(135deg,
                rgba(255, 193, 7, .14),
                rgba(255, 255, 255, .03));
        border: 1px solid rgba(255, 193, 7, .24);
        border-left: 5px solid #ffc107;
        border-radius: 18px;
        padding: 24px;
    }

    .note-title {
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #fff;
    }

    .preview-note-box p {
        color: #d2dcef;
        line-height: 1.8;
        font-size: 15px;
    }


    .hero-badge {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 16px 24px;
        background: rgba(255, 255, 255, .07);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 18px;
        margin-bottom: 28px;
        text-align: center;
    }

    .badge-title {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        letter-spacing: .3px;
    }

    .badge-countries {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 18px;
        margin-top: 12px;
        max-width: 760px;

    }

    .country {
        display: flex;
        align-items: center;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, .90);

    }


    /* =============   TRADITIONAL VS NINERIQ ========================= */

    .comparison-section {
        padding-top: 35px;
        padding-bottom: 85px;
    }


    /* Section introduction */

    .comparison-header {
        max-width: 800px;
        margin: 0 auto 42px;
        text-align: center;
    }

    .comparison-eyebrow {
        margin-bottom: 15px;

        font-size: 13px;
        line-height: 1.4;
        font-weight: 700;

        letter-spacing: 1.8px;

        color: #AEBBFF;
    }

    .comparison-header h2 {
        margin: 0 0 18px;

        font-size: 41px;
        line-height: 1.18;
        letter-spacing: -.9px;
        font-weight: 750;

        color: #FFFFFF;
    }

    .comparison-header h2 span {
        color: #9BA8FF;
    }

    .comparison-header p {
        max-width: 760px;
        margin: 0 auto;

        font-size: 16px;
        line-height: 1.75;
        letter-spacing: .05px;

        color: #C2CDDC;
    }


    /* Cards */

    .comparison-grid {
        max-width: 1080px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .comparison-card {
        position: relative;

        padding: 32px;

        border-radius: 24px;

        border: 1px solid rgba(255, 255, 255, .09);

        background: rgba(255, 255, 255, .035);

        transition:
            transform .25s ease,
            border-color .25s ease,
            background .25s ease;
    }

    .comparison-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, .15);
        background: rgba(255, 255, 255, .05);
    }


    /* NinerIQ card */

    .nineriq-card {
        background:
            linear-gradient(145deg,
                rgba(99, 102, 241, .12),
                rgba(255, 255, 255, .035));

        border-color: rgba(130, 145, 255, .25);

        box-shadow:
            0 20px 60px rgba(65, 79, 180, .12);
    }


    /* Card heading */

    .comparison-card-top {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 23px;
    }


    /* Icons */

    .comparison-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        font-weight: 800;
    }

    .traditional-icon {
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .10);
        color: #B6C3D4;
    }

    .nineriq-icon {
        background: rgba(99, 123, 255, .17);
        border: 1px solid rgba(140, 155, 255, .24);
        color: #AAB5FF;
    }


    /* Card labels */

    .comparison-label {
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 1.4;
        font-weight: 750;
        letter-spacing: 1.3px;
    }

    .traditional-label {
        color: #B7C4D5;
    }

    .nineriq-label {
        color: #AAB4FF;
    }


    /* Card headings */

    .comparison-card h3 {
        margin: 0;

        font-size: 22px;
        line-height: 1.3;
        letter-spacing: -.35px;
        font-weight: 700;

        color: #FFFFFF;
    }


    /* Card body */

    .comparison-card>p {
        margin: 0 0 25px;

        font-size: 15px;
        line-height: 1.75;
        letter-spacing: .03px;

        color: #C0CCDB;
    }


    /* Lists */

    .comparison-list {
        display: flex;
        flex-direction: column;
        gap: 13px;

        padding-top: 21px;

        border-top: 1px solid rgba(255, 255, 255, .09);
    }

    .comparison-list div {
        display: flex;
        align-items: flex-start;
        gap: 11px;

        font-size: 14px;
        line-height: 1.6;

        color: #CBD5E2;
    }

    .comparison-list span {
        width: 19px;
        min-width: 19px;

        text-align: center;

        font-size: 14px;
        font-weight: 800;

        color: #9BA8FF;
    }

    .traditional-card .comparison-list span {
        color: #A7B5C7;
    }


    /* ========================  BOTTOM MESSAGE ============================== */

    .comparison-bottom {
        max-width: 1080px;
        margin: 23px auto 0;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 13px;

        padding: 19px 24px;

        border-radius: 16px;

        background: rgba(255, 255, 255, .035);

        border: 1px solid rgba(255, 255, 255, .08);

        font-size: 15px;
        line-height: 1.6;

        color: #B9C6D7;
    }

    .comparison-bottom-icon {
        color: #AAB5FF;
        font-size: 18px;
    }

    .comparison-bottom strong {
        color: #FFFFFF;
        font-weight: 700;

        margin-right: 5px;
    }

    /* ============ NEW PREVIEW SECTION ============ */

    :root {
        --ink: #0a1628;
        --paper: #ffffff;
        --accent: #0b66d0;
        --accent-light: #eaf3ff;
        --go: #16a34a;
        --caution: #d97706;
        --muted: #64748b;
        --line: #e6eef9;
    }



    .sample-section {
        background: radial-gradient(1200px 600px at 15% -10%,
                #132542 0%,
                var(--ink) 55%,
                #060d1a 100%);
        padding: 88px 24px 100px;
        color: #eaf1fb;
    }

    .wrap {
        max-width: 1040px;
        margin: 0 auto;
    }

    .eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #7fb0ff;
        font-weight: 600;
        justify-content: center;
    }

    .eyebrow::before,
    .eyebrow::after {
        content: "";
        height: 1px;
        width: 32px;
        background: #2b4568;
    }

    .comparison-header h2 {
        text-align: center;
        font-size: clamp(30px, 4.4vw, 46px);
        line-height: 1.12;
        margin: 18px 0 12px;
        font-weight: 600;
        color: #fff;
    }

    .comparison-header h2 span {
        color: #7fb0ff;
    }

    .comparison-header p {
        text-align: center;
        max-width: 560px;
        margin: 0 auto 40px;
        color: #a9bcd6;
        font-size: 16px;
        line-height: 1.6;
    }


    /* ============ INDUSTRY TABS ============ */

    .tabs {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 28px;
    }

    .tab {
        appearance: none;
        border: 1px solid #24406b;
        background: #0d1c33;
        color: #b7c8e2;
        padding: 9px 18px;
        border-radius: 999px;
        font-size: 13.5px;
        font-weight: 500;
        cursor: pointer;
        transition: all .18s ease;
        font-family: inherit;
    }

    .tab:hover {
        border-color: #3a6099;
        color: #fff;
    }

    .tab[aria-selected="true"] {
        background: #eaf3ff;
        color: #0b2340;
        border-color: #eaf3ff;
    }

    .tab:focus-visible {
        outline: 2px solid #7fb0ff;
        outline-offset: 2px;
    }


    /* ============ DEVICE FRAME ============ */

    .frame {
        background: #0d1526;
        border: 1px solid #22314f;
        border-radius: 16px;
        padding: 10px 10px 0;
        box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
    }

    .frame-bar {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 10px 14px 12px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #31435f;
    }

    .frame-url {
        margin-left: 10px;
        font-size: 12px;
        color: #5b7398;
        background: #0a1424;
        border: 1px solid #1e2f4d;
        padding: 4px 12px;
        border-radius: 6px;
    }


    /* ============ REPORT DOCUMENT ============ */

    .doc {
        background: var(--paper);
        border-radius: 10px 10px 0 0;
        padding: 26px 26px 0;
        position: relative;
        overflow: hidden;
    }

    .doc-header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        padding-bottom: 16px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .brand-mark {
        font-weight: 700;
        color: var(--accent);
        font-size: 16px;
        letter-spacing: -.01em;
    }

    .doc-title {
        font-size: 14px;
        color: #0b2340;
        font-weight: 600;
    }

    .doc-date {
        font-size: 12.5px;
        color: var(--muted);
    }

    .report-name {
        font-size: clamp(19px, 2.4vw, 23px);
        font-weight: 700;
        color: #0b2340;
        margin: 0 0 4px;
    }

    .report-loc {
        font-size: 13.5px;
        color: var(--muted);
        margin-bottom: 22px;
    }


    /* ============ GAUGE + STATS ============ */

    .verdict-row {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 28px;
        align-items: center;
        padding-bottom: 8px;
    }

    .gauge-wrap {
        text-align: center;
    }

    .gauge-score {
        font-size: 38px;
        font-weight: 800;
        color: #0b2340;
        margin-top: -46px;
        display: block;
    }

    .gauge-label {
        font-size: 11.5px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .decision-badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: .02em;
        margin-top: 6px;
    }

    .decision-badge.go {
        background: #e9f9ef;
        color: var(--go);
    }

    .decision-badge.caution {
        background: #fef3e2;
        color: var(--caution);
    }


    /* ============ STATS ============ */

    .stat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat {
        background: var(--accent-light);
        border: 1px solid #d9ebff;
        border-radius: 8px;
        padding: 10px 12px;
    }

    .stat .k {
        font-size: 10.5px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .stat .v {
        font-size: 15px;
        font-weight: 700;
        color: #072244;
        margin-top: 3px;
    }


    /* ============ REASONING ============ */

    .reasoning {
        font-size: 13px;
        color: #334155;
        line-height: 1.55;
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px dashed var(--line);
    }

    .reasoning strong {
        color: #0b2340;
    }


    /* ============ REPORT SECTION LIST ============ */

    .section-list {
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 24px;
    }

    .section-list div {
        font-size: 13px;
        color: #3c4a5e;
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .section-list svg {
        flex: none;
        opacity: .55;
    }


    /* ============ FADE ============ */

    .fade {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 190px;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0) 0%,
                #ffffff 78%);
        pointer-events: none;
    }


    /* ============ UNLOCK BUTTON ============ */

    .unlock {
        position: relative;
        margin-top: -64px;
        padding: 18px 26px 30px;
        text-align: center;
        z-index: 2;
    }

    .unlock-btn {
        background: var(--accent);
        color: #fff;
        border: none;
        font-family: inherit;
        font-weight: 600;
        font-size: 14.5px;
        padding: 13px 26px;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 10px 24px -8px rgba(11, 102, 208, .55);
        transition: transform .15s ease, box-shadow .15s ease;
    }

    .unlock-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px -8px rgba(11, 102, 208, .65);
    }



    /* ============ RESPONSIVE ============ */

    @media (max-width: 640px) {

        .sample-section {
            padding: 60px 16px 70px;
        }

        .verdict-row {
            grid-template-columns: 1fr;
        }

        .stat-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .section-list {
            grid-template-columns: 1fr;
        }

        .doc {
            padding: 20px 18px 0;
        }

    }

    /* ======================  RESPONSIVE ========================== */

    @media(max-width:1100px) {

        .preview-shell,
        .preview-note-box {
            width: 78%;
        }

    }

    @media(max-width:768px) {

        .hero h1 {
            font-size: 46px;
        }

        .hero-sub {
            font-size: 20px;
        }

        .section-title {
            font-size: 36px;
        }

        .confidence h2 {
            font-size: 38px;
        }

        .price {
            font-size: 62px;
        }

        nav {
            flex-direction: column;
            gap: 20px;
        }

        .menu {
            flex-wrap: wrap;
            justify-content: center;
        }

        .preview-shell,
        .preview-note-box {
            width: 94%;
        }

        .preview-lock-content {
            flex-direction: column;
            text-align: center;
        }

        .lock-text h3 {
            font-size: 26px;
        }

        .lock-text p {
            font-size: 15px;
        }

        .comparison-section {
            padding-top: 25px;
            padding-bottom: 65px;
        }

        .comparison-header {
            margin-bottom: 30px;
        }

        .comparison-header h2 {
            font-size: 33px;
            line-height: 1.2;
        }

        .comparison-header p {
            font-size: 15px;
            line-height: 1.7;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
            gap: 17px;
        }

        .comparison-card {
            padding: 26px 23px;
            border-radius: 20px;
        }

        .comparison-card h3 {
            font-size: 20px;
        }

        .comparison-card>p {
            font-size: 14px;
        }

        .comparison-list div {
            font-size: 14px;
        }

        .comparison-bottom {
            align-items: flex-start;
            justify-content: flex-start;

            padding: 17px 18px;

            font-size: 14px;
        }

    }

    @media(max-width:768px) {

        .hero-badge {
            width: 100%;
            padding: 18px;
        }

        .badge-title {
            font-size: 15px;
        }

        .badge-countries {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            width: 100%;
        }

        .country {
            justify-content: center;
            font-size: 13px;
        }

    }

    @media(max-width:480px) {

        .badge-countries {
            grid-template-columns: 1fr;
        }

    }
