/* 三端一体 · 任务预约接单管理系统 — 官方展示站设计系统 */
:root {
  --blue-deep: #0c2340;
  --blue: #1565ff;
  --blue-light: #3b8cff;
  --cyan: #2dd4bf;
  --cyan-bg: #ecfeff;
  --orange: #ff9f5a;
  --orange-bg: #fff7ed;
  --white: #ffffff;
  --bg: #f6f9fc;
  --bg-hero: linear-gradient(165deg, #f0f7ff 0%, #ffffff 38%, #f8fbff 72%, #ffffff 100%);
  --text: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --line: #e8eef4;
  --shadow-xs: 0 1px 3px rgba(15, 35, 64, 0.04);
  --shadow: 0 8px 30px rgba(21, 101, 255, 0.07);
  --shadow-hover: 0 16px 48px rgba(21, 101, 255, 0.12);
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --header: 72px;
  --wrap: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.32s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--t), transform var(--t), box-shadow var(--t), background var(--t); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* Header */
.topbar {
  position: fixed; inset: 0 0 auto 0; height: var(--header); z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 238, 244, 0.9);
}
.topbar-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.topbar-logo img { width: 130px; height: auto; }
.topbar-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  min-height: 40px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-body);
  border-radius: 10px;
}
.nav a:hover, .nav a.on { color: var(--blue); background: rgba(21, 101, 255, 0.07); }
.topbar-end { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; font-size: 14px; font-weight: 600; border-radius: 12px; border: none; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0d4fd4 100%);
  box-shadow: 0 4px 16px rgba(21, 101, 255, 0.28);
}
.btn-blue:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(21, 101, 255, 0.38); }
.btn-line {
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(21, 101, 255, 0.22);
}
.btn-line:hover { background: rgba(21, 101, 255, 0.05); transform: scale(1.02); }
.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(255, 159, 90, 0.35);
}
.btn-orange:hover { transform: scale(1.03); }
.menu { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu i { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; }

/* Banner 首屏 */
.banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header) + 48px) 0 88px;
  background: var(--bg-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(45, 212, 191, 0.06) 45%, rgba(21, 101, 255, 0.08) 55%, transparent 100%);
  background-size: 200% 100%;
  animation: bannerFlow 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bannerFlow {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}
