/* ====================================================
   WPS5 — "数字工坊 / Digital Workshop"
   Prussian Blue (#1d3557) + Electric Coral (#e63946) +
   Warm Amber (#f4a261) + Soft White (#f8f9fa) base
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1d3557;
  --blue-mid: #2c4a72;
  --blue-light: #457b9d;
  --coral: #e63946;
  --coral-dark: #c1121f;
  --amber: #f4a261;
  --amber-dark: #e76f51;
  --teal: #2a9d8f;
  --violet: #7b2d8b;
  --sky: #48cae4;
  --white: #ffffff;
  --surface: #f8f9fa;
  --surface2: #eef2f7;
  --ink: #0d1b2a;
  --ink2: #1b2838;
  --muted: #5c6e82;
  --border: #dde3ec;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(29,53,87,0.10);
  --shadow-lg: 0 12px 48px rgba(29,53,87,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif; background: var(--white); color: var(--ink); font-size: 15px; line-height: 1.65; }

/* ---- Layout ---- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 80px 0; }
.sec-sm { padding: 56px 0; }
.sec-white { background: var(--white); }
.sec-surface { background: var(--surface); }
.sec-surface2 { background: var(--surface2); }
.sec-blue { background: var(--blue); }
.sec-ink { background: var(--ink); }
.sec-coral { background: var(--coral); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,57,70,.35); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,53,87,.3); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-dark); color: #fff; transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #21867a; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-w:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--surface); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--blue); }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ====================================================
   NAVBAR
   ==================================================== */
.dw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.dw-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.dw-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.dw-brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 18px; font-style: italic; letter-spacing: -1px;
}
.dw-brand-text { font-weight: 700; font-size: 16px; color: var(--ink); }
.dw-brand-sub { font-size: 11px; color: var(--muted); font-weight: 400; display: block; }
.dw-links { display: flex; align-items: center; gap: 4px; }
.dw-link {
  padding: 6px 13px; border-radius: 6px; font-size: 14px; font-weight: 500;
  color: var(--muted); text-decoration: none; transition: all .2s;
}
.dw-link:hover, .dw-link.on { color: var(--blue); background: var(--surface2); }
.dw-link.on { color: var(--coral); }
.dw-cta { margin-left: 12px; }
.dw-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.dw-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .2s; }
.dw-mob {
  display: none; flex-direction: column;
  position: fixed; top: 64px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px; z-index: 99; gap: 4px;
}
.dw-mob.show { display: flex; }
.dw-mob .dw-link { padding: 10px 12px; font-size: 15px; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh; padding-top: 64px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(230,57,70,.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(244,162,97,.10) 0%, transparent 45%);
  pointer-events: none;
}
/* subtle grid pattern */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0 100px;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,.18); border: 1px solid rgba(230,57,70,.35);
  color: #ff8a93; padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-h1 {
  font-size: 52px; font-weight: 800; line-height: 1.12;
  color: #fff; margin-bottom: 20px;
}
.hero-h1 .hl { color: var(--coral); }
.hero-h1 .hl2 { color: var(--amber); }
.hero-p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: 13px;
}
.hero-badge svg { color: var(--amber); flex-shrink: 0; }

