@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
    --blue: #2f6fb2;
    --orange: #f4a028;
    --ink: #0b1117;
    --slate: #56616f;
    --mist: #f5f6f8;
    --sky: #e9f2ff;
    --sand: #fff2e2;
    --mint: #eef7f3;
    --lavender: #f1eff9;
    --line: rgba(11, 17, 23, 0.12);
    --white: #ffffff;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.6;
}

body.nav-open { overflow: hidden; }

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

img { width: 100%; display: block; height: auto; }

.container { width: min(1180px, 92%); margin: 0 auto; }

main { padding-bottom: 60px; }

h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; }

h1 { font-size: clamp(2.6rem, 3.6vw, 3.4rem); line-height: 1.15; }

h2 { font-size: clamp(2rem, 2.8vw, 2.6rem); }

h3 { font-size: 1.1rem; }

p { color: var(--slate); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 600;
}

.btn-primary { background: var(--blue); color: var(--white); }

.btn-secondary { background: var(--white); color: var(--blue); border-color: var(--blue); }

.site-header {
    position: relative;
    background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid var(--line);
}

.header-inner { display: flex; align-items: center; gap: 16px; justify-content: space-between; padding: 12px 0; }

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 34px;
    width: auto;
    border-radius: 6px;
}

.logo span {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: var(--blue);
}

.nav { display: flex; gap: 18px; font-size: 1rem; }

.nav a { color: var(--slate); font-weight: 500; }

.nav-toggle { display: none; width: 36px; height: 36px; border: 1px solid var(--line); background: transparent; border-radius: 10px; position: relative; }

.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink); }

.nav-toggle span:first-child { top: 12px; }

.nav-toggle span:last-child { top: 22px; }

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 9;
    border-left: 1px solid var(--line);
}

.nav-drawer.is-open { transform: translateX(0); opacity: 1; pointer-events: auto; }

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.nav-drawer-list {
    display: grid;
}

.nav-drawer-list a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(11, 17, 23, 0.08);
    color: var(--ink);
    font-weight: 500;
}

.nav-drawer-cta {
    margin: 18px 20px 24px;
    width: calc(100% - 40px);
    justify-content: center;
}

.nav-close {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--white);
}

.nav-close::before,
.nav-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--ink);
}

.nav-close::before { transform: translateY(-50%) rotate(45deg); }

.nav-close::after { transform: translateY(-50%) rotate(-45deg); }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 17, 23, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 8;
}

.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

.hero {
    padding: 70px 0 50px;
    background: radial-gradient(circle at top left, #eef4ff, #ffffff 55%);
}

.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }

.hero-content { max-width: 560px; }

.hero-media {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(11, 17, 23, 0.08);
    box-shadow: 0 24px 50px rgba(12, 26, 44, 0.12);
}

.eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(47, 111, 178, 0.2);
    background: #f4f7fd;
    margin-bottom: 18px;
}

.lead { margin: 20px 0 26px; font-size: 1.15rem; max-width: 560px; }

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

.hero-meta {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    color: var(--slate);
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--slate);
}

.hero-meta span::after {
    content: "·";
    margin-left: 10px;
}

.hero-meta span:last-child::after {
    content: "";
    margin: 0;
}

.section { padding: 60px 0; }

.section.alt { background: var(--mist); }

#why-jiangmi {
    background: var(--mint);
}

#how-it-works {
    background: var(--lavender);
}

#services {
    background: var(--sky);
}

#insights {
    background: var(--sand);
}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }

.section-head p { max-width: 520px; }

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

.trust-grid article {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 14px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 12px 26px rgba(31, 79, 131, 0.08);
}

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

.steps-grid div {
    border: 1px solid rgba(79, 111, 178, 0.18);
    border-radius: 16px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 10px 18px rgba(31, 79, 131, 0.06);
}

.steps-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.95rem;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #eef4ff;
    margin-bottom: 10px;
}

.step-deliverable {
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--slate);
}

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

.services-grid article {
    border: 1px solid rgba(244, 160, 40, 0.22);
    border-radius: 14px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 14px 26px rgba(244, 160, 40, 0.12);
}

.services-grid img { border-radius: 10px; margin-bottom: 12px; }

.micro-cta {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.micro-cta p {
    color: var(--slate);
    font-size: 0.98rem;
}

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

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

.insights-grid article {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 14px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(31, 79, 131, 0.08);
}

.insight-card img {
    border-radius: 12px;
    margin-bottom: 12px;
}

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

.knowledge-grid p {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(79, 111, 178, 0.18);
    box-shadow: 0 10px 18px rgba(31, 79, 131, 0.05);
}

.insights-grid span { display: block; margin-top: 10px; color: var(--slate); font-size: 0.85rem; }
.insight-link { display: inline-block; margin-top: 10px; color: var(--slate); font-size: 0.85rem; text-decoration: none; }
.insight-link:hover { color: var(--primary); }
.insight-card h3 a { color: inherit; text-decoration: none; }
.insight-card h3 a:hover { color: var(--primary); }

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

.list-card {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 16px;
    padding: 18px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(31, 79, 131, 0.06);
}

.list-card--media {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    align-items: start;
}

.list-thumb {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(11, 17, 23, 0.08);
    object-fit: cover;
    height: 120px;
}

.list-body h3 { margin: 0 0 8px; }

.list-body p { margin: 0 0 12px; }

.list-card h3 { margin: 8px 0; }

.list-meta {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--slate);
    letter-spacing: 0.02em;
}