.banner-orb {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.banner-orb.a { width: 480px; height: 480px; top: -100px; right: -60px; background: rgba(21, 101, 255, 0.1); }
.banner-orb.b { width: 360px; height: 360px; bottom: -80px; left: -40px; background: rgba(45, 212, 191, 0.08); }
.banner-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.banner h1 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.banner .sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}
.banner .slogan {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.banner-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--blue);
  background: rgba(21, 101, 255, 0.06); border: 1px solid rgba(21, 101, 255, 0.12);
  border-radius: 100px;
}
.banner-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Mock 三端预览 */
.mock-wrap { position: relative; padding: 20px; }
.mock-desk {
  background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line);
  box-shadow: var(--shadow-hover); padding: 18px;
  transition: transform var(--t), box-shadow var(--t);
}
.mock-wrap:hover .mock-desk { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.mock-titlebar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-titlebar span { width: 9px; height: 9px; border-radius: 50%; }
.mock-titlebar span:nth-child(1) { background: #ff6b6b; }
.mock-titlebar span:nth-child(2) { background: #ffd166; }
.mock-titlebar span:nth-child(3) { background: #06d6a0; }
.mock-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.mock-metric {
  padding: 12px; text-align: center; background: var(--bg); border-radius: var(--r);
  border: 1px solid var(--line);
}
.mock-metric strong { display: block; font-size: 18px; color: var(--blue); font-weight: 800; }
.mock-metric em { font-size: 11px; color: var(--text-muted); font-style: normal; }
.mock-chart {
  height: 88px; border-radius: var(--r); background: linear-gradient(180deg, rgba(21,101,255,0.06), transparent);
  position: relative; overflow: hidden;
}
.mock-chart svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 75%; }
.mock-phone {
  position: absolute; width: 118px; background: #fff; border-radius: 16px;
  border: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px;
  animation: floatY 5s ease-in-out infinite;
}
.mock-phone.user { right: -4px; top: 36px; }
.mock-phone.worker { left: -8px; bottom: 48px; animation-delay: -2.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-shell {
  aspect-ratio: 9/14; border-radius: 12px; padding: 10px 8px;
  background: linear-gradient(180deg, #e8f2ff, #fff);
  border: 1px solid var(--line);
}
.phone-shell.dark { background: linear-gradient(180deg, #0c2340, #1e4976); }
.phone-line { height: 5px; background: rgba(21,101,255,0.15); border-radius: 3px; margin-bottom: 6px; }
.phone-shell.dark .phone-line { background: rgba(255,255,255,0.2); }
.phone-line.w70 { width: 70%; }
.phone-line.w50 { width: 50%; }
.phone-btn { height: 22px; margin-top: 8px; border-radius: 11px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.mock-phone small { display: block; text-align: center; margin-top: 6px; font-size: 10px; color: var(--text-muted); }

/* Section */
.block { padding: 96px 0; }
.block.gray { background: var(--bg); }
.head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.head .label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.head h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.head p { font-size: 16px; color: var(--text-body); font-weight: 400; }

/* 四宫格 */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card4 {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 24px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card4:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(21, 101, 255, 0.15); }
.card4 .ico {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(21,101,255,0.1), rgba(45,212,191,0.08));
  color: var(--blue);
}
.card4 .ico svg { width: 24px; height: 24px; }
.card4 h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card4 p { font-size: 14px; color: var(--text-body); line-height: 1.8; }

/* 三端展示 */
.term3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.term {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t);
}
.term:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.term-hd { padding: 26px 24px 18px; border-bottom: 1px solid var(--line); }
.term-tag {
  display: inline-block; padding: 4px 11px; font-size: 11px; font-weight: 700;
  border-radius: 6px; margin-bottom: 10px;
}
.term-tag.pc { background: var(--orange-bg); color: #ea580c; }
.term-tag.h5 { background: rgba(21,101,255,0.08); color: var(--blue); }
.term-tag.app { background: var(--cyan-bg); color: #0d9488; }
.term-hd h3 { font-size: 19px; font-weight: 700; color: var(--text); }
.term-hd p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.term-bd { padding: 22px; min-height: 200px; background: linear-gradient(180deg, #fafcff, #fff); }

/* 功能缩略 */
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.thumb {
  display: flex; gap: 14px; padding: 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t);
}
.thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.thumb-no {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.thumb h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.thumb p { font-size: 13px; color: var(--text-body); }

/* 页头 */
.pg-head {
  padding: calc(var(--header) + 52px) 0 64px;
  background: var(--bg-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(21,101,255,0.04) 50%, transparent 60%);
  animation: bannerFlow 12s ease-in-out infinite;
  pointer-events: none;
}
.pg-head .wrap { position: relative; z-index: 1; }
.pg-head h1 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.pg-head .lead { font-size: 17px; color: var(--text-body); max-width: 600px; margin: 0 auto; }

/* 左右分栏 */
.row2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 72px 0;
}
.row2.flip .row2-visual { order: -1; }
.row2-text .tag {
  display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 700;
  color: var(--blue); background: rgba(21,101,255,0.07); border-radius: 8px; margin-bottom: 14px;
}
.row2-text h2 { font-size: 30px; font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.25; }
.row2-text p { font-size: 15px; margin-bottom: 14px; }
.row2-visual {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px; box-shadow: var(--shadow);
}

/* 功能页模块 */
.mod-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.mod-ico {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; box-shadow: 0 8px 22px rgba(21, 101, 255, 0.22);
}
.mod-ico.teal { background: linear-gradient(135deg, #0d9488, #2dd4bf); box-shadow: 0 8px 22px rgba(13, 148, 136, 0.22); }
.mod-ico.orange { background: linear-gradient(135deg, #ea580c, var(--orange)); box-shadow: 0 8px 22px rgba(234, 88, 12, 0.22); }
.mod-ico svg { width: 28px; height: 28px; }
.mod-head h2 { font-size: 26px; font-weight: 800; color: var(--text); }
.mod-head p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch;
  margin-bottom: 32px;
}
.feat-row:nth-child(even) .feat-pic { order: -1; }
.feat-copy {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; display: flex; flex-direction: column; justify-content: center;
  transition: box-shadow var(--t), transform var(--t);
}
.feat-copy:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-copy h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feat-copy .sub { font-size: 14px; color: var(--blue); font-weight: 600; margin-bottom: 14px; }
.feat-copy p { font-size: 14px; margin-bottom: 16px; }
.feat-list li {
  font-size: 14px; padding: 7px 0 7px 22px; position: relative; color: var(--text-body);
}
.feat-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.feat-pic {
  background: linear-gradient(145deg, #f0f7ff, #fff);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; min-height: 280px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-xs);
}

/* 优势列表 */
.adv-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.adv-item {
  display: flex; gap: 22px; padding: 32px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t);
}
.adv-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.adv-item .n {
  font-size: 40px; font-weight: 800; line-height: 1; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.35;
}
.adv-item h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.adv-item p { font-size: 14px; }

/* 场景 */
.scene6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scene {
  padding: 30px 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); transition: transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.scene::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.scene:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.scene:hover::before { transform: scaleX(1); }
.scene h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.scene p { font-size: 14px; }

/* 联系 */
.contact2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.panel {
  padding: 36px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-xs);
}
.panel h3 {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.info {
  padding: 20px; background: var(--bg); border-radius: var(--r);
  border: 1px solid var(--line); margin-bottom: 16px;
}
.info h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.info p { font-size: 14px; }

.panel-intro .intro-block {
  padding: 28px 32px;
  background: linear-gradient(165deg, #f8fbff 0%, #f6f9fc 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  line-height: 1.9;
}
.panel-intro .intro-block p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 18px;
  text-align: justify;
}
.panel-intro .intro-block p:last-child { margin-bottom: 0; }
.panel-intro .intro-block strong {
  color: var(--text);
  font-weight: 700;
}
.contact-lines li {
  display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.contact-lines li:last-child { border-bottom: none; }
.contact-lines dt { font-weight: 600; color: var(--text); min-width: 72px; }
.contact-lines a { color: var(--blue); font-weight: 500; }

/* 引导条 */
.guide-bar {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(21,101,255,0.04), rgba(45,212,191,0.06));
  border: 1px solid rgba(21, 101, 255, 0.1);
  border-radius: var(--r-xl);
}
.guide-bar h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.guide-bar p { font-size: 15px; margin-bottom: 24px; }
.guide-bar .btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Footer 浅色 */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 36px; border-radius: 9px; }
.footer-brand b { font-size: 17px; color: var(--text); }
.footer-grid p, .footer-grid a { font-size: 14px; color: var(--text-body); }
.footer-grid h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--blue); }
.footer-btm {
  padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.footer-btm a { color: var(--blue); }

/* 动效 reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.show { opacity: 1; transform: none; }

/* UI mock 组件 */
.ui-rows { display: flex; flex-direction: column; gap: 8px; }
.ui-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.ui-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #dbeafe, #e0f2fe); flex-shrink: 0; }
.ui-bar { flex: 1; height: 6px; background: #e8eef4; border-radius: 3px; }
.ui-bar.short { max-width: 55%; }
.ui-pill { padding: 3px 10px; font-size: 10px; font-weight: 700; border-radius: 100px; background: rgba(21,101,255,0.1); color: var(--blue); }

/* 价格收费 */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(21, 101, 255, 0.18);
}
.price-card.price-hot {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}
.price-card.price-hot:hover { box-shadow: var(--shadow-hover); }
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0d4fd4);
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(21, 101, 255, 0.35);
}
.price-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(21,101,255,0.1), rgba(45,212,191,0.08));
  color: var(--blue);
  margin-bottom: 20px;
}
.price-card.price-hot .price-ico {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
}
.price-ico svg { width: 26px; height: 26px; }
.price-card h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.price-num { margin-bottom: 10px; line-height: 1; }
.price-yen { font-size: 20px; font-weight: 700; color: var(--blue); vertical-align: top; }
.price-val { font-size: 44px; font-weight: 800; color: var(--blue); letter-spacing: -1px; }
.price-unit { font-size: 14px; color: var(--text-muted); margin-left: 4px; }
.price-tip {
  font-size: 13px; color: var(--text-body);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.price-list { flex: 1; margin-bottom: 28px; }
.price-list li {
  font-size: 14px;
  padding: 9px 0 9px 26px;
  position: relative;
  color: var(--text-body);
  border-bottom: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(21, 101, 255, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231565ff' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t);
}
.faq-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.faq-item p { font-size: 14px; }

@media (max-width: 1024px) {
  .banner-grid, .row2, .feat-row { grid-template-columns: 1fr; gap: 40px; }
  .feat-row:nth-child(even) .feat-pic { order: 0; }
  .row2.flip .row2-visual { order: 0; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .term3, .thumbs, .scene6, .adv-list, .contact2, .price-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mock-phone { display: none; }
}
@media (max-width: 768px) {
  .topbar-name { display: none; }
  .topbar-logo img { width: 108px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--header); left: 0; right: 0; background: #fff;
    padding: 16px 28px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); z-index: 99;
  }
  .menu { display: flex; }
  .grid4 { grid-template-columns: 1fr; }
  .block { padding: 72px 0; }
}
