:root {
    --navy-950: #061720;
    --navy-900: #0b2735;
    --navy-850: #103442;
    --navy-800: #174352;
    --teal-600: #0aa6a3;
    --teal-500: #13bbb5;
    --teal-300: #71ddd8;
    --violet-600: #7552d6;
    --violet-500: #8b6ae4;
    --amber-500: #f2a33c;
    --ink-900: #16303c;
    --ink-700: #425f6a;
    --ink-500: #6c848d;
    --line: #dce8ec;
    --soft: #f4f8f9;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(9, 39, 51, .10);
    --shadow-sm: 0 12px 32px rgba(9, 39, 51, .08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    color: var(--ink-900);
    background: var(--white);
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(19, 187, 181, .22); color: var(--navy-950); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(840px, 100%); }
.section { padding: 92px 0; position: relative; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-950); color: var(--white); overflow: hidden; }
.section-kicker, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.2px;
    margin-bottom: 12px;
}
.section-kicker.light { color: var(--teal-300); }
.eyebrow {
    color: #a9ece8;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    padding: 8px 13px;
    border-radius: 999px;
}
.eyebrow i {
    width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500);
    box-shadow: 0 0 0 6px rgba(19,187,181,.12);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.45; letter-spacing: -.6px; }
h1 { font-size: clamp(38px, 5vw, 68px); }
h2 { font-size: clamp(28px, 3vw, 42px); }
h3 { font-size: 20px; }
p { color: var(--ink-700); }

.skip-link {
    position: fixed; top: -80px; right: 20px; z-index: 9999;
    background: var(--white); color: var(--navy-950); padding: 10px 16px; border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000;
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(6,23,32,.92);
    backdrop-filter: blur(16px);
    border-color: rgba(255,255,255,.08);
    box-shadow: 0 12px 34px rgba(1,16,22,.18);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 44px; height: 44px; }
