:root {
    --bg: #f4f7fb;
    --card: #ffffff;
    --card-alt: #f8fbff;
    --text: #10233f;
    --muted: #60738f;
    --border: #dbe4ef;
    --primary: #2563eb;
    --primary-deep: #143fa8;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --accent-soft: #fff4dd;
    --success: #16a34a;
    --danger: #dc2626;
    --dark: #0b1220;
    --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.1);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 24%),
        var(--bg);
    font-size: 15px;
    line-height: 1.68;
}

[data-naive-app]:not(.naive-mounted) {
    opacity: 0;
}

[data-naive-app].naive-mounted {
    opacity: 1;
    transition: opacity 0.18s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

.fa {
    font-family: FontAwesome;
}

.site-shell {
    min-height: 100vh;
    background: transparent;
}

.site-shell > .n-layout-scroll-container {
    min-height: 100vh;
}

.site-content-shell {
    overflow: hidden;
}

.site-container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 228, 239, 0.88);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-sub {
    margin-top: 3px;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions a,
.hero-actions a,
.mobile-cta a {
    display: inline-flex;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
    color: var(--text);
    background: #fff;
    border-color: var(--border);
}

.btn-accent {
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.22);
}

.btn-block {
    width: 100%;
}

.input,
.select,
.textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    padding: 10px 12px;
    outline: none;
}

.textarea {
    resize: vertical;
    line-height: 1.68;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: rgba(15, 124, 255, 0.44);
    box-shadow: 0 0 0 3px rgba(15, 124, 255, 0.12);
}

.admin-form-full {
    grid-column: 1 / -1;
}

.editor-help {
    color: var(--muted);
    font-size: 12px;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 17px;
}

.nav-toggle.n-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
}

.mobile-drawer {
    padding: 18px;
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(219, 228, 239, 0.88);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
    background: rgba(15, 124, 255, 0.04);
}

.mobile-nav-link.is-active {
    color: var(--primary);
    background: rgba(15, 124, 255, 0.08);
}

.mobile-drawer-actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mobile-drawer-actions a {
    display: block;
}

.card-link {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 82px;
    background: var(--gradient-dark);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -25%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 22px;
    align-items: stretch;
}

.hero-panel {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
    --n-color: rgba(255, 255, 255, 0.14) !important;
    --n-text-color: #fff !important;
    --n-border: 1px solid rgba(255, 255, 255, 0.24) !important;
}

.hero-title {
    margin: 16px 0 12px;
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    margin: 0 0 20px;
    max-width: 720px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    --n-color: rgba(255, 255, 255, 0.12) !important;
    --n-text-color: #fff !important;
    --n-border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.glass-card {
    height: 100%;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.18);
    backdrop-filter: blur(14px);
}

.glass-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
}

.glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.glass-item {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.glass-item strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
}

.glass-item span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.82);
}

.glass-note {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}

.main-wrap {
    position: relative;
    z-index: 2;
    margin-top: -46px;
    padding-bottom: 48px;
}

.section {
    margin-bottom: 22px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--muted);
    font-size: 13px;
}

.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    min-height: 164px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.26);
}

.service-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: var(--gradient);
}

.service-body {
    min-width: 0;
}

.service-title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 900;
}

.service-desc {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    --n-color: rgba(37, 99, 235, 0.08) !important;
    --n-text-color: var(--primary) !important;
    --n-border: 1px solid rgba(37, 99, 235, 0.14) !important;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.entry-card {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--card);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.entry-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(37, 99, 235, 0.22);
}

.entry-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.entry-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: start;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-list-panel {
    padding: 12px 0;
}

.article-list-item {
    display: block;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.article-list-item:last-child {
    border-bottom: none;
}

.article-list-item:hover {
    background: rgba(37, 99, 235, 0.03);
    padding-left: 28px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--muted);
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.42;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.article-summary {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.article-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.article-chip {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 11px;
    --n-color: #f6f9fd !important;
    --n-border: 1px solid var(--border) !important;
    --n-text-color: var(--muted) !important;
}

.article-chip-light {
    --n-color: rgba(255, 255, 255, 0.14) !important;
    --n-text-color: #fff !important;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.article-card {
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.24);
}

.aside-card {
    padding: 20px;
}

.aside-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 900;
}

.aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aside-list li + li {
    margin-top: 12px;
}

.aside-link {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}

