:root {
  --blue: #0d8bdc;
  --blue-dark: #0870b5;
  --green: #13a66b;
  --ink: #1d2935;
  --muted: #6c7884;
  --line: #e5ebef;
  --soft: #f5f8fa;
  --white: #ffffff;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 1000; height: 72px; background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--line); }
.header-inner { width: min(calc(100% - 40px), var(--max-width)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-logo { width: 54px; height: 44px; flex: 0 0 auto; display: block; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 20px; color: #147fb9; font-weight: 800; }
.brand-copy small { margin-top: 5px; color: #82909b; font-size: 9px; letter-spacing: 0; }
.main-nav { height: 100%; display: flex; align-items: center; gap: 31px; }
.main-nav a { position: relative; height: 100%; display: grid; place-items: center; color: #596572; font-size: 14px; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 3px; background: var(--blue); transition: left .2s ease, right .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.hero { position: relative; height: 510px; overflow: hidden; background: #030823; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; background-size: cover; background-position: center; transition: opacity .55s ease, visibility .55s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 9, 31, .9) 0%, rgba(2, 9, 31, .65) 37%, rgba(2, 9, 31, .06) 72%); }
.hero-slide-light .hero-overlay { background: linear-gradient(90deg, rgba(10, 20, 27, .88), rgba(10, 20, 27, .49) 48%, rgba(10, 20, 27, .1)); }
.hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.hero-kicker { margin: 0 0 10px; color: #55c7ff; font-size: 13px; font-weight: 700; }
.hero h1 { margin: 0; font-size: 52px; line-height: 1.15; font-weight: 800; letter-spacing: 0; }
.hero h2 { margin: 10px 0 0; font-size: 26px; line-height: 1.35; font-weight: 600; }
.hero-content > p:not(.hero-kicker) { max-width: 620px; margin: 18px 0 0; color: rgba(255, 255, 255, .76); font-size: 16px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.button { min-width: 128px; min-height: 43px; padding: 10px 22px; border: 1px solid transparent; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 600; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .55); }
.button-ghost:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--blue); border-color: var(--blue); }
.hero-arrow { position: absolute; z-index: 3; top: 50%; width: 44px; height: 68px; padding: 0; border: 0; color: #fff; background: rgba(0, 0, 0, .18); font-size: 48px; line-height: 1; transform: translateY(-50%); transition: background .2s; }
.hero-arrow:hover { background: var(--blue); }
.hero-arrow[hidden], .hero-dots[hidden] { display: none; }
.hero-prev { left: 0; }
.hero-next { right: 0; }
.hero-dots { position: absolute; z-index: 3; bottom: 24px; left: 50%; display: flex; gap: 9px; transform: translateX(-50%); }
.hero-dots button { width: 26px; height: 3px; padding: 0; border: 0; background: rgba(255, 255, 255, .38); }
.hero-dots button.active { background: #fff; }

.section { padding: 82px 0; }
.section-heading { margin-bottom: 42px; text-align: center; }
.section-heading p { margin: 0 0 3px; color: var(--blue); font-size: 12px; font-weight: 800; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: 32px; font-weight: 700; }
.section-heading > span { display: block; margin-top: 7px; color: #8b949e; font-size: 14px; }
.home-section-heading div > span { display: block; margin-top: 7px; color: #8b949e; font-size: 14px; }
.section-heading-left { margin-bottom: 24px; text-align: left; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.subject-focus { background: #f4f8fa; }
.subject-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line); }
.subject-grid a { min-height: 150px; padding: 22px 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: var(--ink); background: #fff; transition: transform .2s, color .2s, box-shadow .2s; }
.subject-grid a:hover { z-index: 1; color: var(--blue); transform: translateY(-5px); box-shadow: 0 12px 25px rgba(17, 73, 102, .12); }
.subject-grid b { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 22px; }
.subject-grid a:nth-child(2n) b { background: var(--green); }
.subject-grid a:nth-child(3n) b { background: #d28a17; }
.subject-grid span { font-size: 15px; font-weight: 700; }
.subject-grid small { color: var(--muted); font-size: 10px; }
.service-item { min-width: 0; }
.home-business-grid .service-item > a { display: block; color: inherit; }
.service-preview { height: 168px; position: relative; overflow: hidden; padding: 24px; border: 1px solid #dce8ee; border-radius: 4px; background: #f4f9fc; transition: transform .25s ease, box-shadow .25s ease; }
.service-item:hover .service-preview { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(16, 72, 107, .13); }
.service-item h3 { margin: 22px 0 8px; overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.service-item p { min-height: 46px; max-height: calc(14px * 1.65 * 2); margin: 0; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.text-link { margin-top: 15px; padding: 0; border: 0; background: transparent; color: var(--blue); font-size: 13px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.preview-number { display: block; color: var(--blue); font-size: 31px; font-weight: 800; line-height: 1; }
.service-preview small { color: #84909a; font-size: 11px; }
.question-lines { position: absolute; right: 24px; bottom: 23px; left: 24px; display: grid; gap: 8px; }
.question-lines i { height: 7px; display: block; background: #d7e5eb; border-radius: 2px; }
.question-lines i:nth-child(2) { width: 83%; }
.question-lines i:nth-child(3) { width: 92%; }
.question-lines i:nth-child(4) { width: 68%; background: #8cd7bb; }
.preview-exam { background: #eef9f6; }
.exam-time { display: block; color: var(--green); font-size: 26px; font-weight: 800; }
.exam-progress { height: 4px; margin: 15px 0 22px; background: #d3e7e0; }
.exam-progress i { width: 64%; height: 100%; display: block; background: var(--green); }
.answer-dots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; }
.answer-dots i { aspect-ratio: 1; display: block; border: 1px solid #a9cfc0; border-radius: 3px; }
.answer-dots i:nth-child(-n+4) { border-color: var(--green); background: var(--green); }
.preview-report { display: flex; align-items: center; justify-content: space-between; background: #f8f7fd; }
.score-ring { width: 100px; aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 10px solid #dce7f1; border-top-color: var(--blue); border-right-color: var(--blue); border-radius: 50%; transform: rotate(15deg); }
.score-ring strong, .score-ring small { transform: rotate(-15deg); }
.score-ring strong { color: var(--blue); font-size: 25px; line-height: 1; }
.score-ring small { font-size: 9px; }
.score-bars { width: 70px; height: 83px; display: flex; align-items: flex-end; gap: 7px; }
.score-bars i { width: 11px; height: 42%; background: #a8cbe1; }
.score-bars i:nth-child(2) { height: 72%; background: var(--blue); }
.score-bars i:nth-child(3) { height: 54%; }
.score-bars i:nth-child(4) { height: 88%; background: var(--green); }
.preview-plan { display: flex; gap: 25px; align-items: center; background: #fbf8f2; }
.plan-date { width: 84px; height: 96px; display: grid; place-items: center; align-content: center; color: #fff; background: #e5a434; border-radius: 4px; }
.plan-date strong { font-size: 31px; line-height: 1; }
.plan-date small { color: rgba(255, 255, 255, .85); }
.plan-list { flex: 1; display: grid; gap: 14px; }
.plan-list i { height: 11px; background: #e7decf; border-left: 4px solid #e5a434; }
.plan-list i:nth-child(2) { width: 78%; }
.plan-list i:nth-child(3) { width: 56%; }

.stats { padding: 45px 0; color: #fff; background: #0c2538; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { text-align: center; border-right: 1px solid rgba(255, 255, 255, .14); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; color: #55c7ff; font-size: 31px; line-height: 1.2; }
.stats-grid span { color: rgba(255, 255, 255, .65); font-size: 13px; }

.about { overflow: hidden; background: var(--soft); }
.about-layout { display: block; }
.about-copy { max-width: none; margin: 0; text-align: left; }
.about-copy [data-home-article-body] { max-width: 900px; margin: 0; }
.about-lead { max-height: calc(15px * 1.9 * 5); margin: 0; overflow: hidden; color: var(--muted); font-size: 15px; line-height: 1.9; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; }
.about-lead + .about-lead { margin-top: 14px; }
.about-copy .button { margin-top: 34px; }
.about-points { margin: 28px 0 30px; padding: 0; display: grid; gap: 18px; list-style: none; }
.about-points li { display: flex; gap: 15px; align-items: flex-start; }
.about-points b { width: 36px; color: var(--blue); font-size: 15px; border-bottom: 2px solid var(--blue); }
.about-points span { display: flex; flex-direction: column; }
.about-points strong { font-size: 15px; }
.about-points small { margin-top: 3px; color: #7b8791; font-size: 13px; }
.about-visual { min-height: 414px; overflow: hidden; border: 1px solid #cdd9df; border-radius: 6px; background: #fff; box-shadow: 0 22px 45px rgba(20, 54, 76, .16); transform: perspective(1000px) rotateY(-3deg); }
.visual-topbar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 13px; border-bottom: 1px solid #e8eef1; background: #f7f9fa; }
.visual-topbar i { width: 7px; height: 7px; border-radius: 50%; background: #bdc9cf; }
.visual-topbar i:first-child { background: #ef6a65; }
.visual-topbar i:nth-child(2) { background: #eab952; }
.visual-topbar i:nth-child(3) { background: #55b979; }
.visual-topbar span { margin-left: auto; margin-right: auto; color: #8b969e; font-size: 10px; }
.visual-body { min-height: 376px; display: grid; grid-template-columns: 85px 1fr; }
.visual-body aside { padding: 22px 18px; display: flex; flex-direction: column; gap: 24px; color: #fff; background: #0b263a; }
.visual-body aside strong { color: #48bff5; font-size: 14px; }
.visual-body aside i { height: 7px; border-radius: 1px; background: rgba(255, 255, 255, .2); }
.visual-body aside i:nth-child(2) { background: var(--blue); }
.visual-main { min-width: 0; padding: 25px; }
.visual-title { display: flex; justify-content: space-between; align-items: center; }
.visual-title span { font-size: 15px; font-weight: 700; }
.visual-title small { color: var(--green); font-size: 10px; }
.visual-metrics { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.visual-metrics div { padding: 13px; border: 1px solid #e7edf0; border-radius: 3px; }
.visual-metrics small { display: block; color: #8a969f; font-size: 9px; }
.visual-metrics strong { color: var(--blue); font-size: 20px; }
.visual-chart { margin-top: 16px; padding: 15px; border: 1px solid #e7edf0; }
.visual-chart > span { font-size: 10px; font-weight: 700; }
.chart-bars { height: 95px; margin-top: 10px; display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid #dde5e9; }
.chart-bars i { flex: 1; height: 34%; background: #a5d9f2; }
.chart-bars i:nth-child(2) { height: 53%; }
.chart-bars i:nth-child(3) { height: 45%; }
.chart-bars i:nth-child(4) { height: 69%; background: var(--blue); }
.chart-bars i:nth-child(5) { height: 61%; }
.chart-bars i:nth-child(6) { height: 80%; background: var(--green); }
.chart-bars i:nth-child(7) { height: 92%; background: var(--blue); }
.visual-bottom { margin-top: 12px; display: grid; grid-template-columns: 1fr 90px; gap: 12px; }
.visual-bottom > div { min-height: 66px; padding: 11px; border: 1px solid #e7edf0; }
.visual-bottom span { display: block; font-size: 9px; }
.visual-bottom i { width: 75%; height: 4px; margin-top: 7px; display: block; background: #d7e4e9; }
.visual-bottom i:nth-of-type(2) { width: 54%; background: #f0b551; }
.visual-bottom i:nth-of-type(3) { width: 42%; background: var(--green); }
.visual-bottom .visual-ring { padding: 0; display: grid; place-items: center; color: var(--blue); border: 9px solid #e3edf2; border-top-color: var(--blue); border-radius: 50%; }

.cases { background: #fff; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-grid article { min-height: 250px; padding: 34px; position: relative; overflow: hidden; border: 1px solid var(--line); border-top: 4px solid var(--blue); border-radius: 4px; }
.case-grid article:nth-child(2) { border-top-color: var(--green); }
.case-grid article:nth-child(3) { border-top-color: #e5a434; }
.case-grid article > strong { color: var(--blue); font-size: 37px; }
.case-grid article:nth-child(2) > strong { color: var(--green); }
.case-grid article:nth-child(3) > strong { color: #d28a17; }
.case-grid h3 { margin: 8px 0; font-size: 18px; }
.case-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.case-grid article > span { position: absolute; right: 25px; bottom: 22px; color: #99a2aa; font-size: 11px; }

.news { background: var(--soft); }
.news-heading { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; }
.news-heading a { padding-bottom: 6px; color: var(--muted); font-size: 13px; border-bottom: 1px solid #b8c1c7; }
.news-list { border-top: 1px solid #dce4e8; }
.news-list article { min-height: 145px; padding: 26px 0; display: grid; grid-template-columns: 90px 1fr 48px; gap: 28px; align-items: center; border-bottom: 1px solid #dce4e8; }
.news-list time { display: flex; flex-direction: column; color: var(--muted); }
.news-list time strong { color: var(--ink); font-size: 31px; line-height: 1; }
.news-list time span { margin-top: 7px; font-size: 11px; }
.news-list em { color: var(--blue); font-size: 11px; font-style: normal; }
.news-list h3 { margin: 3px 0 5px; font-size: 17px; }
.news-list p { margin: 0; color: var(--muted); font-size: 13px; }
.news-button { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #cdd7dc; border-radius: 50%; color: var(--muted); background: transparent; transition: background .2s, color .2s, border-color .2s; }
.news-button:hover { color: #fff; border-color: var(--blue); background: var(--blue); }

.floating-tools { position: fixed; z-index: 900; right: 18px; top: 50%; width: 68px; box-shadow: 0 8px 24px rgba(0, 51, 84, .2); transform: translateY(-50%); }
.floating-tools button { width: 68px; height: 64px; padding: 5px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .24); color: #fff; background: var(--blue); }
.floating-tools button:hover { background: var(--blue-dark); }
.floating-tools b { font-size: 18px; line-height: 1.1; }
.floating-tools span { margin-top: 3px; font-size: 10px; }

.site-footer { color: #fff; background: #0c2538; }
.footer-main { padding: 60px 0; display: grid; grid-template-columns: 1.2fr .7fr .7fr 1.4fr; gap: 45px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255, 255, 255, .45); }
.footer-brand > p { margin: 18px 0 25px; color: rgba(255, 255, 255, .56); font-size: 13px; }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact span, .footer-contact small { color: rgba(255, 255, 255, .5); font-size: 11px; }
.footer-contact strong { color: #55c7ff; font-size: 23px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3, .contact-form h3 { margin: 0 0 12px; font-size: 15px; }
.footer-links a { color: rgba(255, 255, 255, .55); font-size: 12px; }
.footer-links a:hover { color: #55c7ff; }
.contact-form { min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form input, .contact-form textarea, .consult-dialog input, .consult-dialog textarea { width: 100%; padding: 11px 13px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 3px; outline: 0; color: #fff; background: rgba(255, 255, 255, .06); }
.contact-form textarea { margin: 10px 0; resize: vertical; }
.contact-form .form-row + .button { margin-top: 10px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #55c7ff; }
.contact-form .button { min-height: 40px; }
.footer-bottom { padding: 17px 0; border-top: 1px solid rgba(255, 255, 255, .09); background: #081d2d; }
.footer-bottom .container { display: flex; justify-content: space-between; color: rgba(255, 255, 255, .4); font-size: 11px; }

.toast { position: fixed; z-index: 1300; left: 50%; bottom: 28px; max-width: min(420px, calc(100% - 40px)); padding: 12px 18px; opacity: 0; visibility: hidden; color: #fff; background: rgba(16, 35, 49, .96); border-radius: 4px; font-size: 13px; transform: translate(-50%, 15px); transition: opacity .2s, transform .2s, visibility .2s; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.consult-dialog { width: min(450px, calc(100% - 32px)); padding: 35px; border: 0; border-radius: 6px; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.consult-dialog::backdrop { background: rgba(1, 13, 24, .68); }
.consult-dialog > p { margin: 0; color: var(--blue); font-size: 11px; font-weight: 800; }
.consult-dialog h2 { margin: 3px 0 4px; }
.consult-dialog > span { color: var(--muted); font-size: 13px; }
.consult-dialog form { margin-top: 20px; display: grid; gap: 10px; }
.consult-dialog input, .consult-dialog textarea { color: var(--ink); border-color: var(--line); background: var(--soft); resize: vertical; }
.dialog-close { position: absolute; top: 10px; right: 12px; width: 35px; height: 35px; padding: 0; border: 0; color: var(--muted); background: transparent; font-size: 25px; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 13px; }
  .brand-copy strong { font-size: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .subject-grid { grid-template-columns: repeat(4, 1fr); }
  .service-item p { min-height: auto; }
  .about-layout { gap: 38px; }
  .footer-main { grid-template-columns: 1.2fr .7fr .7fr; }
  .contact-form { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-header { height: 64px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 64px; right: 0; bottom: 0; width: min(320px, 86vw); height: auto; padding: 22px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: #fff; box-shadow: -15px 25px 40px rgba(10, 35, 50, .18); transform: translateX(105%); transition: transform .25s; }
  .main-nav::before { content: "导航"; padding: 5px 0 16px; color: #98a2aa; font-size: 12px; }
  .main-nav a { height: 50px; display: flex; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .menu-open .main-nav { transform: translateX(0); }
  .menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { height: 490px; }
  .hero h1 { font-size: 42px; }
  .hero h2 { font-size: 22px; }
  .hero-content > p:not(.hero-kicker) { max-width: 520px; font-size: 14px; }
  .section { padding: 68px 0; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; transform: none; }
  .case-grid { grid-template-columns: 1fr; }
  .stats-grid strong { font-size: 25px; }
  .floating-tools { right: 10px; width: 50px; }
  .floating-tools button { width: 50px; height: 52px; }
  .floating-tools span { display: none; }
}

@media (max-width: 600px) {
  .container, .header-inner { width: min(calc(100% - 30px), var(--max-width)); }
  .brand-logo { width: 47px; height: 39px; }
  .brand-copy strong { font-size: 17px; }
  .hero { height: 485px; }
  .hero-slide { background-position: 62% center; }
  .hero-slide-light { background-position: 64% center; }
  .hero-overlay, .hero-slide-light .hero-overlay { background: linear-gradient(90deg, rgba(2, 9, 25, .94), rgba(2, 9, 25, .66) 72%, rgba(2, 9, 25, .35)); }
  .hero h1 { font-size: 36px; }
  .hero h2 { max-width: 290px; font-size: 19px; }
  .hero-content > p:not(.hero-kicker) { max-width: 310px; }
  .hero-actions { margin-top: 23px; }
  .button { min-width: 112px; padding: 9px 15px; }
  .hero-arrow { width: 34px; height: 52px; font-size: 36px; }
  .hero-arrow { display: none; }
  .section { padding: 58px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 27px; }
  .service-grid { grid-template-columns: 1fr; }
  .subject-grid { grid-template-columns: repeat(2, 1fr); }
  .service-preview { height: 190px; }
  .stats { padding: 30px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 25px 0; }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .stats-grid strong { font-size: 24px; }
  .about-layout { gap: 30px; }
  .about-visual { min-height: 338px; }
  .visual-body { min-height: 300px; grid-template-columns: 53px 1fr; }
  .visual-body aside { padding: 18px 11px; }
  .visual-body aside strong { font-size: 10px; }
  .visual-main { padding: 16px; }
  .visual-metrics div { padding: 9px; }
  .visual-metrics strong { font-size: 16px; }
  .chart-bars { gap: 7px; }
  .news-heading { align-items: flex-start; }
  .news-heading a { margin-top: 8px; }
  .news-list article { grid-template-columns: 62px 1fr; gap: 15px; }
  .news-button { display: none; }
  .news-list p { display: none; }
  .floating-tools { top: auto; right: 10px; bottom: 14px; transform: none; box-shadow: none; }
  .floating-tools button:not(:last-child) { display: none; }
  .floating-tools button:last-child { border-radius: 4px; box-shadow: 0 8px 20px rgba(0, 70, 115, .25); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand, .contact-form { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom .container { gap: 6px; flex-direction: column; }
  .consult-dialog { padding: 30px 22px 24px; }
}

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

/* Shared inner pages */
.inner-page { background: #fff; }
.page-hero { min-height: 238px; position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; background-color: #08283b; background-image: url('assets/hero-tech.jpg'); background-size: cover; background-position: center 45%; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 34, 52, .94), rgba(3, 61, 86, .76) 52%, rgba(6, 83, 112, .42)); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content p { margin: 0 0 5px; color: #55c7ff; font-size: 12px; font-weight: 800; }
.page-hero-content h1 { margin: 0; font-size: 34px; line-height: 1.3; }
.page-hero-content span { display: block; max-width: 650px; margin-top: 10px; color: rgba(255, 255, 255, .72); font-size: 14px; }
.breadcrumb-bar { border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumb { min-height: 52px; display: flex; align-items: center; justify-content: flex-end; color: #8b969f; font-size: 12px; }
.breadcrumb a { color: var(--blue); }
.page-section { padding: 72px 0; }
.page-section-soft { background: var(--soft); }
.page-title { margin-bottom: 35px; }
.page-title p { margin: 0 0 3px; color: var(--blue); font-size: 11px; font-weight: 800; }
.page-title h2 { margin: 0; font-size: 29px; }
.page-title span { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; }
.page-title-center { text-align: center; }

.intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.rich-content-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
.rich-copy { color: var(--muted); font-size: 14px; line-height: 1.95; }
.rich-copy .page-title { color: var(--ink); }
.rich-copy p { margin: 0 0 16px; }
.rich-copy strong { color: var(--ink); }
.rich-copy h3 { margin: 25px 0 10px; color: var(--ink); font-size: 18px; }
.rich-copy ul { margin: 0 0 20px; padding: 0; list-style: none; }
.rich-copy li { margin: 8px 0; padding-left: 18px; position: relative; }
.rich-copy li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
.rich-media { margin: 0; position: relative; }
.rich-media img { width: 100%; min-height: 390px; display: block; object-fit: cover; }
.rich-media figcaption { padding: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.rich-media-note { position: absolute; right: 20px; bottom: 54px; padding: 14px 17px; display: flex; align-items: center; gap: 10px; color: #fff; background: rgba(6, 38, 58, .9); }
.rich-media-note strong { font-size: 33px; line-height: 1; }
.rich-media-note span { font-size: 11px; line-height: 1.5; }
.news-detail-page { max-width: 920px; margin: 0 auto; }
.news-detail-page > img { width: 100%; max-height: 420px; display: block; object-fit: cover; }
.article-dialog-content > img { width: 100%; max-height: 270px; display: block; object-fit: cover; }
.article-detail-head { padding: 10px 0 24px; }
.article-detail-head p { margin: 0 0 5px; color: var(--blue); font-size: 11px; font-weight: 800; }
.article-detail-head h2 { margin: 0 0 7px; color: var(--ink); font-size: 28px; }
.article-detail-head span { color: var(--muted); font-size: 13px; }
.rich-article-body { color: var(--muted); font-size: 14px; line-height: 1.9; }
.rich-article-body p { margin: 20px 0; }
.rich-article-body strong { color: var(--ink); }
.rich-article-body h3 { margin: 25px 0 8px; color: var(--ink); font-size: 17px; }
.rich-article-body ul, .rich-article-body ol { margin: 0; padding-left: 22px; }
.rich-article-body li { margin: 7px 0; }
.intro-copy > p { margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 2; }
.intro-visual { min-height: 360px; position: relative; overflow: hidden; padding: 42px; color: #fff; background: #0b263a; border-radius: 6px; }
.intro-visual::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: url('assets/hero-tech.jpg'); background-size: cover; background-position: center; }
.intro-visual > * { position: relative; z-index: 1; }
.intro-visual > span { color: #55c7ff; font-size: 11px; font-weight: 700; }
.intro-visual h3 { max-width: 330px; margin: 8px 0 36px; font-size: 27px; line-height: 1.5; }
.intro-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .16); }
.intro-metrics div { padding: 18px 12px; background: rgba(5, 32, 48, .78); }
.intro-metrics strong { display: block; color: #55c7ff; font-size: 24px; }
.intro-metrics small { color: rgba(255, 255, 255, .65); font-size: 10px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.value-grid article { padding: 28px 24px; border-top: 3px solid var(--blue); background: #fff; }
.value-grid article:nth-child(2) { border-top-color: var(--green); }
.value-grid article:nth-child(3) { border-top-color: #e5a434; }
.value-grid article:nth-child(4) { border-top-color: #657a89; }
.value-grid b { color: #a4afb6; font-size: 13px; }
.value-grid h3 { margin: 15px 0 7px; font-size: 17px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); }
.timeline article { min-height: 145px; padding: 25px; border-left: 1px solid var(--line); }
.timeline article:last-child { border-right: 1px solid var(--line); }
.timeline strong { color: var(--blue); font-size: 25px; }
.timeline h3 { margin: 8px 0 5px; font-size: 15px; }
.timeline p { margin: 0; color: var(--muted); font-size: 12px; }

.filter-bar { margin-bottom: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.filter-bar button { min-height: 38px; padding: 8px 20px; border: 1px solid var(--line); border-radius: 3px; color: var(--muted); background: #fff; }
.filter-bar button:hover, .filter-bar button.active { color: #fff; border-color: var(--blue); background: var(--blue); }
.bank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bank-card { min-height: 245px; padding: 27px; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.bank-card[hidden] { display: none; }
.bank-card-top { display: flex; align-items: center; justify-content: space-between; }
.bank-card-top b { color: var(--blue); font-size: 12px; }
.bank-card-top span { padding: 3px 8px; color: var(--green); background: #eaf8f2; font-size: 10px; }
.bank-card h3 { margin: 18px 0 7px; font-size: 18px; }
.bank-card > p { min-height: 48px; margin: 0; color: var(--muted); font-size: 13px; }
.bank-progress { height: 5px; margin: 22px 0 8px; overflow: hidden; background: #e8eff2; }
.bank-progress i { height: 100%; display: block; background: var(--blue); }
.bank-meta { display: flex; justify-content: space-between; color: #8a969f; font-size: 11px; }
.bank-card .button { width: 100%; margin-top: 18px; }
.study-plan-band { padding: 46px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 55px; align-items: center; color: #fff; background: #0c2538; border-radius: 6px; }
.study-plan-band h2 { margin: 3px 0 8px; font-size: 28px; }
.study-plan-band p { margin: 0; color: rgba(255, 255, 255, .62); }
.plan-steps { display: grid; gap: 12px; }
.plan-steps div { padding: 12px 15px; display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, .08); }
.plan-steps b { width: 26px; color: #55c7ff; }
.plan-steps span { font-size: 13px; }

.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exam-card { min-height: 280px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.exam-card-head { min-height: 98px; padding: 22px 25px; color: #fff; background: #0c536f; }
.exam-card:nth-child(2) .exam-card-head { background: #107f64; }
.exam-card:nth-child(3) .exam-card-head { background: #815b20; }
.exam-card:nth-child(4) .exam-card-head { background: #555f79; }
.exam-card:nth-child(5) .exam-card-head { background: #146b9e; }
.exam-card:nth-child(6) .exam-card-head { background: #365847; }
.exam-card-head span { font-size: 10px; opacity: .72; }
.exam-card-head h3 { margin: 4px 0 0; font-size: 18px; }
.exam-card-body { padding: 22px 25px; }
.exam-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.exam-info div { display: flex; flex-direction: column; }
.exam-info strong { font-size: 15px; }
.exam-info small { color: #95a0a7; font-size: 10px; }
.exam-card-body p { min-height: 42px; margin: 17px 0; color: var(--muted); font-size: 12px; }
.exam-card-body .button { width: 100%; }
.exam-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.exam-flow div { min-height: 130px; padding: 25px; background: #fff; }
.exam-flow b { color: var(--blue); font-size: 24px; }
.exam-flow h3 { margin: 8px 0 4px; font-size: 15px; }
.exam-flow p { margin: 0; color: var(--muted); font-size: 12px; }

.result-overview { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: center; }
.result-score { min-height: 340px; display: grid; place-items: center; align-content: center; color: #fff; background: #0c2538; border-radius: 6px; }
.result-score strong { font-size: 76px; line-height: 1; }
.result-score span { color: #55c7ff; font-size: 13px; }
.result-score small { margin-top: 12px; color: rgba(255, 255, 255, .55); }
.result-dimensions { display: grid; gap: 22px; }
.dimension-row { display: grid; grid-template-columns: 95px 1fr 45px; gap: 15px; align-items: center; }
.dimension-row span { font-size: 13px; }
.dimension-row div { height: 8px; overflow: hidden; background: #e8eff2; }
.dimension-row i { height: 100%; display: block; background: var(--blue); }
.dimension-row:nth-child(2) i { background: var(--green); }
.dimension-row:nth-child(3) i { background: #e5a434; }
.dimension-row:nth-child(4) i { background: #657a89; }
.dimension-row b { color: var(--muted); font-size: 12px; }
.achievement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.achievement-grid article { min-height: 235px; padding: 30px; border: 1px solid var(--line); border-radius: 4px; }
.achievement-grid > article > b { color: var(--blue); font-size: 38px; }
.achievement-grid h3 { margin: 5px 0 8px; font-size: 17px; }
.achievement-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.achievement-grid span { margin-top: 25px; display: block; color: var(--green); font-size: 11px; }

.student-page-hero { background-image: linear-gradient(90deg, rgba(4, 24, 39, .88), rgba(4, 24, 39, .35)), url('assets/hero-sprint.jpg'); background-position: center 46%; }
.featured-student { display: grid; grid-template-columns: .95fr 1.05fr; gap: 46px; align-items: stretch; }
.featured-student-photo { min-height: 410px; padding: 26px; display: flex; align-items: flex-end; color: #fff; background: linear-gradient(180deg, transparent 48%, rgba(4, 24, 39, .78)), url('assets/hero-sprint.jpg') center / cover; }
.featured-student-photo span { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .45); font-size: 12px; letter-spacing: .04em; }
.featured-student-copy { padding: 18px 0; }
.student-heading { display: flex; align-items: center; gap: 15px; }
.student-heading > div:last-child > span { color: var(--blue); font-size: 11px; }
.student-heading h2 { margin: 4px 0 0; font-size: 30px; }
.student-avatar { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 22px; font-weight: 700; }
.student-avatar-blue { background: var(--blue); }
.student-avatar-green { background: var(--green); }
.student-avatar-gold { background: #d28a17; }
.featured-student-copy blockquote { margin: 30px 0 18px; padding-left: 18px; border-left: 3px solid var(--blue); color: var(--ink); font-size: 19px; line-height: 1.7; }
.featured-student-copy > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.student-metrics { margin-top: 32px; padding-top: 23px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.student-metrics div { display: flex; flex-direction: column; gap: 5px; }
.student-metrics strong { color: var(--blue); font-size: 30px; line-height: 1; }
.student-metrics span { color: var(--muted); font-size: 11px; }
.student-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.student-grid article { min-height: 245px; padding: 24px; border: 1px solid var(--line); background: #fff; }
.student-card-top { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: center; }
.student-card-top h3 { margin: 0 0 3px; font-size: 16px; }
.student-card-top span { color: var(--muted); font-size: 11px; }
.student-card-top > b { grid-column: 1 / -1; color: var(--blue); font-size: 18px; }
.student-grid article:nth-child(2) .student-card-top > b { color: var(--green); }
.student-grid article:nth-child(3) .student-card-top > b { color: #d28a17; }
.student-grid article:nth-child(4) .student-card-top > b { color: #657a89; }
.student-grid article > p { min-height: 70px; margin: 21px 0 16px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.student-card-meta { padding-top: 13px; display: flex; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); color: #95a0a7; font-size: 10px; }
.student-card-meta strong { color: var(--green); font-weight: 500; }
.success-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.success-methods article { min-height: 160px; padding: 26px; background: #fff; }
.success-methods b { color: var(--blue); font-size: 25px; }
.success-methods h3 { margin: 8px 0 6px; font-size: 16px; }
.success-methods p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.student-cta { background: #eff7fa; }

.news-page-list { border-top: 1px solid var(--line); }
.news-page-item { min-height: 165px; padding: 28px 0; display: grid; grid-template-columns: 92px 1fr 120px; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); }
.news-page-item[hidden] { display: none; }
.news-page-item time { color: #8a969f; }
.news-page-item time strong { display: block; color: var(--ink); font-size: 32px; line-height: 1; }
.news-page-item time span { font-size: 11px; }
.news-page-item em { color: var(--blue); font-size: 11px; font-style: normal; }
.news-page-item h2 { margin: 3px 0 7px; font-size: 18px; }
.news-page-item p { margin: 0; color: var(--muted); font-size: 13px; }
.news-page-item .button { min-width: 108px; color: var(--blue); border-color: #b8cbd7; background: transparent; }
.news-page-item .button:hover { color: #fff; background: var(--blue); }

.case-list-main { background: #fff; }
.case-location { padding: 22px 0 0; color: #8a9098; font-size: 13px; text-align: right; }
.case-location a { color: #6f7780; }
.case-location a:hover { color: var(--blue); }
.case-list-section { min-height: 380px; padding: 32px 0 72px; }
.business-case-list { display: grid; grid-template-columns: repeat(3, 256px); gap: 44px 52px; align-items: start; }
.business-case-card { width: 256px; display: block; text-align: center; color: var(--ink); }
.business-case-card:hover strong { color: var(--blue); }
.business-case-thumb { width: 256px; height: 196px; display: block; overflow: hidden; background: #f7f9fb; }
.business-case-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .25s ease; }
.business-case-card:hover img { transform: scale(1.035); }
.business-case-card strong { display: block; margin-top: 12px; overflow: hidden; font-size: 16px; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; transition: color .2s ease; }
.pagination { margin-top: 36px; display: flex; justify-content: center; align-items: center; gap: 0; }
.pagination a, .pagination span { min-width: 42px; height: 34px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #d6dde4; border-right: 0; color: #0785bd; background: #fff; font-size: 14px; }
.pagination a:last-child, .pagination span:last-child { border-right: 1px solid #d6dde4; }
.pagination .active { color: #fff; background: #12a9bd; border-color: #12a9bd; }
.empty-state { width: 100%; min-height: 180px; grid-column: 1 / -1; display: grid; place-items: center; color: #8a969f; border: 1px solid var(--line); background: #fff; font-size: 14px; }
.empty-state::before { content: ""; width: 34px; height: 3px; margin-bottom: -52px; display: block; background: #dce5ea; }

.contact-page-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; }
.contact-details { display: grid; gap: 1px; background: var(--line); }
.contact-details div { min-height: 95px; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.contact-details span { color: #8a969f; font-size: 11px; }
.contact-details strong { margin-top: 4px; font-size: 17px; }
.contact-qrcode { margin-top: 25px; display: flex; align-items: center; gap: 15px; color: var(--muted); font-size: 12px; }
.contact-qrcode img { width: 92px; height: 92px; display: block; object-fit: cover; border: 1px solid var(--line); }
.page-contact-form { padding: 35px; background: var(--soft); }
.page-contact-form h2 { margin: 0 0 5px; }
.page-contact-form > p { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.page-contact-form input, .page-contact-form textarea { width: 100%; margin-bottom: 12px; padding: 13px 14px; border: 1px solid #dce5e9; border-radius: 3px; outline: none; background: #fff; resize: vertical; }
.page-contact-form input:focus, .page-contact-form textarea:focus { border-color: var(--blue); }
.page-contact-form .button { width: 100%; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.support-grid article { min-height: 185px; padding: 30px; border: 1px solid var(--line); text-align: center; }
.support-grid b { width: 48px; height: 48px; margin: 0 auto 15px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; }
.support-grid article:nth-child(2) b { background: var(--green); }
.support-grid article:nth-child(3) b { background: #e5a434; }
.support-grid h3 { margin: 0 0 7px; font-size: 16px; }
.support-grid p { margin: 0; color: var(--muted); font-size: 12px; }

@media (max-width: 900px) {
  .intro-layout, .rich-content-layout, .contact-page-layout, .result-overview, .featured-student { grid-template-columns: 1fr; }
  .value-grid, .timeline, .exam-flow, .success-methods { grid-template-columns: repeat(2, 1fr); }
  .student-grid { grid-template-columns: repeat(2, 1fr); }
  .bank-grid, .exam-grid { grid-template-columns: repeat(2, 1fr); }
  .study-plan-band { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { min-height: 210px; background-position: 58% center; }
  .page-hero-content h1 { font-size: 29px; }
  .breadcrumb { justify-content: flex-start; }
  .page-section { padding: 54px 0; }
  .intro-layout, .rich-content-layout { gap: 35px; }
  .intro-visual { min-height: 320px; padding: 28px; }
  .intro-visual h3 { font-size: 23px; }
  .value-grid, .timeline, .bank-grid, .exam-grid, .exam-flow, .achievement-grid, .support-grid, .student-grid, .success-methods { grid-template-columns: 1fr; }
  .timeline article:last-child { border-right: 0; }
  .study-plan-band { padding: 30px 24px; gap: 30px; }
  .news-page-item { grid-template-columns: 58px 1fr; gap: 15px; }
  .news-page-item .button { min-width: 0; padding: 7px 12px; grid-column: 2; justify-self: start; }
  .news-page-item p { display: none; }
  .case-location { text-align: left; }
  .business-case-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .business-case-card { width: 100%; }
  .business-case-thumb { width: 100%; height: auto; aspect-ratio: 256 / 196; }
  .pagination { flex-wrap: wrap; }
  .contact-page-layout { gap: 35px; }
  .page-contact-form { padding: 26px 20px; }
  .dimension-row { grid-template-columns: 75px 1fr 38px; gap: 9px; }
  .rich-media img { min-height: 260px; }
  .rich-media-note { right: 12px; bottom: 48px; }
  .article-detail-head h2 { font-size: 22px; }
  .featured-student-photo { min-height: 280px; }
  .featured-student-copy blockquote { font-size: 16px; }
}

/* Mobile guardrails: keep every page usable on narrow touch screens. */
@media (max-width: 600px) {
  html, body { overflow-x: hidden; }
  img, video, iframe { max-width: 100%; }
  .header-inner { gap: 12px; }
  .brand { min-width: 0; }
  .brand-copy { min-width: 0; }
  .brand-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-content { padding-right: 8px; padding-left: 8px; }
  .hero-actions { width: 100%; flex-wrap: wrap; }
  .hero-actions .button { flex: 1 1 112px; }
  .section-heading h2, .page-title h2 { line-height: 1.35; }
  .subject-grid a { min-height: 132px; padding-right: 8px; padding-left: 8px; text-align: center; }
  .subject-grid span, .subject-grid small { overflow-wrap: anywhere; }
  .about-points li { gap: 10px; }
  .about-points b { flex: 0 0 30px; }
  .visual-title { gap: 10px; }
  .visual-title span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .footer-brand, .footer-links, .contact-form { min-width: 0; }
  .footer-links a, .footer-contact strong { overflow-wrap: anywhere; }
  .page-hero-content span { max-width: none; }
  .breadcrumb { overflow-wrap: anywhere; }
  .page-title span, .contact-details strong { overflow-wrap: anywhere; }
  .contact-qrcode { align-items: flex-start; }
  .contact-qrcode span { min-width: 0; }
  .filter-bar button { flex: 1 1 auto; }
  .news-page-item h2 { overflow-wrap: anywhere; }
  .news-detail-page { min-width: 0; }
  .rich-article-body, .rich-copy { overflow-wrap: anywhere; }
  .study-plan-band { min-width: 0; }
  .plan-steps span { min-width: 0; overflow-wrap: anywhere; }
  .dimension-row { min-width: 0; }
  .dimension-row span, .dimension-row b { overflow-wrap: anywhere; }
}

@media (max-width: 380px) {
  .container, .header-inner { width: calc(100% - 24px); }
  .brand-logo { width: 43px; height: 37px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { display: none; }
  .menu-toggle { width: 38px; height: 38px; padding: 8px; }
  .hero { height: 510px; }
  .hero h1 { font-size: 32px; }
  .hero h2 { font-size: 18px; }
  .hero-content > p:not(.hero-kicker) { font-size: 13px; }
  .hero-actions .button { flex-basis: 100%; }
  .section, .page-section { padding-top: 48px; padding-bottom: 48px; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2 { font-size: 24px; }
  .service-preview { height: 176px; }
  .stats-grid { gap: 20px 0; }
  .visual-metrics { gap: 6px; }
  .visual-metrics div { padding: 7px; }
  .visual-metrics strong { font-size: 14px; }
  .page-hero-content h1 { font-size: 26px; }
  .page-title h2 { font-size: 24px; }
  .intro-visual { min-height: 300px; padding: 24px; }
  .intro-visual h3 { margin-bottom: 26px; font-size: 22px; }
  .intro-metrics strong { font-size: 20px; }
  .study-plan-band { padding: 26px 18px; }
  .study-plan-band h2 { font-size: 24px; }
  .news-page-item { grid-template-columns: 48px minmax(0, 1fr); gap: 12px; }
  .news-page-item time strong { font-size: 27px; }
  .news-page-item .button { padding-right: 10px; padding-left: 10px; }
  .case-list-section { padding-top: 28px; padding-bottom: 54px; }
  .business-case-list { grid-template-columns: 1fr; }
  .business-case-card strong { font-size: 15px; }
  .pagination a, .pagination span { min-width: 38px; height: 32px; padding: 0 10px; font-size: 13px; }
  .dimension-row { grid-template-columns: 66px minmax(0, 1fr) 34px; gap: 7px; }
  .page-contact-form { padding: 22px 16px; }
  .consult-dialog { width: calc(100% - 24px); padding-right: 18px; padding-left: 18px; }
}
