:root {
  color-scheme: light;
  --bg: #f7f9ff;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #f0f4ff;
  --ink: #0d1117;
  --text: #20283a;
  --muted: #4b5677;
  --soft: #7c86a6;
  --line: rgba(17, 71, 200, 0.13);
  --line-strong: rgba(17, 71, 200, 0.26);
  --brand: #1147c8;
  --brand-hover: #2d5fe0;
  --brand-soft: #ebf0ff;
  --brand-border: #c7d3ff;
  --success: #0f766e;
  --violet: #5b5bd6;
  --shadow: 0 28px 70px rgba(17, 35, 90, 0.16);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #080b12;
  --bg-2: #101521;
  --panel: #141b2a;
  --panel-2: #0f1624;
  --ink: #f5f7fb;
  --text: #edf1fa;
  --muted: #9aa7c7;
  --soft: #74809d;
  --line: rgba(199, 211, 255, 0.14);
  --line-strong: rgba(199, 211, 255, 0.28);
  --brand: #7ea3f5;
  --brand-hover: #a6bef8;
  --brand-soft: #17264a;
  --brand-border: #2a3a6a;
  --success: #2dd4bf;
  --violet: #9c96ff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(rgba(17, 71, 200, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 71, 200, 0.055) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

:root[data-theme="dark"] body {
  background:
    linear-gradient(rgba(126, 163, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 163, 245, 0.06) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: color-mix(in srgb, var(--bg-2) 90%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 216px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: #1147c8;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-domain {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-blue,
.hero h1 span,
.hero-domain,
.console-bar strong {
  color: var(--brand);
}

.brand-dot {
  margin-left: 1px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--brand);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-action,
.primary-action,
.secondary-action,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.header-action {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: var(--panel);
}

.header-action:hover,
.secondary-action:hover {
  color: var(--brand);
  border-color: var(--brand-border);
}

.theme-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  color: #f7f9ff;
  background: #111317;
  border: 1px solid #111317;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}

.theme-toggle-text {
  display: none;
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f7f9ff;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111317;
}

:root[data-theme="dark"] .theme-toggle {
  color: #111317;
  background: #f7f9ff;
  border-color: #f7f9ff;
}

:root[data-theme="dark"] .theme-toggle-icon {
  background: #111317;
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  display: none;
}

.primary-action {
  color: #ffffff;
  background: #1147c8;
  border: 1px solid #1147c8;
  box-shadow: 0 16px 34px rgba(17, 71, 200, 0.18);
}

.primary-action:hover {
  background: #2d5fe0;
  border-color: #2d5fe0;
}

.secondary-action {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
}

.hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 76px;
  text-align: center;
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 5px 12px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-badge span {
  color: var(--muted);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-domain {
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 900;
}

.hero-lead {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  padding: 13px 18px;
  color: var(--muted);
  background: color-mix(in srgb, var(--brand-soft) 72%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.hero-strip svg,
.feature-icon svg,
.workflow-icon svg,
.plan-icon svg,
.plan-features svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-console {
  margin-top: 46px;
  overflow: hidden;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: var(--soft);
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.console-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.console-bar strong {
  margin-left: auto;
  font-size: 12px;
}

.console-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 300px;
}

.console-side {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 18px;
  background: color-mix(in srgb, var(--panel-2) 75%, var(--panel));
  border-right: 1px solid var(--line);
}

.console-side b,
.console-side span {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
}

.console-side b {
  color: var(--ink);
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line);
}

.console-table {
  display: grid;
  gap: 0;
  padding: 24px;
}

.console-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
  min-height: 74px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
}

.console-row.active {
  background: color-mix(in srgb, var(--success) 9%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--success) 34%, transparent);
  border-radius: var(--radius);
}

.console-row p {
  margin: 0;
  color: var(--muted);
}

.console-row p:last-child {
  color: var(--ink);
  font-weight: 800;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p,
.demo-copy > p:first-child {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2,
.demo-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: 0;
}

@media (min-width: 900px) {
  .product-section .section-heading {
    max-width: none;
  }

  .product-section .section-heading h2 {
    white-space: nowrap;
    font-size: 38px;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.workflow-step {
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card {
  min-height: 226px;
  padding: 24px;
}

.feature-icon,
.workflow-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
}

.feature-card h3,
.workflow-step h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
}

.feature-card p,
.workflow-step p,
.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--muted);
}

.demo-section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 30px;
  align-items: center;
}

.demo-copy {
  padding-right: 10px;
}

.demo-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.demo-frame {
  overflow: hidden;
  background: #111317;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.demo-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111317;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-step {
  min-height: 244px;
  padding: 26px;
}

.workflow-step strong {
  display: block;
  margin-bottom: 14px;
  color: var(--violet);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 30px;
  align-items: stretch;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 38px;
}

/* .pricing-hero--full: 全宽 hero，直接继承 .section 宽度 */
.pricing-hero--full {
  padding-top: 54px;
  padding-bottom: 30px;
}
.pricing-hero--full .pricing-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}
.pricing-hero--full h1 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}
.pricing-hero--full .pricing-hero-copy > p:last-child {
  max-width: none;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-hero-copy {
  display: grid;
  align-content: center;
}

.pricing-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.pricing-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: 0;
}

.pricing-hero-copy > p:last-child {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-summary {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-summary span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.pricing-summary strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.22;
}

.pricing-summary p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pricing-section {
  padding-top: 34px;
}

.pricing-group-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 54px 0 24px;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing-group-title::before,
.pricing-group-title::after {
  content: '';
  height: 1px;
  width: 50px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.subscription-grid > * {
  grid-column: span 2;
}

.buyout-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.buyout-grid > .pricing-card {
  flex: 0 1 calc(33.333% - 13.4px);
  min-width: 290px;
}

.four-plans-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.four-plans-grid > * {
  grid-column: span 1 !important;
}

/* 强对齐：让四个付费版本的价格和按钮等内容在同一高度对齐 */
@media (min-width: 1041px) {
  @supports (grid-template-rows: subgrid) {
    .pricing-grid.four-plans-grid {
      grid-template-rows: auto auto 1fr auto;
    }
    .pricing-grid.four-plans-grid > .pricing-card {
      grid-row: span 4;
      grid-template-rows: subgrid;
      row-gap: 0;
    }
  }
}

@media (max-width: 1040px) {
  .pricing-grid.four-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pricing-grid.four-plans-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 478px;
  padding: 26px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--panel) 88%, transparent), color-mix(in srgb, var(--panel) 96%, transparent));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 1;
}