.brand-copy { display: grid; line-height: 1.1; gap: 5px; direction: ltr; text-align: left; }
.brand-copy strong { font: 800 19px/1 "Segoe UI", Arial, sans-serif; letter-spacing: .2px; color: var(--white); }
.brand-copy small { color: #8fb4c0; font-size: 10px; letter-spacing: .6px; }
.main-nav { display: flex; align-items: center; gap: 26px; color: #d3e2e7; font-size: 14px; font-weight: 700; }
.main-nav > a { position: relative; padding: 28px 0; transition: color .2s ease; }
.main-nav > a:not(.nav-contact)::after {
    content: ""; position: absolute; right: 0; left: 100%; bottom: 20px; height: 2px;
    background: var(--teal-500); transition: left .2s ease;
}
.main-nav > a:hover { color: var(--white); }
.main-nav > a:hover::after { left: 0; }
.nav-contact { padding: 10px 18px !important; border: 1px solid rgba(113,221,216,.45); border-radius: 999px; color: #bff6f3; }
.nav-contact:hover { background: rgba(19,187,181,.10); }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

.hero {
    min-height: 800px; padding: 150px 0 88px; background:
        radial-gradient(circle at 80% 16%, rgba(117,82,214,.18), transparent 32%),
        radial-gradient(circle at 20% 82%, rgba(19,187,181,.13), transparent 30%),
        linear-gradient(145deg, var(--navy-950) 0%, #0a2634 55%, #0b2f3c 100%);
    color: var(--white); overflow: hidden; position: relative;
}
.hero::before {
    content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; background: rgba(19,187,181,.07); top: -140px; right: -120px; }
.hero-orb-two { width: 360px; height: 360px; background: rgba(117,82,214,.08); bottom: -180px; left: 24%; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 68px; align-items: center; position: relative; z-index: 2; }
.hero-copy h1 { margin: 20px 0 22px; max-width: 700px; }
.hero-copy > p { color: #b8ced6; font-size: 18px; max-width: 680px; line-height: 2; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
    padding: 0 22px; border-radius: 13px; font-size: 14px; font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--teal-500), #08a7ad); color: var(--navy-950); box-shadow: 0 12px 30px rgba(19,187,181,.22); }
.btn-ghost { border: 1px solid rgba(255,255,255,.18); color: var(--white); background: rgba(255,255,255,.035); }
.btn-dark { background: var(--navy-950); color: var(--white); }
.hero-facts { display: grid; grid-template-columns: repeat(3, max-content); gap: 28px; margin-top: 44px; }
.hero-facts span { display: grid; gap: 3px; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.12); }
.hero-facts span:last-child { border-left: 0; }
.hero-facts strong { color: var(--white); font-size: 18px; }
.hero-facts small { color: #86a7b3; font-size: 11px; }
.hero-frame {
    border: 1px solid rgba(255,255,255,.12); border-radius: 24px; overflow: hidden;
    background: rgba(8,31,42,.72); box-shadow: 0 34px 100px rgba(0,0,0,.34), 0 0 0 10px rgba(255,255,255,.018);
    transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}
.hero-frame-top { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.09); color: #7fa1ae; direction: ltr; }
.hero-frame-top span { width: 8px; height: 8px; border-radius: 50%; background: #2c5361; }
.hero-frame-top span:nth-child(2) { background: var(--amber-500); }
.hero-frame-top span:nth-child(3) { background: var(--teal-500); }
.hero-frame-top b { margin-left: auto; font: 600 10px/1 "Segoe UI", Arial, sans-serif; letter-spacing: .4px; }
.hero-frame img { width: 100%; background: #09232f; }

.intro-strip { padding: 74px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 72px; align-items: center; }
.intro-grid h2 { margin-bottom: 0; }
.intro-grid p { margin-bottom: 0; font-size: 16px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head h2 { margin-bottom: 0; }
.text-link { color: var(--teal-600); font-size: 14px; font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(-4px); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
    padding: 30px; border-radius: var(--radius-md); background: var(--white); border: 1px solid #e3ecef;
    min-height: 255px; box-shadow: 0 10px 30px rgba(8,40,52,.035); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(19,187,181,.25); }
.feature-icon {
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; margin-bottom: 22px;
    background: linear-gradient(145deg, #e8fbfa, #f4f0ff); color: var(--teal-600); font: 800 18px/1 "Segoe UI", Arial, sans-serif;
    border: 1px solid #d9efef;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; font-size: 14px; }

.dashboard-section { overflow: hidden; }
.dashboard-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.dashboard-visual { background: linear-gradient(135deg, #e9f7f7, #f0edf9); border-radius: var(--radius-lg); padding: 14px; border: 1px solid #e0ecef; box-shadow: var(--shadow); }
.dashboard-visual img { border-radius: 20px; width: 100%; }
.dashboard-copy h2 { margin-bottom: 18px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-right: 30px; color: var(--ink-700); }
.check-list li::before { content: ""; position: absolute; right: 0; top: 10px; width: 13px; height: 13px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 5px rgba(19,187,181,.10); }

.section-dark::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(117,82,214,.08); left: -180px; top: -180px; }
.principles-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; position: relative; z-index: 1; }
.principles-title h2 { margin-bottom: 0; color: var(--white); }
.principle-list { display: grid; gap: 14px; }
.principle-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.principle-list article:last-child { border-bottom: 0; }
.principle-list > article > span { color: var(--teal-300); font: 800 13px/1 "Segoe UI", Arial, sans-serif; padding-top: 7px; }
.principle-list h3 { color: var(--white); margin-bottom: 6px; }
.principle-list p { color: #9ab5bf; margin-bottom: 0; }

.collaboration-section { padding-top: 72px; padding-bottom: 72px; }
.collaboration-card {
    background: linear-gradient(135deg, #effafa, #f7f4ff); border: 1px solid #dcebec; border-radius: var(--radius-lg);
    padding: 42px 46px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.collaboration-card h2 { margin-bottom: 10px; }
.collaboration-card p { max-width: 770px; margin-bottom: 0; }
.collaboration-card .btn { min-width: 165px; }

.latest-section .content-grid, .content-list-section .content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.content-card { background: var(--white); border: 1px solid #e0eaed; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 12px 30px rgba(8,40,52,.04); }
.content-image { display: block; aspect-ratio: 16/9; overflow: hidden; background: #eaf2f4; }
.content-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.content-card:hover .content-image img { transform: scale(1.025); }
.content-body { padding: 24px; }
.content-meta { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; color: var(--ink-500); margin-bottom: 12px; }
.content-meta span { color: var(--violet-600); font-weight: 800; }
.content-body h2, .content-body h3 { font-size: 20px; margin-bottom: 10px; }
.content-body h2 a:hover, .content-body h3 a:hover { color: var(--teal-600); }
.content-body p { font-size: 13px; margin-bottom: 0; }
.card-link { display: inline-flex; color: var(--teal-600); font-size: 13px; font-weight: 800; margin-top: 18px; }

.contact-cta { padding-top: 70px; padding-bottom: 70px; }
.contact-cta-inner { background: var(--navy-900); color: var(--white); border-radius: var(--radius-lg); padding: 42px 46px; display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.contact-cta-inner h2 { color: var(--white); margin-bottom: 0; max-width: 730px; }
.cta-emails { display: grid; gap: 10px; direction: ltr; text-align: left; }
.cta-emails a { color: var(--teal-300); font: 700 13px/1.4 "Segoe UI", Arial, sans-serif; }

.page-hero {
    padding: 170px 0 92px; background:
        radial-gradient(circle at 86% 20%, rgba(117,82,214,.18), transparent 30%),
        linear-gradient(145deg, var(--navy-950), #0d3443); color: var(--white); overflow: hidden;
}
.page-hero.compact { padding-bottom: 78px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.page-hero h1 { font-size: clamp(36px, 4.4vw, 60px); margin: 20px 0 18px; }
.page-hero p { color: #b5cdd5; max-width: 780px; font-size: 17px; }
.page-hero img { border-radius: 24px; }

.solution-list { display: grid; gap: 0; }
.solution-list article { display: grid; grid-template-columns: 90px 1fr; gap: 34px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.solution-list article:last-child { border-bottom: 0; }
.solution-list > article > span { color: var(--teal-600); font: 800 17px/1 "Segoe UI", Arial, sans-serif; padding-top: 13px; }
.solution-list h2 { font-size: 28px; margin-bottom: 8px; }
.solution-list p { margin-bottom: 0; max-width: 850px; }
.two-column-note { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.two-column-note p { font-size: 16px; }
.two-column-note .btn { margin-top: 12px; }

.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 70px; align-items: start; }
.about-year { min-height: 260px; border-radius: var(--radius-lg); padding: 38px; background: linear-gradient(145deg, var(--navy-900), #123d4a); color: var(--white); display: flex; flex-direction: column; justify-content: end; position: relative; overflow: hidden; }
.about-year::before { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; top: -70px; left: -60px; background: rgba(19,187,181,.12); }
.about-year strong { font: 800 64px/1 "Segoe UI", Tahoma, sans-serif; color: var(--teal-300); position: relative; }
.about-year span { color: #bdd1d8; margin-top: 12px; position: relative; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { font-size: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.values-grid article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; }
.values-grid h3 { margin-bottom: 9px; }
.values-grid p { margin-bottom: 0; font-size: 14px; }

.faq-list { width: min(900px, 100%); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 44px 24px 0; position: relative; font-weight: 800; font-size: 17px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 22px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--teal-600); background: #ecf8f8; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 44px 24px 0; margin: 0; }
.faq-list a { color: var(--teal-600); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card { padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(19,187,181,.35); }
.contact-card > span { display: inline-flex; color: var(--teal-600); background: #e9f8f7; border-radius: 999px; padding: 5px 10px; font-size: 11px; font-weight: 800; }
.contact-card h2 { margin: 22px 0 12px; font: 800 clamp(20px, 2.5vw, 28px)/1.4 "Segoe UI", Arial, sans-serif; letter-spacing: 0; }
.contact-card p { min-height: 74px; }
.contact-card strong { color: var(--teal-600); font-size: 13px; }

.empty-state { padding: 70px 20px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.empty-state img { margin: 0 auto 26px; max-width: 260px; }
.empty-state h2 { font-size: 26px; margin-bottom: 10px; }
.empty-state p { margin-bottom: 0; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 38px; font-size: 13px; }
.pagination a { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 9px 14px; color: var(--teal-600); font-weight: 800; }
.pagination span { color: var(--ink-500); }

.article-hero { padding: 160px 0 66px; background: var(--navy-950); color: var(--white); }
.article-shell { width: min(900px, calc(100% - 40px)); }
.breadcrumbs { display: flex; gap: 9px; align-items: center; font-size: 12px; color: #89a7b1; margin-bottom: 28px; }
.breadcrumbs a:hover { color: var(--teal-300); }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: #8eaab4; }
.article-meta span { color: var(--teal-300); font-weight: 800; }
.article-hero h1 { font-size: clamp(34px, 4.5vw, 58px); margin: 18px 0; }
.article-lead { color: #b5cdd4; font-size: 17px; margin-bottom: 0; }
.article-section { padding-top: 54px; }
.article-cover { width: 100%; max-height: 510px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 42px; background: #edf3f5; }
.article-body { font-size: 16px; color: var(--ink-700); }
.article-body h2, .article-body h3 { color: var(--ink-900); margin-top: 38px; }
.article-body img { border-radius: 18px; margin: 28px auto; }
.article-body a { color: var(--teal-600); text-decoration: underline; text-underline-offset: 4px; }
.article-body blockquote { margin: 28px 0; padding: 18px 22px; border-right: 4px solid var(--teal-500); background: var(--soft); border-radius: 12px 0 0 12px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-tags strong { font-size: 13px; margin-left: 6px; }
.article-tags span { padding: 5px 10px; background: var(--soft); border-radius: 999px; color: var(--ink-500); font-size: 11px; }
.article-back { margin-top: 32px; }

.error-page { min-height: 78vh; display: grid; place-items: center; padding: 150px 0 80px; background: var(--soft); }
.error-card { text-align: center; max-width: 700px; }
.error-card > span { font: 800 86px/1 "Segoe UI", Arial, sans-serif; color: var(--teal-500); opacity: .22; }
.error-card h1 { font-size: 34px; margin: 10px 0; }
.error-card p { margin-bottom: 26px; }

.site-footer { background: var(--navy-950); color: var(--white); padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 70px; }
.footer-logo { margin-bottom: 20px; }
.footer-brand p { color: #8eaab4; max-width: 520px; font-size: 13px; }
.site-footer h2 { font-size: 14px; color: var(--white); margin: 8px 0 16px; }
.site-footer section:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.site-footer section:not(.footer-brand) a { color: #90aeb8; font-size: 13px; transition: color .2s ease; }
.site-footer section:not(.footer-brand) a:hover { color: var(--teal-300); }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 18px; color: #668995; font-size: 10px; }

@media (max-width: 1040px) {
    .hero-grid, .page-hero-grid, .dashboard-grid, .principles-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 800px; }
    .hero-visual { max-width: 820px; }
    .feature-grid, .latest-section .content-grid, .content-list-section .content-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero-grid img { max-width: 720px; }
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed; top: 74px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch;
        gap: 0; padding: 12px; background: #0b2735; border: 1px solid rgba(255,255,255,.10); border-radius: 18px;
        box-shadow: 0 26px 70px rgba(0,0,0,.30);
    }
    .main-nav.is-open { display: flex; }
    .main-nav > a { padding: 13px 14px; border-radius: 10px; }
    .main-nav > a::after { display: none; }
    .main-nav > a:hover { background: rgba(255,255,255,.045); }
    .nav-contact { margin-top: 8px; text-align: center; }
    .nav-toggle { display: block; }
    .intro-grid, .two-column-note, .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-year { max-width: 430px; }
    .collaboration-card, .contact-cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-emails { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .container, .article-shell { width: min(100% - 28px, var(--container)); }
    .section { padding: 68px 0; }
    .nav-wrap { height: 72px; }
    .brand-copy small { display: none; }
    .hero { min-height: auto; padding: 128px 0 70px; }
    .hero-grid { gap: 42px; }
    .hero-copy > p, .page-hero p { font-size: 15px; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-facts { grid-template-columns: 1fr; gap: 10px; }
    .hero-facts span { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 0 0 10px; }
    .hero-facts span:last-child { border-bottom: 0; }
    .hero-frame { transform: none; border-radius: 18px; }
    .hero-frame-top { height: 40px; }
    .feature-grid, .values-grid, .contact-grid, .latest-section .content-grid, .content-list-section .content-grid { grid-template-columns: 1fr; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .collaboration-card, .contact-cta-inner { padding: 30px 24px; }
    .solution-list article { grid-template-columns: 48px 1fr; gap: 14px; padding: 28px 0; }
    .solution-list h2 { font-size: 23px; }
    .page-hero { padding: 130px 0 64px; }
    .page-hero.compact { padding-bottom: 58px; }
    .faq-list summary { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .article-hero { padding: 130px 0 52px; }
    .article-body { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Database-backed content pages */
.page-content { max-width: 940px; }
.page-content > :first-child { margin-top: 0; }
.page-content h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.page-content h3 { font-size: 20px; margin-bottom: 10px; }
.page-content p, .page-content li { line-height: 2; }
.page-content ul, .page-content ol { padding-right: 24px; margin: 14px 0 26px; }
.page-content .training-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 28px 0; }
.page-content .training-links a { display: block; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); text-decoration: none; color: var(--ink-900); font-weight: 800; }
.page-content .training-links a span { display: block; margin-top: 7px; color: var(--ink-600); font-size: 13px; font-weight: 500; line-height: 1.8; }
.page-content .note-box { padding: 20px 22px; margin: 24px 0; border-radius: 16px; background: var(--soft); border-right: 4px solid var(--teal-500); }
.faq-list .faq-answer { padding: 0 44px 24px 0; color: var(--ink-700); }
.faq-list .faq-answer p { padding: 0; margin: 0 0 10px; }
.faq-list .faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
    .page-content .training-links { grid-template-columns: 1fr; }
    .faq-list .faq-answer { padding-right: 0; }
}
