:root {
    --ink: #0b1724;
    --muted: #5c6a78;
    --navy: #071a2b;
    --navy-soft: #0e2a43;
    --blue: #135f8d;
    --amber: #f59d32;
    --amber-soft: #fff1df;
    --steel: #dce4ea;
    --mist: #f3f6f8;
    --white: #fff;
    --success: #1b7f5f;
    --radius: 18px;
    --shadow: 0 22px 60px rgba(7, 26, 43, .12);
    --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--amber); }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(42px, 6vw, 78px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2vw, 28px); }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.spaced-lead { margin-top: 18px; }
.section { padding: 100px 0; }
.section-muted { background: var(--mist); }
.section-dark { color: var(--white); background: var(--navy); }
.section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-heading p { color: var(--muted); max-width: 650px; }
.section-dark .section-heading p { color: #aebdcc; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(7, 26, 43, .08);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy-soft), var(--blue));
    border-radius: 10px;
    font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; }
.brand small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.main-nav > a:not(.button):hover { color: var(--blue); }
.nav-toggle { display: none; padding: 6px; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid var(--amber);
    border-radius: 999px;
    color: var(--navy);
    background: var(--amber);
    box-shadow: 0 10px 24px rgba(245, 157, 50, .24);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245, 157, 50, .32); }
.button-small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.button-secondary { color: var(--white); border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .08); box-shadow: none; }
.button-ghost { color: var(--ink); border-color: var(--steel); background: var(--white); box-shadow: none; }
.button-wide { width: 100%; }
.text-link { color: var(--blue); font-weight: 800; }