.featured-plan {
  border-color: color-mix(in srgb, var(--brand) 46%, var(--line));
  box-shadow: 0 24px 56px rgba(17, 71, 200, 0.16);
}

.featured-plan::before {
  background: linear-gradient(90deg, #1147c8, #5b5bd6);
}

.recommended-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  color: #ffffff;
  background: #1147c8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.plan-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-right: 58px;
}

.plan-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
}

.plan-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.plan-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 76px;
  margin-top: 28px;
  color: var(--ink);
}

.plan-price span {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.plan-price small {
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.plan-features {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.plan-features li svg {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 0;
}

.plan-action {
  width: 100%;
  margin-top: 28px;
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.comparison-section {
  padding-top: 42px;
}

.comparison-table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(17, 35, 90, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--ink);
  background: var(--panel-2);
  font-size: 14px;
  font-weight: 900;
}

.comparison-table td {
  color: var(--muted);
  font-size: 14px;
}

.comparison-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: color-mix(in srgb, var(--brand-soft) 70%, var(--panel));
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
}

.pricing-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.22;
}

.pricing-cta p {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--text);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  background:
    linear-gradient(rgba(17, 71, 200, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 71, 200, 0.055) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.legal-shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 76px;
}

.legal-shell h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-shell .meta {
  margin: 0 0 34px;
  color: var(--muted);
}

.legal-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
}

.legal-section h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 17px;
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
}

