:root {
  --ink: #17202d;
  --muted: #687386;
  --line: #dce2e9;
  --soft: #f4f6f8;
  --panel: #ffffff;
  --blue: #2468dc;
  --blue-dark: #174fae;
  --green: #1c9666;
  --amber: #d98a20;
  --red: #dc4f52;
  --navy: #171d28;
  --max: 1240px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--ink); letter-spacing: 0; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.site-header { position: sticky; top: 0; z-index: 80; border-bottom: 1px solid rgba(220,226,233,.86); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.header-inner { display: flex; width: min(var(--max), calc(100% - 40px)); height: 68px; align-items: center; justify-content: space-between; gap: 24px; margin: 0 auto; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; font-weight: 800; }
.brand small { margin-top: 2px; color: #8791a0; font-size: 9px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; color: #4d5869; font-size: 13px; }
.desktop-nav a { position: relative; padding: 24px 0; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 16px; left: 0; height: 2px; background: var(--blue); content: ""; transform: scaleX(0); transition: transform .18s ease; }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.text-link { color: #4d5869; font-size: 12px; }
.text-link:hover { color: var(--blue); }
.mobile-menu-button { display: none; width: 38px; height: 38px; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.mobile-menu-button svg { width: 21px; }
.mobile-nav { display: none; width: 100%; padding: 10px 20px 18px; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav a { display: block; padding: 10px 4px; color: #4d5869; font-size: 13px; }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border: 1px solid transparent; border-radius: 6px; font-size: 13px; font-weight: 750; transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease; }
.button:hover { transform: translateY(-1px); }
.button svg { width: 17px; height: 17px; }
.button-compact { min-height: 38px; padding: 0 15px; font-size: 12px; }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 24px rgba(36,104,220,.2); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { border-color: #cbd4df; background: #fff; color: #273244; }
.button-secondary:hover { border-color: #9eabbc; background: #f8f9fb; }
.button-dark { background: var(--navy); color: #fff; }
.button-dark:hover { background: #252d3b; }
.button-light { background: #fff; color: #1c4eaa; }
.button-outline-light { border-color: rgba(255,255,255,.56); color: #fff; }
.button-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.hero { position: relative; min-height: clamp(650px, 84svh, 790px); overflow: hidden; border-bottom: 1px solid var(--line); background: #f5f7fa; }
.hero-inner { position: relative; display: grid; width: min(var(--max), calc(100% - 40px)); min-height: inherit; grid-template-columns: minmax(360px, 460px) minmax(0, 1fr); align-items: center; gap: 40px; margin: 0 auto; }
.hero-copy { position: relative; z-index: 4; width: auto; padding: 90px 0; }
.product-signal { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #345272; font-size: 11px; font-weight: 750; }
.product-signal span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(28,150,102,.12); }
.hero h1 { max-width: 520px; margin: 0; color: #121a26; font-size: 54px; line-height: 1.12; font-weight: 850; }
.hero-copy > p { max-width: 500px; margin: 24px 0 30px; color: #596678; font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 30px; color: #687386; font-size: 10px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; color: #3c679f; }

.product-stage-shell { position: relative; width: 100%; height: 476px; overflow: hidden; }
.product-stage { width: 900px; height: 580px; overflow: hidden; border: 1px solid #cfd6df; border-radius: 8px; background: #fff; box-shadow: 0 28px 70px rgba(28,38,55,.18); transform: scale(.82) perspective(1500px) rotateY(-3deg) rotateX(1deg); transform-origin: top left; }
.stage-titlebar { display: grid; height: 38px; grid-template-columns: 1fr auto 130px; align-items: center; border-bottom: 1px solid #dce1e7; background: #fff; }
.stage-brand { display: flex; align-items: center; gap: 7px; padding-left: 12px; font-size: 10px; }
.stage-brand img { width: 23px; height: 23px; }
.stage-status { display: flex; align-items: center; gap: 5px; color: #485466; font-size: 8px; }
.stage-status span { width: 6px; height: 6px; border-radius: 50%; background: #2eaf74; }
.stage-window-actions { display: flex; height: 100%; align-items: center; justify-content: space-around; color: #8a93a0; }
.stage-window-actions svg { width: 11px; }
.stage-body { display: grid; height: calc(100% - 38px); grid-template-columns: 46px 208px minmax(350px, 1fr) 224px; }
.stage-rail { display: flex; flex-direction: column; align-items: center; gap: 17px; padding: 18px 0 12px; background: #181e29; color: #8993a4; }
.stage-rail svg { width: 16px; height: 16px; }
.stage-rail svg:first-child { width: 30px; height: 30px; padding: 7px; border-radius: 5px; background: #2468dc; color: #fff; }
.stage-rail .rail-spacer { margin-top: auto; }
.stage-inbox { min-width: 0; overflow: hidden; border-right: 1px solid #e0e4e9; background: #f7f8fa; }
.stage-actions { display: grid; height: 42px; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #e0e4e9; background: #fff; color: #667285; font-size: 8px; }
.stage-actions span { display: grid; place-items: center; border-right: 1px solid #eef0f3; }
.stage-tree-title { display: grid; height: 31px; grid-template-columns: 1fr auto auto; align-items: center; gap: 5px; padding: 0 9px; color: #a45c23; font-size: 8px; }
.stage-tree-title em, .stage-agent em { min-width: 15px; padding: 2px 4px; border-radius: 8px; background: #fce8d7; font-style: normal; text-align: center; }
.stage-tree-title svg, .stage-agent svg { width: 10px; }
.stage-tree-title.visiting { color: #247555; }
.stage-tree-title.visiting em { background: #dff1e8; }
.stage-agent { display: grid; min-height: 33px; grid-template-columns: 8px 1fr auto auto; align-items: center; gap: 5px; padding: 0 9px; border-top: 1px solid #d9dfe6; border-bottom: 1px solid #cdd5df; background: #dce3ec; color: #3b4655; font-size: 8px; }
.stage-agent > span { width: 6px; height: 6px; border-radius: 50%; background: #2eaf74; }
.stage-agent em { background: #c8d1dd; color: #566274; }
.stage-visitor { position: relative; display: grid; min-height: 46px; grid-template-columns: 34px 1fr auto; align-items: center; gap: 5px; padding: 5px 8px; border-bottom: 1px solid #ebedf0; background: #fff; }
.stage-visitor.active { background: #e8f0fe; box-shadow: inset 3px 0 var(--blue); }
.stage-visitor.alerting { background: #fff3d5; }
.stage-visitor.quiet { background: #fbfcfd; }
.stage-visitor > div:nth-child(2) { min-width: 0; }
.stage-visitor strong, .stage-visitor small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stage-visitor strong { font-size: 8px; }
.stage-visitor small { margin-top: 4px; color: #8b94a1; font-size: 7px; }
.stage-visitor > em { display: grid; min-width: 14px; height: 14px; place-items: center; border-radius: 8px; background: #e74e52; color: #fff; font-size: 7px; font-style: normal; }
.visitor-icons { display: flex; align-items: center; gap: 3px; color: #2876d1; }
.visitor-icons svg { width: 14px; }
.visitor-icons b { font-size: 10px; }
.stage-chat { display: grid; min-width: 0; grid-template-rows: 52px minmax(0, 1fr) 86px; background: #f3f5f8; }
.stage-chat > header { display: flex; align-items: center; gap: 8px; padding: 0 12px; border-bottom: 1px solid #e0e4e9; background: #fff; }
.stage-avatar { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #e4ebf6; color: #39618d; font-size: 9px; }
.stage-chat header > div:nth-child(2) { min-width: 0; flex: 1; }
.stage-chat header strong, .stage-chat header small { display: block; }
.stage-chat header strong { font-size: 9px; }
.stage-chat header small { margin-top: 3px; color: #8a94a2; font-size: 7px; }
.stage-chat header button { height: 25px; padding: 0 8px; border: 1px solid #b5d8c8; border-radius: 4px; background: #eff9f4; color: #167a52; font-size: 7px; }
.stage-messages { overflow: hidden; padding: 12px 18px; }
.stage-day { margin-bottom: 13px; color: #9aa2ad; font-size: 6px; text-align: center; }
.stage-message { max-width: 78%; margin-bottom: 11px; }
.stage-message span { display: block; margin-bottom: 4px; color: #9099a5; font-size: 6px; }
.stage-message p { width: fit-content; margin: 0; padding: 7px 9px; border: 1px solid #d9dee5; border-radius: 4px 6px 6px 6px; background: #fff; color: #354052; font-size: 7px; line-height: 1.65; }
.stage-message.outgoing { margin-left: auto; }
.stage-message.outgoing span { text-align: right; }
.stage-message.outgoing p { margin-left: auto; border-color: #b7ccec; border-radius: 6px 4px 6px 6px; background: #dbe8fd; }
.stage-composer { display: grid; min-width: 0; grid-template-columns: auto 1fr auto; align-items: end; gap: 8px; margin: 0 9px 9px; padding: 9px; border: 1px solid #dce1e7; border-radius: 5px; background: #fff; color: #9ba3ae; font-size: 7px; }
.composer-tools { display: flex; gap: 6px; color: #6e7887; }
.composer-tools svg { width: 12px; }
.stage-composer button { height: 24px; padding: 0 9px; border: 0; border-radius: 4px; background: var(--blue); color: #fff; font-size: 7px; }
.stage-details { min-width: 0; overflow: hidden; border-left: 1px solid #e0e4e9; background: #fff; }
.stage-tabs { display: grid; height: 43px; grid-template-columns: repeat(3, 1fr); align-items: center; border-bottom: 1px solid #e0e4e9; color: #727d8d; font-size: 7px; text-align: center; }
.stage-tabs b { position: relative; color: var(--blue); }
.stage-tabs b::after { position: absolute; right: 8px; bottom: -15px; left: 8px; height: 2px; background: var(--blue); content: ""; }
.reply-scope { display: grid; height: 34px; grid-template-columns: 1fr 1fr; align-items: center; border-bottom: 1px solid #e9ecef; color: #8a94a2; font-size: 7px; text-align: center; }
.reply-scope b { color: var(--blue); }
.reply-toolbar { display: flex; height: 32px; align-items: center; gap: 12px; padding: 0 10px; border-bottom: 1px solid #edf0f2; color: #748091; font-size: 7px; }
.reply-toolbar span { display: flex; align-items: center; gap: 3px; color: var(--blue); }
.reply-toolbar svg { width: 10px; }
.reply-folder { display: grid; height: 30px; grid-template-columns: 14px 1fr auto; align-items: center; gap: 4px; padding: 0 10px; background: #eef2f7; color: #4d5969; font-size: 7px; }
.reply-folder svg { width: 11px; color: #d58b22; }
.reply-folder em { color: #9099a5; font-style: normal; }
.stage-details > p { overflow: hidden; margin: 0; padding: 8px 12px 8px 26px; border-bottom: 1px solid #f0f2f4; color: #667285; font-size: 7px; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }

.signal-band { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: repeat(4, 1fr); margin: -42px auto 0; position: relative; z-index: 6; border: 1px solid #d8dee6; border-radius: 8px; background: #fff; box-shadow: 0 14px 34px rgba(29,39,55,.08); }
.signal-band div { min-width: 0; padding: 22px 24px; border-right: 1px solid #e4e8ed; }
.signal-band div:last-child { border-right: 0; }
.signal-band strong, .signal-band span { display: block; }
.signal-band strong { font-size: 14px; }
.signal-band span { margin-top: 5px; color: var(--muted); font-size: 10px; }

.section { padding: 108px 0; }
.section-heading { max-width: 610px; }
.section-heading.centered { margin: 0 auto 46px; text-align: center; }
.section-heading > span { display: block; margin-bottom: 12px; color: var(--blue); font-size: 10px; font-weight: 850; }
.section-heading h2 { margin: 0; color: #151e2b; font-size: 36px; line-height: 1.3; }
.section-heading p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.channels-section { background: #fff; }
.channel-grid { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0 auto; }
.channel-item { display: grid; min-height: 150px; grid-template-columns: 38px 1fr; grid-template-rows: 38px auto; align-content: center; column-gap: 12px; padding: 22px; border: 1px solid #dfe4ea; border-radius: 8px; background: #fff; transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.channel-item:hover { border-color: #b9c5d4; box-shadow: 0 12px 26px rgba(29,39,55,.08); transform: translateY(-3px); }
.channel-item > svg, .channel-item > b:first-child { display: grid; width: 38px; height: 38px; grid-row: 1 / 3; place-items: center; padding: 8px; border-radius: 7px; background: #edf3fd; color: var(--blue); }
.channel-item > b:first-child { padding: 0; font-size: 13px; }
.channel-item strong { align-self: end; font-size: 13px; }
.channel-item span { align-self: start; margin-top: 5px; color: var(--muted); font-size: 9px; }
.channel-item.app > svg { background: #f3ebfb; color: #8154bd; }
.channel-item.mini > b:first-child, .channel-item.official > svg, .channel-item.wecom > svg { background: #e8f6ef; color: #18875b; }
.channel-item.douyin > svg { background: #e8eef5; color: #202b3b; }
.channel-item.redbook > svg { background: #fdebec; color: #d7474c; }
.channel-item.more > svg { background: #fff2df; color: #c67917; }

.solutions-section { border-top: 1px solid var(--line); background: #eef2f6; }
.solutions-inner { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); align-items: center; gap: 70px; margin: 0 auto; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.solution-item { display: grid; min-height: 190px; grid-template-columns: 46px 1fr; align-content: center; gap: 16px; padding: 25px; border: 1px solid #d7dee7; border-radius: 8px; background: #fff; }
.solution-item > i, .solution-item > svg { display: grid; width: 46px; height: 46px; place-items: center; padding: 13px; border-radius: 7px; background: #e8f0fe; color: var(--blue); }
.solution-item b, .solution-item p, .solution-item span { display: block; }
.solution-item b { font-size: 13px; }
.solution-item p { margin: 10px 0 13px; color: var(--muted); font-size: 10px; line-height: 1.8; }
.solution-item span { color: #42658e; font-size: 8px; font-weight: 750; }
.solution-item.service > i, .solution-item.service > svg { background: #e5f4ed; color: #238960; }
.solution-item.mobile > i, .solution-item.mobile > svg { background: #f2eafb; color: #7a50b0; }
.solution-item.platform > i, .solution-item.platform > svg { background: #fff0dc; color: #bd751a; }

.product-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f4f6f8; }
.product-section-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.product-section .section-heading { margin-bottom: 34px; }
.product-switcher { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid #d7dde5; border-radius: 7px; background: #fff; }
.product-switcher button { display: inline-flex; height: 40px; align-items: center; gap: 7px; padding: 0 14px; border: 0; border-radius: 5px; background: transparent; color: #5e6a7b; font-size: 11px; cursor: pointer; }
.product-switcher button.active { background: #e8f0fe; color: var(--blue); font-weight: 750; }
.product-switcher svg { width: 15px; }
.product-panels { margin-top: 26px; }
.product-panel { display: grid; min-height: 430px; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr); overflow: hidden; border: 1px solid #d5dce5; border-radius: 8px; background: #fff; }
.product-panel[hidden] { display: none; }
.panel-visual { min-width: 0; margin: 26px 0 26px 26px; overflow: hidden; border: 1px solid #d7dde5; border-radius: 7px; background: #f5f7fa; box-shadow: 0 16px 32px rgba(28,38,55,.1); }
.panel-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.panel-copy h3 { margin: 0; font-size: 24px; }
.panel-copy > p { margin: 16px 0 22px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.panel-copy ul { display: grid; gap: 12px; margin: 0; padding: 0; color: #455164; font-size: 11px; list-style: none; }
.panel-copy li { position: relative; padding-left: 18px; }
.panel-copy li::before { position: absolute; top: 4px; left: 0; width: 7px; height: 7px; border-radius: 2px; background: var(--green); content: ""; }
.conversation-visual { display: grid; grid-template-columns: 34% 66%; }
.mini-list { display: flex; flex-direction: column; padding: 16px 10px; border-right: 1px solid #dce2e9; background: #fff; }
.mini-list b { display: flex; justify-content: space-between; padding: 9px 8px; color: #596678; font-size: 10px; }
.mini-list b em { font-style: normal; }
.mini-list span { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 0 9px; border-radius: 5px; color: #596678; font-size: 10px; }
.mini-list span.selected { background: #e7effc; color: #1d4f9c; }
.mini-list i { display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-size: 8px; font-style: normal; }
.mini-chat { display: flex; flex-direction: column; padding: 24px; }
.mini-chat > small { color: #758194; }
.mini-chat > p { max-width: 75%; margin: 30px 0 0; padding: 12px 14px; border: 1px solid #d7dde5; border-radius: 5px; background: #fff; color: #465267; font-size: 11px; line-height: 1.7; }
.mini-chat > p.reply { align-self: flex-end; margin-top: 14px; border-color: #bfd1ee; background: #dfeafe; }
.mini-chat > div { display: flex; align-items: center; gap: 12px; margin-top: auto; padding: 12px; border: 1px solid #d8dee6; border-radius: 5px; background: #fff; color: #697688; }
.mini-chat svg { width: 16px; }
.mini-chat button { height: 30px; margin-left: auto; padding: 0 14px; border: 0; border-radius: 4px; background: var(--blue); color: #fff; font-size: 9px; }
.management-visual { display: grid; grid-template-columns: 30% 70%; }
.department-list { display: flex; flex-direction: column; gap: 3px; padding: 14px 10px; border-right: 1px solid #dce2e9; background: #fff; }
.department-list b, .department-list span { padding: 11px; border-radius: 5px; font-size: 10px; }
.department-list b { background: #e8f0fe; color: var(--blue); }
.department-list span { color: #697688; }
.member-table { padding: 18px; }
.member-table header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; }
.member-table header b { font-size: 13px; }
.member-table header button { height: 30px; padding: 0 10px; border: 0; border-radius: 4px; background: var(--blue); color: #fff; font-size: 9px; }
.member-table p { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; margin: 0; padding: 17px 10px; border-top: 1px solid #dfe4ea; font-size: 10px; }
.member-table p span { color: #748092; }
.member-table p em { color: var(--green); font-style: normal; }
.member-table p em.away { color: var(--amber); }
.analytics-visual { padding: 24px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row span { padding: 15px; border: 1px solid #dde3ea; border-radius: 6px; background: #fff; }
.metric-row small, .metric-row b { display: block; }
.metric-row small { color: #7b8695; font-size: 9px; }
.metric-row b { margin-top: 8px; font-size: 18px; }
.bar-chart { display: flex; height: 210px; align-items: end; justify-content: space-around; gap: 16px; padding: 36px 26px 0; border-bottom: 1px solid #cfd6df; }
.bar-chart i { width: 34px; border-radius: 4px 4px 0 0; background: #4f82db; box-shadow: 10px 0 0 #bcd0ee; }
.chart-legend { display: flex; gap: 22px; padding: 18px 26px; color: #6d7889; font-size: 9px; }
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.chart-legend i { width: 8px; height: 8px; border-radius: 2px; background: #4f82db; }
.chart-legend span:last-child i { background: #bcd0ee; }

.workflow-section { background: #fff; }
.workflow-line { position: relative; display: grid; width: min(1080px, calc(100% - 40px)); grid-template-columns: repeat(4, 1fr); gap: 26px; margin: 0 auto; }
.workflow-line::before { position: absolute; top: 27px; right: 12%; left: 12%; height: 1px; background: #ccd5df; content: ""; }
.workflow-line article { position: relative; z-index: 1; text-align: center; }
.workflow-line article > i { display: grid; width: 54px; height: 54px; place-items: center; margin: 0 auto 18px; border: 1px solid #cad4e1; border-radius: 50%; background: #fff; color: var(--blue); }
.workflow-line svg { width: 21px; }
.workflow-line b, .workflow-line span { display: block; }
.workflow-line b { font-size: 13px; }
.workflow-line span { margin-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.7; }

.clients-section { overflow: hidden; border-top: 1px solid var(--line); background: #eef2f6; }
.clients-inner { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr); align-items: center; gap: 70px; margin: 0 auto; }
.client-copy .section-heading { margin-bottom: 30px; }
.client-list { display: grid; gap: 12px; margin-bottom: 28px; }
.client-list article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; }
.client-list article > i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #ced7e1; border-radius: 7px; background: #fff; color: var(--blue); }
.client-list svg { width: 18px; }
.client-list b, .client-list span { display: block; }
.client-list b { font-size: 12px; }
.client-list span { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.6; }
.devices-visual { position: relative; min-height: 500px; }
.desktop-device { position: absolute; top: 18px; right: 50px; width: 610px; height: 390px; overflow: hidden; border: 8px solid #202735; border-bottom-width: 20px; border-radius: 9px; background: #fff; box-shadow: 0 24px 60px rgba(30,40,56,.2); }
.device-top { display: flex; height: 24px; align-items: center; gap: 5px; padding-left: 8px; background: #edf0f4; }
.device-top span { width: 6px; height: 6px; border-radius: 50%; background: #b7bec8; }
.device-screen { display: grid; height: calc(100% - 24px); grid-template-columns: 38px 150px 1fr; }
.device-screen aside { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 16px; background: #171d28; color: #8590a1; }
.device-screen aside svg { width: 15px; }
.device-screen section { padding: 16px 10px; border-right: 1px solid #dbe1e8; background: #f7f8fa; }
.device-screen section b { display: block; margin-bottom: 12px; font-size: 10px; }
.device-screen section p { margin: 0; padding: 11px 8px; color: #697587; font-size: 8px; }
.device-screen section p.on { border-radius: 4px; background: #e3edfc; color: #245ba9; }
.device-screen main { padding: 18px; background: #f2f4f7; }
.device-screen main span { font-size: 10px; font-weight: 700; }
.device-screen main p { width: fit-content; max-width: 74%; margin: 34px 0 0; padding: 10px 12px; border-radius: 5px; background: #fff; font-size: 8px; }
.device-screen main p:last-child { margin: 14px 0 0 auto; background: #dbe8fd; }
.phone-device { position: absolute; right: 0; bottom: 0; width: 205px; height: 410px; overflow: hidden; border: 7px solid #202735; border-radius: 25px; background: #ededed; box-shadow: 0 22px 50px rgba(30,40,56,.25); }
.phone-speaker { position: absolute; top: 7px; left: 50%; z-index: 2; width: 52px; height: 5px; border-radius: 4px; background: #0d1118; transform: translateX(-50%); }
.phone-device header { display: grid; height: 48px; grid-template-columns: 24px 1fr 24px; align-items: center; padding: 5px 10px 0; color: #2b3038; text-align: center; }
.phone-device header svg { width: 14px; }
.phone-device header b { font-size: 10px; }
.phone-messages { padding: 18px 10px; }
.phone-messages > span { display: block; color: #8b919a; font-size: 7px; text-align: center; }
.phone-messages p { max-width: 80%; margin: 24px 0 0; padding: 8px 9px; border-radius: 4px; background: #fff; font-size: 7px; line-height: 1.6; }
.phone-messages p:last-child { margin: 12px 0 0 auto; background: #95ec69; }
.phone-device footer { position: absolute; right: 0; bottom: 0; left: 0; display: grid; height: 50px; grid-template-columns: 24px 1fr 24px; align-items: center; gap: 6px; padding: 7px; background: #f7f7f7; }
.phone-device footer span { height: 32px; padding: 8px; border-radius: 4px; background: #fff; color: #a0a5ad; font-size: 7px; }
.phone-device footer svg { width: 17px; }

.analytics-section { background: #18202c; color: #fff; }
.light-heading h2 { color: #fff; }
.light-heading p { color: #aeb8c5; }
.light-heading > span { color: #83b0ff; }
.capability-grid { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 auto; }
.capability-grid article { min-height: 250px; padding: 26px; border: 1px solid #354050; border-radius: 8px; background: #202936; }
.capability-icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 7px; background: #e7effc; color: #4e82d8; }
.capability-icon svg { width: 20px; }
.capability-icon.keyword { background: #fff0da; color: #d1841e; }
.capability-icon.route { background: #e4f4ec; color: #259163; }
.capability-icon.report { background: #f7e8ed; color: #c95773; }
.capability-grid h3 { margin: 28px 0 12px; font-size: 16px; }
.capability-grid p { margin: 0; color: #aeb8c5; font-size: 11px; line-height: 1.8; }

.deployment-section { background: #fff; }
.deployment-inner { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: minmax(300px, .75fr) minmax(560px, 1.25fr); align-items: center; gap: 80px; margin: 0 auto; }
.deployment-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.deployment-points article { display: grid; min-height: 140px; grid-template-columns: 38px 1fr; align-content: center; column-gap: 12px; padding: 22px; border: 1px solid #dce2e9; border-radius: 8px; }
.deployment-points article > i { display: grid; width: 38px; height: 38px; grid-row: 1 / 3; place-items: center; border-radius: 7px; background: #edf3fd; color: var(--blue); }
.deployment-points svg { width: 18px; }
.deployment-points b { align-self: end; font-size: 12px; }
.deployment-points span { align-self: start; margin-top: 5px; color: var(--muted); font-size: 9px; }

.plans-section { border-top: 1px solid var(--line); background: #f5f7f9; }
.plan-grid { display: grid; width: min(1080px, calc(100% - 40px)); grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 auto; }
.plan-item { position: relative; display: flex; min-height: 430px; flex-direction: column; padding: 30px; border: 1px solid #d9e0e8; border-radius: 8px; background: #fff; }
.plan-item.featured { border-color: #74a2ed; box-shadow: 0 18px 40px rgba(36,104,220,.12); }
.plan-label { position: absolute; top: 0; right: 22px; padding: 6px 12px; border-radius: 0 0 5px 5px; background: var(--blue); color: #fff; font-size: 8px; font-weight: 800; }
.plan-heading { display: grid; min-height: 58px; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; }
.plan-heading > i, .plan-heading > svg { display: grid; width: 42px; height: 42px; place-items: center; padding: 12px; border-radius: 7px; background: #edf3fd; color: var(--blue); }
.plan-heading b, .plan-heading span { display: block; }
.plan-heading b { font-size: 15px; }
.plan-heading span { margin-top: 5px; color: var(--muted); font-size: 9px; }
.plan-item ul { display: grid; gap: 15px; margin: 30px 0; padding: 0; color: #4e5a6b; font-size: 11px; list-style: none; }
.plan-item li { position: relative; padding-left: 19px; }
.plan-item li::before { position: absolute; top: 3px; left: 0; width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; content: ""; }
.plan-item .button { width: 100%; margin-top: auto; }
.plan-note { width: min(1080px, calc(100% - 40px)); margin: 18px auto 0; color: #8791a0; font-size: 9px; text-align: center; }

.support-section { padding: 88px 0; background: #18202c; color: #fff; }
.support-inner { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 70px; margin: 0 auto; }
.support-copy > span { color: #83b0ff; font-size: 10px; font-weight: 850; }
.support-copy h2 { margin: 12px 0 0; font-size: 31px; line-height: 1.4; }
.support-copy p { margin: 16px 0 0; color: #aeb8c5; font-size: 12px; line-height: 1.9; }
.support-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.support-actions a { display: grid; min-height: 92px; grid-template-columns: 40px 1fr 20px; align-items: center; gap: 12px; padding: 18px; border: 1px solid #394554; border-radius: 7px; background: #202936; transition: border-color .16s ease, background .16s ease; }
.support-actions a:hover { border-color: #6184b4; background: #263140; }
.support-actions > a > i:first-child, .support-actions > a > svg:first-child { display: grid; width: 40px; height: 40px; place-items: center; padding: 11px; border-radius: 6px; background: #e7effc; color: var(--blue); }
.support-actions > a > i:last-child, .support-actions > a > svg:last-child { width: 17px; color: #8390a1; }
.support-actions b, .support-actions small { display: block; }
.support-actions b { font-size: 11px; }
.support-actions small { margin-top: 5px; color: #98a4b4; font-size: 8px; }

.faq-section { border-top: 1px solid var(--line); background: #f5f7f9; }
.faq-inner { display: grid; width: min(1040px, calc(100% - 40px)); grid-template-columns: 280px 1fr; gap: 70px; margin: 0 auto; }
.faq-list { border-top: 1px solid #ccd4de; }
.faq-item { border-bottom: 1px solid #ccd4de; }
.faq-item button { display: grid; width: 100%; min-height: 70px; grid-template-columns: 1fr 24px; align-items: center; gap: 16px; padding: 0; border: 0; background: transparent; font-size: 13px; font-weight: 700; text-align: left; cursor: pointer; }
.faq-item button svg { width: 17px; color: #768294; transition: transform .16s ease; }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-item > div p { margin: -3px 0 22px; color: var(--muted); font-size: 11px; line-height: 1.9; }

.cta-section { padding: 78px 0; background: var(--blue); color: #fff; }
.cta-inner { display: flex; width: min(1080px, calc(100% - 40px)); align-items: center; justify-content: space-between; gap: 50px; margin: 0 auto; }
.cta-inner > div:first-child { max-width: 670px; }
.cta-inner span { font-size: 10px; font-weight: 800; opacity: .75; }
.cta-inner h2 { margin: 10px 0 0; font-size: 31px; line-height: 1.4; }
.cta-inner p { margin: 12px 0 0; color: #dce8fc; font-size: 12px; line-height: 1.8; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.site-footer { background: #121821; color: #dbe1e9; }
.footer-main { display: grid; width: min(var(--max), calc(100% - 40px)); grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding: 60px 0 42px; margin: 0 auto; }
.footer-brand .brand strong { color: #fff; }
.footer-brand p { max-width: 310px; margin: 20px 0 0; color: #8f9baa; font-size: 10px; line-height: 1.8; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.footer-main > div > b { margin-bottom: 4px; color: #fff; font-size: 11px; }
.footer-main > div > a { color: #8f9baa; font-size: 10px; }
.footer-main > div > a:hover { color: #fff; }
.footer-bottom { display: grid; width: min(var(--max), calc(100% - 40px)); gap: 18px; padding: 24px 0 28px; border-top: 1px solid #29313d; margin: 0 auto; color: #707b8a; font-size: 9px; }
.footer-contact-row, .footer-legal-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-contact-row > div, .footer-phones { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 24px; }
.footer-contact-row strong { color: #dbe1e9; font-size: 10px; }
.footer-contact-row a:hover { color: #fff; }
.footer-legal-row { flex-wrap: wrap; justify-content: flex-start; padding-top: 18px; border-top: 1px solid #242c37; }
.footer-records { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px 18px; }
.footer-records a { display: inline-flex; align-items: center; gap: 5px; }
.footer-records svg { width: 13px; height: 13px; color: #8e9aab; }
.footer-records a:hover { color: #c9d1dc; }
.floating-trial { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: none; height: 44px; align-items: center; gap: 7px; padding: 0 15px; border-radius: 6px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 750; box-shadow: 0 12px 30px rgba(29,61,120,.28); }
.floating-trial svg { width: 16px; }

/* Shared inner pages */
.inner-page { background: #f4f6f8; }
.inner-page main { overflow: hidden; }
.desktop-nav .current { color: var(--blue); font-weight: 750; }
.desktop-nav .current::after { transform: scaleX(1); }
.page-hero { position: relative; background: #153260; color: #fff; }
.page-hero-inner { display: grid; width: min(var(--max), calc(100% - 40px)); min-height: 590px; grid-template-columns: minmax(380px, .92fr) minmax(430px, 1.08fr); align-items: center; gap: 78px; margin: 0 auto; }
.page-hero-copy { position: relative; z-index: 2; padding: 74px 0; }
.page-kicker { display: block; margin-bottom: 18px; color: #82b1ff; font-size: 11px; font-weight: 850; }
.page-hero h1 { max-width: 650px; margin: 0; font-size: 52px; line-height: 1.16; font-weight: 800; }
.page-hero-copy > p { max-width: 600px; margin: 24px 0 32px; color: #d6e2f3; font-size: 15px; line-height: 1.9; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-actions .button { min-width: 142px; }
.page-cta { display: flex; min-height: 250px; align-items: center; justify-content: space-between; gap: 50px; padding: 54px max(20px, calc((100% - 1080px) / 2)); background: var(--blue); color: #fff; }
.page-cta > div:first-child { max-width: 660px; }
.page-cta > div > span { color: #c8dcff; font-size: 10px; font-weight: 850; }
.page-cta h2 { margin: 10px 0 0; font-size: 31px; line-height: 1.4; }
.page-cta p { margin: 10px 0 0; color: #dbe8fc; font-size: 12px; line-height: 1.8; }

/* Price page */
.price-page-hero { background: #173663; }
.price-hero-visual { width: min(100%, 500px); overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; margin-left: auto; background: #fff; color: var(--ink); box-shadow: 0 28px 70px rgba(6,18,38,.28); }
.price-visual-header { display: flex; height: 58px; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #e0e6ed; color: #435064; font-size: 13px; font-weight: 750; }
.price-visual-header svg { width: 19px; color: var(--blue); }
.price-visual-main { display: grid; min-height: 280px; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 24px; padding: 34px 28px; background: #f5f7fa; }
.price-visual-bars { display: flex; height: 180px; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 18px 18px 0; border-bottom: 1px solid #cbd4df; background: #fff; }
.price-visual-bars i { display: block; width: 24px; min-height: 18px; border-radius: 4px 4px 0 0; background: #6e9ce5; box-shadow: 7px 0 0 #bed1ef; }
.price-visual-stat { padding: 20px 0; }
.price-visual-stat small, .price-visual-stat strong, .price-visual-stat span { display: block; }
.price-visual-stat small { color: #7d8796; font-size: 9px; }
.price-visual-stat strong { margin-top: 8px; font-size: 19px; }
.price-visual-stat span { display: flex; align-items: center; gap: 4px; margin-top: 18px; color: var(--green); font-size: 9px; font-weight: 750; }
.price-visual-stat svg { width: 13px; }
.price-visual-footer { display: grid; height: 64px; grid-template-columns: repeat(3, 1fr); align-items: center; border-top: 1px solid #e0e6ed; color: #5e6a7b; font-size: 10px; text-align: center; }
.price-visual-footer span { display: flex; align-items: center; justify-content: center; gap: 6px; border-right: 1px solid #e6ebf0; }
.price-visual-footer span:last-child { border-right: 0; }
.price-visual-footer svg { width: 15px; color: var(--blue); }
.price-intro { background: #fff; }
.pricing-grid { display: grid; width: min(1120px, calc(100% - 40px)); grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 auto; }
.pricing-card { position: relative; display: flex; min-height: 560px; flex-direction: column; padding: 31px; border: 1px solid #d8e0e8; border-radius: 8px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.pricing-card:hover { border-color: #aebdce; box-shadow: 0 18px 42px rgba(28,43,66,.1); transform: translateY(-3px); }
.pricing-card.popular { border: 2px solid #3978df; box-shadow: 0 18px 44px rgba(36,104,220,.14); }
.pricing-badge { position: absolute; top: 0; right: 22px; padding: 7px 13px; border-radius: 0 0 5px 5px; background: var(--blue); color: #fff; font-size: 9px; font-style: normal; font-weight: 800; }
.pricing-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.pricing-card-top span { font-size: 18px; font-weight: 800; }
.pricing-card-top svg { width: 42px; height: 42px; padding: 11px; border-radius: 7px; background: #eaf1fc; color: var(--blue); }
.pricing-card > p { min-height: 46px; margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.pricing-number { display: flex; align-items: flex-end; gap: 7px; margin-top: 26px; }
.pricing-number b { color: #163f81; font-size: 36px; line-height: 1; }
.pricing-number span { padding-bottom: 3px; color: #778294; font-size: 11px; }
.pricing-seat { margin-top: 16px; padding: 11px 13px; border-radius: 5px; background: #eef3fa; color: #425b7d; font-size: 10px; font-weight: 750; }
.pricing-card ul { display: grid; gap: 14px; margin: 25px 0 30px; padding: 0; color: #4f5c6e; font-size: 11px; line-height: 1.6; list-style: none; }
.pricing-card li { position: relative; padding-left: 20px; }
.pricing-card li::before { position: absolute; top: 4px; left: 0; width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; content: ""; }
.pricing-card .button { width: 100%; margin-top: auto; }
.price-compare-section { padding: 104px 0; background: #182230; }
.price-compare-grid { display: grid; width: min(1040px, calc(100% - 40px)); grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 auto; }
.price-compare-grid article { padding: 30px; border: 1px solid #354253; border-radius: 8px; background: #202b39; color: #fff; }
.price-compare-grid header { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid #354253; }
.price-compare-grid header svg { width: 42px; height: 42px; padding: 11px; border-radius: 7px; background: #e8effa; color: var(--blue); }
.price-compare-grid h3 { margin: 0; font-size: 17px; }
.price-compare-grid ul { display: grid; gap: 14px; margin: 23px 0 0; padding: 0; color: #bdc7d4; font-size: 11px; line-height: 1.7; list-style: none; }
.price-compare-grid li { position: relative; padding-left: 20px; }
.price-compare-grid li::before { position: absolute; top: 7px; left: 2px; width: 6px; height: 6px; border-radius: 50%; background: #5e96ef; content: ""; }
.price-faq-section { background: #f4f6f8; }
.price-faq-section .faq-list { width: min(840px, calc(100% - 40px)); margin: 0 auto; }

/* Agent page */
.agent-page-hero { background: #173866; }
.agent-hero-visual { width: min(100%, 500px); overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; margin-left: auto; background: #f7f9fc; color: var(--ink); box-shadow: 0 28px 70px rgba(5,17,36,.3); }
.agent-visual-top { display: flex; height: 58px; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #dfe5ec; background: #fff; font-size: 13px; font-weight: 800; }
.agent-visual-top small { padding: 6px 9px; border-radius: 4px; background: #eef3fa; color: #66768b; font-size: 9px; font-weight: 650; }
.agent-visual-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px 22px 12px; }
.agent-visual-metrics > div { padding: 18px; border: 1px solid #dce4ed; border-radius: 7px; background: #fff; }
.agent-visual-metrics small, .agent-visual-metrics strong, .agent-visual-metrics span { display: block; }
.agent-visual-metrics small { color: #748195; font-size: 9px; }
.agent-visual-metrics strong { margin-top: 7px; color: #173e7a; font-size: 25px; }
.agent-visual-metrics span { display: flex; align-items: center; gap: 4px; margin-top: 10px; color: var(--green); font-size: 8px; font-weight: 750; }
.agent-visual-metrics svg { width: 12px; }
.agent-visual-chart { display: flex; height: 170px; align-items: flex-end; justify-content: space-between; gap: 13px; margin: 0 22px; padding: 25px 25px 0; border-bottom: 1px solid #ccd5e0; background: #fff; }
.agent-visual-chart i { display: block; width: 25px; min-height: 20px; border-radius: 4px 4px 0 0; background: #5f91df; box-shadow: 7px 0 0 #c1d2ec; }
.agent-visual-foot { display: grid; height: 64px; grid-template-columns: 1fr 1fr; align-items: center; margin-top: 14px; border-top: 1px solid #dfe5ec; background: #fff; color: #526176; font-size: 9px; }
.agent-visual-foot span { display: flex; height: 100%; align-items: center; justify-content: center; gap: 7px; border-right: 1px solid #e2e7ed; }
.agent-visual-foot span:last-child { border-right: 0; }
.agent-visual-foot svg { width: 15px; color: var(--blue); }
.agent-intro { background: #fff; }
.agent-value-grid { display: grid; width: min(1080px, calc(100% - 40px)); grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 auto; }
.agent-value-grid article { min-height: 250px; padding: 30px; border: 1px solid #dce3ea; border-radius: 8px; background: #fff; }
.agent-value-grid article > svg { width: 46px; height: 46px; padding: 12px; border-radius: 7px; background: #eaf1fc; color: var(--blue); }
.agent-value-grid article:nth-child(2) > svg { background: #e8f5ee; color: var(--green); }
.agent-value-grid article:nth-child(3) > svg { background: #fff1df; color: var(--amber); }
.agent-value-grid h3 { margin: 26px 0 12px; font-size: 16px; }
.agent-value-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.85; }
.agent-dark-section { padding: 106px 0; background: #182331; color: #fff; }
.cooperation-grid { display: grid; width: min(1120px, calc(100% - 40px)); grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 auto; }
.cooperation-grid article { min-height: 250px; padding: 27px; border: 1px solid #354253; border-radius: 8px; background: #202c3b; }
.cooperation-grid b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 6px; background: #e8effa; color: #2565ca; font-size: 11px; }
.cooperation-grid h3 { margin: 29px 0 13px; font-size: 15px; }
.cooperation-grid p { margin: 0; color: #b4bfcd; font-size: 10px; line-height: 1.85; }
.agent-support-section { background: #eef2f6; }
.agent-support-inner { display: grid; width: min(1120px, calc(100% - 40px)); grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); align-items: center; gap: 70px; margin: 0 auto; }
.agent-support-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.agent-support-list article { display: grid; min-height: 160px; grid-template-columns: 42px 1fr; align-content: center; gap: 15px; padding: 24px; border: 1px solid #d7dfe8; border-radius: 8px; background: #fff; }
.agent-support-list article > svg { width: 42px; height: 42px; padding: 11px; border-radius: 7px; background: #eaf1fc; color: var(--blue); }
.agent-support-list b { font-size: 13px; }
.agent-support-list p { margin: 9px 0 0; color: var(--muted); font-size: 10px; line-height: 1.75; }
.agent-require-section { padding: 104px 0; background: #fff; }
.agent-require-inner { display: grid; width: min(1120px, calc(100% - 40px)); grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); align-items: center; gap: 70px; margin: 0 auto; }
.agent-require-copy > span { color: var(--blue); font-size: 10px; font-weight: 850; }
.agent-require-copy h2 { margin: 13px 0 0; font-size: 34px; line-height: 1.35; }
.agent-require-copy p { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
.require-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.require-list > div { display: grid; min-height: 132px; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; align-content: center; gap: 5px 13px; padding: 22px; border: 1px solid #dce3ea; border-radius: 8px; background: #f8fafc; }
.require-list svg { width: 40px; height: 40px; grid-row: 1 / 3; padding: 10px; border-radius: 7px; background: #e8f0fc; color: var(--blue); }
.require-list b { align-self: end; font-size: 12px; }
.require-list span { align-self: start; color: var(--muted); font-size: 9px; line-height: 1.6; }

/* Download page */
.download-page-hero { background: #183765; }
.download-hero-visual { position: relative; min-height: 430px; }
.download-screen { position: absolute; top: 22px; right: 28px; width: min(100%, 470px); overflow: hidden; border: 7px solid #273342; border-radius: 8px; background: #fff; color: var(--ink); box-shadow: 0 28px 70px rgba(5,17,36,.34); }
.download-screen > header { display: flex; height: 46px; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid #e0e5eb; }
.download-screen > header img { width: 24px; height: 24px; }
.download-screen > header span { flex: 1; font-size: 10px; font-weight: 800; }
.download-screen > header svg { width: 14px; color: var(--green); }
.download-screen > div { display: grid; height: 280px; grid-template-columns: 52px 1fr; }
.download-screen aside { display: flex; flex-direction: column; align-items: center; gap: 23px; padding-top: 20px; background: #18212e; color: #8e9aab; }
.download-screen aside svg { width: 17px; }
.download-screen aside svg:first-child { width: 32px; height: 32px; padding: 8px; border-radius: 5px; background: var(--blue); color: #fff; }
.download-screen section { padding: 35px 34px; background: #f3f5f8; }
.download-screen section small, .download-screen section strong { display: block; }
.download-screen section small { color: #8b96a5; font-size: 8px; }
.download-screen section strong { margin-top: 6px; font-size: 11px; }
.download-screen section p { width: fit-content; max-width: 82%; margin: 25px 0 0; padding: 10px 12px; border: 1px solid #d8dee6; border-radius: 5px; background: #fff; color: #526074; font-size: 9px; line-height: 1.6; }
.download-screen section .outgoing { margin: 12px 0 0 auto; border-color: #bfd2ef; background: #dfeafe; }
.download-phone { position: absolute; right: -6px; bottom: 5px; display: grid; width: 150px; min-height: 188px; place-items: center; align-content: center; padding: 20px 15px; border: 6px solid #273342; border-radius: 22px; background: #fff; color: var(--ink); box-shadow: 0 20px 46px rgba(5,17,36,.28); text-align: center; }
.download-phone svg { width: 40px; height: 40px; padding: 10px; border-radius: 50%; background: #e9f1fd; color: var(--blue); }
.download-phone b { margin-top: 16px; font-size: 11px; }
.download-phone span { margin-top: 6px; color: var(--muted); font-size: 8px; }
.download-options { background: #fff; }
.download-grid { display: grid; width: min(1120px, calc(100% - 40px)); grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 auto; }
.download-card { display: flex; min-height: 500px; flex-direction: column; padding: 30px; border: 1px solid #d9e1e9; border-radius: 8px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.download-card:hover { border-color: #adbac9; box-shadow: 0 18px 42px rgba(28,43,66,.1); transform: translateY(-3px); }
.download-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 8px; background: #e8f0fc; color: var(--blue); }
.download-icon svg { width: 27px; height: 27px; }
.download-card.android .download-icon { background: #e5f4ec; color: var(--green); }
.download-card.web .download-icon { background: #fff0dd; color: var(--amber); }
.download-card-copy > span { display: block; margin-top: 28px; color: #7b8798; font-size: 9px; font-weight: 850; }
.download-card h3 { margin: 9px 0 0; font-size: 20px; }
.download-card p { min-height: 66px; margin: 17px 0 0; color: var(--muted); font-size: 11px; line-height: 1.85; }
.download-card ul { display: grid; gap: 14px; margin: 26px 0 30px; padding: 24px 0 0; border-top: 1px solid #e2e7ed; color: #4f5c6e; font-size: 10px; list-style: none; }
.download-card li { position: relative; padding-left: 20px; }
.download-card li::before { position: absolute; top: 3px; left: 0; width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; content: ""; }
.download-card .button { width: 100%; margin-top: auto; }
.download-note { display: flex; width: min(1120px, calc(100% - 40px)); align-items: center; justify-content: space-between; gap: 28px; padding: 28px 30px; border: 1px solid #d6dee8; border-radius: 8px; margin: -38px auto 78px; background: #eef3f9; }
.download-note > div { display: flex; align-items: center; gap: 14px; }
.download-note > div > svg { width: 42px; height: 42px; padding: 10px; border-radius: 7px; background: #fff; color: var(--blue); }
.download-note b, .download-note small { display: block; }
.download-note b { font-size: 12px; }
.download-note small { margin-top: 5px; color: var(--muted); font-size: 9px; }
.download-note > a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; color: var(--blue); font-size: 10px; font-weight: 800; }
.download-note > a svg { width: 14px; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 18px; }
  .hero-inner { grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: 32px; }
  .clients-inner { grid-template-columns: .9fr 1.1fr; gap: 40px; }
  .desktop-device { right: 20px; width: 540px; }
  .deployment-inner { gap: 45px; }
}

@media (max-width: 920px) {
  .desktop-nav, .header-actions > .text-link, .header-actions > .button { display: none; }
  .mobile-menu-button { display: grid; }
  .mobile-nav:not([hidden]) { display: block; }
  .hero { min-height: 0; }
  .hero-inner { display: flex; flex-direction: column; }
  .hero-copy { width: 100%; padding: 76px 0 36px; }
  .hero h1 { font-size: 46px; }
  .product-stage-shell { width: 100%; height: 476px; }
  .product-stage { transform: scale(.82); }
  .signal-band { grid-template-columns: 1fr 1fr; margin-top: -32px; }
  .signal-band div:nth-child(2) { border-right: 0; }
  .signal-band div:nth-child(-n+2) { border-bottom: 1px solid #e4e8ed; }
  .channel-grid, .capability-grid { grid-template-columns: 1fr 1fr; }
  .solutions-inner, .support-inner { grid-template-columns: 1fr; gap: 34px; }
  .product-panel { grid-template-columns: 1fr; }
  .panel-visual { min-height: 340px; margin: 24px 24px 0; }
  .panel-copy { padding: 34px 28px; }
  .clients-inner { grid-template-columns: 1fr; }
  .devices-visual { min-height: 470px; }
  .desktop-device { left: 0; right: auto; }
  .phone-device { right: 8%; }
  .deployment-inner { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { grid-template-columns: 2fr 1fr 1fr; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 640px) {
  .header-inner { width: calc(100% - 28px); height: 62px; }
  .brand img { width: 34px; height: 34px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 0; }
  .hero-inner { width: calc(100% - 28px); }
  .hero-copy { padding-top: 54px; }
  .hero h1 { font-size: 38px; }
  .hero-copy > p { margin-top: 18px; font-size: 14px; line-height: 1.8; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { min-width: 0; padding: 0 10px; font-size: 11px; }
  .hero-trust { display: grid; gap: 10px; margin-top: 22px; }
  .product-stage-shell { margin-top: 8px; }
  .signal-band { width: calc(100% - 28px); margin-top: -24px; }
  .signal-band div { padding: 16px; }
  .signal-band strong { font-size: 12px; }
  .signal-band span { font-size: 8px; line-height: 1.5; }
  .section { padding: 76px 0; }
  .section-heading.centered { margin-bottom: 32px; }
  .section-heading h2 { font-size: 29px; }
  .section-heading p { font-size: 12px; }
  .channel-grid, .capability-grid { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .solutions-inner, .support-inner { width: calc(100% - 28px); }
  .solution-grid, .support-actions { grid-template-columns: 1fr; }
  .solution-item { min-height: 0; padding: 21px; }
  .channel-item { min-height: 110px; }
  .product-section-inner { width: calc(100% - 28px); }
  .product-switcher { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .product-switcher button { height: 54px; flex-direction: column; gap: 4px; padding: 0 4px; font-size: 9px; }
  .product-switcher svg { width: 14px; }
  .product-panel { min-height: 0; }
  .panel-visual { min-height: 255px; margin: 14px 14px 0; }
  .conversation-visual { grid-template-columns: 38% 62%; }
  .mini-chat { padding: 14px; }
  .mini-chat > p { max-width: 90%; margin-top: 22px; padding: 8px; font-size: 8px; }
  .mini-chat > div { gap: 7px; padding: 8px; }
  .management-visual { grid-template-columns: 34% 66%; }
  .member-table { padding: 10px; }
  .member-table p { grid-template-columns: 1fr auto; }
  .member-table p span { display: none; }
  .analytics-visual { padding: 12px; }
  .metric-row { gap: 5px; }
  .metric-row span { padding: 8px; }
  .metric-row b { font-size: 12px; }
  .bar-chart { height: 120px; gap: 8px; padding: 18px 10px 0; }
  .bar-chart i { width: 16px; box-shadow: 5px 0 0 #bcd0ee; }
  .panel-copy { padding: 28px 20px; }
  .panel-copy h3 { font-size: 20px; }
  .workflow-line { width: calc(100% - 28px); grid-template-columns: 1fr 1fr; gap: 34px 18px; }
  .workflow-line::before { display: none; }
  .clients-inner { width: calc(100% - 28px); }
  .devices-visual { min-height: 340px; }
  .desktop-device { top: 15px; left: 0; width: 430px; height: 280px; transform: scale(.75); transform-origin: top left; }
  .phone-device { right: 0; bottom: -10px; width: 145px; height: 300px; border-width: 5px; border-radius: 20px; }
  .phone-device header { height: 40px; }
  .phone-messages { padding: 10px 7px; }
  .phone-device footer { height: 42px; }
  .deployment-inner, .faq-inner { width: calc(100% - 28px); }
  .deployment-points { grid-template-columns: 1fr; }
  .plan-grid { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .plan-item { min-height: 0; padding: 26px; }
  .plan-note { width: calc(100% - 28px); line-height: 1.7; }
  .support-section { padding: 72px 0; }
  .support-copy h2 { font-size: 25px; }
  .cta-inner { width: calc(100% - 28px); flex-direction: column; align-items: flex-start; }
  .cta-inner h2 { font-size: 25px; }
  .cta-actions { width: 100%; }
  .cta-actions .button { flex: 1; padding: 0 10px; }
  .footer-main { width: calc(100% - 28px); grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { display: flex; }
  .footer-bottom { width: calc(100% - 28px); }
  .footer-contact-row, .footer-legal-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-records { justify-content: flex-start; }
  .floating-trial { display: flex; right: 12px; bottom: 12px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .hero-actions { grid-template-columns: 1fr; }
  .devices-visual { min-height: 310px; }
  .desktop-device { transform: scale(.66); }
  .phone-device { width: 132px; height: 282px; }
}

@media (max-width: 920px) {
  .page-hero-inner { width: calc(100% - 40px); min-height: 0; grid-template-columns: 1fr; gap: 22px; padding: 62px 0 70px; }
  .page-hero-copy { padding: 0; }
  .page-hero h1 { font-size: 45px; }
  .page-hero-copy > p { max-width: 660px; }
  .price-hero-visual, .agent-hero-visual { width: min(100%, 610px); margin: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .price-compare-grid { grid-template-columns: 1fr; }
  .agent-value-grid { grid-template-columns: 1fr 1fr; }
  .cooperation-grid { grid-template-columns: 1fr 1fr; }
  .agent-support-inner, .agent-require-inner { grid-template-columns: 1fr; gap: 36px; }
  .agent-support-inner, .agent-require-inner { width: calc(100% - 40px); }
  .download-hero-visual { min-height: 430px; }
  .download-screen { right: auto; left: 0; }
  .download-phone { right: 4%; }
  .download-grid { grid-template-columns: 1fr; }
  .download-card { min-height: 0; }
  .page-cta { padding-right: 20px; padding-left: 20px; }
}

@media (max-width: 640px) {
  .page-hero-inner { width: calc(100% - 28px); padding: 50px 0 56px; }
  .page-kicker { margin-bottom: 14px; font-size: 9px; }
  .page-hero h1 { font-size: 35px; }
  .page-hero-copy > p { margin: 18px 0 25px; font-size: 13px; line-height: 1.8; }
  .page-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .page-hero-actions .button { min-width: 0; padding: 0 10px; font-size: 11px; }
  .price-hero-visual, .agent-hero-visual { border-radius: 7px; }
  .price-visual-main { min-height: 235px; grid-template-columns: 1.15fr .85fr; gap: 12px; padding: 20px 15px; }
  .price-visual-bars { height: 150px; gap: 7px; padding: 14px 9px 0; }
  .price-visual-bars i { width: 17px; box-shadow: 5px 0 0 #bed1ef; }
  .price-visual-stat strong { font-size: 16px; }
  .price-visual-footer { height: 56px; }
  .price-visual-footer span { gap: 4px; font-size: 8px; }
  .price-visual-footer svg { width: 13px; }
  .pricing-grid, .price-compare-grid, .agent-value-grid, .cooperation-grid { width: calc(100% - 28px); }
  .pricing-card { padding: 24px; }
  .pricing-card-top span { font-size: 16px; }
  .pricing-number b { font-size: 32px; }
  .price-compare-section, .agent-dark-section, .agent-require-section { padding: 76px 0; }
  .price-compare-grid article { padding: 24px; }
  .agent-visual-metrics { padding: 16px 16px 10px; gap: 8px; }
  .agent-visual-metrics > div { padding: 14px; }
  .agent-visual-chart { height: 145px; gap: 8px; margin: 0 16px; padding: 20px 15px 0; }
  .agent-visual-chart i { width: 18px; box-shadow: 5px 0 0 #c1d2ec; }
  .agent-visual-foot { height: 54px; }
  .agent-value-grid, .cooperation-grid { grid-template-columns: 1fr; }
  .agent-value-grid article { min-height: 0; padding: 24px; }
  .cooperation-grid article { min-height: 0; padding: 24px; }
  .agent-support-inner, .agent-require-inner { width: calc(100% - 28px); }
  .agent-support-list, .require-list { grid-template-columns: 1fr; }
  .agent-support-list article { min-height: 0; padding: 21px; }
  .agent-require-copy h2 { font-size: 28px; }
  .require-list > div { min-height: 112px; padding: 19px; }
  .download-hero-visual { min-height: 330px; }
  .download-screen { top: 0; width: 390px; transform: scale(.77); transform-origin: top left; }
  .download-phone { right: 0; bottom: 0; width: 120px; min-height: 160px; border-width: 5px; }
  .download-grid { width: calc(100% - 28px); }
  .download-card { padding: 24px; }
  .download-card p { min-height: 0; }
  .download-note { width: calc(100% - 28px); flex-direction: column; align-items: flex-start; padding: 22px; margin: -28px auto 62px; }
  .page-cta { min-height: 0; flex-direction: column; align-items: flex-start; gap: 26px; padding: 62px 14px; }
  .page-cta h2 { font-size: 25px; }
  .page-cta p { font-size: 11px; }
  .page-cta .cta-actions { width: 100%; }
  .page-cta .cta-actions .button { flex: 1; min-width: 0; padding: 0 9px; font-size: 11px; }
}

@media (max-width: 420px) {
  .page-hero h1 { font-size: 31px; }
  .page-hero-actions { grid-template-columns: 1fr; }
  .price-visual-main { grid-template-columns: 1fr; }
  .price-visual-stat { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 6px 12px; padding: 0; }
  .price-visual-stat small { grid-column: 1 / -1; }
  .price-visual-stat strong { margin-top: 0; font-size: 15px; }
  .price-visual-stat span { margin-top: 0; }
  .price-visual-bars { height: 125px; }
  .agent-visual-metrics strong { font-size: 21px; }
  .download-hero-visual { min-height: 285px; }
  .download-screen { transform: scale(.66); }
  .download-phone { width: 105px; min-height: 145px; padding: 14px 10px; }
  .download-phone svg { width: 34px; height: 34px; }
}

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

.news-page-hero { background: #193b54; }
.news-hero-visual { min-height: 310px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 28px; padding: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(5,27,45,.24); }
.news-hero-visual > div:first-child { display: grid; gap: 13px; }
.news-hero-visual svg { width: 48px; height: 48px; color: #91e2c1; }
.news-hero-visual span { color: #c4d7df; font-size: 11px; letter-spacing: 1px; }
.news-hero-visual strong { color: #fff; font-size: 25px; }
.news-hero-lines { height: 180px; display: flex; align-items: flex-end; gap: 12px; padding: 18px 12px; border-left: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.news-hero-lines i { width: 24px; min-height: 28px; display: block; border-radius: 4px 4px 0 0; background: #7fd3b0; }
.news-hero-lines i:nth-child(1) { height: 38%; opacity: .5; }
.news-hero-lines i:nth-child(2) { height: 58%; opacity: .7; }
.news-hero-lines i:nth-child(3) { height: 75%; opacity: .84; }
.news-hero-lines i:nth-child(4) { height: 92%; }
.news-list-section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.news-toolbar { margin-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.news-toolbar h2 { margin: 9px 0 0; font-size: 29px; }
.section-kicker { color: #6682a2; font-size: 10px; font-weight: 850; letter-spacing: 1.5px; }
.news-categories { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.news-categories button { min-height: 34px; padding: 0 14px; border: 1px solid #d5dce5; border-radius: 5px; color: #687386; background: #fff; font-size: 11px; cursor: pointer; }
.news-categories button.active, .news-categories button:hover { border-color: var(--blue); color: var(--blue); background: #edf3ff; }
.news-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.news-card { display: flex; min-height: 340px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; box-shadow: 0 8px 24px rgba(28,38,55,.06); transition: transform .18s ease, box-shadow .18s ease; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(28,38,55,.12); }
.news-card > img, .news-card-cover-placeholder { width: 100%; height: 174px; flex: 0 0 auto; object-fit: cover; background: #eaf0f7; }
.news-card-cover-placeholder { display: grid; place-items: center; color: #4371ae; background: linear-gradient(135deg, #eaf2fb, #d9e6f4); }
.news-card-cover-placeholder svg { width: 35px; height: 35px; }
.news-card-body { display: flex; min-height: 165px; flex: 1; flex-direction: column; padding: 18px 19px 16px; }
.news-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.news-card-top span { color: var(--blue); font-size: 10px; font-weight: 800; }
.news-card-top time { color: #8b95a2; font-size: 9px; }
.news-card h3 { margin: 14px 0 8px; color: var(--ink); font-size: 16px; line-height: 1.45; }
.news-card p { display: -webkit-box; margin: 0; overflow: hidden; color: #6e7888; font-size: 11px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news-card-foot { margin-top: auto; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #edf0f3; color: #8b95a2; font-size: 9px; }
.news-card-foot svg { width: 15px; color: var(--blue); }
.news-loading, .news-load-error, .news-empty { grid-column: 1 / -1; min-height: 180px; display: grid; place-items: center; border: 1px dashed #ccd5df; border-radius: 7px; color: #7d8897; background: #fff; font-size: 12px; }
.news-empty { display: flex; flex-direction: column; gap: 8px; }
.news-empty[hidden], .article-detail[hidden], .article-loading[hidden], .article-error[hidden] { display: none !important; }
.news-empty strong { color: var(--ink); font-size: 15px; }
.news-empty span { color: #7d8897; font-size: 11px; }
.article-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 92px; }
.article-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 26px; color: #8691a0; font-size: 11px; }
.article-breadcrumb a { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-weight: 700; }
.article-breadcrumb svg { width: 14px; }
.article-detail { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 35px rgba(28,38,55,.07); }
.article-detail-head { padding: 46px 54px 32px; }
.article-detail-category { min-height: 25px; padding: 0 9px; display: inline-flex; align-items: center; border-radius: 4px; color: var(--blue); background: #eaf1ff; font-size: 10px; font-weight: 800; }
.article-detail h1 { margin: 19px 0 14px; color: var(--ink); font-size: 37px; line-height: 1.3; }
.article-detail-head > p { margin: 0; color: #6e7888; font-size: 14px; line-height: 1.8; }
.article-meta { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 18px; color: #8c96a3; font-size: 10px; }
.article-meta span:last-child { display: inline-flex; align-items: center; gap: 4px; }
.article-meta svg { width: 13px; }
.article-meta b { color: #637083; font-weight: 700; }
.article-cover { width: 100%; max-height: 420px; object-fit: cover; }
.article-content { padding: 38px 54px 58px; color: #445164; font-size: 15px; line-height: 2.05; white-space: pre-wrap; overflow-wrap: anywhere; }
.article-loading, .article-error { min-height: 300px; display: grid; place-items: center; gap: 13px; border: 1px dashed #ccd5df; border-radius: 7px; color: #7d8897; background: #fff; font-size: 12px; }
.article-error { display: flex; flex-direction: column; }
.article-error strong { color: var(--ink); font-size: 17px; }

@media (max-width: 920px) {
  .news-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-hero-visual { min-height: 250px; }
}

@media (max-width: 640px) {
  .news-list-section, .article-shell { width: calc(100% - 28px); }
  .news-toolbar { align-items: flex-start; flex-direction: column; gap: 17px; }
  .news-categories { justify-content: flex-start; }
  .news-list { grid-template-columns: 1fr; }
  .news-hero-visual { min-height: 210px; padding: 23px; grid-template-columns: 1fr .8fr; gap: 12px; }
  .news-hero-visual strong { font-size: 18px; }
  .news-hero-lines { height: 130px; gap: 6px; padding: 10px 7px; }
  .news-hero-lines i { width: 15px; }
  .article-shell { padding: 34px 0 62px; }
  .article-detail-head { padding: 29px 22px 24px; }
  .article-detail h1 { margin-top: 14px; font-size: 27px; }
  .article-detail-head > p { font-size: 12px; }
  .article-content { padding: 26px 22px 37px; font-size: 14px; line-height: 1.9; }
}
