:root {
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --muted: #5a5f6b;
  --line: rgba(0, 0, 0, 0.1);
  --theme: #e57000;
  --theme-soft: var(--brand-soft);
  --brand: #e57000;
  --brand-red: #dc150b;
  --brand-soft: rgba(229, 112, 0, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
main a:not(.nav-link):not(.dropdown a):not(.breadcrumb a):not(.footer-grid a):not([class*="button"]) { color: #e57000 !important; font-weight: 600; }
main a:not(.nav-link):not(.dropdown a):not(.breadcrumb a):not(.footer-grid a):not([class*="button"]):hover { color: #ff8a13 !important; }
img { max-width: 100%; display: block; }
.contain { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hello-bar {
  background: linear-gradient(90deg, var(--theme-soft), rgba(229, 112, 0, 0.05));
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.hello-bar a { display: flex; justify-content: center; gap: 12px; padding: 10px 20px; text-align: center; color: var(--brand); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}
.site-header__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; white-space: nowrap; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 900; white-space: nowrap; color: var(--text); }
.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--brand-red);
  box-shadow: 0 4px 12px rgba(220, 21, 11, 0.25);
  width: 32px;
  height: 32px;
}
.brand-mark span { transform: rotate(-45deg); line-height: 1; color: var(--text); }
.brand small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--text);
  content: "";
  position: relative;
}
.nav-toggle-label span::before { position: absolute; top: -6px; }
.nav-toggle-label span::after { position: absolute; top: 6px; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex: 1; min-width: max-content; }
.site-nav__links { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: rgba(0,0,0,.72);
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover, .nav-item:hover .nav-link, .nav-item:focus-within .nav-link { color: var(--text); }
.nav-item--dropdown .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .72;
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 240px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 180ms ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 7px 12px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  transition: all 140ms ease;
}
.dropdown a:hover {
  color: var(--text);
  background: var(--theme-soft);
}
.site-actions { display: flex; gap: 12px; align-items: center; white-space: nowrap; }

.button, .button-secondary, .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  transition: all 200ms ease;
}
.button { color: #fff; background: var(--brand); }
.button:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,112,0,.3); }
.button-secondary { color: var(--text); border: 1px solid var(--line); background: var(--bg-soft); }
.button-secondary:hover { border-color: var(--brand); background: var(--brand-soft); }
.button-link { min-height: auto; padding-inline: 0; color: #e57000 !important; font-weight: 600; }
.button-link::after { content: "→"; margin-left: 8px; color: var(--brand); transition: margin-left 200ms ease; }
.button-link:hover::after { margin-left: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  /*background:*/
  /*  linear-gradient(135deg, rgba(255,255,255,.95), rgba(248,249,250,.9)),*/
  /*  url("/static/image/Allgemein_freisteller.png") center / cover no-repeat;*/
  backdrop-filter: blur(20px);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, var(--brand-soft) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
}
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(40px, 6vw, 72px); line-height: 1.06; letter-spacing: 0; }
h2 { margin-bottom: 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1.16; letter-spacing: 0; }
h3 { line-height: 1.28; }
.lead { max-width: 760px; color: var(--muted); font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-red));
}
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.metric, .mini-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  transition: all 280ms ease;
}
.metric:hover, .mini-card:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.metric strong { display: block; color: var(--brand); font-size: 18px; line-height: 1.1; }
.metric span, .mini-card span { color: var(--muted); font-size: 13px; }
.mini-card { font-size: 14px; color: var(--muted); }