.legal-section > p + p,
.legal-section > p + ul,
.legal-section > ul + p,
.legal-section > ul + ul {
  margin-top: 10px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .console-body,
  .demo-section,
  .pricing-hero {
    grid-template-columns: 1fr;
  }

  .console-side {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyout-grid {
    display: grid !important;
  }

  .pricing-grid > * {
    grid-column: span 1 !important;
  }

  .subscription-grid > :nth-child(3) {
    grid-column: span 2 !important;
  }

  .pricing-hero {
    padding-top: 54px;
  }

  .pricing-hero h1 {
    font-size: 46px;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-domain {
    font-size: 16px;
  }

  .header-tools {
    width: 100%;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .header-action {
    flex: 1;
  }

  .hero,
  .pricing-hero,
  .section,
  .legal-shell {
    width: calc(100% - 36px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-badge {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: var(--radius);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-strip {
    justify-content: flex-start;
  }

  .console-side,
  .console-row,
  .feature-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .demo-copy h2,
  .pricing-hero h1,
  .legal-shell h1 {
    font-size: 34px;
  }

  .pricing-hero {
    padding: 42px 0 24px;
  }

  .pricing-hero-copy > p:last-child {
    font-size: 16px;
  }

  .pricing-summary {
    min-height: auto;
    padding: 22px;
  }

  .pricing-summary strong {
    font-size: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid > * {
    grid-column: span 1 !important;
  }

  .subscription-grid > :nth-child(3) {
    grid-column: span 1 !important;
  }

  .pricing-card {
    padding: 22px;
  }

  .plan-head {
    padding-right: 0;
  }

  .featured-plan .plan-head {
    padding-right: 58px;
  }

  .plan-price span {
    font-size: 34px;
  }

  .comparison-table {
    min-width: 660px;
  }

  .pricing-cta {
    padding: 26px;
  }

  .pricing-cta h2 {
    font-size: 30px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 34px;
  }

  .header-action,
  .theme-toggle {
    padding: 0 12px;
    font-size: 13px;
  }
}

/* ===== 支付方式区块 ===== */
.payment-section {
  padding-top: 42px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.payment-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.payment-card--alipay {
  border-color: rgba(22, 119, 255, 0.35);
  box-shadow: 0 18px 48px rgba(22, 119, 255, 0.1);
}

.payment-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.alipay-logo-box {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ebf4ff;
}

.payment-card-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.payment-card-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.payment-badge-tag {
  margin-left: auto;
  padding: 4px 10px;
  background: rgba(22, 119, 255, 0.1);
  color: #1677FF;
  border: 1px solid rgba(22, 119, 255, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.payment-qr-area {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.payment-qr-box {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--bg);
  border: 2px dashed rgba(22, 119, 255, 0.3);
  border-radius: var(--radius);
  text-align: center;
}

.qr-label {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.qr-sub {
  color: var(--muted);
  font-size: 12px;
}

.payment-info-list {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--panel-2);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.pi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.pi-row span {
  color: var(--soft);
  white-space: nowrap;
}

.pi-row strong {
  color: var(--ink);
  text-align: right;
}

.payment-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}

.ps-item {
  display: grid;
  place-items: center;
  gap: 7px;
  text-align: center;
}

.ps-item span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 119, 255, 0.12);
  color: #1677FF;
  font-size: 13px;
  font-weight: 900;
}

.ps-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

/* FAQ card */
.payment-card--faq {
  display: grid;
  gap: 0;
}

.faq-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
}

.payment-faq {
  display: grid;
  gap: 0;
  margin-bottom: 20px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 13px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.payment-contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  color: var(--brand);
  margin-top: auto;
}

.payment-contact-box div p {
  margin: 0 0 3px;
  font-size: 12px;
  color: var(--muted);
}

.payment-contact-box div a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.payment-contact-box div a:hover {
  color: var(--brand);
}

@media (max-width: 900px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FAQ Full-Width Fix (pricing page) ===== */
.payment-grid--full {
  grid-template-columns: 1fr;
}

.payment-grid--full .payment-card--faq {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

/* ===== Hero V2 — Cinematic Dark Hero ===== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #070b1a 0%, #0d1529 40%, #0a1628 70%, #060a16 100%);
  color: #f0f4ff;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, #1147c8 0%, transparent 70%);
  animation: orb-float 12s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -15%;
  left: -8%;
  background: radial-gradient(circle, #0fb882 0%, transparent 70%);
  animation: orb-float 15s ease-in-out infinite alternate-reverse;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-v2-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 800;
  color: #a6bef8;
  background: rgba(17, 71, 200, 0.18);
  border: 1px solid rgba(126, 163, 245, 0.25);
  border-radius: 999px;
}

.hero-v2-badge span {
  color: #7c93c4;
  font-weight: 600;
}

.hero-v2 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.grad-text {
  background: linear-gradient(135deg, #7ea3f5 0%, #0fb882 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-sub {
  max-width: 700px;
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: #8a9bc2;
}

.hero-typewriter {
  margin: 20px 0 0;
  font-size: 17px;
  color: #a6bef8;
  font-weight: 600;
}

.hero-typewriter #tw {
  color: #0fb882;
  font-weight: 800;
}

.tw-cursor {
  display: inline-block;
  color: #0fb882;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-v2-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #1147c8 0%, #0fb882 100%);
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(15, 184, 130, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.cta-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15, 184, 130, 0.35);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  color: #c5d3f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  padding: 24px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.stat {
  text-align: center;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.stat small {
  font-size: 18px;
  font-weight: 700;
  color: #0fb882;
}

.stat p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #7c93c4;
}

/* ===== Carousel ===== */
.showcase-section {
  padding-top: 80px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.slide-deco {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.slide-doc {
  background: linear-gradient(135deg, #0d1b3e 0%, #162756 50%, #0d1b3e 100%);
}
.slide-doc .slide-deco {
  background: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(126,163,245,0.15) 30px, rgba(126,163,245,0.15) 31px),
              repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(126,163,245,0.15) 30px, rgba(126,163,245,0.15) 31px);
}

.slide-cad {
  background: linear-gradient(135deg, #0a1f2e 0%, #0d3040 50%, #0a1f2e 100%);
}
.slide-cad .slide-deco {
  background: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(15,184,130,0.2) 40px, rgba(15,184,130,0.2) 41px),
              repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(15,184,130,0.2) 40px, rgba(15,184,130,0.2) 41px);
}

.slide-av {
  background: linear-gradient(135deg, #1a1020 0%, #2a1530 50%, #1a1020 100%);
}
.slide-av .slide-deco {
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 4px, rgba(200,120,255,0.18) 4px, rgba(200,120,255,0.18) 5px, transparent 5px, transparent 8px);
}

.slide-rt {
  background: linear-gradient(135deg, #0f0a20 0%, #1a1040 50%, #0f0a20 100%);
}
.slide-rt .slide-deco {
  background: radial-gradient(circle at 70% 50%, rgba(126,163,245,0.2) 0%, transparent 50%),
              radial-gradient(circle at 30% 50%, rgba(15,184,130,0.15) 0%, transparent 50%);
}

.slide-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  color: #e8edf8;
  grid-column: 1 / -1;
  max-width: 680px;
}

.slide-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  color: #0fb882;
  background: rgba(15, 184, 130, 0.12);
  border: 1px solid rgba(15, 184, 130, 0.25);
  border-radius: 999px;
}

.slide-body h3 {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}

.slide-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #a0b0d0;
}

.slide-cta {
  display: inline-block;
  margin-top: 24px;
  color: #7ea3f5;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s;
}

.slide-cta:hover {
  color: #ffffff;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.carousel-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.18);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: #0fb882;
  transform: scale(1.3);
}

/* ===== Symbiosis Section ===== */
.symbiosis-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.sym-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

.sym-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.sym-ai::before {
  background: linear-gradient(90deg, #1147c8, #7ea3f5);
}

.sym-human::before {
  background: linear-gradient(90deg, #0fb882, #2dd4bf);
}

.sym-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.sym-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.sym-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sym-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.sym-card li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 800;
  flex-shrink: 0;
}

.sym-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sym-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 8px;
  position: relative;
}

.sym-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #1147c8, #0fb882);
  transform: translateX(-50%);
  opacity: 0.4;
}

.sym-bridge span {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #1147c8, #0fb882);
}

.sym-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
}

/* ===== Workflow Timeline ===== */
.wf-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.wf-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 16.67%;
  right: 16.67%;
  height: 3px;
  background: linear-gradient(90deg, #1147c8, #0fb882);
  border-radius: 2px;
  opacity: 0.3;
}

.wf-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.wf-num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #1147c8, #0fb882);
  position: relative;
  z-index: 2;
}

.wf-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.wf-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Language Rows (Region-based) ===== */
.lang-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.lang-row {
  display: flex;
  align-items: baseline;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.lang-row:last-child {
  border-bottom: none;
}

.lang-row:hover {
  background: var(--brand-soft);
}

.lang-label {
  flex-shrink: 0;
  width: 100px;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-tags span {
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-tags span:hover {
  color: var(--brand);
  border-color: var(--brand-border);
  background: var(--brand-soft);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .lang-row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }
  .lang-label {
    width: auto;
  }
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 80px 24px;
  background: linear-gradient(160deg, #070b1a, #0d1529, #0a1628);
  text-align: center;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
}

.cta-banner p {
  margin: 14px 0 0;
  font-size: 17px;
  color: #8a9bc2;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive — New Components ===== */
@media (max-width: 1040px) {
  .hero-v2 h1 {
    font-size: 48px;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat {
    border-right: none;
    padding: 12px 24px;
  }

  .carousel-slide {
    min-height: 350px;
  }

  .slide-body {
    padding: 36px 40px;
  }

  .slide-body h3 {
    font-size: 26px;
  }

  .symbiosis-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sym-center {
    order: -1;
  }

  .sym-bridge {
    flex-direction: row;
    padding: 8px 20px;
  }

  .sym-bridge::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .wf-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wf-timeline::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-v2 {
    padding: 100px 18px 40px;
    min-height: auto;
  }

  .hero-v2 h1 {
    font-size: 34px;
  }

  .hero-v2-sub {
    font-size: 16px;
  }

  .hero-v2-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-grad, .cta-ghost {
    width: 100%;
    max-width: 320px;
  }

  .stats-bar {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .stat {
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat strong {
    font-size: 32px;
  }

  .carousel-slide {
    min-height: 300px;
  }

  .slide-body {
    padding: 28px 24px;
  }

  .slide-body h3 {
    font-size: 22px;
  }

  .slide-body p {
    font-size: 14px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Blog Page — AWS-Inspired Redesign ===== */
.blog-hero {
  padding: 100px 24px 60px;
  background: linear-gradient(160deg, #070b1a 0%, #0d1529 40%, #0a1628 70%, #060a16 100%);
  text-align: center;
  color: #f0f4ff;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(17,71,200,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(15,184,130,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  color: #0fb882;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
}
.blog-hero > .blog-hero-inner > p:last-child {
  margin: 16px 0 0;
  font-size: 17px;
  color: #8a9bc2;
}

/* --- Blog Layout --- */
.blog-section { padding-top: 48px; }
.blog-grid { display: grid; gap: 32px; }

/* --- Regular Cards: 2-col grid --- */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* --- Card Base --- */
.blog-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.35s, transform 0.35s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(17, 35, 90, 0.13);
  transform: translateY(-3px);
}

/* --- Featured Card (Hero) — must come after base to override flex with grid --- */
.blog-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-color: rgba(17, 71, 200, 0.2);
  border-radius: 16px;
}
.blog-card--featured:hover {
  box-shadow: 0 16px 48px rgba(17, 35, 90, 0.15);
}
.blog-card--featured .blog-card-thumb {
  height: auto;
  min-height: 420px;
}
.blog-card--featured .blog-card-body {
  padding: 40px 44px;
  justify-content: center;
}
.blog-card--featured h2 {
  font-size: 28px;
  margin: 0 0 16px;
  line-height: 1.3;
}
/* --- Featured Card — no thumbnail variant --- */
.blog-card--no-thumb {
  grid-template-columns: 1fr;
}
.blog-card--no-thumb .blog-card-body {
  padding: 44px 52px;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #1147c8, #0fb882) 1;
}

/* --- Card Thumbnail (Real Images) --- */
.blog-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0d1529;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}
.blog-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  pointer-events: none;
}
.blog-card-thumb .thumb-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 3;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  letter-spacing: 0.03em;
}

/* --- Card Accent --- */
.blog-card-accent { height: 4px; width: 100%; flex-shrink: 0; }

/* --- Card Body --- */
.blog-card-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }

/* --- Meta Row --- */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.blog-tag {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-meta time {
  font-size: 13px;
  color: var(--soft);
}
.blog-reading-time {
  font-size: 12px;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-reading-time::before {
  content: '⏱';
  font-size: 13px;
}

/* --- Card Title --- */
.blog-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

/* --- Card Excerpt --- */
.blog-card > .blog-card-body > p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Read More Link --- */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.blog-read-more::after {
  content: '→';
  transition: transform 0.2s;
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more:hover::after { transform: translateX(2px); }

/* --- Expanded Content --- */
.blog-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.blog-content h3 {
  margin: 28px 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-content h3::before {
  content: '';
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand), #0fb882);
  flex-shrink: 0;
}
.blog-content h3:first-child { margin-top: 0; }
.blog-content p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* --- Callout Box --- */
.blog-callout {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 10px;
  border-left: 4px solid;
  font-size: 14px;
  line-height: 1.7;
}
.blog-callout-tip {
  border-color: #0fb882;
  background: rgba(15, 184, 130, 0.06);
  color: var(--muted);
}
.blog-callout-tip strong { color: #0fb882; }
.blog-callout-info {
  border-color: #1147c8;
  background: rgba(17, 71, 200, 0.06);
  color: var(--muted);
}
.blog-callout-info strong { color: #1147c8; }
[data-theme="dark"] .blog-callout-tip { background: rgba(15, 184, 130, 0.08); }
[data-theme="dark"] .blog-callout-info { background: rgba(17, 71, 200, 0.08); }
[data-theme="dark"] .blog-callout-tip strong { color: #2dd4bf; }
[data-theme="dark"] .blog-callout-info strong { color: #7ea3f5; }

/* --- Blockquote --- */
.blog-content blockquote {
  margin: 20px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Highlight / Key Stats --- */
.blog-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.blog-stat-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.blog-stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.blog-stat-item span {
  font-size: 13px;
  color: var(--muted);
}

/* --- Ordered List Styled --- */
.blog-content ol {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  counter-reset: blog-counter;
}
.blog-content ol li {
  counter-increment: blog-counter;
  padding: 12px 16px 12px 48px;
  margin-bottom: 8px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.blog-content ol li::before {
  content: counter(blog-counter);
  position: absolute;
  left: 14px;
  top: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #1147c8, #0fb882);
  border-radius: 50%;
}

/* --- Unordered List Styled --- */
.blog-content ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.blog-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.6;
}

/* --- Key Takeaway Box --- */
.blog-takeaway {
  margin: 24px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(17,71,200,0.05) 0%, rgba(15,184,130,0.05) 100%);
  border: 1px solid rgba(17,71,200,0.15);
  border-radius: 12px;
}
.blog-takeaway-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
}
.blog-takeaway-title::before {
  content: '💡';
  font-size: 18px;
}
.blog-takeaway p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
[data-theme="dark"] .blog-takeaway {
  background: linear-gradient(135deg, rgba(17,71,200,0.08) 0%, rgba(15,184,130,0.08) 100%);
  border-color: rgba(17,71,200,0.2);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .blog-card--featured {
    grid-template-columns: 1fr;
  }
  .blog-card--featured .blog-card-thumb {
    min-height: 240px;
  }
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
  .blog-stats-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .blog-hero h1 { font-size: 32px; }
  .blog-card-body { padding: 22px 20px; }
  .blog-card h2 { font-size: 20px; }
  .blog-card--featured h2 { font-size: 22px; }
  .blog-card--featured .blog-card-body { padding: 24px 20px; }
  .blog-card-thumb { height: 180px; }
}

/* ===== FAQ standalone (无 card 包裹，与 section-heading 左对齐) ===== */
.payment-faq--standalone {
  display: grid;
  gap: 0;
  margin-top: 0;
}

/* ===== Billing Toggle ===== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.billing-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--soft);
  transition: color 0.2s;
  cursor: default;
}
.billing-label--active {
  color: var(--ink);
}
.billing-save {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  color: #0fb882;
  background: rgba(15, 184, 130, 0.1);
  border: 1px solid rgba(15, 184, 130, 0.25);
  border-radius: 999px;
  vertical-align: middle;
}
.billing-switch {
  position: relative;
  width: 48px;
  height: 26px;
  padding: 0;
  background: var(--line-strong);
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.billing-switch:hover {
  border-color: var(--brand-border);
}
.billing-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.25s;
}
.billing-switch--on {
  background: var(--brand);
  border-color: var(--brand);
}
.billing-switch--on .billing-knob {
  transform: translateX(22px);
}

/* ===== Annual Price Note ===== */
.price-annual-note {
  color: var(--soft);
  font-size: 12px !important;
  font-weight: 600 !important;
  margin-left: 4px;
}

/* ===== Credits Explanation Card ===== */
.credits-explain-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--brand-soft) 30%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
  border-radius: var(--radius);
  text-align: left;
}
.credits-explain-icon {
  font-size: 18px;
  line-height: 1.4;
  flex: 0 0 auto;
}
.credits-explain-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credits-explain-content strong {
  color: var(--ink);
  font-size: 14px;
}
.credits-explain-content span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.credits-explain-sub {
  font-size: 11px !important;
  color: var(--soft) !important;
  margin-top: 2px;
}

/* ===== Comparison Table Enhancements ===== */
.comparison-table--enhanced th.col-highlight,
.comparison-table--enhanced td.col-highlight {
  background: color-mix(in srgb, var(--brand-soft) 60%, transparent);
}
.comparison-table--enhanced th.col-lifetime,
.comparison-table--enhanced td.col-lifetime {
  background: color-mix(in srgb, rgba(224, 169, 109, 0.08) 60%, transparent);
}
.col-badge {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  vertical-align: middle;
}
.col-badge-gold {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: #e0a96d;
  border-radius: 999px;
  vertical-align: middle;
}
.ct-icon {
  margin-right: 4px;
  font-size: 14px;
}
.ct-yes { color: #0f766e; }
.ct-partial { color: #d97706; }
.ct-no { color: var(--soft); opacity: 0.5; }
[data-theme="dark"] .ct-yes { color: #2dd4bf; }
[data-theme="dark"] .ct-partial { color: #fbbf24; }

/* ===== Featured Lifetime Plan Card ===== */
.featured-lifetime-plan {
  border-color: color-mix(in srgb, #e0a96d 60%, var(--line)) !important;
  box-shadow: 0 24px 56px rgba(224, 169, 109, 0.16) !important;
}
.featured-lifetime-plan::before {
  background: linear-gradient(90deg, #e0a96d, #d09454) !important;
}
.featured-lifetime-plan:hover {
  box-shadow: 0 30px 60px rgba(224, 169, 109, 0.28) !important;
  border-color: color-mix(in srgb, #e0a96d 80%, var(--line)) !important;
}
.featured-lifetime-plan .recommended-label {
  background: #e0a96d !important;
}
.featured-lifetime-plan .plan-icon {
  color: #e0a96d !important;
  background: rgba(224, 169, 109, 0.1) !important;
  border-color: rgba(224, 169, 109, 0.25) !important;
}
.featured-lifetime-plan .plan-action {
  border-color: #e0a96d !important;
  color: #d09454 !important;
}
.featured-lifetime-plan .plan-action:hover {
  background: rgba(224, 169, 109, 0.1) !important;
  color: #c08444 !important;
}

/* ===== Blog card picture element support ===== */
.blog-card-thumb picture {
  display: contents;
}

/* ===== 右上角登录状态区域 ===== */
.user-status-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font: 700 14px/1.2 inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.user-status-btn:hover {
  color: var(--brand);
  border-color: var(--brand-border);
}
.user-avatar {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}
.user-email-short {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* ===== 登录对话框 ===== */
.login-dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(5px);
  place-items: center;
}
.login-dialog-overlay.open {
  display: grid;
}
.login-dialog {
  position: relative;
  width: min(420px, calc(100% - 40px));
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.28);
}
.login-dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  color: var(--soft);
  font-size: 20px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.login-dialog-close:hover {
  color: var(--ink);
  background: var(--panel-2);
}
.login-dialog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}
.login-dialog-header h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
}
.login-dialog-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.login-field {
  margin-bottom: 16px;
}
.login-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.login-field input {
  width: 100%;
  padding: 11px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: 15px/1.4 inherit;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.login-field input:focus {
  border-color: var(--brand);
}
.login-error {
  min-height: 20px;
  margin-bottom: 12px;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.4;
}
.login-submit {
  width: 100%;
  padding: 13px;
  background: #1147c8;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font: 800 15px/1 inherit;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  box-shadow: 0 10px 28px rgba(17,71,200,0.2);
}
.login-submit:hover { background: #2d5fe0; }
.login-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.login-hint {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.login-hint a {
  color: var(--brand);
  font-weight: 700;
}
.login-hint a:hover {
  text-decoration: underline;
}

/* ==========================================
   TRADOS-STYLE LAYOUT & INTERFACE ADDITIONS
   ========================================== */

/* Solid Header Overrides */
.site-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(17, 35, 90, 0.04);
}

/* Trados Hero Split Section */
.hero-trados {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  background: linear-gradient(135deg, #0b1120 0%, #111a30 40%, #0c1527 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-trados .hero-orb--1 {
  width: 600px;
  height: 600px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(17, 71, 200, 0.4) 0%, transparent 70%);
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: orb-float 12s ease-in-out infinite alternate;
}

.hero-trados .hero-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(15, 184, 130, 0.25) 0%, transparent 70%);
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orb-float 15s ease-in-out infinite alternate-reverse;
}

.hero-trados-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-trados-left {
  text-align: left;
}

.hero-trados-left .hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 800;
  color: #a6bef8;
  background: rgba(17, 71, 200, 0.25);
  border: 1px solid rgba(126, 163, 245, 0.35);
  border-radius: 999px;
}

.hero-trados-left .hero-v2-badge span {
  color: #7c93c4;
  font-weight: 600;
}

.hero-trados-left h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.hero-trados-left h1 br {
  display: block;
}

.hero-trados-left .hero-v2-sub {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #a3b3d4;
}

.hero-trados-left .hero-typewriter {
  margin: 20px 0 0;
  font-size: 16px;
  color: #a6bef8;
  font-weight: 600;
}

.hero-trados-left .hero-typewriter #tw {
  color: #0fb882;
  font-weight: 800;
}

.hero-trados-left .hero-v2-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 36px;
}

.hero-trados-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-screenshot-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.55), 
    0 0 50px rgba(17, 71, 200, 0.3);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-screenshot-wrapper:hover {
  transform: translateY(-8px) scale(1.015);
}

.hero-screenshot-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Trust Bar (Stats Row) Inside Hero Container */
.hero-trados-inner .stats-bar {
  grid-column: 1 / -1;
  position: relative;
  z-index: 5;
  margin-top: 64px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-around;
  padding: 24px 16px;
}

.hero-trados-inner .stats-bar .stat {
  margin: 0;
  text-align: center;
}

.hero-trados-inner .stats-bar .stat strong {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}

.hero-trados-inner .stats-bar .stat small {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-green, #0fb882);
  margin-left: 2px;
}

.hero-trados-inner .stats-bar .stat p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #8a9bc2;
  font-weight: 600;
}

/* Why Section (Icon Feature Grid) */
.why-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover {
  background: var(--panel-2);
  border-color: var(--brand-border);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(17, 71, 200, 0.05);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}

.why-item:hover .why-icon {
  background: var(--brand);
  color: #ffffff;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.why-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Solutions Section (3-col Image Cards) */
.solutions-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 35, 90, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-border);
  box-shadow: 0 20px 45px rgba(17, 35, 90, 0.08);
}

.solution-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.04);
}

.solution-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
  flex-grow: 1;
}

.solution-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.solution-body h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.solution-body p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.solution-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.solution-link:hover {
  gap: 10px;
}

/* Premium Footer (Trados Style 4-Column Layout) */
.footer-trados {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2)) 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--brand);
}

.footer-logo-col p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.65;
}

.footer-contact-info {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info a {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact-info a:hover {
  color: var(--brand);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--soft);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--soft);
}

.footer-bottom-links a:hover {
  color: var(--brand);
}

/* Premium Gradients for CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0b1120 0%, #1147c8 100%);
  padding: 80px 24px;
}

/* Responsive Overrides for Trados Style Elements */
@media (max-width: 1024px) {
  .hero-trados-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-trados-left {
    text-align: center;
  }
  .hero-trados-left .hero-v2-actions {
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-trados {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero-trados {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .hero-trados-left h1 {
    font-size: 38px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .footer-trados {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