.aside-link small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-color: rgba(37, 99, 235, 0.14);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(96, 115, 143, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gradient);
    font-size: 18px;
}

.contact-text b {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
}

.contact-text span,
.contact-text a {
    display: block;
    margin-top: 2px;
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
}

.qr-box {
    margin-top: 18px;
    display: grid;
    place-items: center;
    gap: 10px;
}

.qr-box img {
    width: 146px;
    height: 146px;
    border-radius: 18px;
    border: 1px solid var(--border);
    object-fit: cover;
    background: #fff;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.feature-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.callout {
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(37, 99, 235, 0.14);
}

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

.callout p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.warning-card {
    border-radius: 22px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0dd 100%);
    border: 1px solid #f7caa3;
}

.warning-card .n-alert-body {
    padding: 22px;
}

.warning-card .n-alert-body__title {
    color: #8f2f18;
    font-size: 18px;
    font-weight: 900;
}

.warning-card p,
.warning-card .n-alert-body__content {
    margin: 0 0 14px;
    color: #8f2f18;
    font-size: 13px;
}

.warning-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.warning-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(220, 38, 38, 0.12);
    color: var(--danger);
    font-size: 12px;
    font-weight: 800;
}

.article-hero {
    padding: 42px 0 76px;
    background: var(--gradient-dark);
    color: #fff;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
}

.article-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.article-summary-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.article-layout {
    position: relative;
    z-index: 2;
    margin-top: -46px;
}

.article-main {
    padding: 22px;
}

.article-main img {
    border-radius: 16px;
}

.prose {
    color: #1b2f4a;
    font-size: 15px;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    color: var(--text);
    line-height: 1.34;
    margin: 1.4em 0 0.7em;
}

.prose p,
.prose li {
    margin: 0 0 1em;
    line-height: 1.75;
}

.prose blockquote {
    margin: 1.2em 0;
    padding: 14px 18px;
    border-left: 4px solid var(--primary);
    background: #f7faff;
    color: var(--muted);
    border-radius: 0 14px 14px 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
}

.prose th,
.prose td {
    padding: 10px 12px;
    border: 1px solid var(--border);
}

.pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
}

.pager span,
.pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}

.site-footer {
    margin-top: 24px;
    padding: 38px 0 92px;
    background: #0b1220;
    color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 22px;
}

.footer-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
}

.footer-text,
.footer-links a,
.footer-meta {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-meta {
    margin-top: 18px;
    font-size: 12px;
}

.floating-service {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 92;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.floating-btn.phone {
    background: var(--gradient);
}

.floating-btn.wechat {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.floating-qr {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 186px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-service:hover .floating-qr,
.floating-service.is-open .floating-qr {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-qr img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.floating-qr strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.floating-qr span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
}

.empty-panel {
    padding: 38px 22px;
    text-align: center;
}

.faq-collapse {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: transparent;
}

.faq-collapse .n-collapse-item {
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: var(--shadow-sm);
}

.faq-collapse .n-collapse-item__header {
    padding: 18px 18px 10px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
}

.faq-collapse .n-collapse-item__content-inner {
    padding: 0 18px 18px;
}

.faq-answer {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 91;
    display: none;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(11, 18, 32, 0.92);
    box-shadow: 0 18px 38px rgba(11, 18, 32, 0.28);
    backdrop-filter: blur(12px);
}

.mobile-cta a {
    flex: 1;
}

.mobile-cta .n-button {
    min-height: 40px;
}

@media (max-width: 1100px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .hero-grid,
    .service-grid,
    .article-grid,
    .entry-grid,
    .feature-grid,
    .hero-card-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .site-header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-nav {
        display: none;
    }

    .brand-sub {
        display: none;
    }

    .hero {
        padding: 40px 0 72px;
    }

    .main-wrap,
    .article-layout {
        margin-top: -32px;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: calc(100% - 24px);
    }

    .hero-title {
        font-size: 28px;
    }

    .article-title {
        font-size: 17px;
    }

    .article-list-item,
    .article-card,
    .aside-card,
    .article-main,
    .service-card,
    .callout,
    .warning-card {
        padding: 16px;
    }

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

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

    .site-footer {
        padding-bottom: 86px;
    }

    .faq-collapse .n-collapse-item {
        margin-bottom: 12px;
    }

    .floating-service {
        right: 14px;
        bottom: 84px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }

    .mobile-cta {
        display: flex;
    }
}