.hero {
    min-height: 720px;
    display: grid;
    align-items: center;
    color: var(--white);
    background-color: var(--navy);
    background-image: linear-gradient(90deg, rgba(5, 17, 29, .98) 0%, rgba(5, 17, 29, .9) 38%, rgba(5, 17, 29, .28) 70%, rgba(5, 17, 29, .06) 100%), url('../images/cnc-hero.png');
    background-position: center;
    background-size: cover;
}
.hero-content { max-width: 680px; padding: 96px 0; }
.hero .eyebrow { color: #c5d7e4; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 span { color: var(--amber); }
.hero .lead { max-width: 620px; color: #c4d0da; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; color: #9fb2c1; font-size: 13px; }
.hero-proof span::before { content: "✓"; color: var(--amber); margin-right: 8px; }

.problem-strip { margin-top: -55px; position: relative; z-index: 3; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.problem-item { padding: 32px; border-right: 1px solid var(--steel); }
.problem-item:last-child { border-right: 0; }
.problem-item strong { display: block; margin-bottom: 8px; font-size: 18px; }
.problem-item p { color: var(--muted); font-size: 14px; }
.number-tag { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-bottom: 18px; border-radius: 8px; color: var(--blue); background: #e9f3f8; font-size: 12px; font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 34px; border: 1px solid var(--steel); border-radius: var(--radius); background: var(--white); }
.card h3 { margin: 18px 0 12px; }
.card p { color: var(--muted); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: #e9f3f8; font-size: 22px; font-weight: 900; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; }
.feature-list li { position: relative; padding: 8px 0 8px 22px; color: var(--muted); font-size: 14px; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.visual-panel { position: relative; min-height: 520px; border-radius: 26px; overflow: hidden; background: var(--navy); box-shadow: var(--shadow); }
.visual-panel img { width: 100%; height: 100%; position: absolute; object-fit: cover; opacity: .88; }
.visual-overlay { position: absolute; left: 26px; right: 26px; bottom: 26px; padding: 24px; color: var(--white); border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; background: rgba(7, 26, 43, .78); backdrop-filter: blur(14px); }
.visual-overlay strong { display: block; margin-bottom: 8px; font-size: 18px; }
.check-list { display: grid; gap: 14px; margin-top: 30px; }
.check-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.check-item span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--success); background: #e4f5ef; font-weight: 900; }
.check-item p { color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 36px; border: 1px solid var(--steel); border-radius: var(--radius); background: var(--white); }
.price-card.featured { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-12px); box-shadow: var(--shadow); }
.price-card .price { margin: 22px 0 4px; font-size: 42px; font-weight: 900; letter-spacing: -.04em; }
.price-card .price small { font-size: 14px; font-weight: 600; }
.price-card > p { color: var(--muted); }
.price-card.featured > p, .price-card.featured .feature-list li { color: #aebdcc; }
.price-badge { position: absolute; top: 18px; right: 18px; padding: 5px 10px; border-radius: 999px; color: var(--navy); background: var(--amber); font-size: 11px; font-weight: 900; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline-step { display: grid; grid-template-columns: 100px 1fr; gap: 28px; padding: 0 0 42px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-day { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.timeline-body { position: relative; padding: 0 0 0 34px; }
.timeline-body::before { content: ""; position: absolute; left: 4px; top: 9px; bottom: -52px; width: 1px; background: var(--steel); }
.timeline-step:last-child .timeline-body::before { display: none; }
.timeline-body::after { content: ""; position: absolute; left: 0; top: 6px; width: 9px; height: 9px; border: 3px solid var(--amber); border-radius: 50%; background: var(--white); }
.timeline-body p { margin-top: 9px; color: var(--muted); }

.cta-band { padding: 68px 0; color: var(--white); background: linear-gradient(125deg, var(--navy) 0%, #0d3553 100%); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-inner p { margin-top: 12px; color: #b9c8d4; }

.page-hero { padding: 110px 0 72px; color: var(--white); background: var(--navy); }
.page-hero h1 { max-width: 900px; margin: 18px 0 20px; font-size: clamp(40px, 5vw, 66px); }
.page-hero p { max-width: 760px; color: #b9c8d4; }
.page-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.sticky-copy h2 { margin: 18px 0; }
.sticky-copy p { color: var(--muted); }

.inquiry-panel { padding: 34px; border: 1px solid var(--steel); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label > span, .consent-field span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea {
    width: 100%;
    border: 1px solid #cdd7df;
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    outline: none;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(19, 95, 141, .12); }
.form-grid textarea { resize: vertical; }
.form-span { grid-column: 1 / -1; }
.file-field input { padding: 16px; border-style: dashed; background: var(--mist); }
.form-grid small { display: block; min-height: 18px; margin-top: 4px; color: #b42318; font-size: 12px; }
.consent-field { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; color: var(--muted); }
.consent-field input { margin-top: 5px; }
.consent-field span { margin: 0; font-weight: 500; }
.form-error { margin-bottom: 16px; color: #b42318; font-size: 13px; }
.form-note { margin-top: 12px; text-align: center; color: var(--muted); font-size: 12px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-success { padding: 30px; border-radius: var(--radius); background: #eaf7f2; }
.form-success h3 { margin: 14px 0 10px; }
.form-success p { color: var(--muted); }

.audit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.audit-item { padding: 22px; border: 1px solid var(--steel); border-radius: 14px; background: var(--white); }
.audit-item strong { display: block; margin-bottom: 6px; }
.audit-item p { color: var(--muted); font-size: 14px; }
.boundary-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--amber); color: var(--muted); background: var(--amber-soft); }
.scope-table-wrap { margin-top: 54px; overflow-x: auto; border: 1px solid var(--steel); border-radius: var(--radius); }
.scope-table { width: 100%; min-width: 700px; border-collapse: collapse; background: var(--white); }
.scope-table th, .scope-table td { padding: 18px 22px; border-bottom: 1px solid var(--steel); text-align: left; }
.scope-table th { color: var(--white); background: var(--navy); font-size: 13px; }
.scope-table tbody tr:last-child td { border-bottom: 0; }
.scope-table td:not(:first-child) { color: var(--muted); }
.comparison-image { width: 100%; border: 1px solid var(--steel); border-radius: 24px; box-shadow: var(--shadow); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 28px; color: #7590a4; font-size: 13px; }
.breadcrumbs a:hover { color: var(--amber); }
.article-hero { padding: 68px 0 72px; color: var(--white); background: linear-gradient(135deg, var(--navy), #0d3553); }
.article-hero-inner { max-width: 920px; }
.article-hero h1 { max-width: 900px; margin: 18px 0 22px; font-size: clamp(40px, 5vw, 64px); }
.article-hero .lead { max-width: 820px; color: #c4d0da; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: #91a7b8; font-size: 12px; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); justify-content: center; gap: 64px; align-items: start; }
.article-toc { position: sticky; top: 112px; padding: 24px; border: 1px solid var(--steel); border-radius: 14px; background: var(--mist); }
.article-toc strong { display: block; margin-bottom: 12px; }
.article-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: 13px; }
.article-toc a:hover { color: var(--blue); }
.article-body { min-width: 0; font-size: 17px; }
.article-body h2 { margin: 60px 0 18px; font-size: clamp(28px, 3vw, 38px); scroll-margin-top: 110px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 34px 0 12px; font-size: 23px; scroll-margin-top: 110px; }
.article-body p { margin: 0 0 20px; color: #354555; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 24px; color: #354555; }
.article-body li { margin: 9px 0; padding-left: 5px; }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { color: var(--ink); }
.article-callout { margin: 30px 0; padding: 24px 26px; border-left: 4px solid var(--amber); border-radius: 0 14px 14px 0; background: var(--amber-soft); }
.article-callout p:last-child { margin-bottom: 0; }
.article-table-wrap { margin: 28px 0; overflow-x: auto; border: 1px solid var(--steel); border-radius: 14px; }
.article-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 14px; }
.article-table th, .article-table td { padding: 15px 18px; border-bottom: 1px solid var(--steel); text-align: left; vertical-align: top; }
.article-table th { color: var(--white); background: var(--navy); }
.article-table tr:last-child td { border-bottom: 0; }
.article-author { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin-top: 64px; padding: 26px; border: 1px solid var(--steel); border-radius: var(--radius); background: var(--mist); }
.article-author p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.article-next { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; margin-top: 28px; padding: 34px; color: var(--white); border-radius: var(--radius); background: var(--navy); }
.article-next h2 { margin: 9px 0; font-size: 30px; }
.article-next p { color: #aebdcc; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card { display: flex; min-height: 290px; padding: 30px; flex-direction: column; border: 1px solid var(--steel); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.insight-card .card-kicker { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.insight-card h2, .insight-card h3 { margin: 18px 0 12px; font-size: 25px; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; padding-top: 24px; }
.featured-insight { min-height: 0; color: var(--white); border-color: var(--navy); background: linear-gradient(135deg, var(--navy), #0d3553); }
.featured-insight p { max-width: 760px; color: #b9c8d4; }
.featured-insight .card-kicker, .featured-insight .text-link { color: var(--amber); }
.intent-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.intent-card { padding: 28px; border: 1px solid var(--steel); border-radius: var(--radius); background: var(--white); }
.intent-card h3 { margin-bottom: 10px; }
.intent-card p { color: var(--muted); }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 25px 28px; border: 1px solid var(--steel); border-radius: 14px; background: var(--white); }
.faq-item h3 { margin-bottom: 9px; font-size: 20px; }
.faq-item p { color: var(--muted); }

.demo-notice { padding: 8px 20px; color: #4a2a00; background: var(--amber); text-align: center; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.demo-header { top: 0; }
.demo-mark { background: linear-gradient(145deg, #173956, #0f7692); }
.demo-hero { min-height: 700px; }
.demo-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -64px; position: relative; z-index: 5; }
.demo-stat { padding: 28px; color: var(--white); border-right: 1px solid rgba(255, 255, 255, .12); background: var(--navy-soft); }
.demo-stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.demo-stat:last-child { border: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.demo-stat strong { display: block; color: var(--amber); font-size: 28px; }
.demo-stat span { color: #b9c8d4; font-size: 12px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.capability-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); border-radius: var(--radius); overflow: hidden; background: linear-gradient(150deg, #0d2e48, #081522); }
.capability-card:nth-child(2) { background: linear-gradient(150deg, #174b60, #071a2b); }
.capability-card:nth-child(3) { background: linear-gradient(150deg, #403523, #0b1724); }
.capability-card .cap-index { margin-bottom: auto; color: rgba(255, 255, 255, .45); font-size: 12px; font-weight: 900; }
.capability-card p { margin-top: 12px; color: #b9c8d4; }
.spec-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.spec-row span { padding: 5px 9px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; font-size: 11px; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quality-panel { padding: 34px; border-radius: var(--radius); background: rgba(255, 255, 255, .06); }
.quality-panel p { margin-top: 10px; color: #b9c8d4; }
.data-table { width: 100%; margin-top: 24px; border-collapse: collapse; font-size: 13px; }
.data-table td { padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.data-table td:last-child { text-align: right; color: #dbe7ef; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { border: 1px solid var(--steel); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.project-visual { height: 220px; display: grid; place-items: center; color: rgba(255, 255, 255, .55); background: linear-gradient(145deg, #31566e, #0b1724); font-size: 70px; font-weight: 200; }
.project-card:nth-child(2) .project-visual { background: linear-gradient(145deg, #6d6048, #172532); }
.project-card:nth-child(3) .project-visual { background: linear-gradient(145deg, #397370, #102330); }
.project-copy { padding: 24px; }
.project-copy p { margin-top: 10px; color: var(--muted); }
.demo-rfq { background: linear-gradient(135deg, #eaf1f5, #fff); }
.demo-footer { padding-top: 56px; }

.site-footer { padding: 72px 0 24px; color: #c5d0d9; background: #061421; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 60px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid p { max-width: 420px; color: #899cac; }
.brand-light strong { color: var(--white); }
.brand-light small { color: #899cac; }
.footer-title { color: var(--white); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: #718697; font-size: 11px; }

@media (max-width: 900px) {
    .section { padding: 76px 0; }
    .section-heading, .split, .page-layout, .cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .card-grid, .pricing-grid, .capability-grid, .project-grid, .insight-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-item { border-right: 0; border-bottom: 1px solid var(--steel); }
    .problem-item:last-child { border-bottom: 0; }
    .pricing-grid { gap: 18px; }
    .price-card.featured { transform: none; }
    .demo-stats { grid-template-columns: 1fr 1fr; margin-top: -32px; }
    .demo-stat:first-child { border-radius: var(--radius) 0 0 0; }
    .demo-stat:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
    .demo-stat:nth-child(3) { border-radius: 0 0 0 var(--radius); }
    .demo-stat:last-child { border-radius: 0 0 var(--radius) 0; }
    .quality-grid, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .sticky-copy { position: static; }
    .article-layout { grid-template-columns: 1fr; gap: 36px; }
    .article-toc { position: static; }
    .article-next { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 68px;
        display: none;
        padding: 22px;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        border: 1px solid var(--steel);
        border-radius: 14px;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
}

@media (max-width: 620px) {
    :root { --shell: min(100% - 28px, 1180px); }
    h1 { font-size: 42px; }
    .hero { min-height: 680px; background-position: 62% center; }
    .hero-content { padding: 72px 0 110px; }
    .hero-proof { gap: 12px; flex-direction: column; }
    .form-grid, .audit-grid, .intent-grid { grid-template-columns: 1fr; }
    .form-span { grid-column: auto; }
    .inquiry-panel { padding: 22px; }
    .timeline-step { grid-template-columns: 70px 1fr; gap: 10px; }
    .demo-stats { grid-template-columns: 1fr; }
    .demo-stat, .demo-stat:first-child, .demo-stat:nth-child(2), .demo-stat:nth-child(3), .demo-stat:last-child { border-radius: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
    .demo-stat:first-child { border-radius: var(--radius) var(--radius) 0 0; }
    .demo-stat:last-child { border-radius: 0 0 var(--radius) var(--radius); }
    .footer-bottom { flex-direction: column; }
}

@media print {
    .site-header, .site-footer, .button, .demo-notice { display: none !important; }
    .section, .page-hero { padding: 30px 0; color: #000; background: #fff; }
    .card, .price-card, .inquiry-panel { box-shadow: none; break-inside: avoid; }
}