.list-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.list-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 600;
}

.intro-panel { padding: 32px 0 24px; background: var(--mist); }

.intro-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 26px;
    background: var(--white);
    box-shadow: 0 16px 28px rgba(31, 79, 131, 0.08);
}

.intro-card p { color: var(--slate); font-size: 1.05rem; }

.list-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 24px;
}

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

.list-sidebar { display: grid; gap: 18px; align-content: start; }

.sidebar-card {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 16px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(31, 79, 131, 0.06);
}

.sidebar-card h4 { margin-bottom: 10px; }

.sidebar-list {
    list-style: none;
    display: grid;
    gap: 0;
}

.sidebar-list li { border-bottom: 1px solid var(--line); }

.sidebar-list li:first-child { border-top: 1px solid var(--line); }

.sidebar-list a {
    display: block;
    padding: 10px 4px;
    color: var(--ink);
}

.sidebar-list a:hover { color: var(--blue); }

.list-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.page-hero {
    position: relative;
    padding: 90px 0 70px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.page-hero--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 17, 23, 0.25), rgba(11, 17, 23, 0.65));
    z-index: 1;
}

.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero--photo h1,
.page-hero--photo p,
.page-hero--photo .article-meta,
.page-hero--photo .eyebrow,
.page-hero--photo .breadcrumbs {
    color: var(--white);
}

.page-hero--photo .breadcrumbs a { color: #d7e6ff; }

.page-hero--photo .breadcrumbs span::before { color: rgba(255, 255, 255, 0.7); }

.page-hero h1 { margin: 12px 0 8px; }

.page-hero p { max-width: 900px; }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--slate);
}

.breadcrumbs a { color: var(--blue); }

.breadcrumbs span::before {
    content: "›";
    margin-right: 8px;
    color: var(--slate);
}

.article-subtitle { max-width: 680px; margin: 16px 0 12px; }

.article-meta { color: var(--slate); font-size: 0.92rem; }

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 32px;
}

.article-body h2 { margin-top: 20px; font-size: 1.35rem; }

.article-body p { margin: 12px 0; font-size: 1.05rem; line-height: 1.8; }
.article-body img { width: 100%; height: auto; max-width: 100%; }

.tags-container { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 6px 0 18px; }
.tags-label { font-weight: 700; color: var(--ink); }
.tag-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #f3f4f6;
    color: #1f2937;
    text-decoration: underline;
}
.tag-link:hover { background: #e5e7eb; }
.related-articles { display: grid; gap: 14px; margin: 22px 0 28px; }
.related-article-card {
    border-left: 4px solid #2563eb;
    border-radius: 12px;
    background: #f8fafc;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.related-article-card a { color: #1d4ed8; font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.related-article-card a:hover { text-decoration: underline; }
.comments-section { margin: 28px 0 20px; }
.comments-section h3 { margin-bottom: 16px; }
.comment-item { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px 18px; background: #fff; margin-bottom: 12px; }
.comment-item, .comment-form { box-sizing: border-box; max-width: 100%; }
.comment-meta { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: 0.92rem; margin-bottom: 8px; }
.comment-text { color: var(--ink); }
.comment-form-title { margin: 24px 0 12px; }
.comment-form { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px; }
.comment-form .grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.comment-form label { display: block; margin-bottom: 8px; font-weight: 600; }
.comment-form input, .comment-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    box-sizing: border-box;
}
.comment-form textarea { resize: vertical; }
.honeypot-field { display: none; }

.article-list {
    margin: 14px 0 0 18px;
    color: var(--slate);
}

.article-list li { margin: 6px 0; }

.article-sidebar { display: grid; gap: 16px; align-content: start; }

.info-card {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 16px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(31, 79, 131, 0.06);
}

.info-card h4 { margin-bottom: 10px; }

.info-card ul { margin-left: 18px; color: var(--slate); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-list a {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(47, 111, 178, 0.3);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 600;
}

.update-panel { padding: 10px 0 0; }

.update-panel + .section { padding-top: 30px; }

.update-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 20px;
    background: var(--white);
    box-shadow: 0 12px 22px rgba(31, 79, 131, 0.06);
    color: var(--slate);
    font-weight: 600;
}

.article-tags,
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    flex-wrap: wrap;
}

.article-tags span,
.article-share span { font-weight: 600; color: var(--ink); }

.share-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-links a { color: var(--blue); font-weight: 600; font-size: 0.9rem; }

.related-block { margin-top: 26px; }

.related-block h3 { margin-bottom: 12px; }

.related-list {
    display: grid;
    gap: 16px;
}

.related-list > div {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    background: var(--white);
}

.related-list a { color: var(--ink); font-weight: 600; }

.related-list p { margin: 6px 0 0; }

.article-box {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    background: var(--white);
    box-shadow: 0 12px 22px rgba(31, 79, 131, 0.06);
    margin-top: 22px;
}

.article-box .share-links a {
    background: #eef4ff;
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--blue);
}