/* Hero Visual — Workshop Panel */
.hero-vis { position: relative; animation: floatY 5s ease-in-out infinite; }
.hw-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.hw-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hw-dots { display: flex; gap: 5px; }
.hw-dot { width: 10px; height: 10px; border-radius: 50%; }
.hw-dot.r { background: #ff5f57; }
.hw-dot.y { background: #febc2e; }
.hw-dot.g { background: #28c840; }
.hw-topbar-title { font-size: 12px; color: rgba(255,255,255,.5); margin-left: auto; margin-right: auto; }
.hw-body { padding: 20px; }
.hw-tabs { display: flex; gap: 4px; margin-bottom: 18px; }
.hw-tab {
  padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.45); cursor: pointer; background: transparent;
}
.hw-tab.on { background: var(--coral); color: #fff; }
.hw-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.hw-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 14px;
}
.hw-card-label { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.hw-card-val { font-size: 22px; font-weight: 700; color: #fff; }
.hw-card-val.cv-coral { color: var(--coral); }
.hw-card-val.cv-amber { color: var(--amber); }
.hw-card-val.cv-teal { color: #4ecdc4; }
.hw-card-val.cv-sky { color: var(--sky); }
.hw-chart-title { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.hw-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hw-bar-label { font-size: 11px; color: rgba(255,255,255,.55); width: 52px; flex-shrink: 0; }
.hw-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.hw-bar-fill { height: 100%; border-radius: 3px; }
.hw-bar-fill.bf-coral { background: var(--coral); width: 88%; }
.hw-bar-fill.bf-amber { background: var(--amber); width: 72%; }
.hw-bar-fill.bf-teal { background: var(--teal); width: 91%; }
.hw-bar-fill.bf-sky { background: var(--sky); width: 65%; }
.hw-bar-val { font-size: 11px; color: rgba(255,255,255,.55); width: 28px; text-align: right; }

/* ====================================================
   STATS BAND
   ==================================================== */
.stats-band {
  background: var(--blue);
  padding: 44px 0;
}
.stats-row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item {
  text-align: center; padding: 16px 40px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 36px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-num.sn-coral { color: var(--coral); }
.stat-num.sn-amber { color: var(--amber); }
.stat-num.sn-sky { color: var(--sky); }
.stat-num.sn-teal { color: #4ecdc4; }
.stat-num.sn-white { color: #fff; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.6); }

/* ====================================================
   SECTION HEADERS
   ==================================================== */
.sec-hd { text-align: center; margin-bottom: 56px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-eyebrow.ey-coral { color: var(--coral); }
.sec-eyebrow.ey-blue { color: var(--blue); }
.sec-eyebrow.ey-amber { color: var(--amber-dark); }
.sec-eyebrow.ey-teal { color: var(--teal); }
.sec-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.sec-title { font-size: 36px; font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.sec-title.light { color: #fff; }
.sec-sub { font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto; }
.sec-sub.light { color: rgba(255,255,255,.65); }
.hl { color: var(--coral); }
.hl2 { color: var(--blue); }
.hl3 { color: var(--amber-dark); }

/* ====================================================
   FEATURES — Card Grid
   ==================================================== */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 72px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--coral); border-radius: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card.fc-amber::before { background: var(--amber); }
.feat-card.fc-teal::before { background: var(--teal); }
.feat-card.fc-violet::before { background: var(--violet); }
.feat-card.fc-sky::before { background: var(--sky); }
.feat-card.fc-blue::before { background: var(--blue); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-icon.fi-coral { background: rgba(230,57,70,.1); color: var(--coral); }
.feat-icon.fi-amber { background: rgba(244,162,97,.15); color: var(--amber-dark); }
.feat-icon.fi-teal { background: rgba(42,157,143,.12); color: var(--teal); }
.feat-icon.fi-violet { background: rgba(123,45,139,.1); color: var(--violet); }
.feat-icon.fi-sky { background: rgba(72,202,228,.12); color: #1a9bb0; }
.feat-icon.fi-blue { background: rgba(29,53,87,.1); color: var(--blue); }
.feat-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.feat-tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  background: var(--surface2); color: var(--blue-light);
}

/* Features — Deep Rows */
.deep-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 80px;
}
.deep-row:last-child { margin-bottom: 0; }
.deep-row.flip .deep-info { order: 2; }
.deep-row.flip .deep-vis { order: 1; }
.deep-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.deep-label.dl-coral { color: var(--coral); }
.deep-label.dl-amber { color: var(--amber-dark); }
.deep-label.dl-teal { color: var(--teal); }
.deep-label-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.deep-h3 { font-size: 28px; font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.25; }
.deep-p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.deep-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.deep-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink2);
}
.deep-list-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.deep-list-dot.d-coral { background: var(--coral); }
.deep-list-dot.d-amber { background: var(--amber); }
.deep-list-dot.d-teal { background: var(--teal); }
/* data panel */
.deep-vis {
  background: var(--surface2); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
}
.dv-title { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; }
.dv-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.dv-bar-lbl { font-size: 13px; color: var(--ink2); width: 70px; flex-shrink: 0; }
.dv-bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.dv-bar-fill { height: 100%; border-radius: 4px; }
.dv-bar-fill.dbf-coral { background: var(--coral); }
.dv-bar-fill.dbf-amber { background: var(--amber); }
.dv-bar-fill.dbf-teal { background: var(--teal); }
.dv-bar-fill.dbf-blue { background: var(--blue-light); }
.dv-bar-val { font-size: 12px; color: var(--muted); width: 32px; text-align: right; }
.dv-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.dv-stat {
  text-align: center; padding: 12px 8px;
  background: #fff; border-radius: 10px; border: 1px solid var(--border);
}
.dv-stat-num { font-size: 20px; font-weight: 700; }
.dv-stat-num.cs-coral { color: var(--coral); }
.dv-stat-num.cs-amber { color: var(--amber-dark); }
.dv-stat-num.cs-teal { color: var(--teal); }
.dv-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ====================================================
   PLATFORMS
   ==================================================== */
.plat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.plat-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  position: relative;
}
.plat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--blue-light); }
.plat-card.featured { border-color: var(--coral); }
.plat-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px;
  white-space: nowrap;
}
.plat-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.plat-icon.pi-win { background: rgba(29,53,87,.08); color: var(--blue); }
.plat-icon.pi-mac { background: rgba(0,0,0,.06); color: #333; }
.plat-icon.pi-ios { background: rgba(0,122,255,.08); color: #0a7ef0; }
.plat-icon.pi-and { background: rgba(52,168,83,.1); color: #2e8b57; }
.plat-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.plat-ver { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.plat-req { font-size: 12px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.plat-btn { width: 100%; justify-content: center; }

/* ====================================================
   REVIEWS
   ==================================================== */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .25s;
}
.rev-card:hover { box-shadow: var(--shadow); }
.rev-stars { display: flex; gap: 3px; color: #f4b942; font-size: 16px; margin-bottom: 14px; }
.rev-text { font-size: 14px; color: var(--ink2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.rev-footer { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.av-coral { background: linear-gradient(135deg, #e63946, #c1121f); }
.av-amber { background: linear-gradient(135deg, #f4a261, #e76f51); }
.av-teal { background: linear-gradient(135deg, #2a9d8f, #006d6f); }
.av-blue { background: linear-gradient(135deg, #1d3557, #457b9d); }
.av-violet { background: linear-gradient(135deg, #7b2d8b, #4a1060); }
.av-sky { background: linear-gradient(135deg, #48cae4, #0096c7); }
.rev-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.rev-role { font-size: 12px; color: var(--muted); }

/* ====================================================
   SECURITY
   ==================================================== */
.sec-items-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 56px; }
.sec-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}
.sec-item-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.sii-coral { background: rgba(230,57,70,.1); color: var(--coral); }
.sii-amber { background: rgba(244,162,97,.15); color: var(--amber-dark); }
.sii-teal { background: rgba(42,157,143,.12); color: var(--teal); }
.sii-blue { background: rgba(29,53,87,.1); color: var(--blue); }
.sec-item-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.sec-item-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Compare table */
.cmp-wrap { overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th {
  background: var(--blue); color: #fff;
  padding: 14px 18px; text-align: center; font-size: 14px; font-weight: 700;
  white-space: nowrap;
}
.cmp-table th:first-child { text-align: left; background: var(--ink); }
.cmp-table .cmp-hl { background: rgba(230,57,70,.07); }
.cmp-table td {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  text-align: center; font-size: 14px; color: var(--ink2);
}
.cmp-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: var(--surface); }
.yes { color: var(--teal); font-weight: 700; }
.no { color: #aaa; }
.part { color: var(--amber-dark); font-weight: 600; }

/* ====================================================
   VERSIONS
   ==================================================== */
.ver-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.ver-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.ver-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ver-card.popular {
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(230,57,70,.15);
}
.ver-pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 16px; border-radius: 20px;
}
.ver-name { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ver-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.ver-price { margin-bottom: 28px; }
.ver-price-main { font-size: 42px; font-weight: 900; color: var(--ink); line-height: 1; }
.ver-price-main.coral { color: var(--coral); }
.ver-price-cy { font-size: 18px; font-weight: 700; vertical-align: super; margin-right: 2px; }
.ver-price-period { font-size: 14px; color: var(--muted); margin-left: 4px; }
.ver-price-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.ver-sep { height: 1px; background: var(--border); margin: 0 0 24px; }
.ver-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ver-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink2);
}
.ver-check { flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.ver-check.no { color: #ccc; }
.ver-cta { width: 100%; justify-content: center; }

/* ====================================================
   FAQ
   ==================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer; user-select: none;
  font-size: 15px; font-weight: 600; color: var(--ink);
  transition: background .2s;
  gap: 16px;
}
.faq-q:hover { background: var(--surface); }
.faq-item.open .faq-q { background: var(--surface2); color: var(--coral); }
.faq-chevron {
  flex-shrink: 0; transition: transform .3s;
  color: var(--muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--coral); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14px; color: var(--muted); line-height: 1.75;
}
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul { padding-left: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(230,57,70,.18) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.cta-h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: var(--ink); padding: 44px 0 32px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-mark {
  width: 32px; height: 32px; border-radius: 8px; background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 16px; font-style: italic;
}
.footer-brand-text { font-size: 14px; color: rgba(255,255,255,.6); }
.footer-right { text-align: right; }
.footer-security { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.footer-note { font-size: 12px; color: rgba(255,255,255,.35); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 40px; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .plat-grid { grid-template-columns: repeat(2,1fr); }
  .rev-grid { grid-template-columns: repeat(2,1fr); }
  .ver-grid { gap: 20px; }
  .sec-items-grid { grid-template-columns: repeat(2,1fr); }
  .dv-stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .dw-links, .dw-cta { display: none; }
  .dw-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 80px; }
  .hero-vis { display: none; }
  .hero-h1 { font-size: 34px; }
  .stats-row { gap: 0; }
  .stat-item { padding: 14px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 50%; }
  .feat-grid { grid-template-columns: 1fr; }
  .deep-row { grid-template-columns: 1fr; gap: 32px; }
  .deep-row.flip .deep-info { order: 1; }
  .deep-row.flip .deep-vis { order: 2; }
  .plat-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .sec-items-grid { grid-template-columns: 1fr 1fr; }
  .ver-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 28px; }
  .cta-h2 { font-size: 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .dv-stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; }
  .plat-grid { grid-template-columns: 1fr; }
  .sec-items-grid { grid-template-columns: 1fr; }
  .stat-item { width: 100%; }
  .hw-cards { grid-template-columns: 1fr 1fr; }
  .dv-stats { grid-template-columns: repeat(3,1fr); }
  .ver-grid { grid-template-columns: 1fr; }
}
