:root {
    --ink: #0b1f3a;
    --blue: #4452fb;
    --blue-dark: #4452fb;
    --blue-soft: #edf5ff;
    --line: #dbe5f0;
    --muted: #5f7187;
    --bg: #f7faff;
    --white: #fff;
    --good: #0a7d4f;
    --shadow: 0 14px 40px rgba(13, 61, 112, .10);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.topbar {
    background: #0a2f61;
    color: #dfeeff;
    font-size: 13px
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0
}

.topbar a {
    color: #fff;
    font-weight: 700
}

.nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 25px;
    letter-spacing: -.04em
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(145deg, #1590ff, #4f46e5);
    position: relative;
    box-shadow: 0 6px 16px rgba(11, 99, 206, .25)
}

.brand-mark:before,
.brand-mark:after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 3px
}

.brand-mark:before {
    width: 7px;
    height: 22px;
    left: 8px;
    top: 6px;
    transform: skewY(-23deg)
}

.brand-mark:after {
    width: 7px;
    height: 16px;
    right: 8px;
    top: 9px;
    transform: skewY(-23deg)
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    color: #29425f
}

/* .navlinks a:hover {
    color: var(--blue)
} */

.navcta {
    display: flex;
    gap: 10px
}

.compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 11px 17px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent
}

.compare-btn-primary {
    background: var(--blue);
    color: #fff
}



.compare-btn-outline {
    border-color: #bcd1e7;
    background: #fff;
    color: var(--blue)
}

.hero {
    padding: 76px 0 44px;
    background: radial-gradient(circle at 50% 0%, #eef7ff 0, #f7faff 46%, #f7faff 100%);
    text-align: center
}

.eyebrow {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 99px;
    background: #e8f2ff;
    color: #0756ad;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.05em;
    margin: 18px auto 16px;
    max-width: 920px
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap
}

.compare-wrap {
    padding: 22px 0 70px
}

.table-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.table-head {
    padding: 23px 26px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center
}

.table-head h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -.03em;
    text-align: center;
}

.table-head span {
    font-size: 13px;
    color: var(--muted)
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

thead th {
    padding: 18px 20px;
    text-align: left;
    background: #4f46e5;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

thead th:first-child {
    width: 22%;
    background: #0a3974
}

thead th:nth-child(2),
thead th:nth-child(3) {
    width: 39%
}

tbody td {
    padding: 19px 20px;
    vertical-align: top;
    border-top: 1px solid var(--line);
    font-size: 18px;
    color: #31475f
}

tbody td:first-child {
    font-weight: 500;
    color: var(--ink);
    background: #fbfdff
}

.win {
    color: #0b5d3e;
    font-weight: 700
}

.price {
    font-weight: 900;
    color: var(--blue)
}

.faq-section {
    padding: 4px 0 38px
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 16px
}

.faq-kicker {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1762b7;
    margin-bottom: 6px
}

.faq-header h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -.04em
}

.faq-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    max-width: 430px;
    text-align: right
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: flex-start;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(13, 61, 112, .06);
    overflow: hidden
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary:after {
    content: '+';
    color: var(--blue);
    font-size: 19px;
    font-weight: 500;
    line-height: 1
}

.faq-item[open] summary:after {
    content: '−'
}

.faq-answer {
    padding: 0 16px 15px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55
}

.faq-answer strong {
    color: var(--ink)
}

.faq-highlight {
    border-color: #bdd7f4;
    background: #fbfdff
}

.faq-note {
    font-size: 12px;
    color: #78899d;
    margin-top: 13px
}

.faq-note a {
    color: #2467a8;
    text-decoration: underline
}

.ready-section {
    padding: 10px 0 72px
}

.ready-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #4452fb 0%, #2563eb 58%, #2563eb 100%);
    color: #fff;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    box-shadow: 0 18px 50px rgba(13, 61, 112, .18)
}

.ready-glow {
    position: absolute;
    right: -80px;
    top: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(2px);
    pointer-events: none
}

.ready-content {
    position: relative;
    z-index: 1;
    max-width: 720px
}

.ready-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase
}

.ready-card h2 {
    font-size: 32px;
    line-height: 1.1;
    margin: 12px 0 9px;
    letter-spacing: -.04em
}

.ready-card p {
    margin: 0;
    color: #deebfb;
    max-width: 690px;
    font-size: 17px;
    line-height: 1.55
}

.ready-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 0 0 auto
}

.compare-btn-light {
    background: #fff;
    color: #0b4f9e;
    border: 1px solid #fff
}

.compare-btn-light:hover {
    background: #eef6ff
}

.compare-btn-ready-outline {
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .04);
    color: #fff
}

.compare-btn-ready-outline:hover {
    background: rgba(255, 255, 255, .10)
}

.sources {
    padding: 0 0 65px
}

.sources-inner {
    font-size: 12px;
    color: #7a8b9e
}

.sources-inner a {
    color: #2c69a9;
    text-decoration: underline
}

.footer {
    background: #09284f;
    color: #cfdef0;
    padding: 48px 0 26px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 26px
}

.footer h4 {
    margin: 0 0 11px;
    color: #fff
}

.footer a {
    font-size: 13px;
    color: #c4d4e8;
    display: block;
    margin: 7px 0
}

.footer p {
    font-size: 13px;
    color: #aebfd2;
    max-width: 340px
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 26px;
    padding-top: 18px;
    font-size: 12px;
    color: #8fa5be
}

.fmlist a {
    display: flex;
    color: #12a3df !important;
}

.faqt_ik_area h3 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;

}

.count-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media(max-width:900px) {
    .navlinks {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    table {
        min-width: 900px
    }

    .table-card {
        overflow: auto
    }

    .table-head {
        align-items: flex-start;
        flex-direction: column
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .faq-header {
        align-items: flex-start;
        flex-direction: column
    }

    .faq-header p {
        text-align: left
    }

    .ready-card {
        flex-direction: column;
        align-items: flex-start
    }

    .ready-actions {
        justify-content: flex-start
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 24px, 1180px)
    }

    .topbar .container {
        font-size: 11px
    }

    .hero {
        padding: 58px 0 32px
    }

    .hero p {
        font-size: 16px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .nav .container {
        min-height: 64px
    }

    .brand {
        font-size: 21px
    }

    .brand-mark {
        width: 30px;
        height: 30px
    }

    ;

    .faqt_ik_area h3 {
        display: initial;
        align-items: initial;
        gap: initial;
        justify-content: initial;

    }

    .count-text {
        display: initial;
        align-items: initial;
        gap: initial;
    }
}