.sidebar-media-list {
    display: grid;
    gap: 12px;
}

.media-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--ink);
}

.media-item img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(47, 111, 178, 0.18);
}

.sidebar-banner {
    display: grid;
    gap: 12px;
    color: var(--ink);
}

.sidebar-banner img {
    border-radius: 14px;
    border: 1px solid rgba(47, 111, 178, 0.18);
    box-shadow: 0 12px 24px rgba(31, 79, 131, 0.08);
}

.sidebar-banner span { font-weight: 600; }

.support-bar {
    margin: 40px 0 0;
    padding: 28px 0;
    background: #f0f5fb;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.support-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.about-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 22px;
    background: var(--white);
    box-shadow: 0 12px 22px rgba(31, 79, 131, 0.06);
}

.about-list {
    margin: 10px 0 0 18px;
    color: var(--slate);
}

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

.about-pillars article {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 16px;
    padding: 18px;
    background: var(--white);
    box-shadow: 0 12px 22px rgba(31, 79, 131, 0.06);
}

.about-pillars img {
    height: 48px;
    width: 48px;
    margin-bottom: 12px;
}

.about-steps {
    margin-left: 18px;
    color: var(--slate);
}

.about-steps li { margin: 8px 0; }

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

.about-team article {
    border: 1px solid rgba(47, 111, 178, 0.18);
    border-radius: 16px;
    padding: 18px;
    background: var(--white);
    box-shadow: 0 12px 22px rgba(31, 79, 131, 0.06);
}

.about-team img {
    border-radius: 14px;
    margin-bottom: 12px;
}

.page-content { background: var(--mist); }

.page-content-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 30px;
    background: var(--white);
    box-shadow: 0 16px 28px rgba(31, 79, 131, 0.08);
}

.page-content-card p {
    font-size: 0.98rem;
    margin: 0 0 16px;
}

.page-content-card ul {
    margin: 0 0 16px 18px;
    color: var(--slate);
}

.page-content-card li { margin: 8px 0; }

.page-content-card { max-width: 100%; }

.page-content-card a,
.page-content-card li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cta {
    background: linear-gradient(120deg, var(--blue), #1c3f64); color: var(--white);
    border-radius: 18px; padding: 40px 0; margin: 26px 0 2px;
}

.cta p { color: rgba(255, 255, 255, 0.85); }

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

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

.site-footer {
    background: radial-gradient(circle at top left, rgba(61, 120, 198, 0.25), transparent 45%),
                radial-gradient(circle at bottom right, rgba(30, 64, 114, 0.45), transparent 55%),
                linear-gradient(180deg, #0c243c, #0b1f33 70%);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.footer-inner > div { display: grid; gap: 8px; }

.site-footer h4 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    color: var(--white);
}

.site-footer p { color: rgba(255, 255, 255, 0.78); }

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-inner > div:nth-child(2) p {
    margin: 4px 0;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
    font-size: 0.85rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
    padding: 18px 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    padding: 2px 0;
    border-radius: 0;
    background: transparent;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links span {
    display: none;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .trust-grid, .services-grid, .insights-grid, .knowledge-grid, .list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .header-inner { gap: 10px; }
    .header-inner .btn.btn-primary { padding: 8px 14px; font-size: 0.92rem; }
    .micro-cta { flex-direction: column; align-items: flex-start; }
    .article-layout { grid-template-columns: 1fr; }
    .list-layout { grid-template-columns: 1fr; }
    .support-inner { flex-direction: column; align-items: flex-start; }
    .update-panel + .section { padding-top: 22px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .list-card--media { grid-template-columns: 140px 1fr; }
    .list-thumb { height: 110px; }
}

@media (max-width: 768px) {
    .trust-grid, .services-grid, .insights-grid, .steps-grid, .footer-inner, .knowledge-grid, .list-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 40px; }
    .page-hero { padding: 70px 0 50px; }
    .about-pillars { grid-template-columns: 1fr; }
    .about-team { grid-template-columns: 1fr; }
    .list-card--media { grid-template-columns: 1fr; }
    .list-thumb { height: 180px; }
    .comment-form .grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }

    .logo span {
        font-size: 0.95rem;
    }

    .header-inner .btn.btn-primary {
        padding: 8px 12px;
        font-size: 0.88rem;
        min-width: 0;
        white-space: nowrap;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 8.5vw, 2.4rem);
    }
}
