:root {
  --ink: #163635;
  --ink-2: #244b49;
  --paper: #f6f4ed;
  --paper-2: #ecebe4;
  --white: #fff;
  --lime: #d9ff64;
  --mint: #9adbc3;
  --sage: #dfe9d7;
  --muted: #687b77;
  --line: rgba(22, 54, 53, .14);
  --shadow: 0 28px 70px rgba(20, 54, 52, .12);
  --radius: 24px;
  --container: 1440px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--lime); color: var(--ink); }

.container { width: min(calc(100% - clamp(32px, 4vw, 72px)), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin: 0 auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-sage { background: var(--sage); }
.section-white { background: #fbfaf6; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: var(--lime); }
.display, h1, h2, h3, p { margin-top: 0; }
.display { font-size: clamp(48px, 7vw, 92px); line-height: .98; letter-spacing: -.055em; font-weight: 800; }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: 1.02; letter-spacing: -.045em; }
h2 { font-size: clamp(34px, 4.5vw, 56px); line-height: 1.08; letter-spacing: -.04em; }
h3 { font-size: 22px; line-height: 1.3; }
.lead { max-width: 700px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.section-dark .lead { color: #b9c9c5; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading p { max-width: 430px; margin-bottom: 4px; color: var(--muted); }
.accent { color: #5f780c; }
.section-dark .accent { color: var(--lime); }

.topbar { padding: 8px 0; background: var(--lime); color: #112c2b; font-size: 13px; font-weight: 700; text-align: center; }
.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(246, 244, 237, .9); backdrop-filter: blur(14px); }
.site-header.is-sticky { position: sticky; top: 0; }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; }
.brand img { width: 40px; height: 40px; }
.brand span { display: grid; line-height: 1.04; }
.brand small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav a { padding: 10px 13px; border-radius: 10px; color: #46615e; font-size: 14px; font-weight: 700; transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); background: #e8e8df; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--ink); color: white; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: currentColor; position: relative; transition: .25s; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.nav-open .menu-toggle span { background: transparent; }
.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); background: white; }
.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); background: white; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(22,54,53,.16); }
.btn-primary:hover { background: #24504d; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { box-shadow: 0 12px 30px rgba(217,255,100,.22); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,.55); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(5px); }

.hero { position: relative; overflow: hidden; padding: 70px 0 40px; }
.hero::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(217,255,100,.4); filter: blur(2px); top: -280px; right: -120px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; min-height: 660px; gap: clamp(24px, 3vw, 56px); }
.hero-copy { position: relative; z-index: 2; padding: 40px 0; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy .lead { max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-points span::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%; background: var(--sage); color: var(--ink); }
.hero-visual { position: relative; min-width: 0; margin-right: 0; }
.hero-visual img { width: 100%; filter: drop-shadow(0 36px 50px rgba(20,54,52,.16)); }
.floating-note { position: absolute; left: 6%; bottom: 7%; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); backdrop-filter: blur(10px); font-size: 13px; font-weight: 800; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: #42b883; box-shadow: 0 0 0 6px rgba(66,184,131,.14); }

.trust-strip { padding: 26px 0 48px; }
.trust-row { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-row > span { color: var(--muted); font-size: 13px; font-weight: 700; }
.trust-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 28px; color: #526c68; font-size: 14px; font-weight: 900; letter-spacing: .04em; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 290px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.52); transition: .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(22,54,53,.28); box-shadow: var(--shadow); background: white; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 15px; background: var(--ink); color: var(--lime); font-size: 22px; font-weight: 900; }
.feature-card:nth-child(2n) .icon-box { background: var(--lime); color: var(--ink); }
.feature-card p { color: var(--muted); }
.feature-card .text-link { margin-top: 12px; font-size: 14px; }

.stats-band { position: relative; overflow: hidden; padding: 74px 0; }
.stats-band::after { content: "MES"; position: absolute; right: -25px; bottom: -90px; color: rgba(255,255,255,.035); font-size: 240px; font-weight: 900; letter-spacing: -.1em; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); align-items: center; gap: 40px; }
.stat strong { display: block; color: var(--lime); font-size: clamp(42px, 5vw, 66px); line-height: 1; letter-spacing: -.05em; }
.stat span { color: #b8c9c5; font-size: 14px; }

.process-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 86px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.process-list { counter-reset: process; }
.process-item { counter-increment: process; display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-item:first-child { padding-top: 0; }
.process-item::before { content: "0" counter(process); width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 14px; font-weight: 900; }
.process-item p { margin-bottom: 0; color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.industry-card { position: relative; min-height: 420px; overflow: hidden; border-radius: 24px; color: white; }
.industry-card:nth-child(1), .industry-card:nth-child(4) { grid-column: span 7; }
.industry-card:nth-child(2), .industry-card:nth-child(3) { grid-column: span 5; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.industry-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,24,23,.88)); }
.industry-card:hover img { transform: scale(1.04); }
.industry-content { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; }
.industry-content span { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.industry-content h3 { margin: 5px 0 4px; font-size: 28px; }
.industry-content p { margin: 0; color: #d5dfdc; }

.case-feature { display: grid; grid-template-columns: 1.05fr .95fr; border-radius: 30px; overflow: hidden; background: var(--ink); color: white; }
.case-photo { min-height: 520px; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-copy { padding: clamp(42px, 6vw, 74px); display: flex; flex-direction: column; justify-content: center; }
.case-copy p { color: #b8c9c5; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0 38px; }
.case-metrics strong { display: block; color: var(--lime); font-size: 30px; }
.case-metrics span { color: #93aaa5; font-size: 12px; }

.cta { position: relative; overflow: hidden; padding: 80px clamp(28px, 7vw, 88px); border-radius: 34px; background: var(--lime); }
.cta::after { content: ""; position: absolute; width: 280px; height: 280px; border: 48px solid rgba(22,54,53,.08); border-radius: 50%; right: -80px; top: -120px; }
.cta h2 { position: relative; z-index: 1; max-width: 800px; margin-bottom: 16px; }
.cta p { position: relative; z-index: 1; max-width: 620px; color: #4c5f2c; }
.cta .hero-actions { position: relative; z-index: 1; margin-bottom: 0; }

.site-footer { padding: 72px 0 24px; background: #102d2c; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px; padding-bottom: 56px; }
.site-footer .brand { margin-bottom: 18px; }
.site-footer .brand small { color: #86a09a; }
.footer-intro { max-width: 320px; color: #a9bbb7; font-size: 14px; }
.footer-col h4 { margin: 0 0 18px; color: var(--lime); font-size: 13px; letter-spacing: .08em; }
.footer-col a { display: block; margin: 9px 0; color: #b9c9c5; font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #77928d; font-size: 12px; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--lime); }

.page-hero { position: relative; overflow: hidden; padding: 110px 0 86px; background: var(--ink); color: white; }
.page-hero::after { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 80px solid rgba(217,255,100,.08); right: -100px; top: -200px; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero h1 { max-width: 920px; margin-bottom: 24px; }
.page-hero .lead { color: #b9c9c5; }
.breadcrumb { margin-bottom: 34px; color: #8ca29e; font-size: 13px; font-weight: 700; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { margin: 0 8px; }

.anchor-nav { position: sticky; top: 82px; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(246,244,237,.94); backdrop-filter: blur(14px); }
.anchor-row { display: flex; overflow-x: auto; gap: 6px; padding: 13px 0; scrollbar-width: none; }
.anchor-row::-webkit-scrollbar { display: none; }
.anchor-row a { flex: 0 0 auto; padding: 8px 13px; border-radius: 10px; color: var(--muted); font-size: 13px; font-weight: 800; }
.anchor-row a:hover { background: white; color: var(--ink); }

.module-row { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 150px; }
.module-row:nth-child(even) .module-visual { order: -1; }
.module-copy .number { display: block; margin-bottom: 30px; color: #7c918d; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.module-copy h2 { font-size: clamp(32px,4vw,48px); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { position: relative; padding: 9px 0 9px 32px; color: #4d6662; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 9px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--ink); font-size: 12px; font-weight: 900; }
.module-visual { min-height: 420px; padding: 30px; display: grid; place-items: center; border-radius: 28px; background: var(--sage); }
.fake-ui { width: 100%; max-width: 530px; overflow: hidden; border-radius: 20px; background: white; box-shadow: 0 28px 60px rgba(22,54,53,.14); }
.fake-ui-bar { display: flex; gap: 6px; padding: 15px; border-bottom: 1px solid #e7ebe5; }
.fake-ui-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d8dfd7; }
.fake-ui-body { padding: 24px; }
.fake-ui-title { width: 40%; height: 11px; margin-bottom: 24px; border-radius: 6px; background: var(--ink); }
.fake-ui-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fake-ui-cards i { height: 64px; border-radius: 10px; background: #edf1eb; }
.fake-ui-cards i:nth-child(2) { background: var(--lime); }
.fake-ui-chart { display: flex; align-items: end; gap: 9px; height: 150px; margin-top: 18px; padding: 16px; border-radius: 12px; background: #f5f6f2; }
.fake-ui-chart i { flex: 1; border-radius: 5px 5px 2px 2px; background: var(--ink); }
.fake-ui-chart i:nth-child(1) { height: 36%; }.fake-ui-chart i:nth-child(2) { height: 62%; }.fake-ui-chart i:nth-child(3) { height: 49%; }.fake-ui-chart i:nth-child(4) { height: 82%; background: #a8cc38; }.fake-ui-chart i:nth-child(5) { height: 70%; }.fake-ui-chart i:nth-child(6) { height: 92%; }
.visual-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: start; }
.kanban-col { padding: 13px; border-radius: 13px; background: #f2f4ef; }
.kanban-col b { display: block; margin-bottom: 12px; font-size: 11px; }
.kanban-card { height: 54px; margin-top: 8px; padding: 9px; border-left: 3px solid var(--mint); border-radius: 8px; background: white; box-shadow: 0 4px 14px rgba(22,54,53,.06); }
.kanban-card::before, .kanban-card::after { content: ""; display: block; height: 5px; border-radius: 3px; background: #d8dfd7; }
.kanban-card::after { width: 60%; margin-top: 8px; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; background: white; }
.compare-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { background: #edf0e8; font-size: 13px; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border: 0; }
.yes { color: #4d6d00; font-weight: 900; }
.no { color: #9ca7a4; }

.solution-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; border-radius: 30px; overflow: hidden; background: white; scroll-margin-top: 150px; }
.solution-block + .solution-block { margin-top: 28px; }
.solution-block:nth-child(even) .solution-image { order: 2; }
.solution-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.solution-copy { padding: clamp(38px,6vw,72px); display: flex; flex-direction: column; justify-content: center; }
.solution-copy .tag { align-self: flex-start; padding: 6px 10px; margin-bottom: 20px; border-radius: 20px; background: var(--sage); font-size: 12px; font-weight: 900; }
.solution-copy p { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.12); }
.step { min-height: 220px; padding: 30px; background: var(--ink); }
.step strong { display: block; margin-bottom: 42px; color: var(--lime); font-size: 14px; }
.step p { color: #a9bbb7; font-size: 14px; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { overflow: hidden; border-radius: 24px; background: white; }
.case-card img { width: 100%; height: 230px; object-fit: cover; }
.case-card-body { padding: 26px; }
.case-card .label { color: #668000; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.case-card h3 { margin: 8px 0 12px; }
.case-card p { color: var(--muted); font-size: 14px; }
.mini-metrics { display: flex; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.mini-metrics strong { display: block; font-size: 20px; }
.mini-metrics span { color: var(--muted); font-size: 11px; }
.disclaimer { margin-top: 22px; color: var(--muted); font-size: 12px; }

.quote-panel { padding: clamp(40px,8vw,90px); border-radius: 30px; background: var(--ink); color: white; }
.quote-panel blockquote { max-width: 920px; margin: 0; font-size: clamp(27px,4vw,46px); line-height: 1.3; letter-spacing: -.03em; }
.quote-panel cite { display: block; margin-top: 28px; color: var(--lime); font-style: normal; font-weight: 800; }

.author-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.author-card { position: relative; min-height: 530px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; border-radius: 30px; background: var(--ink); color: white; }
.author-card::before { content: "F"; position: absolute; right: -24px; top: -80px; color: rgba(217,255,100,.12); font-size: 360px; font-weight: 900; line-height: 1; }
.author-avatar { position: relative; width: 150px; height: 150px; display: grid; place-items: center; margin-bottom: auto; border: 3px solid rgba(255,255,255,.18); border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 56px; font-weight: 900; }
.author-card h2 { position: relative; margin: 0 0 4px; }
.author-card p { position: relative; margin: 0; color: #a9bbb7; }
.bio-copy p { color: var(--muted); font-size: 17px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; color: #4a625f; font-size: 13px; font-weight: 800; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 32px; border-radius: 22px; background: white; }
.value-card strong { display: block; margin-bottom: 22px; color: #6b8604; font-size: 13px; letter-spacing: .1em; }
.value-card p { color: var(--muted); margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.contact-aside { position: sticky; top: 130px; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; color: var(--muted); font-size: 12px; }
.contact-item a, .contact-item strong { font-size: 17px; }
.contact-form { padding: 42px; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.form-control { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: #f8f8f4; padding: 13px 15px; color: var(--ink); transition: border .2s, box-shadow .2s; }
.form-control:focus { border-color: #7b9915; box-shadow: 0 0 0 4px rgba(217,255,100,.38); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-message { display: none; margin-top: 16px; padding: 12px 15px; border-radius: 10px; background: var(--sage); font-size: 13px; font-weight: 700; }
.form-message.show { display: block; }
.form-message.is-error { background: #fff0ec; color: #9c3428; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.form-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* 预约管理后台 */
.admin-body { min-height: 100vh; display: flex; flex-direction: column; background: #eef1eb; }
.admin-header { border-bottom: 1px solid var(--line); background: rgba(246,244,237,.94); backdrop-filter: blur(16px); }
.admin-nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.admin-back, .admin-logout, .admin-refresh { border: 0; background: transparent; color: var(--ink); font-size: 13px; font-weight: 800; }
.admin-back:hover, .admin-logout:hover, .admin-refresh:hover { color: #58720a; }
.admin-main { flex: 1; padding-top: clamp(54px, 7vw, 100px); padding-bottom: clamp(70px, 9vw, 120px); }
.admin-login { min-height: 610px; display: grid; grid-template-columns: 1fr minmax(380px, 520px); align-items: center; gap: clamp(60px, 10vw, 160px); }
.admin-login-copy { max-width: 660px; }
.admin-login-copy h1 { font-size: clamp(54px, 7vw, 92px); margin-bottom: 28px; }
.admin-login-copy p { max-width: 560px; color: var(--muted); font-size: 18px; }
.admin-login-card { padding: clamp(30px, 4vw, 48px); border: 1px solid rgba(22,54,53,.08); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.admin-card-head { margin-bottom: 34px; }
.admin-card-head span { display: block; margin-bottom: 5px; color: #6d870f; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.admin-card-head strong { font-size: 28px; }
.admin-submit { width: 100%; margin-top: 4px; }
.admin-submit:disabled, .admin-pagination button:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.admin-dashboard-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 42px; }
.admin-dashboard-head h1 { margin-bottom: 12px; font-size: clamp(44px, 6vw, 72px); }
.admin-dashboard-head p { margin: 0; color: var(--muted); }
.admin-account { flex: 0 0 auto; min-width: 190px; padding: 18px 20px; border-radius: 16px; background: var(--ink); color: white; }
.admin-account span { display: block; color: #8fa8a3; font-size: 11px; }
.admin-account strong { display: block; margin-bottom: 5px; }
.admin-account .admin-logout { padding: 0; color: var(--lime); }
.admin-filters { display: grid; grid-template-columns: minmax(260px, 1fr) 210px auto; align-items: end; gap: 14px; padding: 20px; border-radius: 20px 20px 0 0; background: white; }
.admin-filters label > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 800; }
.admin-list-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-top: 1px solid var(--line); background: white; color: var(--muted); font-size: 13px; }
.admin-list-head strong { color: var(--ink); }
.admin-table-wrap { position: relative; min-height: 250px; overflow-x: auto; border-top: 1px solid var(--line); border-radius: 0 0 20px 20px; background: white; }
.admin-table { width: 100%; min-width: 1050px; border-collapse: collapse; table-layout: fixed; }
.admin-table th { padding: 14px 16px; background: #f7f7f3; color: #657874; font-size: 11px; letter-spacing: .04em; text-align: left; }
.admin-table td { padding: 18px 16px; border-top: 1px solid #edf0ea; color: #405a56; font-size: 13px; vertical-align: top; overflow-wrap: anywhere; }
.admin-table tbody tr:hover { background: #fbfcf8; }
.admin-table th:nth-child(1) { width: 150px; }
.admin-table th:nth-child(2) { width: 210px; }
.admin-table th:nth-child(3) { width: 150px; }
.admin-table th:nth-child(4) { width: 130px; }
.admin-table th:nth-child(6) { width: 95px; }
.admin-table td strong, .admin-table td span { display: block; }
.admin-table td strong { margin-bottom: 3px; color: var(--ink); font-size: 14px; }
.admin-date { color: #71827f !important; font-variant-numeric: tabular-nums; }
.admin-phone { color: var(--ink) !important; font-weight: 800; white-space: nowrap; }
.admin-requirement { white-space: pre-wrap; }
.status-badge { display: inline-flex !important; width: max-content; padding: 5px 9px; border-radius: 99px; font-size: 11px; font-weight: 900; }
.status-new { background: #e8f8a9; color: #526900; }
.status-contacted { background: #e3f2f0; color: #22645b; }
.status-closed { background: #eceeeb; color: #6d7976; }
.admin-empty, .admin-loading { padding: 72px 20px; color: var(--muted); text-align: center; }
.admin-loading { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; background: rgba(255,255,255,.82); backdrop-filter: blur(3px); }
.admin-pagination { display: flex; justify-content: flex-end; align-items: center; gap: 16px; padding-top: 20px; color: var(--muted); font-size: 13px; }
.admin-pagination button { min-width: 78px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink); font-weight: 800; }
.admin-error { margin-left: auto; max-width: 520px; }
.admin-footer { padding: 22px 0; background: var(--ink); color: #8da5a0; font-size: 12px; }
.admin-footer .container { display: flex; justify-content: space-between; gap: 20px; }
.admin-footer a:hover { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .nav-actions .btn { display: none; }
  .main-nav { position: fixed; inset: 123px 20px auto; display: none; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: #fbfaf6; box-shadow: var(--shadow); }
  .nav-open .main-nav { display: grid; }
  .main-nav a { padding: 13px 15px; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: 100%; max-width: 850px; margin: -10px auto 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-intro { grid-column: 1 / -1; }
  .industry-card:nth-child(n) { grid-column: span 6; }
  .case-feature, .solution-block { grid-template-columns: 1fr; }
  .case-photo { min-height: 380px; }
  .solution-block:nth-child(even) .solution-image { order: 0; }
  .solution-image img { min-height: 380px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-col:last-child { grid-column: 2; }
  .admin-login { grid-template-columns: .85fr minmax(360px, 480px); gap: 48px; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 56px 0; }
  .topbar { font-size: 11px; padding-inline: 12px; }
  .nav-wrap { height: 70px; }
  .main-nav { inset: 110px 14px auto; }
  .brand img { width: 36px; height: 36px; }
  .display { font-size: 49px; }
  .hero { padding-top: 44px; }
  .hero-copy { padding-top: 18px; }
  .hero-visual { margin-top: 0; transform: none; }
  .hero-points { display: grid; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .floating-note { left: 2%; bottom: 0; }
  .trust-row { display: block; }
  .trust-list { justify-content: flex-start; gap: 14px 24px; margin-top: 18px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .card-grid, .case-grid, .values-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .stats-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-grid { grid-template-columns: 1fr; gap: 42px; }
  .sticky-copy, .contact-aside { position: static; }
  .process-item { grid-template-columns: 54px 1fr; gap: 14px; }
  .industry-grid { display: block; }
  .industry-card { min-height: 350px; margin-bottom: 14px; }
  .case-metrics { gap: 10px; }
  .case-metrics strong { font-size: 24px; }
  .cta { padding: 54px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin: 5px 0; }
  .page-hero { padding: 76px 0 64px; }
  .page-hero h1 { font-size: 46px; }
  .anchor-nav { top: 70px; }
  .module-row { grid-template-columns: 1fr; gap: 32px; padding: 58px 0; }
  .module-row:nth-child(even) .module-visual { order: 0; }
  .module-visual { min-height: 330px; padding: 16px; }
  .solution-block { min-height: 0; }
  .solution-image img { min-height: 300px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 180px; }
  .case-card:last-child { grid-column: auto; }
  .author-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .author-card { min-height: 450px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .contact-form { padding: 26px 20px; }
  .admin-nav { min-height: 70px; }
  .admin-back span { display: none; }
  .admin-main { padding-top: 54px; }
  .admin-login { min-height: 0; grid-template-columns: 1fr; gap: 36px; }
  .admin-login-copy h1 { font-size: 52px; }
  .admin-login-copy p { font-size: 16px; }
  .admin-dashboard-head { display: block; margin-bottom: 30px; }
  .admin-account { margin-top: 22px; }
  .admin-filters { grid-template-columns: 1fr; }
  .admin-filters .btn { width: 100%; }
  .admin-table-wrap { overflow: visible; background: transparent; }
  .admin-table { min-width: 0; }
  .admin-table thead { display: none; }
  .admin-table tbody, .admin-table tr, .admin-table td { display: block; }
  .admin-table tr { margin-bottom: 14px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 16px; background: white; }
  .admin-table td { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 9px 0; border-top: 1px solid #edf0ea; }
  .admin-table td:first-child { border-top: 0; }
  .admin-table td::before { content: attr(data-label); color: #80908d; font-size: 11px; font-weight: 800; }
  .admin-table tbody tr:hover { background: white; }
  .admin-loading { border-radius: 16px; }
  .admin-pagination { justify-content: space-between; }
  .admin-footer .container { display: block; }
  .admin-footer a { display: block; margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
