:root {
    --navy: #0B2545;
    --accent: #1E5BD6;
    --accent-dark: #1949B5;
    --form-bg: #EEF2FB;
    --trust-bg: #F1F3F6;
    --body: #3A4252;
    --line: #E8EBF1;
    --page-max: 1440px;
    --pad-x: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
}

.page {
    max-width: var(--page-max);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    letter-spacing: -0.01em;
}

.article-hero {
    padding: 56px var(--pad-x) 40px;
    max-width: 820px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    color: rgba(58, 66, 82, 0.7);
}

.breadcrumb a {
    color: var(--accent);
}

.tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--form-bg);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.article-hero h1 {
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 16px;
}

.article-meta {
    font-size: 13.5px;
    color: rgba(58, 66, 82, 0.65);
}

.article-cover {
    max-width: 980px;
    margin: 0 auto 8px;
    padding: 0 var(--pad-x);
}

.article-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.article-body {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 0 var(--pad-x);
}

.article-body p {
    font-size: 17px;
    margin: 0 0 22px;
}

.article-body h2 {
    font-size: 26px;
    margin: 44px 0 16px;
}

.article-body h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.article-body li {
    font-size: 16.5px;
    margin-bottom: 10px;
}

.article-body strong {
    color: var(--navy);
}

.compare-table,
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 32px;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.compare-table th,
.compare-table td,
.article-body table th,
.article-body table td {
    text-align: left;
    padding: 14px 18px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.compare-table th,
.article-body table th {
    background: var(--trust-bg);
    color: var(--navy);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td,
.article-body table tr:last-child th,
.article-body table tr:last-child td {
    border-bottom: none;
}

.compare-table td:first-child,
.compare-table th:first-child,
.article-body table td:first-child,
.article-body table th:first-child {
    width: 26%;
    font-weight: 700;
    color: var(--navy);
    background: #fafbfd;
}

.callout {
    background: var(--form-bg);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 15.5px;
}

.callout strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.inline-cta {
    background: var(--navy);
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    margin: 44px 0;
}

.inline-cta h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 8px;
}

.inline-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    margin: 0 0 18px;
}

.inline-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14.5px;
}

.inline-cta a:hover {
    background: var(--accent-dark);
}

.faq-section {
    max-width: 760px;
    margin: 44px auto 0;
    padding: 0 var(--pad-x);
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--line);
}

.faq-item h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.faq-item p {
    margin: 0;
    font-size: 16px;
}

.related {
    background: var(--trust-bg);
    padding: 64px var(--pad-x);
    margin-top: 64px;
}

.related-inner {
    max-width: 980px;
    margin: 0 auto;
}

.related h3 {
    font-size: 22px;
    margin-bottom: 28px;
}

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

.related-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.related-card .photo {
    aspect-ratio: 16/9;
}

.related-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card .body {
    padding: 18px 20px;
}

.related-card h4 {
    font-size: 15.5px;
    margin: 0;
    color: var(--navy);
    line-height: 1.35;
}

.blog-hero {
    padding: 64px var(--pad-x) 48px;
    text-align: center;
    background: var(--trust-bg);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 14px;
}

.blog-hero h1 {
    font-size: 42px;
    margin: 0 0 14px;
}

.blog-hero p {
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 24px;
}

.blog-hero a.back {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.blog-grid-wrap {
    padding: 72px var(--pad-x);
}

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

.blog-card {
    display: block;
    color: inherit;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}

.blog-card:hover {
    box-shadow: 0 12px 28px rgba(11,37,69,0.09);
    transform: translateY(-3px);
}

.blog-card .photo {
    aspect-ratio: 16/10;
    background: var(--trust-bg);
    overflow: hidden;
}

.blog-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .body {
    padding: 24px 24px 28px;
}

.blog-card .tag {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.blog-card h3 {
    font-size: 19px;
    margin: 12px 0;
    line-height: 1.35;
}

.blog-card p {
    font-size: 14.5px;
    margin: 0 0 18px;
}

.blog-card .read {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--accent);
}

.cta-strip {
    background: var(--navy);
    padding: 56px var(--pad-x);
    text-align: center;
}

.cta-strip h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 10px;
}

.cta-strip p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin: 0 0 26px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14.5px;
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 40px var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

.footer a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer .pipe {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.top-utility-bar,
#navbarRoot-inner {
    width: 100%;
    max-width: none;
}

@media (max-width: 1100px) {
    :root {
        --pad-x: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --pad-x: 24px;
    }

    .article-hero h1 {
        font-size: 28px;
    }

    .article-cover img {
        height: 240px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .compare-table,
    .article-body table {
        font-size: 13.5px;
    }
}

@media (max-width: 700px) {
    :root {
        --pad-x: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero h1 {
        font-size: 30px;
    }
}