.section { padding: 88px 0; background: var(--bg); }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 780px; margin-bottom: 36px; position: relative; }
.section-head::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-red));
  margin-top: 16px;
  border-radius: 2px;
}
.section-head.center::after { margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 18px; }
.anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  /*background: rgba(9,9,11,.9);*/
  backdrop-filter: blur(14px);
}
.anchor-nav .contain { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; }
.anchor-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}
.anchor-nav a:hover { color: var(--text); border-color: var(--brand); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.card, .product-card, .price-card, .download-card, .scenario-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  transition: all 280ms ease;
}
.card { padding: 24px; }
.card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.card h3 { color: var(--text); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.card ul, .price-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.card li, .price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
}
.card li::before, .price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}
.product-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  transition: all 280ms ease;
}
.product-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
  transition: all 280ms ease;
}
.product-card:hover .product-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(58,90,64,.25);
}
.product-card h3 { color: var(--text); margin-bottom: 10px; font-size: 20px; }
.product-card p { font-size: 14px; line-height: 1.7; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card { padding: 22px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand-soft) inset; }
.price { margin: 12px 0 14px; color: var(--text); font-size: 27px; font-weight: 900; line-height: 1.1; }
.price small { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 600; }
.note { color: var(--muted); font-size: 14px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--bg-card); }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--text); background: var(--bg-soft); }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }
.download-, .download-card { padding: 22px; display: flex; flex-direction: column; gap: 12px; border-left: 3px solid var(--brand); transition: all 280ms ease; }
.download-:hover, .download-card:hover { border-left-color: var(--brand-red); transform: translateX(4px); }
.download- h3, .download-card h3 { flex-shrink: 0; color: var(--text); margin-bottom: 8px; }
.download- p, .download-card p { flex-grow: 1; color: var(--muted); font-size: 14px; line-height: 1.6; }
.partner-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--brand-soft);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-soft), rgba(229, 112, 0, 0.03)), var(--bg-card);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.tag { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--brand); font-size: 13px; font-weight: 800; }
.cta {
  padding: 78px 0;
  background:
    linear-gradient(135deg, var(--brand-soft), rgba(229,112,0,.05)),
    linear-gradient(90deg, rgba(229,112,0,.08), rgba(229,112,0,.04)),
    /*url("../image/cta-banner.svg") center / cover no-repeat,*/
    var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta p { max-width: 720px; color: var(--muted); font-size: 18px; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer { padding: 56px 0 34px; background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 32px; margin-bottom: 42px; }
.footer-grid h3, .footer-grid h4 { margin: 0 0 14px; font-size: 15px; }
.footer-grid p, .footer-grid a { display: block; margin-bottom: 10px; color: var(--muted); font-size: 14px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 16px 0 0; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: .5; user-select: none; }

.page-tabs { display: flex; flex-wrap: wrap; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.page-tabs a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 120ms ease;
}
.page-tabs a:hover { color: var(--text); border-color: var(--brand-soft); }
.page-tabs a.active { color: var(--text); border-color: var(--brand); background: var(--brand-soft); }

.prev-next { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 48px 0 0; border-top: 1px solid var(--line); margin-top: 48px;margin-bottom: 48px; }
.prev-next a {
  display: flex; align-items: center; gap: 10px; padding: 18px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg-card);
  color: var(--text); font-weight: 700; font-size: 16px;
}
.prev-next a:hover { border-color: var(--brand); }
.prev-next a.prev { justify-content: flex-start; }
.prev-next a.next { justify-content: flex-end; text-align: right; }
.prev-next a.prev::before { content: "←"; color: var(--brand); font-size: 20px; }
.prev-next a.next::after { content: "→"; color: var(--brand); font-size: 20px; }
.prev-next .placeholder { visibility: hidden; }

.nav-item--dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item--dropdown .nav-link::after {
  transition: transform 220ms ease;
}
.nav-item--dropdown:hover .nav-link::after,
.nav-item--dropdown:focus-within .nav-link::after {
  transform: rotate(-135deg) translateY(0);
}

@media (max-width: 1050px) {
  .nav-toggle-label { display: flex; z-index: 50; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 45;
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav__links, .site-actions { display: grid; gap: 8px; }
  .site-actions { margin-top: 14px; }
  .site-actions .button, .site-actions .button-secondary {
    min-height: 48px;
    padding: 12px 20px;
    width: 100%;
  }
  .nav-link { width: 100%; justify-content: space-between; color: var(--text); }
  .nav-link:hover, .nav-item:hover .nav-link { color: var(--brand); }
  .dropdown {
    position: static;
    width: 100%;
    display: grid;
    margin: 4px 0 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: var(--bg-soft);
  }
  .dropdown a { color: var(--muted); }
  .hero__grid, .cta__inner, .partner-card { grid-template-columns: 1fr; }
  .grid-4, .grid-5, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .cta__actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .contain { width: min(100% - 28px, 1180px); }
  .site-header__inner { min-height: 66px; }
  .hero { padding: 64px 0 54px; }
  h1 { font-size: clamp(36px, 12vw, 48px); }
  .metric-grid, .grid-2, .grid-3, .grid-4, .grid-5, .price-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .dropdown { grid-template-columns: 1fr; }
  .dropdown a { white-space: nowrap; }
  .page-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 14px 0; }
  .page-tabs a { flex: 0 0 auto; white-space: nowrap; }
  .prev-next { grid-template-columns: 1fr; }
  .section, .cta { padding: 62px 0; }
  .hero__actions, .cta__actions { display: grid; }
  .button, .button-secondary { width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

.link-more { margin-top: 12px; }
.link-more a { color: rgb(229, 112, 0); font-weight: 600; font-size: 14px; }
.link-more a:hover { }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.94) 0%, rgba(255,247,239,.9) 44%, rgba(248,249,250,.96) 100%);
}
.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}
.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}
.home-hero__copy { position: relative; z-index: 1; }
.home-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.5vw, 66px);
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.home-proof span {
  padding: 7px 11px;
  border: 1px solid rgba(229,112,0,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.home-hero__visual {
  position: relative;
  z-index: 1;
  padding: 14px;
  border: 1px solid rgba(229,112,0,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 64px rgba(0,0,0,.14);
}
.home-hero__screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}
.hero-stack {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-stack div {
  padding: 14px 12px;
  border: 1px solid rgba(229,112,0,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.hero-stack strong {
  display: block;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.1;
}
.hero-stack span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.home-value { padding-top: 104px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  transition: all 240ms ease;
}
.value-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}
.split-head .section-head { margin-bottom: 0; }
.split-head img {
  width: 240px;
  justify-self: end;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.12));
}
.platform-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.platform-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: all 240ms ease;
}
.platform-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.platform-card--wide {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(229,112,0,.08), rgba(220,21,11,.04)),
    #fff;
}
.platform-card__tag {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}
.platform-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}
.platform-card p {
  color: var(--muted);
  font-size: 15px;
}
.migration-section {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,247,239,.94)),
    url("/static/image/tk_server3.png") right center / contain no-repeat;
}
.migration-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
}
.migration-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.migration-flow div {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(229,112,0,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.migration-flow span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.migration-flow strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--text);
  font-size: 19px;
}
.migration-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.scenario-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: all 240ms ease;
}
.scenario-tile:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.scenario-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.scenario-tile h3 {
  margin: 20px 20px 8px;
  font-size: 19px;
}
.scenario-tile p {
  margin: 0 20px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.home-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-story {
  display: grid;
  grid-template-rows: 110px auto 1fr;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: all 240ms ease;
}
.home-story:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.home-story img {
  max-height: 90px;
  max-width: 100%;
  align-self: center;
  justify-self: start;
  object-fit: contain;
}
.home-story strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}
.home-story p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: center;
}
.service-card {
  padding: 28px;
  border: 1px solid rgba(229,112,0,.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.service-card ul {
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .home-hero__grid, .migration-grid, .service-grid, .split-head { grid-template-columns: 1fr; }
  .home-hero__visual { margin-bottom: 24px; }
  .split-head img { justify-self: start; }
  .value-grid, .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .home-hero { padding: 58px 0 54px; }
  .home-hero__actions { display: grid; }
  .home-proof { gap: 8px; }
  .hero-stack {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
  .home-value { padding-top: 62px; }
  .value-grid, .platform-grid, .migration-flow, .scenario-grid, .home-stories { grid-template-columns: 1fr; }
  .platform-card, .platform-card--wide { min-height: auto; }
  .scenario-tile img { height: 180px; }
  .home-story { grid-template-rows: auto auto auto; min-height: 0; }
  .home-story img { margin-bottom: 18px; }
  .service-card .button { width: 100%; }
}

.download-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--bg-card); }
.download-row { display: grid; grid-template-columns: 1fr 100px 120px 140px; gap: 16px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.download-row:last-child { border-bottom: 0; }
.download-row.header { background: var(--bg-soft); color: var(--muted); font-size: 13px; font-weight: 600; }
.download-row.header .download-name { text-transform: uppercase; letter-spacing: 0.5px; }
.download-name { font-size: 15px; }
.download-name strong { color: var(--text); font-weight: 700; }
.download-size, .download-date { color: var(--muted); font-size: 14px; }
.download-hash { padding: 10px 20px; background: var(--bg-soft); color: var(--muted); font-size: 12px; font-family: monospace; border-top: 1px solid var(--line); }
.download-toggle { display: block; width: 100%; padding: 12px 20px; background: transparent; border: none; border-top: 1px solid var(--line); color: var(--brand); font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; transition: color 150ms; }
.download-toggle:hover { color: #ff8a13; }
.download-toggle::before { content: "显示更多版本 "; }
.download-toggle.expanded::before { content: "隐藏旧版本 "; }
.download-old { display: none; }
.download-old.expanded { display: block; }

@media (max-width: 700px) {
  .download-row { grid-template-columns: 1fr; gap: 8px; padding: 14px 16px; }
  .download-row.header { display: none; }
  .download-size, .download-date { font-size: 13px; }
  .download-action { margin-top: 8px; }
  .download-action .button { width: 100%; }
}

.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card {
  display: flex; flex-direction: column;
  padding: 24px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg-card); transition: border-color 180ms ease;
}
.story-card:hover { border-color: var(--brand); }
.story-logo {
  /*height: 64px;*/
    display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; padding: 0 12px;
  /*background: var(--bg-soft);*/
    border-radius: 6px;
  overflow: hidden;
}
.story-logo img { max-height: 200px; max-width: 100%; object-fit: contain; }
.story-logo-text {
  height: 48px; display: flex; align-items: center; justify-content: center;
  padding: 0 12px; font-size: 18px; font-weight: 900;
  color: var(--text); background: var(--bg-soft); border-radius: 6px;
}
.story-card h3 { margin-bottom: 12px; font-size: 17px; line-height: 1.35; color: var(--text); }
.story-card p { flex-grow: 1; margin-bottom: 16px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.story-tag {
  display: inline-block; padding: 4px 10px;
  background: var(--brand-soft); border-radius: 4px;
  color: #ffb46c; font-size: 12px; font-weight: 700;
  margin-right: 6px; margin-bottom: 4px;
}

/* 案例详情页样式 */
.story-hero h1 { font-size: 28px; }
.story-intro { font-size: 17px; color: #e57000 !important; line-height: 1.9; margin-bottom: 24px; }
.story-quote { font-size: 18px; color: #fff; font-style: italic; margin-bottom: 24px; }
.section--story { padding-top: 0; }
.section--story>.contain>.section:first-child { padding-top: 0; }

@media (max-width: 900px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stories-grid { grid-template-columns: 1fr; } }

/* 代码块样式 */
.story-content pre,
.section--story pre {
  background: #1e1e1e !important;
  border-radius: 8px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 16px 0 32px;
  border: 1px solid #444;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}
.story-content code,
.section--story code {
  font-family: "SF Mono", "Monaco", "Menlo", "Consolas", monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0 !important;
  background: #1e1e1e !important;
  display: block;
  padding: 0;
}
.story-content pre code,
.section--story pre code {
  background: none !important;
  padding: 0;
  color: inherit;
}
.story-content h2 {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.story-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.story-content h3 {
  margin-top: 32px;
  font-size: 22px;
  color: var(--text);
}
.story-content ul, .story-content ol {
  padding-left: 24px;
  margin: 16px 0 24px;
}
.story-content li {
  margin-bottom: 8px;
  color: var(--muted);
}
.story-content li::marker { color: var(--brand); }

/* 迁移方法卡片 */
.migration-method {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid var(--brand);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.migration-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.migration-method h3 {
  margin-top: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.migration-method h3::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--brand);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.hero--migration {
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(248,249,250,.9) 100%);
  backdrop-filter: blur(10px);
}
.hero--migration .story-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero--migration .story-hero h1 {
  color: var(--text);
}
.hero--migration .lead {
  color: var(--muted);
}
.hero--migration .story-logo-text {
  background: var(--bg-soft);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.vmware-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 78px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(255,247,239,.93) 46%, rgba(248,249,250,.98)),
    url("/static/image/tk_server2.jpg") right center / contain no-repeat;
  border-bottom: 1px solid var(--line);
}
.vmware-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  padding-top: 52px;
}
.vmware-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 64px);
}
.vmware-visual {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(229,112,0,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 64px rgba(0,0,0,.13);
}
.vmware-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.vmware-visual__flow {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.vmware-visual__flow span,
.vmware-visual__flow strong {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(229,112,0,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
}
.vmware-visual__flow strong {
  background: var(--brand);
  color: #fff;
  font-size: 14px;
}
.vmware-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vmware-metrics div {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: all 220ms ease;
}
.vmware-metrics div:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.vmware-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}
.vmware-metrics span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.migration-plan .section-head { max-width: 820px; }
.plan-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.plan-timeline div {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(229,112,0,.18);
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.plan-timeline span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.plan-timeline h3 {
  margin: 18px 0 8px;
  font-size: 19px;
}
.plan-timeline p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.check-grid,
.method-grid,
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.check-card,
.method-card,
.risk-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: all 220ms ease;
}
.check-card:hover,
.method-card:hover,
.risk-grid div:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.check-card h3,
.method-card h3,
.risk-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 19px;
}
.check-card p,
.method-card p,
.risk-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.method-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}
.vmware-guide {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
.guide-aside {
  position: sticky;
  top: 102px;
}
.guide-aside > div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.guide-aside strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 16px;
}
.guide-aside a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
}
.guide-aside a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
.guide-content {
  max-width: 920px;
}
.migration-note {
  margin: 18px 0 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--muted);
}
.migration-note strong { color: var(--text); }
.verify-list {
  display: grid;
  gap: 10px;
  padding-left: 0 !important;
  list-style: none;
}
.verify-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.verify-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  color: var(--brand);
  font-weight: 900;
}
.guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(229,112,0,.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229,112,0,.08), rgba(220,21,11,.04)),
    #fff;
}
.guide-cta h3 { margin-top: 0; }
.guide-cta p { margin-bottom: 0; color: var(--muted); }

@media (max-width: 1050px) {
  .vmware-hero__grid,
  .vmware-guide,
  .guide-cta { grid-template-columns: 1fr; }
  .vmware-visual { margin-bottom: 30px; }
  .vmware-metrics,
  .plan-timeline,
  .check-grid,
  .method-grid,
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-aside { position: static; }
  .guide-aside > div { grid-template-columns: repeat(3, 1fr); }
  .guide-aside strong { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .vmware-hero { padding-bottom: 54px; }
  .vmware-hero__grid { padding-top: 34px; }
  .vmware-visual__flow {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
  .vmware-metrics,
  .plan-timeline,
  .check-grid,
  .method-grid,
  .risk-grid,
  .guide-aside > div { grid-template-columns: 1fr; }
  .guide-cta .button { width: 100%; }
}
