:root {
  --red: #e6001c;
  --red-dark: #c90018;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e6ebf2;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --navy: #101827;
  --shadow: 0 18px 46px rgb(15 23 42 / 0.1);
  --shadow-soft: 0 10px 24px rgb(15 23 42 / 0.08);
  --radius: 18px;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--ink);
  background: #f3f6fa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: #f3f6fa;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site {
  width: min(1920px, 100%);
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.container { width: min(1680px, calc(100% - 96px)); margin: 0 auto; }
.container-sm { width: min(1440px, calc(100% - 96px)); margin: 0 auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 24px 0 12px;
  background: linear-gradient(180deg, rgb(247 249 252 / .94), rgb(247 249 252 / .72));
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1780px, calc(100% - 80px));
  height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 225px 1fr 150px;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid rgb(231 235 240 / .95);
  border-radius: 17px;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 16px 40px rgb(15 23 42 / .09);
}

.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 168px; height: auto; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 22px; white-space: nowrap; }
.main-nav a {
  padding: 10px 10px;
  border-radius: 999px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}
.main-nav a:hover { color: var(--red); background: #fff5f6; }
.main-nav a.active { color: var(--red); background: #fff5f6; }
.nav-cta, .btn, .ghost-btn, .mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 900;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nav-cta, .btn {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px rgb(230 0 28 / .24);
}
.nav-cta { height: 44px; font-size: 14px; }
.btn { padding: 0 28px; }
.ghost-btn {
  color: var(--red);
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 0 26px;
}
.mini-btn {
  min-height: 38px;
  padding: 0 18px;
  color: var(--red);
  background: #fff;
  border: 1px solid #e5e7eb;
}
.btn:hover, .nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.ghost-btn:hover, .mini-btn:hover { color: #fff; background: var(--red); transform: translateY(-1px); }
.btn:active, .nav-cta:active, .ghost-btn:active, .mini-btn:active { transform: translateY(1px) scale(.99); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .18s ease;
}
.menu-btn:hover { border-color: #cbd3df; box-shadow: 0 8px 20px rgb(15 23 42 / .08); }
.menu-btn:active { transform: translateY(1px) scale(.98); }
.menu-btn:focus-visible { outline: 3px solid rgb(230 0 28 / .24); outline-offset: 3px; }
.menu-icon,
.menu-icon-fallback,
.menu-icon-lottie {
  position: absolute;
  inset: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
}
.menu-icon { position: relative; inset: auto; }
.menu-icon-fallback {
  opacity: 1;
  transition: opacity .15s ease;
}
.menu-icon-fallback img { width: 24px; height: 24px; }
.menu-icon-fallback::before,
.menu-icon-fallback::after {
  position: absolute;
  top: 11px;
  left: 3px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  content: "";
  transition: opacity .15s ease, transform .32s cubic-bezier(.16, 1, .3, 1);
}
.menu-btn.is-open:not(.has-lottie-menu) .menu-icon-fallback img { opacity: 0; }
.menu-btn.is-open:not(.has-lottie-menu) .menu-icon-fallback::before { opacity: 1; transform: rotate(45deg); }
.menu-btn.is-open:not(.has-lottie-menu) .menu-icon-fallback::after { opacity: 1; transform: rotate(-45deg); }
.menu-icon-lottie { opacity: 0; }
.menu-btn.has-lottie-menu .menu-icon-fallback { opacity: 0; }
.menu-btn.has-lottie-menu .menu-icon-lottie { opacity: 1; }
.menu-icon-lottie svg { display: block; width: 100% !important; height: 100% !important; }

.hero {
  position: relative;
  min-height: 780px;
  padding: 118px 0 64px;
  background:
    radial-gradient(circle at 79% 21%, rgb(230 0 28 / .1), transparent 26%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 82%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff1f3;
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}
.hero h1, .page-hero h1 {
  margin: 24px 0 22px;
  color: #111827;
  font-size: clamp(48px, 4.7vw, 88px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 950;
}
.hero h1 span, .page-hero h1 span, .section-title h2 span { color: var(--red); }
.hero p, .page-hero p {
  margin: 0;
  max-width: 680px;
  color: #667085;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 22px; margin-top: 42px; }
.hero-media {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% 4% 8% 1%;
  border-radius: 34px;
  background: linear-gradient(135deg, rgb(255 255 255 / .75), rgb(255 255 255 / .25));
  box-shadow: 0 30px 70px rgb(15 23 42 / .1);
}
.hero-media img {
  position: relative;
  width: min(930px, 100%);
  border-radius: 24px;
  filter: drop-shadow(0 22px 44px rgb(230 0 28 / .12));
}

.trust-strip {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff1f3;
  color: var(--red);
  font-size: 20px;
  font-weight: 950;
}
.trust-item strong { display: block; font-size: 26px; line-height: 1; font-weight: 950; }
.trust-item span { display: block; margin-top: 7px; color: #667085; font-size: 13px; font-weight: 700; }

.section-title { text-align: center; margin-bottom: 54px; }
.section-title h2 { margin: 0; font-size: clamp(34px, 3vw, 52px); line-height: 1.18; font-weight: 950; }
.section-title p { margin: 15px auto 0; max-width: 760px; color: #667085; font-size: 18px; line-height: 1.7; font-weight: 600; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card, .business-card, .audience-card, .case-card, .value-card, .tool-card, .course-card, .solution-card, .contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.problem-card { min-height: 160px; padding: 28px; }
.problem-card h3, .business-card h3, .audience-card h3, .value-card h3, .tool-card h3, .course-card h3, .solution-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 950;
}
.problem-card p, .business-card p, .audience-card p, .value-card p, .tool-card p, .course-card p, .solution-card p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 600;
}

.business-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.business-card { min-height: 318px; padding: 24px 22px 22px; text-align: center; overflow: hidden; }
.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 6%, rgb(230 0 28 / .08), transparent 34%);
  pointer-events: none;
}
.business-card img {
  position: relative;
  width: 120px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 18px;
}
.business-card h3 { position: relative; font-size: 21px; }
.business-card p { position: relative; min-height: 74px; }
.business-card .mini-btn { position: relative; margin-top: 18px; width: 100%; }

.capability-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cap-item { min-height: 132px; padding: 25px 18px; text-align: center; border-right: 1px solid var(--line); }
.cap-item:last-child { border-right: 0; }
.cap-item .mark { margin: 0 auto 13px; }
.cap-item strong { font-size: 17px; font-weight: 950; }
.cap-item p { margin: 8px 0 0; color: #667085; font-size: 13px; line-height: 1.45; font-weight: 600; }

.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.course-card { overflow: hidden; }
.course-visual {
  height: 180px;
  background: #111827;
  overflow: hidden;
}
.course-visual img { width: 100%; height: 100%; object-fit: cover; }
.course-body { padding: 24px; }
.badge { display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 999px; background: #fff1f3; color: var(--red); font-size: 14px; font-weight: 900; }
.course-body ul, .rich-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.course-body li, .rich-list li { color: #475467; font-size: 14px; line-height: 1.5; font-weight: 600; }
.course-body li::before, .rich-list li::before { content: "✓"; color: var(--red); font-weight: 950; margin-right: 8px; }

.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tool-card { padding: 24px; display: grid; grid-template-columns: 1fr 120px; gap: 16px; align-items: center; }
.tool-card img { width: 120px; height: 92px; object-fit: contain; }

.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.audience-card { padding: 28px 24px; min-height: 230px; }
.audience-card .mark { margin-bottom: 20px; }

.dark-cta {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 260px;
  align-items: center;
  gap: 34px;
  padding: 44px 52px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 40%, rgb(230 0 28 / .42), transparent 28%),
    linear-gradient(135deg, #0c1424 0%, #111827 60%, #49050d 100%);
  overflow: hidden;
  color: #fff;
}
.dark-cta h2 { margin: 0; font-size: 42px; line-height: 1.2; font-weight: 950; }
.dark-cta p { margin: 18px 0 0; color: #cbd5e1; line-height: 1.7; font-weight: 600; }
.dark-cta img { width: 100%; border-radius: 18px; opacity: .92; }
.dark-cta .btn { justify-self: end; min-width: 190px; }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.logo-chip {
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(15 23 42 / .05);
  color: #475467;
  font-weight: 800;
}

.page-hero {
  padding: 110px 0 78px;
  background:
    radial-gradient(circle at 85% 24%, rgb(230 0 28 / .11), transparent 25%),
    linear-gradient(180deg, #f7f9fc, #fff);
}
.page-hero-grid { display: grid; grid-template-columns: 1fr 620px; gap: 56px; align-items: center; }
.page-hero-visual img { border-radius: 24px; box-shadow: var(--shadow); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.solution-card { padding: 30px; min-height: 280px; }
.solution-card img { width: 94px; height: 76px; object-fit: contain; margin-bottom: 16px; }

.tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn, .filter-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #475467;
  font-weight: 900;
}
.tab-btn.active, .filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card { padding: 30px; min-height: 260px; }
.case-card small { color: var(--red); font-weight: 950; }

.contact-zone {
  padding: 70px 0 0;
  background:
    radial-gradient(circle at 92% 26%, rgb(230 0 28 / .34), transparent 22%),
    linear-gradient(135deg, #0d1524 0%, #101827 58%, #4a0711 100%);
  color: #fff;
}
.contact-grid { display: grid; grid-template-columns: 520px 1fr 210px; gap: 46px; align-items: start; }
.contact-grid h2 { margin: 0; font-size: 40px; line-height: 1.2; font-weight: 950; }
.contact-grid p { color: #cbd5e1; line-height: 1.7; font-weight: 600; }
.contact-form {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 54px rgb(0 0 0 / .24);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field { display: grid; gap: 7px; }
.field.wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 900; color: #344054; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  outline: 0;
  background: #fff;
}
.field textarea { min-height: 94px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgb(230 0 28 / .08); }
.form-grid .btn { grid-column: 1 / -1; margin-top: 8px; }
.qr-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 16px;
  background: rgb(255 255 255 / .12);
  text-align: center;
}
.qr-box { width: 108px; height: 108px; margin: 14px auto 0; display: grid; place-items: center; background: #fff; color: #111827; border-radius: 8px; font-weight: 950; }

.footer {
  margin-top: 58px;
  padding: 42px 0 22px;
  background: #101827;
  color: #cbd5e1;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 58px; }
.footer img { width: 154px; opacity: 1; }
.footer h3 { margin: 0 0 14px; color: #fff; font-size: 16px; }
.footer p, .footer a { display: block; margin: 8px 0; color: #9ca3af; font-size: 14px; line-height: 1.65; font-weight: 600; }
.copyright { margin-top: 34px; padding-top: 18px; border-top: 1px solid #263142; text-align: center; color: #6b7280; font-size: 14px; }

.toast, .modal {
  position: fixed;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast {
  right: 28px;
  bottom: 28px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(12px);
}
.toast.show, .modal.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.modal {
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(15 23 42 / .52);
}
.modal-card {
  width: min(560px, calc(100% - 36px));
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.modal-card h3 { margin: 0 0 12px; font-size: 26px; }
.modal-card p { color: #667085; line-height: 1.7; }
.close-modal { float: right; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); font-weight: 950; }

.accordion { display: grid; gap: 14px; }
.accordion-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.accordion-trigger {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  text-align: left;
}
.accordion-panel { display: none; padding: 0 22px 22px; color: #667085; line-height: 1.7; font-weight: 600; }
.accordion-item.open .accordion-panel { display: block; }

@media (max-width: 1280px) {
  .container, .container-sm, .nav-shell { width: calc(100% - 40px); }
  .nav-shell { grid-template-columns: 190px 1fr 54px; }
  .nav-cta { display: none; }
  .menu-btn { display: block; justify-self: end; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 104px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .page-hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .business-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-band, .trust-strip, .course-grid, .tool-grid, .solution-grid, .case-grid, .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .dark-cta { grid-template-columns: 1fr; }
  .dark-cta .btn { justify-self: start; }
}

@media (max-width: 760px) {
  .container, .container-sm, .nav-shell { width: calc(100% - 28px); }
  .section { padding: 74px 0; }
  .nav-shell { height: 64px; padding: 0 14px; }
  .brand img { width: 142px; }
  .hero { padding-top: 78px; }
  .hero h1, .page-hero h1 { font-size: 42px; }
  .hero p, .page-hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn, .ghost-btn { width: 100%; }
  .trust-strip, .problem-grid, .business-grid, .capability-band, .course-grid, .tool-grid, .audience-grid, .solution-grid, .case-grid, .logo-wall, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item, .cap-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .tool-card { grid-template-columns: 1fr; text-align: center; }
  .tool-card img { margin: 0 auto; }
  .dark-cta { padding: 32px 22px; }
  .dark-cta h2, .contact-grid h2 { font-size: 30px; }
}


.five-grid { grid-template-columns: repeat(5, 1fr); }
.four-grid { grid-template-columns: repeat(4, 1fr); }
.three-grid { grid-template-columns: repeat(3, 1fr); }
.accent-card { border-top: 4px solid var(--red); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.persona-grid span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(15 23 42 / .05);
  color: #344054;
  font-weight: 900;
  text-align: center;
}
.course-tall .course-body { min-height: 620px; display: flex; flex-direction: column; }
.course-tall .mini-btn { margin-top: auto; }
.badge.orange { background: #fff3e8; color: #f97316; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card {
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.price-card h3 { margin: 0; font-size: 30px; line-height: 1.2; font-weight: 950; }
.price-card h3 span { color: var(--red); }
.price-card p { color: #667085; line-height: 1.65; font-weight: 600; }
.price-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line); }
.price-row strong { font-size: 30px; color: #111827; }
.price-row a { color: var(--red); font-weight: 950; }
@media (max-width: 1280px) {
  .five-grid, .four-grid, .three-grid, .price-grid, .persona-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .five-grid, .four-grid, .three-grid, .price-grid, .persona-grid { grid-template-columns: 1fr; }
  .course-tall .course-body { min-height: auto; }
}

/* Header and footer polish based on latest visual reference */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}
.nav-shell {
  width: min(1840px, calc(100% - 72px));
  height: 78px;
  grid-template-columns: 230px 1fr 154px;
  gap: 28px;
  padding: 0 18px 0 30px;
  border: 1px solid rgb(255 255 255 / .72);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / .86), rgb(255 255 255 / .72));
  box-shadow: 0 18px 48px rgb(15 23 42 / .12), inset 0 1px 0 rgb(255 255 255 / .78);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
}
.brand img { width: 174px; }
.main-nav { gap: 26px; }
.main-nav a {
  padding: 12px 18px;
  color: #172033;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  background: rgb(255 255 255 / .78);
  box-shadow: 0 10px 24px rgb(15 23 42 / .08), inset 0 0 0 1px rgb(255 255 255 / .92);
}
.nav-cta {
  height: 48px;
  min-height: 48px;
  border-radius: 10px;
  font-size: 15px;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgb(230 0 28 / .28), 0 0 0 1px rgb(255 255 255 / .22) inset;
}
.nav-cta span { margin-left: 7px; font-size: 18px; line-height: 1; }

.contact-zone {
  position: relative;
  padding: 86px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgb(230 0 28 / .24), transparent 26%),
    linear-gradient(108deg, #090f1b 0%, #111827 52%, #47050d 100%);
  color: #fff;
}
.contact-zone::before,
.contact-zone::after {
  content: "";
  position: absolute;
  inset: auto -8% 40% 58%;
  height: 3px;
  transform: rotate(-10deg);
  background: linear-gradient(90deg, transparent, rgb(230 0 28 / .95), rgb(255 80 92 / .88), transparent);
  box-shadow: 0 0 28px rgb(230 0 28 / .78), 0 36px 42px rgb(230 0 28 / .35);
  pointer-events: none;
}
.contact-zone::after {
  inset: auto -12% 18% 54%;
  opacity: .64;
  transform: rotate(-8deg);
}
.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 560px minmax(560px, 1fr) 220px;
  gap: 36px;
  align-items: center;
}
.contact-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.32;
  color: #fff;
  font-weight: 950;
}
.contact-copy h2 span { color: var(--red); }
.contact-copy p {
  max-width: 500px;
  margin: 26px 0 0;
  color: #d5dbe7;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}
.contact-copy i {
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 30px;
  background: var(--red);
  border-radius: 999px;
}
.contact-zone .contact-form {
  padding: 34px 34px 36px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 68px rgb(0 0 0 / .34), 0 0 0 1px rgb(255 255 255 / .5) inset;
}
.contact-zone .contact-form h3 {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 950;
  color: #111827;
}
.contact-zone .compact-form {
  gap: 20px 42px;
}
.contact-zone .inline-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid #d6dbe4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.contact-zone .inline-field label {
  width: 92px;
  padding-left: 20px;
  color: #111827;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}
.contact-zone .inline-field input,
.contact-zone .inline-field select {
  height: 48px;
  border: 0;
  border-radius: 0;
  padding: 0 16px;
  color: #344054;
  box-shadow: none;
}
.contact-zone .compact-form .btn {
  grid-column: 1 / -1;
  height: 52px;
  min-height: 52px;
  margin-top: 12px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgb(230 0 28 / .2);
}
.qr-card {
  min-height: 260px;
  padding: 40px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / .15), rgb(255 255 255 / .08));
  border: 1px solid rgb(255 255 255 / .14);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .16);
  text-align: center;
}
.qr-card strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 950;
}
.qr-card p { margin: 4px 0 18px; color: #fff; font-weight: 900; }
.qr-box {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border: 8px solid #fff;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 16px, #111 16px 22px, transparent 22px 32px, #111 32px 38px, transparent 38px),
    linear-gradient(#111 10px, transparent 10px 16px, #111 16px 22px, transparent 22px 32px, #111 32px 38px, transparent 38px),
    repeating-linear-gradient(45deg, #111 0 4px, #fff 4px 8px);
  background-size: 44px 44px, 44px 44px, 14px 14px;
  background-color: #fff;
}
.qr-box span {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px #ddd;
}
.footer {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  padding: 46px 0 18px;
  background: #111923;
  color: #cbd5e1;
}
.footer-grid {
  grid-template-columns: 1.45fr .7fr .75fr .9fr;
  gap: 68px;
  align-items: start;
}
.footer-grid > div:not(:first-child) {
  padding-left: 66px;
  border-left: 1px solid rgb(255 255 255 / .09);
}
.footer img { width: 154px; margin-bottom: 18px; }
.footer h3 { margin-bottom: 18px; font-size: 17px; }
.footer p,
.footer a { color: #aeb8c7; font-size: 15px; line-height: 1.85; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a,
.contact-line span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(255 255 255 / .1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.contact-line {
  display: flex !important;
  align-items: center;
  gap: 18px;
}
.contact-line:first-of-type {
  color: #d1d5db;
  font-size: 28px;
  letter-spacing: .5px;
}
.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / .08);
  color: #687284;
}

@media (max-width: 1280px) {
  .site-header { top: 12px; }
  .nav-shell {
    width: calc(100% - 40px);
    grid-template-columns: 190px 1fr 54px;
    height: 68px;
  }
  .nav-cta { display: none; }
  .menu-btn { display: block; justify-self: end; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    gap: 8px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgb(255 255 255 / .72);
    border-radius: 16px;
    background: rgb(255 255 255 / .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .main-nav.open { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .qr-card { width: 220px; justify-self: start; }
  .footer-grid > div:not(:first-child) { padding-left: 0; border-left: 0; }
}
@media (max-width: 760px) {
  .site-header { top: 10px; }
  .nav-shell { width: calc(100% - 28px); height: 64px; padding: 0 14px; }
  .brand img { width: 142px; }
  .contact-zone { padding-top: 64px; }
  .contact-copy h2 { font-size: 30px; }
  .contact-zone .contact-form { padding: 24px 18px; }
  .contact-zone .compact-form { grid-template-columns: 1fr; gap: 14px; }
  .contact-zone .inline-field label { width: 86px; padding-left: 14px; }
  .qr-card { width: 100%; }
  .footer { margin-top: 48px; }
}

/* Tighten desktop nav so eight primary links fit the reference-style header */
@media (min-width: 1281px) {
  .nav-shell { grid-template-columns: 220px 1fr 144px; gap: 24px; }
  .main-nav { gap: 14px; }
  .main-nav a { padding: 10px 12px; font-size: 14px; }
  .nav-cta { font-size: 14px; }
}

/* AI tools page sections */
.ai-tools-hero .page-hero-visual img { background: transparent; }
.tool-feature-section { padding: 0 0 72px; }
.tool-feature-strip {
  margin-top: -52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / .96);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tool-feature-strip article {
  min-height: 112px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.tool-feature-strip article:last-child { border-right: 0; }
.tool-feature-strip img { width: 70px; height: 70px; object-fit: contain; }
.tool-feature-strip h3 { margin: 0; font-size: 19px; font-weight: 950; }
.tool-feature-strip p { margin: 8px 0 0; color: #667085; font-size: 14px; line-height: 1.5; font-weight: 700; }
.why-tool-grid .solution-card { text-align: center; min-height: 300px; border-top: 3px solid var(--red); }
.why-tool-grid .solution-card img { width: 132px; height: 112px; margin: 0 auto 20px; }
.ai-tool-grid .tool-card {
  min-height: 222px;
  grid-template-columns: 1fr 128px;
  background: linear-gradient(180deg, #fff, #fff 72%, #fff7f8);
}
.ai-tool-grid .tool-card img { width: 126px; height: 104px; }
.ai-tool-grid .mini-btn { margin-top: 14px; min-width: 116px; }
.tool-dark-banner {
  min-height: 360px;
  display: grid;
  grid-template-columns: 430px 1fr 260px;
  align-items: center;
  gap: 28px;
  padding: 46px 58px;
  border-radius: 18px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 46%, rgb(230 0 28 / .36), transparent 27%),
    linear-gradient(135deg, #111827 0%, #172033 58%, #08101d 100%);
  box-shadow: 0 22px 54px rgb(15 23 42 / .18);
}
.tool-dark-banner h2 { margin: 0 0 28px; font-size: 34px; line-height: 1.28; font-weight: 950; }
.tool-dark-banner ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.tool-dark-banner li { color: #eef2f7; font-size: 18px; font-weight: 800; }
.tool-dark-banner li::before { content: "✓"; margin-right: 12px; color: var(--red); font-weight: 950; }
.tool-dark-banner img { width: 100%; border-radius: 14px; opacity: .96; filter: drop-shadow(0 16px 28px rgb(230 0 28 / .2)); }
.tool-dark-banner .btn { justify-self: end; min-width: 210px; height: 58px; }
.scenario-grid .solution-card { min-height: 260px; overflow: hidden; }
.scenario-grid .solution-card img { width: 148px; height: 112px; margin: 22px 0 0 auto; opacity: .96; }
.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.process-flow article {
  position: relative;
  min-height: 192px;
  padding: 28px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.process-flow article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
  z-index: 2;
}
.process-flow span {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  border: 1px solid #ffd4d9;
  font-weight: 950;
}
.process-flow img { width: 74px; height: 64px; object-fit: contain; margin: 0 auto 14px; }
.process-flow h3 { margin: 0; font-size: 18px; font-weight: 950; }
.process-flow p { margin: 9px 0 0; color: #667085; font-size: 13px; line-height: 1.5; font-weight: 700; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.delivery-grid article {
  min-height: 216px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.delivery-grid h3 { margin: 0; font-size: 21px; font-weight: 950; }
.delivery-grid p { margin: 12px 0 0; color: #667085; line-height: 1.6; font-weight: 700; }
.delivery-grid img { width: 92px; height: 76px; object-fit: contain; margin: 24px 0 0 auto; }
@media (max-width: 1280px) {
  .tool-feature-strip, .process-flow, .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-feature-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .tool-dark-banner { grid-template-columns: 1fr; }
  .tool-dark-banner .btn { justify-self: start; }
  .process-flow article:not(:last-child)::after { display: none; }
}
@media (max-width: 760px) {
  .tool-feature-strip, .process-flow, .delivery-grid { grid-template-columns: 1fr; }
  .tool-feature-strip { margin-top: 0; }
  .ai-tool-grid .tool-card { grid-template-columns: 1fr; }
  .tool-dark-banner { padding: 32px 22px; }
  .tool-dark-banner h2 { font-size: 28px; }
}

/* Content audit improvements */
.value-grid,
.case-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.case-method-grid { grid-template-columns: repeat(4, 1fr); }
.value-card {
  min-height: 210px;
  padding: 28px 24px;
}
.value-card .mark { margin-bottom: 18px; }
.service-mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-mode-grid .solution-card { min-height: 300px; }
.service-mode-grid img { width: 96px; height: 82px; object-fit: contain; margin-bottom: 18px; }
.timeline-grid {
  display: grid;
  gap: 18px;
}
.timeline-grid article {
  display: grid;
  grid-template-columns: 110px 260px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.timeline-grid span {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 48px;
  border-radius: 999px;
  background: #fff1f3;
  color: var(--red);
  font-size: 18px;
  font-weight: 950;
}
.timeline-grid h3 { margin: 0; font-size: 21px; font-weight: 950; }
.timeline-grid p { margin: 0; color: #667085; line-height: 1.7; font-weight: 700; }
.compact-process { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1280px) {
  .value-grid,
  .case-method-grid,
  .service-mode-grid,
  .compact-process { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid article { grid-template-columns: 90px 1fr; }
  .timeline-grid article p { grid-column: 2; }
}
@media (max-width: 760px) {
  .value-grid,
  .case-method-grid,
  .service-mode-grid,
  .compact-process { grid-template-columns: 1fr; }
  .timeline-grid article { grid-template-columns: 1fr; }
  .timeline-grid article p { grid-column: auto; }
}

/* Premium red technology redesign for the home page */
:root {
  --red: #e6001c;
  --red-dark: #bd0016;
  --red-glow: rgb(230 0 28 / .36);
  --ink: #07111f;
  --muted: #667085;
  --line: #dbe3ef;
  --soft: #eef3fa;
  --navy: #07111f;
  --radius: 20px;
  --shadow: 0 26px 76px rgb(10 24 46 / .13);
  --shadow-soft: 0 16px 42px rgb(10 24 46 / .09);
}

body { background: #eef3fa; }
.site { background: #f6f9fd; }

.home-hero {
  position: relative;
  min-height: 100dvh;
  padding: 176px 0 0;
  overflow: hidden;
  background: #eaf1fb;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(248 251 255 / .98) 0%, rgb(248 251 255 / .86) 31%, rgb(248 251 255 / .28) 58%, rgb(248 251 255 / .1) 100%),
    linear-gradient(180deg, rgb(255 255 255 / .08) 0%, rgb(232 240 250 / .38) 76%, #eef3fa 100%);
}
.home-hero-inner {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(520px, 760px) 1fr;
  align-items: start;
}
.home-hero-copy { padding-top: 34px; }
.hero-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgb(255 255 255 / .76);
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgb(230 0 28 / .14), 0 14px 34px rgb(14 31 53 / .08);
  font-size: 14px;
  font-weight: 950;
}
.home-hero h1 {
  margin: 30px 0 20px;
  color: #07111f;
  font-size: clamp(58px, 6.2vw, 112px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 950;
}
.home-hero h1 span { color: var(--red); }
.home-hero p {
  max-width: 760px;
  margin: 0;
  color: #344054;
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.58;
  font-weight: 700;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgb(230 0 28 / .86);
  border-radius: 999px;
  color: var(--red);
  background: rgb(255 255 255 / .72);
  box-shadow: 0 12px 28px rgb(14 31 53 / .08);
  font-size: 19px;
  font-weight: 950;
}
.home-hero .hero-actions { margin-top: 38px; gap: 20px; }
.hero-primary,
.hero-secondary {
  min-height: 58px;
  min-width: 180px;
  border-radius: 999px;
  font-size: 18px;
}
.hero-secondary {
  color: #07111f;
  border-color: rgb(255 255 255 / .76);
  background: rgb(255 255 255 / .84);
}
.home-hero-panel {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: min(720px, 54vw);
  min-height: 122px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 24px;
  background: rgb(255 255 255 / .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.home-hero-panel div {
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}
.home-hero-panel div:last-child { border-right: 0; }
.home-hero-panel strong {
  display: block;
  color: var(--red);
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1;
  font-weight: 950;
}
.home-hero-panel span {
  display: block;
  margin-top: 9px;
  color: #344054;
  font-size: 16px;
  font-weight: 800;
}
.hero-command-card {
  position: absolute;
  left: min(760px, 56vw);
  bottom: 8px;
  width: 174px;
  height: 184px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  border-radius: 28px;
  background: #07111f;
  color: #fff;
  box-shadow: 0 24px 58px rgb(7 17 31 / .28), 0 0 0 1px rgb(255 255 255 / .14) inset;
}
.hero-command-card span,
.hero-command-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 950;
}
.hero-command-card::after {
  content: "";
  width: 76px;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--red);
}
.hero-proof {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 42px;
  border-radius: 24px;
  background: rgb(255 255 255 / .96);
  box-shadow: var(--shadow);
}
.hero-proof article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px 18px;
  align-items: center;
  min-height: 84px;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}
.hero-proof article:last-child { border-right: 0; }
.hero-proof article span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 10px 28px var(--red-glow);
}
.hero-proof strong { color: #07111f; font-size: 22px; font-weight: 950; }
.hero-proof p { margin: -12px 0 0; color: #667085; font-size: 14px; font-weight: 700; }

.home-section {
  position: relative;
  padding: 116px 0;
  background:
    linear-gradient(rgb(199 214 232 / .55) 1px, transparent 1px),
    linear-gradient(90deg, rgb(199 214 232 / .55) 1px, transparent 1px),
    #eef3fa;
  background-size: 96px 96px;
}
.home-section-title {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}
.home-section-title h2 {
  margin: 0;
  color: #07111f;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.18;
  font-weight: 950;
}
.home-section-title p {
  margin: 16px auto 0;
  max-width: 820px;
  color: #667085;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 700;
}
.home-section-title.invert h2 { color: #fff; }
.home-section-title.invert p { color: #cbd5e1; }

.architecture-board {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 48px;
  min-height: 640px;
  padding: 34px;
  border-radius: 28px;
  background: rgb(255 255 255 / .9);
  box-shadow: var(--shadow);
}
.architecture-lead {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 54px 48px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgb(230 0 28 / .28), transparent 34%),
    linear-gradient(145deg, #07111f 0%, #091a2f 62%, #1b0610 100%);
  color: #fff;
}
.architecture-lead span { font-size: 74px; line-height: 1; font-weight: 950; }
.architecture-lead h3 { margin: 34px 0 20px; font-size: 38px; line-height: 1.25; font-weight: 950; }
.architecture-lead p { margin: 0; color: #d6dfeb; font-size: 18px; line-height: 1.75; font-weight: 700; }
.architecture-lead .btn { align-self: flex-start; margin-top: auto; min-width: 190px; border-radius: 999px; }
.architecture-map {
  position: relative;
  min-height: 560px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 56% 52%, rgb(230 0 28 / .09), transparent 24%),
    linear-gradient(180deg, #fff, #fbfdff);
  overflow: hidden;
}
.architecture-map::before,
.architecture-map::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 13%;
  height: 2px;
  top: 48%;
  background: linear-gradient(90deg, transparent, rgb(230 0 28 / .84), transparent);
  transform: rotate(-12deg);
}
.architecture-map::after { top: 61%; transform: rotate(11deg); opacity: .66; }
.service-node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 16px;
  width: min(360px, 40%);
  min-height: 108px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 22px 54px rgb(10 24 46 / .1);
}
.service-node img { width: 78px; height: 78px; object-fit: contain; }
.service-node h3 { margin: 0; color: #07111f; font-size: 23px; font-weight: 950; }
.service-node p { margin: 7px 0 0; color: #667085; font-size: 15px; line-height: 1.35; font-weight: 800; }
.service-node.active { border-color: rgb(230 0 28 / .86); background: #fff7f8; }
.node-a { left: 8%; top: 10%; }
.node-b { right: 10%; top: 28%; }
.node-c { right: 3%; top: 52%; }
.node-d { left: 28%; bottom: 16%; }
.node-e { left: 6%; bottom: 8%; }

.course-system {
  background:
    radial-gradient(circle at 76% 34%, rgb(230 0 28 / .28), transparent 30%),
    linear-gradient(125deg, #07111f 0%, #0a1d32 55%, #13060e 100%);
  color: #fff;
}
.course-system-grid {
  display: grid;
  grid-template-columns: minmax(480px, 760px) 1fr;
  gap: 58px;
  align-items: stretch;
}
.course-paths { display: grid; gap: 24px; align-content: start; }
.course-path {
  min-height: 128px;
  padding: 26px 30px;
  border-left: 7px solid var(--red);
  border-radius: 0 28px 28px 0;
  background: rgb(255 255 255 / .96);
  color: #07111f;
  box-shadow: 0 20px 44px rgb(0 0 0 / .16);
}
.course-path:nth-child(2) { border-left-color: #2f67f6; }
.course-path strong { display: inline-block; min-width: 126px; color: var(--red); font-size: 34px; font-weight: 950; }
.course-path:nth-child(2) strong { color: #2f67f6; }
.course-path p { display: inline; margin-left: 20px; color: #344054; font-size: 18px; font-weight: 900; }
.course-path div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.course-path span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #eef3fa;
  color: #344054;
  font-size: 14px;
  font-weight: 900;
}
.course-paths .btn { justify-self: start; min-width: 260px; min-height: 62px; margin-top: 18px; border-radius: 999px; font-size: 18px; }
.course-visual-large {
  margin: 0;
  display: grid;
  align-content: end;
  min-height: 540px;
}
.course-visual-large img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 26px 70px rgb(0 0 0 / .3);
}
.course-visual-large figcaption {
  margin-top: 24px;
  color: #eef2f7;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 950;
  text-align: center;
}

.agent-board {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 42px;
  padding: 36px;
  border-radius: 28px;
  background: rgb(255 255 255 / .92);
  box-shadow: var(--shadow);
}
.agent-dashboard {
  min-height: 520px;
  padding: 48px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgb(230 0 28 / .22), transparent 30%),
    linear-gradient(145deg, #07111f, #092137);
  color: #fff;
}
.agent-dashboard h3 { margin: 0; font-size: 36px; font-weight: 950; }
.agent-dashboard p { margin: 12px 0 44px; color: #c9d4e4; font-size: 18px; line-height: 1.6; font-weight: 700; }
.metric-row { display: grid; grid-template-columns: 112px 1fr 52px; gap: 18px; align-items: center; margin-top: 30px; }
.metric-row span,
.metric-row b { font-size: 18px; font-weight: 950; }
.metric-row i {
  position: relative;
  height: 13px;
  border-radius: 999px;
  background: rgb(255 255 255 / .9);
  overflow: hidden;
}
.metric-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--v);
  border-radius: inherit;
  background: var(--red);
}
.agent-network { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-content: center; }
.agent-network article {
  min-height: 220px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgb(10 24 46 / .08);
}
.agent-network img { width: 86px; height: 86px; object-fit: contain; }
.agent-network h3 { margin: 0; color: #07111f; font-size: 24px; font-weight: 950; }
.agent-network p { margin: 8px 0 0; color: #667085; line-height: 1.55; font-weight: 800; }
.agent-network .mini-btn { grid-column: 2; justify-self: start; margin-top: -6px; border-radius: 999px; }

.evidence-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 1fr);
  gap: 28px;
}
.evidence-grid article {
  min-height: 220px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.evidence-grid h3 { margin: 0; color: #07111f; font-size: 28px; font-weight: 950; }
.evidence-grid p { margin: 12px 0 0; color: #667085; font-size: 17px; line-height: 1.7; font-weight: 700; }
.evidence-grid i {
  display: block;
  width: 70px;
  height: 6px;
  margin-bottom: 36px;
  border-radius: 999px;
  background: var(--red);
}
.evidence-main {
  grid-row: span 2;
  border-color: rgb(230 0 28 / .72) !important;
}
.evidence-main strong {
  display: block;
  margin-top: 36px;
  color: #344054;
  font-size: 23px;
  line-height: 1.55;
  font-weight: 950;
}
.bar-chart {
  height: 250px;
  display: flex;
  gap: 26px;
  align-items: end;
  margin-top: 44px;
}
.bar-chart span {
  width: 58px;
  border-radius: 999px 999px 16px 16px;
  background: var(--red);
  box-shadow: 0 14px 30px var(--red-glow);
}

.home-final-cta {
  padding: 112px 0 0;
  background: linear-gradient(125deg, #e6001c 0%, #830011 48%, #07111f 100%);
}
.final-cta-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 34px;
  align-items: center;
  min-height: 230px;
  padding: 42px 52px;
  border-radius: 30px 30px 0 0;
  background: #fff;
  box-shadow: 0 -20px 70px rgb(0 0 0 / .18);
}
.final-cta-card h2 { margin: 0; color: #07111f; font-size: clamp(34px, 3.4vw, 54px); line-height: 1.2; font-weight: 950; }
.final-cta-card p { margin: 14px 0 0; color: #667085; font-size: 19px; line-height: 1.65; font-weight: 700; }
.final-cta-card .btn { min-height: 64px; border-radius: 999px; font-size: 20px; }

@media (prefers-reduced-motion: no-preference) {
  .home-hero-bg { animation: heroDrift 18s ease-in-out infinite alternate; }
  .service-node,
  .agent-network article,
  .course-path { transition: transform .25s ease, box-shadow .25s ease; }
  .service-node:hover,
  .agent-network article:hover,
  .course-path:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgb(10 24 46 / .14); }
}
@keyframes heroDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-1.2%, -.7%, 0); }
}

@media (max-width: 1280px) {
  .home-hero { padding-top: 128px; }
  .home-hero-inner,
  .architecture-board,
  .course-system-grid,
  .agent-board { grid-template-columns: 1fr; }
  .home-hero-panel,
  .hero-command-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 34px; }
  .hero-command-card { width: 210px; height: 150px; }
  .hero-proof,
  .agent-network,
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-proof article:nth-child(2) { border-right: 0; }
  .architecture-map { min-height: auto; display: grid; gap: 18px; padding: 22px; }
  .architecture-map::before,
  .architecture-map::after { display: none; }
  .service-node { position: relative; inset: auto; width: 100%; }
  .architecture-lead { min-height: auto; }
}

@media (max-width: 760px) {
  .home-hero { min-height: auto; padding: 104px 0 54px; }
  .home-hero-shade { background: linear-gradient(180deg, rgb(248 251 255 / .95), rgb(248 251 255 / .84) 62%, #eef3fa); }
  .home-hero-copy { padding-top: 0; }
  .home-hero h1 { font-size: 48px; }
  .home-hero p { font-size: 17px; }
  .hero-tags span { min-height: 38px; font-size: 15px; }
  .home-hero .hero-actions { flex-direction: column; }
  .home-hero-panel { grid-template-columns: 1fr; }
  .home-hero-panel div { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px; }
  .hero-proof,
  .agent-network,
  .evidence-grid { grid-template-columns: 1fr; }
  .hero-proof { padding: 18px; }
  .hero-proof article { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 4px; }
  .hero-proof article:last-child { border-bottom: 0; }
  .home-section { padding: 78px 0; background-size: 56px 56px; }
  .home-section-title h2 { font-size: 34px; }
  .home-section-title p { font-size: 16px; }
  .architecture-board,
  .agent-board { padding: 18px; border-radius: 22px; }
  .architecture-lead,
  .agent-dashboard { padding: 30px 24px; }
  .architecture-lead span { font-size: 54px; }
  .architecture-lead h3,
  .agent-dashboard h3 { font-size: 30px; }
  .service-node,
  .agent-network article { grid-template-columns: 72px 1fr; padding: 18px; }
  .service-node img,
  .agent-network img { width: 66px; height: 66px; }
  .course-path { border-radius: 0 22px 22px 0; padding: 22px; }
  .course-path strong { display: block; font-size: 28px; }
  .course-path p { display: block; margin: 8px 0 0; font-size: 15px; }
  .course-visual-large img { min-height: 260px; border-radius: 22px; }
  .course-visual-large figcaption { font-size: 17px; }
  .metric-row { grid-template-columns: 82px 1fr 42px; gap: 10px; }
  .metric-row span,
  .metric-row b { font-size: 14px; }
  .evidence-main { grid-row: auto; }
  .bar-chart { height: 170px; gap: 12px; }
  .bar-chart span { width: 34px; }
  .final-cta-card { grid-template-columns: 1fr; padding: 34px 24px; }
}

/* Content-strict homepage polish: reuse the original homepage sections and copy only */
body[data-page="home"] .site { background: #eef3fa; }
body[data-page="home"] .hero {
  position: relative;
  min-height: 100dvh;
  padding: 166px 0 48px;
  overflow: hidden;
  background: #eef3fa;
}
body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/haoyu-premium-hero-banner-DUTIOWnF.webp");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
}
body[data-page="home"] .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(248 251 255 / .98) 0%, rgb(248 251 255 / .88) 32%, rgb(248 251 255 / .34) 62%, rgb(248 251 255 / .1) 100%),
    linear-gradient(180deg, rgb(255 255 255 / .04) 0%, rgb(238 243 250 / .22) 72%, #eef3fa 100%);
}
body[data-page="home"] .hero-grid,
body[data-page="home"] .trust-strip {
  position: relative;
  z-index: 1;
}
body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(520px, 740px) 1fr;
  min-height: 610px;
  gap: 52px;
}
body[data-page="home"] .hero .eyebrow {
  min-height: 36px;
  padding: 0 17px;
  background: rgb(255 255 255 / .78);
  border: 1px solid rgb(230 0 28 / .14);
  box-shadow: 0 16px 36px rgb(10 24 46 / .08);
}
body[data-page="home"] .hero h1 {
  margin-top: 30px;
  font-size: clamp(54px, 5.3vw, 96px);
  line-height: 1.06;
  color: #07111f;
}
body[data-page="home"] .hero p {
  max-width: 760px;
  color: #344054;
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.72;
}
body[data-page="home"] .hero-actions .btn,
body[data-page="home"] .hero-actions .ghost-btn {
  min-height: 58px;
  min-width: 178px;
  border-radius: 999px;
  font-size: 17px;
}
body[data-page="home"] .hero-media {
  min-height: 540px;
  align-self: center;
}
body[data-page="home"] .hero-media::before {
  inset: 10% 2% 9% 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgb(255 255 255 / .7), rgb(255 255 255 / .22));
  box-shadow: 0 30px 76px rgb(10 24 46 / .14), inset 0 1px 0 rgb(255 255 255 / .72);
  backdrop-filter: blur(8px);
}
body[data-page="home"] .hero-media img {
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgb(10 24 46 / .17);
  filter: saturate(1.02) contrast(1.02);
}
body[data-page="home"] .trust-strip {
  margin-top: -6px;
  border: 1px solid rgb(255 255 255 / .76);
  border-radius: 24px;
  background: rgb(255 255 255 / .94);
  box-shadow: 0 26px 76px rgb(10 24 46 / .13);
}
body[data-page="home"] .trust-item { min-height: 108px; }
body[data-page="home"] .trust-item .mark,
body[data-page="home"] .problem-card .mark,
body[data-page="home"] .cap-item .mark,
body[data-page="home"] .audience-card .mark {
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgb(230 0 28 / .25);
}
body[data-page="home"] .section {
  position: relative;
  padding: 116px 0;
}
body[data-page="home"] .section-soft {
  background:
    linear-gradient(rgb(199 214 232 / .55) 1px, transparent 1px),
    linear-gradient(90deg, rgb(199 214 232 / .55) 1px, transparent 1px),
    #eef3fa;
  background-size: 96px 96px;
}
body[data-page="home"] .section:not(.section-soft) { background: #f8fbff; }
body[data-page="home"] .section-title { margin-bottom: 58px; }
body[data-page="home"] .section-title h2 {
  color: #07111f;
  font-size: clamp(38px, 3.5vw, 58px);
  line-height: 1.18;
}
body[data-page="home"] .section-title p {
  color: #667085;
  font-size: 19px;
  font-weight: 700;
}
body[data-page="home"] .problem-card,
body[data-page="home"] .business-card,
body[data-page="home"] .course-card,
body[data-page="home"] .tool-card,
body[data-page="home"] .audience-card,
body[data-page="home"] .logo-chip {
  border-color: rgb(219 227 239 / .9);
  border-radius: 22px;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 18px 46px rgb(10 24 46 / .09);
}
body[data-page="home"] .problem-card,
body[data-page="home"] .audience-card { padding: 32px; }
body[data-page="home"] .problem-card::before,
body[data-page="home"] .business-card::before,
body[data-page="home"] .audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(230 0 28 / .08), transparent 42%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
body[data-page="home"] .problem-card:hover::before,
body[data-page="home"] .business-card:hover::before,
body[data-page="home"] .audience-card:hover::before { opacity: 1; }
body[data-page="home"] .business-grid { gap: 24px; }
body[data-page="home"] .business-card {
  min-height: 350px;
  padding: 28px 24px;
}
body[data-page="home"] .business-card img {
  width: 136px;
  height: 116px;
}
body[data-page="home"] .business-card .mini-btn,
body[data-page="home"] .course-card .mini-btn,
body[data-page="home"] .tool-card .mini-btn { border-radius: 999px; }
body[data-page="home"] .capability-band {
  border: 1px solid rgb(255 255 255 / .76);
  border-radius: 26px;
  background: rgb(255 255 255 / .94);
  box-shadow: 0 24px 70px rgb(10 24 46 / .11);
}
body[data-page="home"] .cap-item { min-height: 150px; padding: 30px 18px; }
body[data-page="home"] .course-grid { gap: 28px; }
body[data-page="home"] .course-card { overflow: hidden; }
body[data-page="home"] .course-visual { height: 210px; }
body[data-page="home"] .course-body { padding: 28px; }
body[data-page="home"] .tool-grid { gap: 28px; }
body[data-page="home"] .tool-card {
  grid-template-columns: 1fr 132px;
  min-height: 220px;
  background: linear-gradient(180deg, #fff, #fff 72%, #fff7f8);
}
body[data-page="home"] .tool-card img { width: 132px; height: 108px; }
body[data-page="home"] .audience-grid { gap: 24px; }
body[data-page="home"] .dark-cta {
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 38%, rgb(230 0 28 / .4), transparent 27%),
    linear-gradient(135deg, #07111f 0%, #0a1d32 56%, #42050c 100%);
  box-shadow: 0 26px 76px rgb(10 24 46 / .2);
}
body[data-page="home"] .dark-cta img { box-shadow: 0 18px 46px rgb(0 0 0 / .24); }
body[data-page="home"] .logo-wall { gap: 20px; }
body[data-page="home"] .logo-chip {
  height: 64px;
  color: #344054;
}
@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .hero::before { animation: heroDrift 18s ease-in-out infinite alternate; }
  body[data-page="home"] .problem-card,
  body[data-page="home"] .business-card,
  body[data-page="home"] .course-card,
  body[data-page="home"] .tool-card,
  body[data-page="home"] .audience-card { transition: transform .24s ease, box-shadow .24s ease; }
  body[data-page="home"] .problem-card:hover,
  body[data-page="home"] .business-card:hover,
  body[data-page="home"] .course-card:hover,
  body[data-page="home"] .tool-card:hover,
  body[data-page="home"] .audience-card:hover { transform: translateY(-5px); box-shadow: 0 24px 62px rgb(10 24 46 / .14); }
}
@media (max-width: 1280px) {
  body[data-page="home"] .hero-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .hero-media { min-height: 360px; }
  body[data-page="home"] .business-grid,
  body[data-page="home"] .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body[data-page="home"] .hero { min-height: auto; padding: 104px 0 48px; }
  body[data-page="home"] .hero::after { background: linear-gradient(180deg, rgb(248 251 255 / .96), rgb(248 251 255 / .9) 68%, #eef3fa); }
  body[data-page="home"] .hero h1 { font-size: 42px; }
  body[data-page="home"] .hero p { font-size: 16px; }
  body[data-page="home"] .hero-media { min-height: auto; }
  body[data-page="home"] .hero-media img { aspect-ratio: 4 / 3; }
  body[data-page="home"] .section { padding: 76px 0; }
  body[data-page="home"] .section-soft { background-size: 56px 56px; }
  body[data-page="home"] .section-title h2 { font-size: 32px; }
  body[data-page="home"] .section-title p { font-size: 16px; }
}

/* Strict-content visual upgrade v2: larger hero, image2 icons, precise course covers, full-bleed dark banner */
body[data-page="home"] .hero {
  min-height: 920px;
  padding: 162px 0 86px;
  background: #07111f;
}
body[data-page="home"] .hero::before {
  background-image: url("/assets/home-dark-ai-solution-banner-image2-DN08hZc5.webp");
  background-size: cover;
  background-position: center center;
  opacity: 1;
  transform: none;
}
body[data-page="home"] .hero::after {
  background:
    linear-gradient(90deg, rgb(7 17 31 / .92) 0%, rgb(7 17 31 / .82) 34%, rgb(7 17 31 / .32) 62%, rgb(7 17 31 / .08) 100%),
    linear-gradient(180deg, rgb(7 17 31 / .08) 0%, rgb(7 17 31 / .28) 72%, #eef3fa 100%);
}
body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(560px, 760px) 1fr;
  min-height: 590px;
  align-items: center;
}
body[data-page="home"] .hero-media { display: none; }
body[data-page="home"] .hero .eyebrow {
  color: #fff;
  background: rgb(255 255 255 / .1);
  border-color: rgb(255 255 255 / .18);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .16), 0 18px 48px rgb(0 0 0 / .18);
  backdrop-filter: blur(18px);
}
body[data-page="home"] .hero h1 {
  color: #fff;
  max-width: 780px;
  font-size: clamp(58px, 5.6vw, 104px);
  line-height: 1.05;
  text-shadow: 0 18px 46px rgb(0 0 0 / .24);
}
body[data-page="home"] .hero h1 span { color: #ff0f2f; }
body[data-page="home"] .hero p {
  max-width: 760px;
  color: #d7e0ee;
  font-size: clamp(20px, 1.5vw, 27px);
  font-weight: 800;
}
body[data-page="home"] .hero-actions { margin-top: 42px; }
body[data-page="home"] .hero-actions .ghost-btn {
  color: #fff;
  border-color: rgb(255 255 255 / .2);
  background: rgb(255 255 255 / .12);
  box-shadow: 0 18px 42px rgb(0 0 0 / .2);
  backdrop-filter: blur(16px);
}
body[data-page="home"] .trust-strip {
  margin-top: 38px;
  transform: none;
  background: rgb(255 255 255 / .96);
}
body[data-page="home"] .section:first-of-type { padding-top: 118px; }

body[data-page="home"] .problem-card .mark,
body[data-page="home"] .cap-item .mark {
  width: 64px;
  height: 64px;
  color: transparent;
  font-size: 0;
  border-radius: 18px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none;
}
body[data-page="home"] .problem-card:nth-child(1) .mark { background-image: url("/assets/icon-report-image2-Bn91TnET.webp"); }
body[data-page="home"] .problem-card:nth-child(2) .mark { background-image: url("/assets/icon-flow-image2-Ch9ZLny7.webp"); }
body[data-page="home"] .problem-card:nth-child(3) .mark { background-image: url("/assets/icon-agent-image2-0sc-c6li.webp"); }
body[data-page="home"] .problem-card:nth-child(4) .mark { background-image: url("/assets/icon-chat-image2-D2fX9SLH.webp"); }
body[data-page="home"] .problem-card:nth-child(5) .mark { background-image: url("/assets/tool-course-learning-B25Cunf2.webp"); }
body[data-page="home"] .problem-card:nth-child(6) .mark { background-image: url("/assets/icon-kb-image2-CMAqcAdB.webp"); }
body[data-page="home"] .cap-item:nth-child(1) .mark { background-image: url("/assets/scenario-education-BtI9XOl3.webp"); }
body[data-page="home"] .cap-item:nth-child(2) .mark { background-image: url("/assets/why-consult-delay-BkQRz5m6.webp"); }
body[data-page="home"] .cap-item:nth-child(3) .mark { background-image: url("/assets/scenario-school-BT4VH_MM.webp"); }
body[data-page="home"] .cap-item:nth-child(4) .mark { background-image: url("/assets/tool-data-stat-COxm24Q5.webp"); }
body[data-page="home"] .cap-item:nth-child(5) .mark { background-image: url("/assets/icon-agent-image2-0sc-c6li.webp"); }
body[data-page="home"] .cap-item:nth-child(6) .mark { background-image: url("/assets/tool-reminder-agent-BSw8pX3T.webp"); }
body[data-page="home"] .problem-card h3 { margin-top: 18px; }

body[data-page="home"] .course-card {
  border-radius: 24px;
  overflow: hidden;
}
body[data-page="home"] .course-visual {
  height: 252px;
  background: #07111f;
}
body[data-page="home"] .course-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}
body[data-page="home"] .course-body {
  min-height: 232px;
  display: flex;
  flex-direction: column;
}
body[data-page="home"] .course-body .mini-btn { margin-top: auto; }

body[data-page="home"] .section-soft:has(.dark-cta) {
  padding: 0;
  background: #07111f;
}
body[data-page="home"] .dark-cta {
  width: 100%;
  min-height: 620px;
  grid-template-columns: minmax(460px, 780px) 220px;
  align-items: end;
  padding: 82px 64px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgb(7 17 31 / .96) 0%, rgb(7 17 31 / .82) 36%, rgb(7 17 31 / .18) 68%, rgb(7 17 31 / .08) 100%),
    linear-gradient(180deg, rgb(7 17 31 / .12), rgb(7 17 31 / .62)),
    url("/assets/home-dark-ai-solution-banner-image2-DN08hZc5.webp") center / cover no-repeat;
  box-shadow: none;
}
body[data-page="home"] .dark-cta h2 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.12;
}
body[data-page="home"] .dark-cta p {
  max-width: 760px;
  color: #d7e0ee;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 800;
}
body[data-page="home"] .dark-cta img { display: none; }
body[data-page="home"] .dark-cta .btn {
  justify-self: start;
  align-self: end;
  min-width: 210px;
  min-height: 58px;
  border-radius: 12px;
}
@media (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .hero::before { animation: heroDarkDrift 18s ease-in-out infinite alternate; }
}
@keyframes heroDarkDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-1.1%, -.6%, 0); }
}
@media (max-width: 1280px) {
  body[data-page="home"] .hero { min-height: auto; }
  body[data-page="home"] .hero-grid { grid-template-columns: 1fr; min-height: 540px; }
  body[data-page="home"] .dark-cta { grid-template-columns: 1fr; min-height: 540px; }
}
@media (max-width: 760px) {
  body[data-page="home"] .hero { padding: 108px 0 44px; }
  body[data-page="home"] .hero::after {
    background: linear-gradient(180deg, rgb(7 17 31 / .94), rgb(7 17 31 / .82) 62%, #eef3fa 100%);
  }
  body[data-page="home"] .hero-grid { min-height: 500px; }
  body[data-page="home"] .hero h1 { font-size: 40px; }
  body[data-page="home"] .hero p { font-size: 16px; }
  body[data-page="home"] .trust-strip { margin-top: 22px; }
  body[data-page="home"] .course-visual { height: 210px; }
  body[data-page="home"] .dark-cta { min-height: 500px; padding: 54px 24px; }
  body[data-page="home"] .dark-cta h2 { font-size: 34px; }
}

/* Iteration v3: Iconify stats, clean light hero, audience 3D icons, compact dark CTA */
body[data-page="home"] .hero {
  min-height: 820px;
  padding: 138px 0 58px;
  background: #f7f9fc;
}
body[data-page="home"] .hero::before {
  background-image: url("/assets/home-light-ai-education-banner-image2-hf4XaurO.webp");
  background-size: cover;
  background-position: center top;
  opacity: 1;
  transform: none;
  animation: none !important;
}
body[data-page="home"] .hero::after {
  background:
    linear-gradient(90deg, rgb(248 251 255 / .98) 0%, rgb(248 251 255 / .86) 34%, rgb(248 251 255 / .2) 65%, rgb(248 251 255 / .05) 100%),
    linear-gradient(180deg, rgb(255 255 255 / .16) 0%, rgb(255 255 255 / .04) 70%, #eef3fa 100%);
}
body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(540px, 760px) 1fr;
  min-height: 505px;
  align-items: center;
}
body[data-page="home"] .hero .eyebrow {
  color: var(--red);
  background: rgb(255 255 255 / .78);
  border-color: rgb(230 0 28 / .13);
  box-shadow: 0 14px 34px rgb(10 24 46 / .08);
  backdrop-filter: blur(12px);
}
body[data-page="home"] .hero h1 {
  color: #07111f;
  max-width: 720px;
  font-size: clamp(58px, 5.8vw, 96px);
  line-height: 1.08;
  text-shadow: none;
}
body[data-page="home"] .hero h1 span { color: var(--red); }
body[data-page="home"] .hero p {
  max-width: 720px;
  color: #4a5568;
  font-size: clamp(18px, 1.3vw, 23px);
  line-height: 1.75;
  font-weight: 700;
}
body[data-page="home"] .hero-actions { margin-top: 34px; }
body[data-page="home"] .hero-actions .ghost-btn {
  color: #07111f;
  border-color: rgb(219 227 239 / .9);
  background: rgb(255 255 255 / .88);
  box-shadow: 0 14px 34px rgb(10 24 46 / .09);
  backdrop-filter: blur(10px);
}
body[data-page="home"] .trust-strip {
  margin-top: 24px;
  border-radius: 22px;
  background: rgb(255 255 255 / .97);
  overflow: hidden;
}
body[data-page="home"] .trust-item {
  justify-content: flex-start;
  min-height: 112px;
  padding: 18px 26px;
}
body[data-page="home"] .trust-item .iconify-mark {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #fff3f5;
  color: var(--red);
  box-shadow: 0 12px 28px rgb(230 0 28 / .12);
}
body[data-page="home"] .trust-item .iconify-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
body[data-page="home"] .trust-item .iconify-mark em {
  position: absolute;
  right: -7px;
  top: -8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 8px 16px rgb(230 0 28 / .24);
}
body[data-page="home"] .trust-item strong { font-size: 28px; }
body[data-page="home"] .trust-item span { font-size: 13px; }

body[data-page="home"] .audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
body[data-page="home"] .audience-card {
  min-height: 260px;
  padding: 24px 22px;
  overflow: hidden;
}
body[data-page="home"] .audience-card .audience-icon {
  width: 96px;
  height: 82px;
  object-fit: contain;
  margin: -4px 0 10px auto;
  filter: drop-shadow(0 16px 28px rgb(10 24 46 / .12));
}
body[data-page="home"] .audience-card .mark {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  font-size: 16px;
}
body[data-page="home"] .audience-card h3 { font-size: 21px; }
body[data-page="home"] .audience-card p { font-size: 14px; line-height: 1.58; }

body[data-page="home"] .section-soft:has(.dark-cta) {
  padding: 64px 0;
  background:
    linear-gradient(rgb(199 214 232 / .42) 1px, transparent 1px),
    linear-gradient(90deg, rgb(199 214 232 / .42) 1px, transparent 1px),
    #eef3fa;
  background-size: 96px 96px;
}
body[data-page="home"] .dark-cta {
  width: min(1680px, calc(100% - 96px));
  min-height: 410px;
  grid-template-columns: minmax(520px, 760px) 190px;
  gap: 26px;
  align-items: center;
  padding: 54px 52px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgb(7 17 31 / .96) 0%, rgb(7 17 31 / .84) 42%, rgb(7 17 31 / .35) 70%, rgb(7 17 31 / .12) 100%),
    url("/assets/home-dark-ai-solution-banner-image2-DN08hZc5.webp") center / cover no-repeat;
  box-shadow: 0 24px 70px rgb(10 24 46 / .18);
}
body[data-page="home"] .dark-cta h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.18;
}
body[data-page="home"] .dark-cta p {
  max-width: 680px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}
body[data-page="home"] .dark-cta .btn {
  min-width: 180px;
  min-height: 52px;
  justify-self: end;
  border-radius: 10px;
  font-size: 16px;
}
@media (max-width: 1280px) {
  body[data-page="home"] .audience-grid { grid-template-columns: repeat(2, 1fr); }
  body[data-page="home"] .dark-cta { width: calc(100% - 40px); grid-template-columns: 1fr; }
  body[data-page="home"] .dark-cta .btn { justify-self: start; }
}
@media (max-width: 760px) {
  body[data-page="home"] .hero { min-height: auto; padding: 104px 0 42px; }
  body[data-page="home"] .hero::after { background: linear-gradient(180deg, rgb(248 251 255 / .96), rgb(248 251 255 / .9) 66%, #eef3fa); }
  body[data-page="home"] .hero-grid { min-height: 480px; }
  body[data-page="home"] .hero h1 { font-size: 39px; }
  body[data-page="home"] .trust-item { min-height: 88px; }
  body[data-page="home"] .audience-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .audience-card { min-height: 220px; }
  body[data-page="home"] .dark-cta { width: calc(100% - 28px); min-height: 360px; padding: 34px 22px; }
  body[data-page="home"] .dark-cta h2 { font-size: 30px; }
}

/* Iteration v4: remove numbered badges, unify home content width, premium soft texture */
body[data-page="home"] {
  --home-content: min(1520px, calc(100% - 96px));
  --home-soft-bg: #f3f6fb;
}
body[data-page="home"] .container,
body[data-page="home"] .container-sm,
body[data-page="home"] .trust-strip,
body[data-page="home"] .dark-cta {
  width: var(--home-content);
}
body[data-page="home"] .section-soft {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .72) 0%, rgb(255 255 255 / .18) 46%, rgb(230 236 247 / .38) 100%),
    repeating-linear-gradient(112deg, rgb(255 255 255 / .36) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #f8fbff 0%, var(--home-soft-bg) 100%);
}
body[data-page="home"] .section-soft:has(.dark-cta) {
  padding: 62px 0;
  background:
    linear-gradient(135deg, rgb(255 255 255 / .74) 0%, rgb(255 255 255 / .2) 44%, rgb(225 232 244 / .42) 100%),
    repeating-linear-gradient(112deg, rgb(255 255 255 / .32) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #f7faff 0%, #edf2f8 100%);
  background-size: auto, 44px 44px, auto;
}
body[data-page="home"] .trust-strip {
  margin-top: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgb(214 224 238 / .86);
  box-shadow: 0 18px 54px rgb(28 42 68 / .1);
}
body[data-page="home"] .trust-item {
  min-height: 92px;
  gap: 18px;
  padding: 18px 28px;
}
body[data-page="home"] .trust-item .iconify-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgb(255 255 255 / .9);
  border: 1px solid rgb(230 0 28 / .12);
  box-shadow: 0 12px 28px rgb(10 24 46 / .08);
}
body[data-page="home"] .trust-item .iconify-mark img {
  width: 25px;
  height: 25px;
}
body[data-page="home"] .trust-item .iconify-mark em { display: none; }
body[data-page="home"] .trust-item strong {
  font-size: clamp(25px, 1.9vw, 34px);
  letter-spacing: 0;
}
body[data-page="home"] .trust-item span {
  margin-top: 4px;
  font-size: 13px;
  color: #66738a;
}
body[data-page="home"] .audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
body[data-page="home"] .audience-card {
  display: grid;
  grid-template-rows: 112px auto 1fr;
  min-height: 270px;
  padding: 26px 24px 24px;
  border-color: rgb(207 219 235 / .9);
  background:
    linear-gradient(150deg, rgb(255 255 255 / .98), rgb(255 255 255 / .84)),
    linear-gradient(180deg, rgb(230 0 28 / .05), transparent 38%);
  box-shadow: 0 18px 46px rgb(35 51 79 / .08);
}
body[data-page="home"] .audience-card .audience-icon {
  align-self: start;
  justify-self: center;
  width: 116px;
  height: 104px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgb(10 24 46 / .14));
}
body[data-page="home"] .audience-card h3 {
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 1.28;
  color: #07111f;
}
body[data-page="home"] .audience-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.72;
  color: #5d6a80;
}
body[data-page="home"] .dark-cta {
  width: var(--home-content);
  min-height: 390px;
  padding: 50px 52px;
}
@media (max-width: 1280px) {
  body[data-page="home"] { --home-content: min(1120px, calc(100% - 40px)); }
  body[data-page="home"] .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body[data-page="home"] .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  body[data-page="home"] { --home-content: calc(100% - 28px); }
  body[data-page="home"] .trust-strip,
  body[data-page="home"] .audience-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .trust-item { min-height: 82px; }
  body[data-page="home"] .audience-card {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    column-gap: 18px;
  }
  body[data-page="home"] .audience-card .audience-icon {
    grid-row: 1 / span 2;
    width: 90px;
    height: 84px;
  }
  body[data-page="home"] .audience-card h3 { margin-top: 4px; }
  body[data-page="home"] .audience-card p { margin-top: 8px; }
}


/* Iteration v5: lighter hero typography and unmasked image2 banner */
body[data-page="home"] .hero {
  min-height: 760px;
  padding: 128px 0 52px;
  background: #f7f9fc;
}
body[data-page="home"] .hero::before {
  opacity: 1;
  background-image: url("/assets/home-light-ai-education-banner-image2-hf4XaurO.webp");
  background-size: cover;
  background-position: center top;
  filter: none;
}
body[data-page="home"] .hero::after {
  background: none;
}
body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(680px, 900px) 1fr;
  min-height: 500px;
  align-items: center;
}
body[data-page="home"] .hero h1 {
  max-width: 900px;
  font-size: clamp(50px, 4.35vw, 72px);
  line-height: 1.16;
  letter-spacing: 0;
}
body[data-page="home"] .hero-title-break {
  display: block;
}
body[data-page="home"] .hero p {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.82;
  font-weight: 650;
}
body[data-page="home"] .hero-actions {
  margin-top: 30px;
}
@media (max-width: 1280px) {
  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  body[data-page="home"] .hero h1 {
    max-width: 820px;
    font-size: clamp(46px, 6.2vw, 66px);
  }
}
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    padding: 104px 0 40px;
  }
  body[data-page="home"] .hero-grid {
    min-height: 430px;
  }
  body[data-page="home"] .hero h1 {
    font-size: 36px;
    line-height: 1.18;
  }
  body[data-page="home"] .hero p {
    font-size: 15px;
    line-height: 1.72;
  }
}

/* Iteration v6: make the first-screen hero fill the viewport */
body[data-page="home"] .hero {
  min-height: 100dvh;
  padding: clamp(118px, 13vh, 150px) 0 clamp(38px, 6vh, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f7f9fc;
}
body[data-page="home"] .hero::before {
  inset: 0;
  background-size: cover;
  background-position: center top;
}
body[data-page="home"] .hero-grid {
  flex: 1 0 auto;
  min-height: auto;
  align-items: center;
}
body[data-page="home"] .trust-strip {
  flex: 0 0 auto;
  margin-top: clamp(28px, 5vh, 56px);
}
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    min-height: 100dvh;
    padding: 104px 0 34px;
    justify-content: flex-start;
  }
  body[data-page="home"] .hero-grid {
    min-height: auto;
  }
}

/* Iteration v7: browser comment refinements */
body[data-page="home"] .hero p {
  font-size: clamp(12px, .82vw, 15px);
  line-height: 1.82;
  font-weight: 650;
}
body[data-page="home"] .trust-item strong {
  font-size: clamp(21px, 1.55vw, 30px);
}
body[data-page="home"] .mini-btn {
  border-radius: 12px;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body[data-page="home"] .business-card:hover .mini-btn,
body[data-page="home"] .course-card:hover .mini-btn,
body[data-page="home"] .tool-card:hover .mini-btn {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 18px 34px rgb(230 0 28 / .24);
}
body[data-page="home"] .business-card:hover .mini-btn:hover,
body[data-page="home"] .course-card:hover .mini-btn:hover,
body[data-page="home"] .tool-card:hover .mini-btn:hover {
  transform: translateY(-1px);
}
body[data-page="home"] .audience-card {
  grid-template-rows: 82px auto 1fr;
  min-height: 220px;
  padding: 20px 18px 18px;
}
body[data-page="home"] .audience-card .audience-icon {
  width: 86px;
  height: 76px;
}
body[data-page="home"] .audience-card h3 {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.25;
}
body[data-page="home"] .audience-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.54;
}
body[data-page="home"] .dark-cta {
  grid-template-columns: minmax(0, 760px) 1fr;
  row-gap: 20px;
}
body[data-page="home"] .dark-cta .btn {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: start;
}
.social-row a img,
.contact-line span img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}
.contact-line:first-of-type span img {
  width: 18px;
  height: 18px;
}
@media (max-width: 760px) {
  body[data-page="home"] .hero p {
    font-size: 13px;
  }
  body[data-page="home"] .audience-card {
    grid-template-columns: 74px 1fr;
    column-gap: 14px;
    padding: 18px;
  }
  body[data-page="home"] .audience-card .audience-icon {
    width: 72px;
    height: 68px;
  }
  body[data-page="home"] .dark-cta {
    grid-template-columns: 1fr;
  }
}

/* Iteration v8: nav aligns to content width, then spans full width on scroll */
.site-header {
  top: 18px;
  padding: 0;
  transition: top .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.nav-shell {
  width: min(1520px, calc(100% - 96px));
  transition: width .24s ease, height .24s ease, border-radius .24s ease, box-shadow .24s ease, background-color .24s ease, padding .24s ease;
}
.site-header.is-scrolled {
  top: 0;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 10px 34px rgb(10 24 46 / .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header.is-scrolled .nav-shell {
  width: 100%;
  height: 66px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  background: rgb(255 255 255 / .96);
  padding-inline: max(32px, calc((100vw - 1520px) / 2));
}
@media (max-width: 1280px) {
  .nav-shell {
    width: min(1120px, calc(100% - 40px));
  }
  .site-header.is-scrolled .nav-shell {
    padding-inline: 20px;
  }
}
@media (max-width: 760px) {
  .site-header {
    top: 10px;
  }
  .nav-shell {
    width: calc(100% - 28px);
  }
  .site-header.is-scrolled .nav-shell {
    height: 62px;
    padding-inline: 14px;
  }
}

/* Iteration v9: PingFang font, Iconify nav arrow, button radius system, left-text/right-icon cards */
html,
body,
button,
input,
select,
textarea {
  font-family: "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}
.nav-cta,
.btn,
.ghost-btn {
  border-radius: 12px !important;
}
.mini-btn {
  border-radius: 6px !important;
}
.nav-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
}
.nav-cta span img {
  width: 16px;
  height: 16px;
  display: block;
}
body[data-page="home"] .audience-card {
  grid-template-columns: minmax(0, 1fr) 86px;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  min-height: 190px;
  padding: 24px 18px;
  text-align: left;
}
body[data-page="home"] .audience-card .audience-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  width: 82px;
  height: 76px;
  margin: 0;
}
body[data-page="home"] .audience-card h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
body[data-page="home"] .audience-card p {
  grid-column: 1;
  grid-row: 2;
  margin-top: 8px;
}
body[data-page="home"] .tool-card {
  grid-template-columns: minmax(0, 1fr) 116px;
  grid-template-rows: auto 1fr auto;
  column-gap: 18px;
  row-gap: 0;
  align-items: center;
  text-align: left;
}
body[data-page="home"] .tool-card > div {
  display: contents;
}
body[data-page="home"] .tool-card h3 {
  grid-column: 1;
  grid-row: 1;
}
body[data-page="home"] .tool-card p {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
body[data-page="home"] .tool-card > img {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  width: 112px;
  height: 96px;
}
body[data-page="home"] .tool-card .mini-btn {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  margin-top: 18px;
}
body[data-page="home"] .dark-cta > div {
  grid-column: 1;
  grid-row: 1;
}
body[data-page="home"] .dark-cta .btn {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: start;
  margin-top: 0;
}
@media (max-width: 760px) {
  body[data-page="home"] .audience-card,
  body[data-page="home"] .tool-card {
    grid-template-columns: minmax(0, 1fr) 78px;
    column-gap: 14px;
  }
  body[data-page="home"] .audience-card .audience-icon,
  body[data-page="home"] .tool-card > img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 74px;
    height: 68px;
  }
}

/* Iteration v10: nav sizing, section title scale, subtle mini-button shadows */
.nav-shell {
  width: min(1600px, calc(100% - 56px));
  grid-template-columns: 220px minmax(0, 1fr) 130px;
  gap: 22px;
}
.main-nav a {
  font-size: 17px;
  padding: 10px 14px;
}
.nav-cta {
  height: 42px;
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  min-width: auto;
}
.nav-cta span img {
  width: 14px;
  height: 14px;
}
body[data-page="home"] .section-title h2 {
  font-size: clamp(36px, 3.3vw, 56px);
}
.mini-btn {
  min-height: 36px;
  background: #fff;
  border-color: rgb(219 227 239 / .96);
  box-shadow: 0 8px 18px rgb(10 24 46 / .07);
}
.mini-btn:hover,
body[data-page="home"] .business-card:hover .mini-btn,
body[data-page="home"] .course-card:hover .mini-btn,
body[data-page="home"] .tool-card:hover .mini-btn {
  box-shadow: 0 14px 26px rgb(230 0 28 / .22);
}
.site-header.is-scrolled .nav-shell {
  width: 100%;
  grid-template-columns: 220px minmax(0, 1fr) 130px;
}
@media (max-width: 1420px) {
  .main-nav { gap: 8px; }
  .main-nav a {
    font-size: 16px;
    padding-inline: 10px;
  }
  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    grid-template-columns: 204px minmax(0, 1fr) 126px;
  }
}
@media (max-width: 1280px) {
  .nav-shell {
    width: min(1160px, calc(100% - 36px));
  }
}
@media (max-width: 760px) {
  body[data-page="home"] .section-title h2 { font-size: 30px; }
  .mini-btn { min-height: 34px; }
}

/* Iteration v11: nav weight, hero microcopy, section captions, footer icon centering */
.main-nav a {
  font-size: 16px;
  font-weight: 500;
}
.main-nav a.active {
  font-weight: 850;
}
.nav-cta {
  font-size: 15px;
}
body[data-page="home"] .hero .eyebrow {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  border-radius: 999px;
}
body[data-page="home"] .hero h1 {
  margin-top: 34px;
}
body[data-page="home"] .hero p {
  font-size: clamp(13px, .9vw, 16px);
}
.section-title p,
body[data-page="home"] .section-title p,
.home-section-title p {
  font-weight: 400;
}
body[data-page="home"] .audience-card h3 {
  font-size: 19px;
}
.social-row a,
.contact-line span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  line-height: 1;
}
.social-row a {
  width: 30px;
  height: 30px;
}
.contact-line span {
  width: 30px;
  height: 30px;
}
.social-row a img,
.contact-line span img,
.contact-line:first-of-type span img {
  width: 16px;
  height: 16px;
  margin: auto;
  object-fit: contain;
}
.contact-line:first-of-type span img {
  width: 17px;
  height: 17px;
}
@media (max-width: 1420px) {
  .main-nav a { font-size: 15px; }
}
@media (max-width: 760px) {
  body[data-page="home"] .hero .eyebrow {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
  body[data-page="home"] .hero p { font-size: 14px; }
  body[data-page="home"] .audience-card h3 { font-size: 18px; }
}

/* Iteration v12: remove hero eyebrow and add Iconify arrows to action buttons */
body[data-page="home"] .hero .eyebrow {
  display: none;
}

.btn::after,
.ghost-btn::after,
.mini-btn::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
}

.btn::after,
.ghost-btn::after {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.mini-btn::after {
  width: 13px;
  height: 13px;
  margin-left: 6px;
}

.btn,
.ghost-btn,
.mini-btn {
  gap: 0;
}

.contact-form .btn::after {
  width: 15px;
  height: 15px;
}

body[data-page="home"] .hero h1 {
  margin-top: 0;
}

/* Iteration v13: Figma footer one-to-one layout pass */
.contact-zone {
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(168deg, transparent 0 58%, rgb(230 0 28 / .95) 58.25%, transparent 59.4%),
    linear-gradient(170deg, transparent 0 65%, rgb(230 0 28 / .72) 65.25%, transparent 66.4%),
    radial-gradient(circle at 88% 16%, rgb(230 0 28 / .34), transparent 24%),
    linear-gradient(105deg, #080f1b 0%, #0c1422 54%, #620816 100%);
}
.contact-zone::before,
.contact-zone::after {
  display: none;
}
.contact-grid {
  min-height: 431px;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(620px, 760px) 214px;
  gap: 54px;
  align-items: center;
}
.contact-copy {
  align-self: center;
  padding-top: 6px;
}
.contact-copy h2,
.contact-grid h2 {
  width: min(100%, 560px);
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 2vw, 38px);
  line-height: 1.47;
  font-weight: 950;
  letter-spacing: 0;
}
.contact-copy h2 span {
  color: #d50f19;
}
.contact-copy p,
.contact-grid .contact-copy p {
  width: min(100%, 538px);
  margin: 24px 0 0;
  color: #dbe0eb;
  font-size: clamp(14px, .9vw, 17px);
  line-height: 1.65;
  font-weight: 400;
}
.contact-copy i {
  width: 70px;
  height: 4px;
  margin-top: 24px;
  background: #e60012;
  border-radius: 2px;
}
.contact-zone .contact-form {
  width: 100%;
  min-height: 333px;
  padding: 34px 30px 36px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 40px rgb(15 26 46 / .2);
}
.contact-zone .contact-form h3 {
  margin: 0 0 24px;
  color: #1a1d2b;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
}
.contact-zone .compact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
}
.contact-zone .inline-field {
  min-height: 45px;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  background: #fff;
}
.contact-zone .inline-field label {
  width: 88px;
  padding-left: 18px;
  color: #1a1d2b;
  font-size: 14px;
  font-weight: 700;
}
.contact-zone .inline-field input,
.contact-zone .inline-field select {
  height: 43px;
  padding: 0 14px;
  color: #6e707b;
  font-size: 14px;
  font-weight: 400;
}
.contact-zone .compact-form .btn {
  grid-column: 1 / -1;
  height: 49px;
  min-height: 49px;
  margin-top: 0;
  border-radius: 10px;
  background: #d50f19;
  font-size: 14px;
  box-shadow: 0 12px 28px rgb(230 0 18 / .24);
}
.qr-card {
  width: 214px;
  min-height: 333px;
  align-self: center;
  padding: 78px 24px 36px;
  border-radius: 22px;
  border: 1px solid rgb(255 255 255 / .18);
  background: rgb(255 255 255 / .11);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .18);
  backdrop-filter: blur(8px);
}
.qr-card strong,
.qr-card p {
  color: #fff;
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
}
.qr-card p {
  margin: 0 0 26px;
}
.qr-box {
  width: 126px;
  height: 126px;
  border: 8px solid #fff;
  border-radius: 0;
}
.qr-box span {
  inset: 46px;
}
.footer {
  position: relative;
  z-index: 1;
  min-height: 313px;
  margin-top: 0;
  padding: 47px 0 18px;
  background: #131923;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.34fr) minmax(150px, .62fr) minmax(180px, .68fr) minmax(250px, .8fr);
  gap: 72px;
  align-items: start;
}
.footer-grid > div {
  min-height: 168px;
}
.footer-grid > div:not(:first-child) {
  padding-left: 68px;
  border-left: 1px solid rgb(255 255 255 / .08);
}
.footer img {
  width: 134px;
  margin: 0 0 26px;
}
.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
}
.footer p,
.footer a {
  display: block;
  margin: 0;
  color: rgb(255 255 255 / .6);
  font-size: 16px;
  line-height: 34px;
  font-weight: 500;
}
.footer-grid > div:first-child p {
  max-width: 425px;
  line-height: 24px;
}
.social-row {
  display: flex;
  gap: 17px;
  margin-top: 22px;
}
.social-row a {
  width: 39px;
  height: 39px;
  border-radius: 8px;
  background: rgb(255 255 255 / .1);
}
.social-row a img {
  width: 22px;
  height: 22px;
}
.contact-line {
  display: flex !important;
  align-items: center;
  gap: 23px;
  margin: 0 0 18px !important;
}
.contact-line span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(255 255 255 / .1);
}
.contact-line span img,
.contact-line:first-of-type span img {
  width: 16px;
  height: 16px;
}
.contact-line:first-of-type {
  color: rgb(255 255 255 / .6);
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0;
}
.copyright {
  width: min(1680px, calc(100% - 96px));
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgb(255 255 255 / .08);
  color: rgb(255 255 255 / .3);
  font-size: 16px;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 1420px) {
  .contact-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(520px, 1.35fr) 190px;
    gap: 34px;
  }
  .footer-grid {
    gap: 44px;
  }
  .footer-grid > div:not(:first-child) {
    padding-left: 42px;
  }
}
@media (max-width: 1080px) {
  .contact-zone {
    background:
      radial-gradient(circle at 90% 15%, rgb(230 0 28 / .3), transparent 28%),
      linear-gradient(105deg, #080f1b 0%, #0c1422 58%, #620816 100%);
  }
  .contact-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 56px;
  }
  .contact-zone .contact-form,
  .qr-card {
    width: 100%;
  }
  .qr-card {
    min-height: auto;
    padding: 32px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 760px) {
  .contact-grid,
  .footer-grid,
  .copyright {
    width: min(100% - 40px, 1680px);
  }
  .contact-zone .compact-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-zone .contact-form {
    padding: 26px 18px;
  }
  .footer {
    padding-top: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid > div {
    min-height: auto;
  }
  .footer h3 {
    font-size: 18px;
  }
  .footer p,
  .footer a,
  .copyright {
    font-size: 14px;
  }
  .contact-line:first-of-type {
    font-size: 22px;
  }
}

/* Iteration v14: tighten desktop footer artboard alignment to Figma proportions */
@media (min-width: 1081px) {
  .contact-grid,
  .footer-grid,
  .copyright {
    width: min(1612px, calc(100% - 16.8vw));
  }
  .contact-grid {
    grid-template-columns: clamp(454px, 30.1vw, 584px) clamp(635px, 42.2vw, 819px) clamp(189px, 12.55vw, 244px);
    gap: clamp(12px, .75vw, 16px);
    justify-content: start;
  }
  .contact-zone .contact-form {
    max-width: clamp(635px, 42.2vw, 819px);
  }
  .qr-card {
    width: clamp(189px, 12.55vw, 244px);
    margin-left: clamp(-54px, -2.8vw, -42px);
  }
  .footer-grid {
    grid-template-columns: 26% 25% 25% 24%;
    gap: 0;
  }
  .footer-grid > div:not(:first-child) {
    padding-left: clamp(96px, 6.8vw, 132px);
  }
}

/* Iteration v15: override shared container width for footer-only Figma framing */
@media (min-width: 1081px) {
  .contact-zone > .container.contact-grid,
  .footer > .container.footer-grid,
  .footer > .container.copyright {
    width: min(1612px, calc(100% - 16.8vw));
  }
}

/* Iteration v16: use real QR image and remove blurred overlap edge */
.contact-zone .contact-form {
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 34px rgb(15 26 46 / .16);
}
.qr-card {
  position: relative;
  z-index: 1;
  background: rgb(255 255 255 / .11);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.qr-box {
  display: block;
  width: 126px;
  height: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.qr-box img {
  display: block;
  width: 126px;
  height: auto;
  max-width: none;
}
.qr-box span {
  display: none;
}
@media (min-width: 1081px) {
  .qr-card {
    margin-left: 0;
  }
}

/* Iteration v17: use Figma CTA background asset and connect form to QR panel */
.contact-zone {
  background:
    url("/assets/cta%20dark%20red%20background-Cag80stu.webp") center top / cover no-repeat,
    #090f1b;
}
@media (max-width: 1080px) {
  .contact-zone {
    background:
      url("/assets/cta%20dark%20red%20background-Cag80stu.webp") center top / cover no-repeat,
      #090f1b;
  }
}
@media (min-width: 1081px) {
  .contact-grid {
    grid-template-columns: clamp(454px, 30.1vw, 584px) clamp(635px, 42.2vw, 819px) clamp(189px, 12.55vw, 244px);
    gap: 0;
  }
  .contact-zone .contact-form {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 18px 40px rgb(15 26 46 / .18);
  }
  .qr-card {
    align-self: center;
    min-height: 333px;
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
    background: rgb(255 255 255 / .12);
  }
}
.contact-line span {
  background: rgb(255 255 255 / .1);
}
.contact-line span img,
.contact-line:first-of-type span img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Iteration v18: keep connected CTA cards fully visible on medium desktop */
@media (min-width: 1081px) and (max-width: 1420px) {
  .contact-zone > .container.contact-grid,
  .footer > .container.footer-grid,
  .footer > .container.copyright {
    width: min(1252px, calc(100% - 96px));
  }
  .contact-grid {
    grid-template-columns: minmax(330px, 1fr) minmax(500px, 1.38fr) 184px;
    gap: 0;
  }
  .contact-zone .contact-form {
    max-width: none;
    padding-left: 28px;
    padding-right: 28px;
  }
  .qr-card {
    width: 184px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .qr-box,
  .qr-box img {
    width: 118px;
  }
}

/* Iteration v19: restore rounded form edge while keeping QR panel visually attached */
@media (min-width: 1081px) {
  .contact-zone .contact-form {
    border-radius: 22px;
    z-index: 3;
  }
  .qr-card {
    z-index: 2;
    border-radius: 22px;
    border-left: 1px solid rgb(255 255 255 / .18);
    margin-left: clamp(-54px, -2.8vw, -42px);
    padding-left: clamp(48px, 4vw, 72px);
  }
}
@media (min-width: 1081px) and (max-width: 1420px) {
  .contact-grid {
    grid-template-columns: minmax(330px, 1fr) minmax(500px, 1.38fr) 226px;
  }
  .qr-card {
    width: 226px;
    margin-left: -42px;
    padding-left: 56px;
    padding-right: 18px;
  }
}

/* Iteration v20: rebuild audience module as AI assistant cards from reference */
body[data-page="home"] .ai-assistant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
body[data-page="home"] .ai-assistant-card {
  min-height: 238px;
  padding: 30px 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  grid-template-rows: auto 1fr auto;
  column-gap: 16px;
  align-items: start;
  text-align: left;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgb(255 255 255 / .98), rgb(255 255 255 / .92)),
    #fff;
  box-shadow: 0 18px 44px rgb(22 38 68 / .08);
}
body[data-page="home"] .ai-assistant-card h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 14px;
  color: #101827;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
}
body[data-page="home"] .ai-assistant-card p {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #667286;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
body[data-page="home"] .ai-assistant-card .audience-icon {
  grid-column: 2;
  grid-row: 2;
  width: 124px;
  height: 112px;
  margin: -8px -4px 0 0;
  justify-self: end;
  align-self: start;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgb(10 24 46 / .14));
}
body[data-page="home"] .ai-assistant-card .mini-btn {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border-radius: 8px;
}
body[data-page="home"] .ai-assistant-card:hover .mini-btn {
  box-shadow: 0 14px 28px rgb(230 0 28 / .18);
}
@media (max-width: 1280px) {
  body[data-page="home"] .ai-assistant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  body[data-page="home"] .ai-assistant-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body[data-page="home"] .ai-assistant-card {
    min-height: 220px;
    padding: 24px 18px 18px;
    grid-template-columns: minmax(0, 1fr) 96px;
  }
  body[data-page="home"] .ai-assistant-card h3 {
    font-size: 22px;
  }
  body[data-page="home"] .ai-assistant-card p {
    font-size: 15px;
  }
  body[data-page="home"] .ai-assistant-card .audience-icon {
    width: 98px;
    height: 92px;
  }
}

/* Iteration v21: enlarge footer contact icon circles by 10 percent */
.contact-line span {
  width: 33px;
  height: 33px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.contact-line span img,
.contact-line:first-of-type span img {
  width: 17px;
  height: 17px;
  margin: auto;
  object-fit: contain;
}

/* Iteration v22: reduce footer contact glyph size inside enlarged circles */
.contact-line span img,
.contact-line:first-of-type span img {
  width: 14px;
  height: 14px;
  margin: auto;
  object-fit: contain;
}

/* Iteration v23: add tactile interaction states for footer contact form fields */
.contact-zone .inline-field {
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    transform .2s ease;
}
.contact-zone .inline-field:hover {
  border-color: rgb(230 0 28 / .45);
  background: #fffafa;
  box-shadow: 0 10px 24px rgb(15 26 46 / .08);
}
.contact-zone .inline-field:focus-within {
  border-color: #e6001c;
  background: #fff;
  box-shadow:
    0 0 0 4px rgb(230 0 28 / .09),
    0 14px 30px rgb(230 0 28 / .12);
  transform: translateY(-1px);
}
.contact-zone .inline-field:focus-within label {
  color: #e6001c;
}
.contact-zone .inline-field input,
.contact-zone .inline-field select {
  transition: color .2s ease, background-color .2s ease;
}
.contact-zone .inline-field input:focus,
.contact-zone .inline-field select:focus {
  outline: none;
  color: #111827;
  background: transparent;
}
.contact-zone .inline-field input::placeholder {
  color: #9aa3b2;
  transition: color .2s ease;
}
.contact-zone .inline-field:focus-within input::placeholder {
  color: #c6ccd7;
}

/* Iteration v24: set footer glyph opacity to 70 percent */
.social-row a img,
.contact-line span img {
  opacity: .7;
}

/* Iteration v25: give footer select arrows more breathing room */
.contact-zone .inline-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #7b8190 50%), linear-gradient(135deg, #7b8190 50%, transparent 50%);
  background-position: calc(100% - 23px) 50%, calc(100% - 17px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-zone .inline-field select:focus {
  background-image: linear-gradient(45deg, transparent 50%, #e6001c 50%), linear-gradient(135deg, #e6001c 50%, transparent 50%);
}

/* Iteration v26: restore stable native select dropdown rendering */
.contact-zone .inline-field select {
  appearance: auto;
  -webkit-appearance: auto;
  padding-right: 34px;
  background-image: none !important;
  background-color: transparent;
  color: #6e707b;
}
.contact-zone .inline-field select:focus {
  background-image: none !important;
  background-color: transparent;
  color: #111827;
}
.contact-zone .inline-field select option {
  color: #111827;
  background: #fff;
}

/* Iteration v27: move footer select arrow 6px left without changing dropdown menu */
.contact-zone .inline-field:has(select) {
  position: relative;
}
.contact-zone .inline-field:has(select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #7b8190;
  border-bottom: 2px solid #7b8190;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}
.contact-zone .inline-field:focus-within:has(select)::after {
  border-color: #e6001c;
}
.contact-zone .inline-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: none !important;
}

/* Iteration v28: nudge footer select arrow 2px right */
.contact-zone .inline-field:has(select)::after {
  right: 20px;
}

/* Iteration v29: move footer select arrow 3px right and flip on focus */
.contact-zone .inline-field:has(select)::after {
  right: 17px;
  transition: transform .18s ease, border-color .18s ease;
}
.contact-zone .inline-field:focus-within:has(select)::after {
  transform: translateY(-38%) rotate(225deg);
}

/* Iteration v30: anchor submit toast above the footer contact form */
.toast.toast--form {
  right: auto;
  bottom: auto;
  max-width: min(720px, calc(100vw - 40px));
  padding: 12px 20px;
  border: 1px solid rgb(230 0 28 / .16);
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 18px 38px rgb(230 0 28 / .14), 0 6px 18px rgb(15 26 46 / .08);
  transform: translate(-50%, -8px);
}
.toast.toast--form.show {
  transform: translate(-50%, 0);
}
@media (max-width: 760px) {
  .toast.toast--form {
    width: calc(100vw - 40px);
    font-size: 14px;
  }
}

/* Iteration v31: footer text link interaction states */
.footer a {
  position: relative;
  width: max-content;
  max-width: 100%;
  transition: color .2s ease, transform .2s ease;
}
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  border-radius: 999px;
  background: #e6001c;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .9;
  transition: transform .22s ease;
}
.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  transform: translateX(6px);
}
.footer a:hover::after,
.footer a:focus-visible::after {
  transform: scaleX(1);
}
.footer a:focus-visible {
  outline: 2px solid rgb(230 0 28 / .42);
  outline-offset: 4px;
  border-radius: 4px;
}
.footer a:active {
  transform: translateX(6px) translateY(1px);
}

.footer .social-row a {
  position: static;
  width: 39px;
  max-width: none;
  color: inherit;
  text-decoration: none;
  transition: background-color .2s ease;
}
.footer .social-row a::after { content: none; }
.footer .social-row a:hover,
.footer .social-row a:focus-visible {
  color: inherit;
  background: rgb(255 255 255 / .16);
  transform: none;
}
.footer .social-row a:active {
  color: inherit;
  background: rgb(255 255 255 / .13);
  transform: none;
}
.footer .social-row a img { transition: opacity .2s ease; }
.footer .social-row a:hover img,
.footer .social-row a:focus-visible img { opacity: 1; }
.footer .social-row .social-link--wechat { position: relative; }
.social-qr-card {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: calc(100% + 12px);
  display: flex;
  visibility: hidden;
  width: 176px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 12px 9px;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgb(14 27 48 / .22);
  color: #253047;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.social-qr-card::after {
  position: absolute;
  bottom: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #e5e9f0;
  border-bottom: 1px solid #e5e9f0;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}
.social-qr-card img {
  width: 152px !important;
  height: 152px !important;
  margin: 0 !important;
  border-radius: 6px;
  opacity: 1 !important;
  object-fit: contain;
}
.social-qr-card span {
  color: #253047;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  white-space: nowrap;
}
.social-link--wechat:hover .social-qr-card,
.social-link--wechat:focus-visible .social-qr-card {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
@media (prefers-reduced-motion: reduce) {
  .social-qr-card { transform: none; transition: none; }
}


/* Iteration v32: stronger header glass, logo wall interactions, and floating quick actions */
.nav-shell {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .78), rgb(255 255 255 / .54)),
    rgb(255 255 255 / .58);
  border-color: rgb(255 255 255 / .86);
  backdrop-filter: blur(30px) saturate(185%);
  -webkit-backdrop-filter: blur(30px) saturate(185%);
  box-shadow:
    0 18px 55px rgb(15 26 46 / .12),
    inset 0 1px 0 rgb(255 255 255 / .86),
    inset 0 -1px 0 rgb(255 255 255 / .28);
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / .26);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 12px 40px rgb(10 24 46 / .08);
}
.site-header.is-scrolled .nav-shell {
  background:
    linear-gradient(90deg, rgb(255 255 255 / .82), rgb(255 255 255 / .62)),
    rgb(255 255 255 / .66);
  border-bottom: 1px solid rgb(220 226 236 / .74);
  backdrop-filter: blur(34px) saturate(190%);
  -webkit-backdrop-filter: blur(34px) saturate(190%);
  box-shadow:
    0 16px 44px rgb(15 26 46 / .11),
    inset 0 1px 0 rgb(255 255 255 / .78);
}
.logo-chip {
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.logo-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgb(255 255 255 / .85) 46%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .45s ease;
  pointer-events: none;
}
.logo-chip:hover {
  color: #e6001c;
  border-color: rgb(230 0 28 / .26);
  background: linear-gradient(180deg, #fff, #fff7f8);
  box-shadow: 0 22px 48px rgb(230 0 28 / .1), 0 14px 34px rgb(15 26 46 / .08);
  transform: translateY(-4px);
}
.logo-chip:hover::before {
  transform: translateX(120%);
}
.float-actions {
  position: fixed;
  right: 30px;
  bottom: 34px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .24s ease, transform .24s ease;
}
.float-actions.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-action {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / .72);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / .88), rgb(255 255 255 / .66)),
    rgb(255 255 255 / .72);
  box-shadow: 0 18px 42px rgb(15 26 46 / .16), inset 0 1px 0 rgb(255 255 255 / .82);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.float-action img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: transform .2s ease, opacity .2s ease;
}
.float-action:hover,
.float-action:focus-visible {
  border-color: rgb(230 0 28 / .35);
  background: #fff;
  box-shadow: 0 18px 46px rgb(230 0 28 / .18), 0 14px 30px rgb(15 26 46 / .1);
  transform: translateY(-3px);
}
.float-action:hover img,
.float-action:focus-visible img {
  transform: scale(1.08);
  opacity: .9;
}
.float-action:focus-visible {
  outline: 3px solid rgb(230 0 28 / .22);
  outline-offset: 3px;
}
.float-action:active {
  transform: translateY(-1px) scale(.98);
}
@media (max-width: 760px) {
  .float-actions {
    right: 18px;
    bottom: 22px;
    gap: 10px;
  }
  .float-action {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .float-action img {
    width: 22px;
    height: 22px;
  }
}

/* Iteration v33: refine floating action colors and stronger transparent header glass */
.nav-shell {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .54), rgb(255 255 255 / .28)),
    rgb(255 255 255 / .22);
  border-color: rgb(255 255 255 / .74);
  backdrop-filter: blur(42px) saturate(220%) contrast(1.05);
  -webkit-backdrop-filter: blur(42px) saturate(220%) contrast(1.05);
  box-shadow:
    0 24px 70px rgb(15 26 46 / .14),
    inset 0 1px 0 rgb(255 255 255 / .9),
    inset 0 -1px 0 rgb(255 255 255 / .18);
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / .12);
  backdrop-filter: blur(42px) saturate(210%) contrast(1.05);
  -webkit-backdrop-filter: blur(42px) saturate(210%) contrast(1.05);
}
.site-header.is-scrolled .nav-shell {
  background:
    linear-gradient(90deg, rgb(255 255 255 / .58), rgb(255 255 255 / .34)),
    rgb(255 255 255 / .24);
  border-bottom-color: rgb(255 255 255 / .5);
  backdrop-filter: blur(46px) saturate(230%) contrast(1.06);
  -webkit-backdrop-filter: blur(46px) saturate(230%) contrast(1.06);
  box-shadow:
    0 18px 54px rgb(15 26 46 / .13),
    inset 0 1px 0 rgb(255 255 255 / .7),
    inset 0 -1px 0 rgb(255 255 255 / .16);
}
.float-action.js-back-top {
  border-color: rgb(230 0 28 / .72);
  box-shadow: 0 18px 42px rgb(230 0 28 / .12), inset 0 1px 0 rgb(255 255 255 / .82);
}
.float-action.js-service {
  border-color: #e6001c;
  background: linear-gradient(145deg, #f0182b, #d9001b);
  box-shadow: 0 18px 46px rgb(230 0 28 / .28), inset 0 1px 0 rgb(255 255 255 / .28);
}
.float-action.js-service img {
  filter: brightness(0) invert(1);
  opacity: .96;
}
.float-action.js-service:hover,
.float-action.js-service:focus-visible {
  background: linear-gradient(145deg, #ff2337, #e6001c);
  border-color: #ff4051;
  box-shadow: 0 22px 52px rgb(230 0 28 / .34), 0 12px 28px rgb(15 26 46 / .1);
}

/* Iteration v34: softer back-top outline and retained service shadow */
.float-action.js-back-top {
  border-color: rgb(230 0 28 / .2);
  box-shadow: 0 18px 42px rgb(230 0 28 / .12), 0 10px 24px rgb(15 26 46 / .08), inset 0 1px 0 rgb(255 255 255 / .82);
}
.float-action.js-service {
  box-shadow: 0 18px 46px rgb(230 0 28 / .28), 0 12px 28px rgb(15 26 46 / .1), inset 0 1px 0 rgb(255 255 255 / .28);
}

/* Iteration v35: stabilize header glass and remove stray short-line artifacts */
.nav-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 255 255 / .76), rgb(255 255 255 / .58)),
    rgb(255 255 255 / .66);
  border-color: rgb(255 255 255 / .68);
  background-clip: padding-box;
  backdrop-filter: blur(40px) saturate(190%) contrast(1.03);
  -webkit-backdrop-filter: blur(40px) saturate(190%) contrast(1.03);
  box-shadow:
    0 20px 56px rgb(15 26 46 / .12),
    inset 0 1px 0 rgb(255 255 255 / .78);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / .34);
  backdrop-filter: blur(38px) saturate(190%) contrast(1.03);
  -webkit-backdrop-filter: blur(38px) saturate(190%) contrast(1.03);
}
.site-header.is-scrolled .nav-shell {
  background:
    linear-gradient(90deg, rgb(255 255 255 / .78), rgb(255 255 255 / .62)),
    rgb(255 255 255 / .7);
  border-bottom-color: rgb(226 232 240 / .62);
  backdrop-filter: blur(42px) saturate(200%) contrast(1.03);
  -webkit-backdrop-filter: blur(42px) saturate(200%) contrast(1.03);
  box-shadow:
    0 14px 42px rgb(15 26 46 / .1),
    inset 0 1px 0 rgb(255 255 255 / .74);
}

/* Iteration v36: strengthen stable header glass without reintroducing line artifacts */
.nav-shell {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .68), rgb(255 255 255 / .38)),
    rgb(255 255 255 / .46);
  border-color: rgb(255 255 255 / .78);
  backdrop-filter: blur(48px) saturate(230%) contrast(1.05);
  -webkit-backdrop-filter: blur(48px) saturate(230%) contrast(1.05);
  box-shadow:
    0 22px 66px rgb(15 26 46 / .14),
    inset 0 1px 0 rgb(255 255 255 / .88);
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / .22);
  backdrop-filter: blur(46px) saturate(220%) contrast(1.05);
  -webkit-backdrop-filter: blur(46px) saturate(220%) contrast(1.05);
}
.site-header.is-scrolled .nav-shell {
  background:
    linear-gradient(90deg, rgb(255 255 255 / .68), rgb(255 255 255 / .42)),
    rgb(255 255 255 / .48);
  border-bottom-color: rgb(255 255 255 / .64);
  backdrop-filter: blur(50px) saturate(235%) contrast(1.05);
  -webkit-backdrop-filter: blur(50px) saturate(235%) contrast(1.05);
  box-shadow:
    0 16px 52px rgb(15 26 46 / .13),
    inset 0 1px 0 rgb(255 255 255 / .82);
}

/* Iteration v37: stagger floating action entrance */
.float-action {
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transition:
    opacity .26s ease,
    transform .26s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}
.float-actions.show .float-action {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.float-actions.show .float-action:nth-child(1) {
  transition-delay: .03s;
}
.float-actions.show .float-action:nth-child(2) {
  transition-delay: .13s;
}
.float-actions:not(.show) .float-action:nth-child(1),
.float-actions:not(.show) .float-action:nth-child(2) {
  transition-delay: 0s;
}
.float-actions.show .float-action:hover,
.float-actions.show .float-action:focus-visible {
  transform: translateY(-3px) scale(1);
}
.float-actions.show .float-action:active {
  transform: translateY(-1px) scale(.98);
}

/* Iteration v38: keep section descriptions on one line when space allows */
.section-title p,
body[data-page="home"] .section-title p,
.home-section-title p {
  width: 100%;
  max-width: min(100%, 1080px);
  line-height: 1.55;
  text-wrap: pretty;
}

@media (max-width: 640px) {
  .section-title p,
  body[data-page="home"] .section-title p,
  .home-section-title p {
    max-width: 100%;
    line-height: 1.65;
  }
}

/* Iteration v39: premium home button hover interactions */
body[data-page="home"] .nav-cta,
body[data-page="home"] .btn,
body[data-page="home"] .ghost-btn,
body[data-page="home"] .mini-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    color .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    transform .24s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .nav-cta::before,
body[data-page="home"] .btn::before,
body[data-page="home"] .ghost-btn::before,
body[data-page="home"] .mini-btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -46%;
  z-index: -1;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0%, rgb(255 255 255 / .72) 48%, transparent 100%);
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
  pointer-events: none;
  transition: opacity .24s ease, transform .58s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .nav-cta:hover,
body[data-page="home"] .btn:hover {
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  box-shadow:
    0 18px 34px rgb(230 0 28 / .3),
    0 6px 14px rgb(17 24 39 / .12),
    inset 0 1px 0 rgb(255 255 255 / .25);
  transform: translateY(-3px);
}

body[data-page="home"] .ghost-btn:hover,
body[data-page="home"] .mini-btn:hover,
body[data-page="home"] .business-card:hover .mini-btn,
body[data-page="home"] .course-card:hover .mini-btn,
body[data-page="home"] .tool-card:hover .mini-btn,
body[data-page="home"] .ai-assistant-card:hover .mini-btn {
  color: #fff;
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  border-color: rgb(230 0 28 / .92);
  box-shadow:
    0 16px 30px rgb(230 0 28 / .24),
    0 5px 14px rgb(17 24 39 / .08),
    inset 0 1px 0 rgb(255 255 255 / .24);
  transform: translateY(-2px);
}

body[data-page="home"] .nav-cta:hover::before,
body[data-page="home"] .btn:hover::before,
body[data-page="home"] .ghost-btn:hover::before,
body[data-page="home"] .mini-btn:hover::before,
body[data-page="home"] .business-card:hover .mini-btn::before,
body[data-page="home"] .course-card:hover .mini-btn::before,
body[data-page="home"] .tool-card:hover .mini-btn::before,
body[data-page="home"] .ai-assistant-card:hover .mini-btn::before {
  opacity: .82;
  transform: skewX(-18deg) translateX(360%);
}

body[data-page="home"] .btn:hover::after,
body[data-page="home"] .ghost-btn:hover::after,
body[data-page="home"] .mini-btn:hover::after,
body[data-page="home"] .business-card:hover .mini-btn::after,
body[data-page="home"] .course-card:hover .mini-btn::after,
body[data-page="home"] .tool-card:hover .mini-btn::after,
body[data-page="home"] .ai-assistant-card:hover .mini-btn::after {
  transform: translateX(3px);
}

body[data-page="home"] .btn::after,
body[data-page="home"] .ghost-btn::after,
body[data-page="home"] .mini-btn::after {
  transition: transform .24s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .nav-cta:focus-visible,
body[data-page="home"] .btn:focus-visible,
body[data-page="home"] .ghost-btn:focus-visible,
body[data-page="home"] .mini-btn:focus-visible {
  outline: 3px solid rgb(230 0 28 / .22);
  outline-offset: 3px;
}

body[data-page="home"] .nav-cta:active,
body[data-page="home"] .btn:active,
body[data-page="home"] .ghost-btn:active,
body[data-page="home"] .mini-btn:active {
  transform: translateY(0) scale(.99);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .nav-cta,
  body[data-page="home"] .btn,
  body[data-page="home"] .ghost-btn,
  body[data-page="home"] .mini-btn,
  body[data-page="home"] .nav-cta::before,
  body[data-page="home"] .btn::before,
  body[data-page="home"] .ghost-btn::before,
  body[data-page="home"] .mini-btn::before,
  body[data-page="home"] .btn::after,
  body[data-page="home"] .ghost-btn::after,
  body[data-page="home"] .mini-btn::after {
    transition-duration: .01ms;
  }
}

/* Iteration v40: keep button sheen visible above button background */
body[data-page="home"] .nav-cta::before,
body[data-page="home"] .btn::before,
body[data-page="home"] .ghost-btn::before,
body[data-page="home"] .mini-btn::before {
  z-index: 0;
}

body[data-page="home"] .nav-cta::after,
body[data-page="home"] .btn::after,
body[data-page="home"] .ghost-btn::after,
body[data-page="home"] .mini-btn::after {
  position: relative;
  z-index: 1;
}

/* Iteration v41: problem cards larger icons and Q index marks */
body[data-page="home"] .problem-card {
  overflow: hidden;
}

body[data-page="home"] .problem-card .mark {
  width: 76px;
  height: 76px;
  position: relative;
}

body[data-page="home"] .problem-card .mark::after {
  content: attr(data-label);
}

body[data-page="home"] .problem-card:nth-child(1) .mark::after { content: "Q1"; }
body[data-page="home"] .problem-card:nth-child(2) .mark::after { content: "Q2"; }
body[data-page="home"] .problem-card:nth-child(3) .mark::after { content: "Q3"; }
body[data-page="home"] .problem-card:nth-child(4) .mark::after { content: "Q4"; }
body[data-page="home"] .problem-card:nth-child(5) .mark::after { content: "Q5"; }
body[data-page="home"] .problem-card:nth-child(6) .mark::after { content: "Q6"; }

body[data-page="home"] .problem-card .mark::after {
  position: absolute;
  top: 0;
  right: -248px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, #f00022 0%, #d9001b 100%);
  box-shadow: 0 14px 26px rgb(230 0 28 / .28);
}

body[data-page="home"] .problem-card h3 {
  margin-top: 16px;
}

@media (max-width: 1280px) {
  body[data-page="home"] .problem-card .mark::after {
    right: -210px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .problem-card .mark {
    width: 68px;
    height: 68px;
  }

  body[data-page="home"] .problem-card .mark::after {
    top: 2px;
    right: -204px;
    width: 42px;
    height: 42px;
    font-size: 13px;
  }
}

/* Iteration v42: anchor problem Q marks to card top-right */
body[data-page="home"] .problem-card .mark {
  position: static;
}

body[data-page="home"] .problem-card .mark::after {
  top: 32px;
  right: 30px;
}

@media (max-width: 760px) {
  body[data-page="home"] .problem-card .mark::after {
    top: 26px;
    right: 24px;
  }
}

/* Iteration v43: shared layout, shared button polish, and homepage refinements */
body:not([data-page="home"]) .container-sm {
  width: min(1680px, calc(100% - 96px));
}

.nav-cta,
.btn,
.ghost-btn,
.mini-btn,
.tab-btn,
.filter-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    color .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    transform .24s cubic-bezier(.16, 1, .3, 1);
}

.nav-cta::before,
.btn::before,
.ghost-btn::before,
.mini-btn::before,
.tab-btn::before,
.filter-btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -46%;
  z-index: 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0%, rgb(255 255 255 / .72) 48%, transparent 100%);
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
  pointer-events: none;
  transition: opacity .24s ease, transform .58s cubic-bezier(.16, 1, .3, 1);
}

.nav-cta:hover,
.btn:hover,
.tab-btn.active:hover,
.filter-btn.active:hover {
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  box-shadow:
    0 18px 34px rgb(230 0 28 / .3),
    0 6px 14px rgb(17 24 39 / .12),
    inset 0 1px 0 rgb(255 255 255 / .25);
  transform: translateY(-3px);
}

.ghost-btn:hover,
.mini-btn:hover,
.tab-btn:hover,
.filter-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  border-color: rgb(230 0 28 / .92);
  box-shadow:
    0 16px 30px rgb(230 0 28 / .22),
    0 5px 14px rgb(17 24 39 / .08),
    inset 0 1px 0 rgb(255 255 255 / .24);
  transform: translateY(-2px);
}

.nav-cta:hover::before,
.btn:hover::before,
.ghost-btn:hover::before,
.mini-btn:hover::before,
.tab-btn:hover::before,
.filter-btn:hover::before {
  opacity: .82;
  transform: skewX(-18deg) translateX(360%);
}

.btn::after,
.ghost-btn::after,
.mini-btn::after {
  position: relative;
  z-index: 1;
}

.btn:hover::after,
.ghost-btn:hover::after,
.mini-btn:hover::after {
  transform: translateX(3px);
}

.nav-cta:focus-visible,
.btn:focus-visible,
.ghost-btn:focus-visible,
.mini-btn:focus-visible,
.tab-btn:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid rgb(230 0 28 / .22);
  outline-offset: 3px;
}

.nav-cta:active,
.btn:active,
.ghost-btn:active,
.mini-btn:active,
.tab-btn:active,
.filter-btn:active {
  transform: translateY(0) scale(.99);
}

body[data-page="home"] .course-card {
  position: relative;
}

body[data-page="home"] .course-card .badge {
  display: none;
}

body[data-page="home"] .course-body {
  padding-top: 24px;
}

body[data-page="home"] .course-body h3 {
  margin-top: 0;
}

body[data-page="home"] .course-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 72px;
  height: 32px;
  border-radius: 999px;
  background: url("data:image/webp;base64,UklGRsQFAABXRUJQVlA4WAoAAAAQAAAAZAAAKAAAQUxQSN0BAAABkJZtm+U0o6BRAEJAQR1EAVWAg9ZAUVAHOEABKKAK3vl2JtlMDpPdeX7sCTbL4WdETIBzzt3+ftFC/39cu/7VHy36y01n9aSlXzvnHrT4r9fuWh/go3v4CLR6+hDW+hDvPob7b4aYNpXkqyUI9eTQqTjX2kFUXdrqAkKMoS/E6KXE5NSpwXSCICuc/ewqoPS1YG/XkqUzRVKkhNnVAHFU90iWpCON+ms4xA2cY4wxbWOYWyYX0vsVpuaZVbDNNO+XL6wG20F4t2Beail67zfLNIqQRngzsxNnM7MTjZmZ+iPk2N1Uc/NwkAp5ROQNBzIj65nVsJGOYDPYMNZmdoLT4ZBhNyQzs8LJzOxIY2bW1wIHSRUcNDOG8whJAXaSdKTR8B4a2Mi3YDPbQJNzzgX8qCOESQkay5T6DEkzO0KUpD3sxlSFRhP8EUqQbwD2mluhqBshj8mwnRBaKEHyx049twinHl/AD/gjNJpgDWfzcV+gAO0x+lmlFHu0Sylol5KXb6GxKbKkqgU4+G1D18/ojUM5myZ1E23ykrQ9FXa6NJnXYKw3Y3zQyKjLu+iP4vVDuHv8EG5+fQTPbvX8Aaydu12+f845t35duMcfHXf1d8le79zw1c/7hV7fuF4AVlA4IMADAAAwFACdASplACkAPnk4l0gkoyIhJirQkA8JbADGegF+5anX038gOgn9f75bm9Ru2d/Un1AfpR+0fux+hP0AP6h/RvV69Rv0FPK79jH9rf2k9pH/6Xjj9V8C+tB7AZQb8XnGI5g8LXvTn68735V/i/+t7hf6yk11t4cvmYSHuXRwoAcVF7YcEhKpjizw7P3ajmVAraPRoLORjcHDa1U+S0dh3sfJI9ka488YMAD+8yw0olr9Jbl+n4XmZ1xwI3Qp4vv+L7/+Lm85oe6Hk/iBPkFaXPHIasmH1K7p0x90NX1ZTvDDgjg6lHo+p+houvdaELfLvX/0ww5CGbbBnsqdNS7f+XPg6Ml0RqvzoIN2+0u69EZyWWOMjMkvruq1/P12V2tvfXY94f2aVIwLQz1K2atdEBLn1LQgNQGm0IYI2cA3/Z8Tzhq5NxhdWe8+D598WmZq7X8tnBJenQ/4Ejz/uiv8bEX0IinoZSuuanbfj7ncGGBTdFHKNuo9f4/67Tg0GiXfji2+LXeaSrHg/+V50qxqUnZ5JdSvmM+Z+Trr8OsrhnvfotX+Teq8AAp/PhshFDeO7vj/2ZHnkJioOfTAHI1orxCcXbAYO3/Ptrbl3BfA28y2Jn+7CbJvBpn7hUsBEr1Y6OcsOU1dJwaQelrMXHL6otvQ11+Rl4dK5tnu9PFzqF7EHXPIOykbl5t4HkZw0/KcqtZGl5PQqtaA3sRO/qsAU70633/UtV/OFaH9jsVgQfQW+cmAmgqs/xiTE9Y7EVvnYYy1r/avWNzWZl/sx825pUncBwBCleEN4BlyyNvRHxGABRWxdX2r6/dKsWRvEfu46SNHAvFJ3EEO/Z0JqYVV3txL9l19Izqw7l9vqGa3U9TBHCJvbx8JgNmUdU7HsPPcOmKzEo6qJCiVMSKeeenPElPCE03Qe1GsHu1emhPdiBRuTAdggywUR6wJXrSApoYUeRrgEf06ht1ZsmzKy6wOYGR1mr4ZEFWr1m66SVnzX5TV4l9q/llyAjHBLTmsvpJ+3RaZaWEv8f9lHWHExhzS3KZAKmjnV5vNRG7wqqwgXXPd/CvzwNATqJZP6D4iDhdenI2RL/tjTWvqpsBubveS/jWYjPh1M+NFuA26U2hdNeuhHiJZOs9b2X/SNHhoyLl9vul/G0d7Xe3yx1gXxsDKWfvKa6geyDTBskuiROBND8DHbcyxzAxL0g/+UCnyeA/AVgYZZ2fMIj//06wFANWXA7hX994+7/3+IPGfyuvHQnwrv+ADv4v/xtn/xq4AAAA=") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgb(230 0 28 / .18));
  pointer-events: none;
}

body[data-page="home"] .course-card:nth-child(2)::after {
  background-image: url("data:image/webp;base64,UklGRsQFAABXRUJQVlA4WAoAAAAQAAAAZAAAKAAAQUxQSN0BAAABkJZtm+U0o6BRAEJAQR1EAVWAg9ZAUVAHOEABKKAK3vl2JtlMDpPdeX7sCTbL4WdETIBzzt3+ftFC/39cu/7VHy36y01n9aSlXzvnHrT4r9fuWh/go3v4CLR6+hDW+hDvPob7b4aYNpXkqyUI9eTQqTjX2kFUXdrqAkKMoS/E6KXE5NSpwXSCICuc/ewqoPS1YG/XkqUzRVKkhNnVAHFU90iWpCON+ms4xA2cY4wxbWOYWyYX0vsVpuaZVbDNNO+XL6wG20F4t2Beail67zfLNIqQRngzsxNnM7MTjZmZ+iPk2N1Uc/NwkAp5ROQNBzIj65nVsJGOYDPYMNZmdoLT4ZBhNyQzs8LJzOxIY2bW1wIHSRUcNDOG8whJAXaSdKTR8B4a2Mi3YDPbQJNzzgX8qCOESQkay5T6DEkzO0KUpD3sxlSFRhP8EUqQbwD2mluhqBshj8mwnRBaKEHyx049twinHl/AD/gjNJpgDWfzcV+gAO0x+lmlFHu0Sylol5KXb6GxKbKkqgU4+G1D18/ojUM5myZ1E23ykrQ9FXa6NJnXYKw3Y3zQyKjLu+iP4vVDuHv8EG5+fQTPbvX8Aaydu12+f845t35duMcfHXf1d8le79zw1c/7hV7fuF4AVlA4IMADAAAwFACdASplACkAPnk4l0gkoyIhJirQkA8JbADGegF+5anX038gOgn9f75bm9Ru2d/Un1AfpR+0fux+hP0AP6h/RvV69Rv0FPK79jH9rf2k9pH/6Xjj9V8C+tB7AZQb8XnGI5g8LXvTn68735V/i/+t7hf6yk11t4cvmYSHuXRwoAcVF7YcEhKpjizw7P3ajmVAraPRoLORjcHDa1U+S0dh3sfJI9ka488YMAD+8yw0olr9Jbl+n4XmZ1xwI3Qp4vv+L7/+Lm85oe6Hk/iBPkFaXPHIasmH1K7p0x90NX1ZTvDDgjg6lHo+p+houvdaELfLvX/0ww5CGbbBnsqdNS7f+XPg6Ml0RqvzoIN2+0u69EZyWWOMjMkvruq1/P12V2tvfXY94f2aVIwLQz1K2atdEBLn1LQgNQGm0IYI2cA3/Z8Tzhq5NxhdWe8+D598WmZq7X8tnBJenQ/4Ejz/uiv8bEX0IinoZSuuanbfj7ncGGBTdFHKNuo9f4/67Tg0GiXfji2+LXeaSrHg/+V50qxqUnZ5JdSvmM+Z+Trr8OsrhnvfotX+Teq8AAp/PhshFDeO7vj/2ZHnkJioOfTAHI1orxCcXbAYO3/Ptrbl3BfA28y2Jn+7CbJvBpn7hUsBEr1Y6OcsOU1dJwaQelrMXHL6otvQ11+Rl4dK5tnu9PFzqF7EHXPIOykbl5t4HkZw0/KcqtZGl5PQqtaA3sRO/qsAU70633/UtV/OFaH9jsVgQfQW+cmAmgqs/xiTE9Y7EVvnYYy1r/avWNzWZl/sx825pUncBwBCleEN4BlyyNvRHxGABRWxdX2r6/dKsWRvEfu46SNHAvFJ3EEO/Z0JqYVV3txL9l19Izqw7l9vqGa3U9TBHCJvbx8JgNmUdU7HsPPcOmKzEo6qJCiVMSKeeenPElPCE03Qe1GsHu1emhPdiBRuTAdggywUR6wJXrSApoYUeRrgEf06ht1ZsmzKy6wOYGR1mr4ZEFWr1m66SVnzX5TV4l9q/llyAjHBLTmsvpJ+3RaZaWEv8f9lHWHExhzS3KZAKmjnV5vNRG7wqqwgXXPd/CvzwNATqJZP6D4iDhdenI2RL/tjTWvqpsBubveS/jWYjPh1M+NFuA26U2hdNeuhHiJZOs9b2X/SNHhoyLl9vul/G0d7Xe3yx1gXxsDKWfvKa6geyDTBskuiROBND8DHbcyxzAxL0g/+UCnyeA/AVgYZZ2fMIj//06wFANWXA7hX994+7/3+IPGfyuvHQnwrv+ADv4v/xtn/xq4AAAA=");
}

body[data-page="home"] .course-card:nth-child(3)::after {
  background-image: url("data:image/webp;base64,UklGRtIDAABXRUJQVlA4WAoAAAAQAAAAZgAAKQAAQUxQSGQAAAABcBTbbt1cCGIQQzGDQEgYJQwEIRAEwRAEwRDS/0pv24mICQDoR95lD+98tvMu3u3Nxl1+GuC3wAvaLbHjGpyhYXKL/NspNUxcw0XXsEEoCMCyvmwALaqLxuc9Cpux8vNSNl8BVlA4IEgDAABwEACdASpnACoAPnk6lkikoyIhJjgLSJAPCWYAzM1ofuX4Z7NH3L8TcFOBm7Re2A8wHlTeovoafUZ9B39gOs8/uEzhEfU0VlcsDSmzI/+n5lmyfL5UEmchYaTuh8mJUr6rqW+jghFmM6tuoTd+7EPTjt7y8RXv1eLJ+PG9N7aBeOs6tSnFRCNWdHfFaAD+4/8s29k3PQHvSzwoL8rYZu9Sz6ln+Kqi75MKwWTMQVL9jc6RuHLL7Jp5ZKnNOJ+5uzK6l9txliN9bznQ4HrHhhjX53rhQZpcLoCB0UwJihq8HNvr/vz6nVnxJMi2LEHO16QZ1pE/0uazNrYNsp4Zsyzrib1tbjI2vfRynq7SV8cy5XNKiJ3ohsaSKbnVg3mEJ5HWECVv2+5MTulND2fpzWWT0HaZSEorB/+FNKUWRNig3C7dV7lzXQA5Opr+Bk0Mhvv8ph+hZsZK4xi1bniWCduSuTM0Tv++lkGMMuyXVOiLjPrZ50Hhsf5G+VwY/qF4DjnwE8t/2kz36U3F7Nyz9w3OL46SjBrVBG2GNh1Ge/YQWYamLLgEALpnMAlC/A+7c5aTKhK44BUPNh+fKB5/Cgsb4nK3SOllJSF8BhZGZPrvr8UDpV0QesRQ+AUz9+hyorud2MQJAifIxP8ZTXQzOFMEtF9McAjLMhYgjuVRmtLmG7YxLU7Sgvp9rcSHMWLWbEUO7NyI4TfTkxRuflv8FPC64uYFw7yJf9qp+cGmpr2DN6KexeYKisB6vXSKaJzMUOB78AhOYg7SeXtqrpvpVy+FDPqTvaMrj6HF2milPONqaba5/I8WO8VA1blxmQGmzt98YsW6Vag3aFdIoh1DExDwCSLHOaXdZH6XZbGT6sUf8Eyt027TY0cUdTu/5qc6ncWeuaxhgm+5P1iBGlYuUYZis37z/ceQx0/9n2sCRDNt1y/n17trE8r5zXWjCoyNpoL4gZ0Vem/C8FGdHEzHz2J+a1shxwVNdoVc2Vq7DVXAGETYlqyTzse6rEYeE9B1Bzga8iX6q/puYwJ1uF3runLJvkGKwpmCODFL0fqBueyV3Jh8XssBVuAPbX3teTy/kWbX9KP8FFOxxRgAAcZlyoc6wJefm2vFwAA=");
}

body[data-page="home"] .course-card:nth-child(4)::after {
  background-image: url("data:image/webp;base64,UklGRgIDAABXRUJQVlA4WAoAAAAQAAAAaQAAKAAAQUxQSHAAAAABn2CQbeTUH8GK8BERh5a1rAewbSRJ0Rwzbv7Z7p+1674i+j8BABD6IaHvShavZpDoJz2YTdLXr0nyB86SgoubGpBjtgqFIRW7IvOnz1WhMUuFyBQNrmHMVaCBD/IdfGfptn2AXZLdZvBuYxO6eINHVlA4IGwCAACwDQCdASpqACkAPnk6mEgko6KhJJqsAJAPCWIA0Eam/iTGGNsB5gP1y9HL1AbwB6AHSV+VHdtEqBj4s4bBAcpJnkZKMBAS4Qm13ntpeM3vJsX0KYXaJUH8+EB/yrT072XadtgsPNsBIkKnk6m2f0aQmrKlkdYgAP7wG9//1FofWBv+cB/OA/mWPyH6ou7Ig+HVjh3HHbBvNOqtXHqt6QfwL8FX/ILfiVj+C2FdWh/1fXeRdJVaOtLcHf/+U9d+r04CWKtOIEvEjTb/e7ZNdV7D45K7aa57qFgEsRE68S6xrNAinodmatOe2rx/ulUoPYrVA1H+u9vZRmz0Dj35P//Y+MWXspC8/CMsFeQvBlv/gryj9QRelDAmsh4IzHendgNvW9kMLNKnY3mF7FPHzY0DZt353cy76x6l7ksfq4fUsNf7yGcY+D9ojJLT5S+pZ9gwa99OqcOvMV6hq9+nzw6o+sTwKzri0fuOwXBRwb/nnJdWQ+/syzkLNHW8QwrxyZdaMR9F4G6O63i1jn7zLcj5MNgwKb8H9DNm7zOHopUUXa7bLzDBg2NY1RF+vOV9PV2NZN8ImgY7nbCFGrtSGYPQ4Sfx8G22YpZPkyP6zCyvMKZVMLLMkAO8c5r9xrI+MFW3MIjgwbF6jOPmWMs1K981rSVhkjEqG1Xl3f3N3P8V4qw38vgnCGGcvNSgq+hlJKspI5AlsIRDm9aG5KJa6jl8r6DANcdMFb6Jv4ktMduAiiKuzWVbbF0pPehiuB5wXRPADa+ay4c74sEjq//2LT8DK8ABH0iC/UDzl29dfO0q1oISw8Gyv+SaOQAAAA==");
}

body[data-page="home"] .audience-card .audience-icon {
  width: 108px;
  height: 96px;
}

body[data-page="home"] .dark-cta {
  position: relative;
  isolation: isolate;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), box-shadow .28s ease;
}

body[data-page="home"] .dark-cta::before,
body[data-page="home"] .dark-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity .32s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .dark-cta::before {
  background: url("/assets/home-dark-ai-solution-banner-image2-DN08hZc5.webp") center / cover no-repeat;
  opacity: 0;
  transform: scale(1);
}

body[data-page="home"] .dark-cta::after {
  background:
    linear-gradient(112deg, transparent 0 58%, rgb(230 0 28 / .34) 62%, transparent 72%),
    radial-gradient(circle at 76% 45%, rgb(230 0 28 / .28), transparent 26%);
  opacity: .42;
  transform: translateX(-2%);
}

body[data-page="home"] .dark-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgb(7 17 31 / .2);
}

body[data-page="home"] .dark-cta:hover::before {
  opacity: .16;
  transform: scale(1.035);
}

body[data-page="home"] .dark-cta:hover::after {
  opacity: .78;
  transform: translateX(2%);
}

@media (max-width: 760px) {
  body:not([data-page="home"]) .container-sm {
    width: calc(100% - 28px);
  }

  body[data-page="home"] .audience-card .audience-icon {
    width: 86px;
    height: 78px;
  }

  body[data-page="home"] .course-card::after {
    width: 64px;
    height: 28px;
    top: 16px;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .btn,
  .ghost-btn,
  .mini-btn,
  .tab-btn,
  .filter-btn,
  .nav-cta::before,
  .btn::before,
  .ghost-btn::before,
  .mini-btn::before,
  .tab-btn::before,
  .filter-btn::before,
  body[data-page="home"] .dark-cta,
  body[data-page="home"] .dark-cta::before,
  body[data-page="home"] .dark-cta::after {
    transition-duration: .01ms;
  }
}

/* Iteration v44: keep dark CTA interactive layers visible below content */
body[data-page="home"] .dark-cta > * {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .dark-cta::before,
body[data-page="home"] .dark-cta::after {
  z-index: 0;
}

/* Iteration v45: preserve button arrows above hover sheen layers */
.btn::after,
.ghost-btn::after,
.mini-btn::after {
  content: "" !important;
  display: inline-block !important;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  opacity: 1;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
}

.btn::after,
.ghost-btn::after {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.mini-btn::after {
  width: 13px;
  height: 13px;
  margin-left: 6px;
}

.nav-cta span,
.nav-cta span img {
  position: relative;
  z-index: 3;
  opacity: 1;
}

/* Iteration v46: course card tags match supplied reference */
body[data-page="home"] .course-card {
  border-radius: 20px;
}

body[data-page="home"] .course-visual {
  position: relative;
  height: 210px;
}

body[data-page="home"] .course-card::after {
  content: "AI开发";
  top: 24px;
  left: 24px;
  right: auto;
  width: auto;
  min-width: 78px;
  height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #f01828 0%, #d9001b 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 12px 22px rgb(230 0 28 / .26);
  filter: none;
}

body[data-page="home"] .course-card:nth-child(2)::after {
  content: "AI开发";
  background: linear-gradient(135deg, #f01828 0%, #d9001b 100%);
}

body[data-page="home"] .course-card:nth-child(3)::after {
  content: "AI运营";
  background: linear-gradient(135deg, #f36b1d 0%, #e84810 100%);
  box-shadow: 0 12px 22px rgb(232 72 16 / .24);
}

body[data-page="home"] .course-card:nth-child(4)::after {
  content: "AIGC";
  background: linear-gradient(135deg, #6154d9 0%, #4438b8 100%);
  box-shadow: 0 12px 22px rgb(68 56 184 / .24);
}

body[data-page="home"] .course-body {
  min-height: 214px;
  padding: 30px 32px 26px;
}

body[data-page="home"] .course-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
}

body[data-page="home"] .course-body p {
  margin-top: 14px;
}

body[data-page="home"] .course-body .mini-btn {
  min-height: 42px;
  border-radius: 7px;
}

@media (max-width: 760px) {
  body[data-page="home"] .course-card::after {
    top: 20px;
    left: 20px;
    min-width: 72px;
    height: 34px;
    padding: 0 14px;
    font-size: 15px;
  }

  body[data-page="home"] .course-body {
    padding: 26px 26px 24px;
  }
}

/* Iteration v47: hard restore visible arrows on homepage buttons */
body[data-page="home"] .btn::after,
body[data-page="home"] .ghost-btn::after,
body[data-page="home"] .mini-btn::after {
  content: "→" !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 1em;
  margin-left: 8px;
  color: currentColor;
  background: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  font-size: 1.08em;
  font-weight: 900;
  line-height: 1;
  opacity: 1 !important;
  position: relative;
  z-index: 4;
  transform: translateX(0);
  transition: transform .24s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .mini-btn::after {
  margin-left: 6px;
  font-size: 1em;
}

body[data-page="home"] .btn:hover::after,
body[data-page="home"] .ghost-btn:hover::after,
body[data-page="home"] .mini-btn:hover::after,
body[data-page="home"] .business-card:hover .mini-btn::after,
body[data-page="home"] .course-card:hover .mini-btn::after,
body[data-page="home"] .tool-card:hover .mini-btn::after,
body[data-page="home"] .ai-assistant-card:hover .mini-btn::after {
  transform: translateX(3px);
}

/* Iteration v48: align non-home page content width with the homepage artboard */
body {
  --site-content: min(1520px, calc(100% - 96px));
}

body[data-page="home"] {
  --home-content: min(1520px, calc(100% - 96px));
  --home-soft-bg: #f3f6fb;
}

body:not([data-page="home"]) .container,
body:not([data-page="home"]) .container-sm {
  width: var(--site-content);
}

@media (max-width: 1280px) {
  body {
    --site-content: calc(100% - 40px);
  }
}

@media (max-width: 760px) {
  body {
    --site-content: calc(100% - 28px);
  }

  body[data-page="home"] {
    --home-content: calc(100% - 28px);
  }
}
/* Iteration v49: keep homepage and subpage responsive gutters aligned */
@media (max-width: 1280px) {
  body[data-page="home"] {
    --home-content: calc(100% - 40px);
  }
}
/* Iteration v50: use Iconify arrow icons inside homepage buttons */
.btn-icon {
  width: 1em;
  height: 1em;
  margin-left: 8px;
  color: currentColor;
  flex: 0 0 auto;
  position: relative;
  z-index: 4;
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), opacity .24s ease;
}

.mini-btn .btn-icon {
  width: .95em;
  height: .95em;
  margin-left: 6px;
}

body[data-page="home"] .btn:has(.btn-icon)::after,
body[data-page="home"] .ghost-btn:has(.btn-icon)::after,
body[data-page="home"] .mini-btn:has(.btn-icon)::after,
body[data-page="home"] .nav-cta:has(.btn-icon)::after {
  content: none !important;
  display: none !important;
}

body[data-page="home"] .btn:hover .btn-icon,
body[data-page="home"] .btn:focus-visible .btn-icon,
body[data-page="home"] .ghost-btn:hover .btn-icon,
body[data-page="home"] .ghost-btn:focus-visible .btn-icon,
body[data-page="home"] .mini-btn:hover .btn-icon,
body[data-page="home"] .mini-btn:focus-visible .btn-icon,
body[data-page="home"] .business-card:hover .mini-btn .btn-icon,
body[data-page="home"] .course-card:hover .mini-btn .btn-icon,
body[data-page="home"] .tool-card:hover .mini-btn .btn-icon,
body[data-page="home"] .ai-assistant-card:hover .mini-btn .btn-icon {
  transform: translateX(3px);
}
/* Iteration v51: refine homepage course tag scale */
body[data-page="home"] .course-card::after {
  top: 26px;
  left: 26px;
  min-width: 72px;
  height: 36px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0;
  box-shadow: 0 10px 20px rgb(230 0 28 / .2);
}

body[data-page="home"] .course-card:nth-child(3)::after,
body[data-page="home"] .course-card:nth-child(4)::after {
  box-shadow: 0 10px 20px rgb(15 23 42 / .16);
}

@media (max-width: 760px) {
  body[data-page="home"] .course-card::after {
    top: 18px;
    left: 18px;
    min-width: 66px;
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 32px;
  }
}
/* Iteration v52: problem cards use left icon and right text layout */
body[data-page="home"] .problem-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: start;
  min-height: 168px;
  padding: 30px 74px 30px 32px;
}

body[data-page="home"] .problem-card .mark {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: start;
  position: static;
  width: 82px;
  height: 82px;
  margin-top: 14px;
  background-size: contain;
  background-position: center;
}

body[data-page="home"] .problem-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 24px 0 12px;
}

body[data-page="home"] .problem-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

body[data-page="home"] .problem-card .mark::after {
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  font-size: 14px;
  line-height: 44px;
}

@media (max-width: 1280px) {
  body[data-page="home"] .problem-card {
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 18px;
    padding: 28px 68px 28px 28px;
  }

  body[data-page="home"] .problem-card .mark {
    width: 76px;
    height: 76px;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .problem-card {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 150px;
    padding: 24px 58px 24px 24px;
  }

  body[data-page="home"] .problem-card .mark {
    width: 70px;
    height: 70px;
    margin-top: 12px;
  }

  body[data-page="home"] .problem-card h3 {
    margin-top: 18px;
  }

  body[data-page="home"] .problem-card .mark::after {
    top: 22px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
  }
}
/* Iteration v53: compact problem cards to 80% width and enlarge icons */
body[data-page="home"] .problem-grid {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
}

body[data-page="home"] .problem-card {
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 150px;
  padding: 24px 58px 24px 24px;
}

body[data-page="home"] .problem-card .mark {
  width: 88px;
  height: 88px;
  margin-top: 10px;
}

body[data-page="home"] .problem-card h3 {
  margin: 20px 0 8px;
  font-size: 22px;
}

body[data-page="home"] .problem-card p {
  font-size: 15px;
  line-height: 1.7;
}

body[data-page="home"] .problem-card .mark::after {
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  font-size: 13px;
  line-height: 42px;
}

@media (max-width: 1280px) {
  body[data-page="home"] .problem-grid {
    width: 88%;
  }

  body[data-page="home"] .problem-card {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 16px;
    padding: 22px 54px 22px 22px;
  }

  body[data-page="home"] .problem-card .mark {
    width: 78px;
    height: 78px;
    margin-top: 10px;
  }

  body[data-page="home"] .problem-card h3 {
    margin-top: 18px;
    font-size: 20px;
  }

  body[data-page="home"] .problem-card p {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .problem-grid {
    width: 100%;
  }

  body[data-page="home"] .problem-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 142px;
    padding: 22px 54px 22px 22px;
  }

  body[data-page="home"] .problem-card .mark {
    width: 76px;
    height: 76px;
    margin-top: 8px;
  }
}
/* Iteration v54: keep problem cards at 80% through tablet desktop widths */
@media (max-width: 1280px) and (min-width: 761px) {
  body[data-page="home"] .problem-grid {
    width: 80%;
  }
}
/* Iteration v55: restore problem card size, shrink only Q badges, keep icons larger */
body[data-page="home"] .problem-grid {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  gap: 22px;
}

body[data-page="home"] .problem-card {
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 20px;
  min-height: 168px;
  padding: 30px 74px 30px 32px;
}

body[data-page="home"] .problem-card .mark {
  width: 92px;
  height: 92px;
  margin-top: 10px;
}

body[data-page="home"] .problem-card h3 {
  margin: 24px 0 12px;
}

body[data-page="home"] .problem-card .mark::after {
  top: 28px;
  right: 30px;
  width: 34px;
  height: 34px;
  font-size: 11px;
  line-height: 34px;
  box-shadow: 0 10px 20px rgb(230 0 28 / .24);
}

@media (max-width: 1280px) and (min-width: 761px) {
  body[data-page="home"] .problem-grid {
    width: auto;
  }

  body[data-page="home"] .problem-card {
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 168px;
    padding: 28px 68px 28px 28px;
  }

  body[data-page="home"] .problem-card .mark {
    width: 86px;
    height: 86px;
    margin-top: 10px;
  }

  body[data-page="home"] .problem-card .mark::after {
    top: 26px;
    right: 28px;
    width: 34px;
    height: 34px;
    font-size: 11px;
    line-height: 34px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .problem-grid {
    width: 100%;
  }

  body[data-page="home"] .problem-card {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 150px;
    padding: 24px 58px 24px 24px;
  }

  body[data-page="home"] .problem-card .mark {
    width: 76px;
    height: 76px;
    margin-top: 8px;
  }

  body[data-page="home"] .problem-card .mark::after {
    top: 22px;
    right: 20px;
    width: 30px;
    height: 30px;
    font-size: 10px;
    line-height: 30px;
  }
}
/* Iteration v56: reveal problem Q badges on card hover */
body[data-page="home"] .problem-card .mark::after {
  opacity: 0;
  transform: scale(.45);
  transform-origin: center;
  pointer-events: none;
  transition:
    opacity .26s ease,
    transform .34s cubic-bezier(.16, 1, .3, 1),
    box-shadow .26s ease;
}

body[data-page="home"] .problem-card:hover .mark::after,
body[data-page="home"] .problem-card:focus-within .mark::after,
body[data-page="home"] .problem-card:active .mark::after {
  opacity: 1;
  transform: scale(1);
}
/* Iteration v57: keep problem Q badges always visible */
body[data-page="home"] .problem-card .mark::after {
  opacity: 1;
  transform: scale(1);
}
/* Iteration v58: capability band hover interaction */
body[data-page="home"] .capability-band {
  overflow: visible;
}

body[data-page="home"] .cap-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: default;
  transition:
    transform .28s cubic-bezier(.16, 1, .3, 1),
    box-shadow .28s ease,
    background-color .28s ease;
}

body[data-page="home"] .cap-item::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgb(230 0 28 / .12), transparent 58%),
    linear-gradient(180deg, rgb(255 255 255 / .96), rgb(255 247 248 / .78));
  border: 1px solid rgb(230 0 28 / .12);
  box-shadow: 0 18px 36px rgb(15 23 42 / .08);
  opacity: 0;
  transform: scale(.94);
  transition: opacity .28s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
  z-index: -1;
}

body[data-page="home"] .cap-item::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #e6001c, transparent);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .28s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .cap-item .mark,
body[data-page="home"] .cap-item strong,
body[data-page="home"] .cap-item p {
  position: relative;
  z-index: 1;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), color .28s ease, opacity .28s ease;
}

body[data-page="home"] .cap-item:hover,
body[data-page="home"] .cap-item:focus-within {
  transform: translateY(-8px);
}

body[data-page="home"] .cap-item:hover::before,
body[data-page="home"] .cap-item:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

body[data-page="home"] .cap-item:hover::after,
body[data-page="home"] .cap-item:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

body[data-page="home"] .cap-item:hover .mark,
body[data-page="home"] .cap-item:focus-within .mark {
  transform: translateY(-3px) scale(1.12);
}

body[data-page="home"] .cap-item:hover strong,
body[data-page="home"] .cap-item:focus-within strong {
  color: #e6001c;
}

body[data-page="home"] .cap-item:hover p,
body[data-page="home"] .cap-item:focus-within p {
  color: #475467;
}

@media (max-width: 760px) {
  body[data-page="home"] .cap-item:hover,
  body[data-page="home"] .cap-item:focus-within {
    transform: translateY(-4px);
  }
}
/* Iteration v59: simplify capability hover without background panels */
body[data-page="home"] .cap-item {
  overflow: hidden;
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), opacity .24s ease;
}

body[data-page="home"] .cap-item::before,
body[data-page="home"] .cap-item::after {
  content: none;
  display: none;
}

body[data-page="home"] .cap-item:hover,
body[data-page="home"] .cap-item:focus-within {
  transform: translateY(-5px);
}

body[data-page="home"] .cap-item .mark {
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), filter .28s ease, opacity .28s ease;
}

body[data-page="home"] .cap-item:hover .mark,
body[data-page="home"] .cap-item:focus-within .mark {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 12px 16px rgb(230 0 28 / .16));
}

body[data-page="home"] .cap-item strong {
  transition: color .24s ease, transform .24s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .cap-item:hover strong,
body[data-page="home"] .cap-item:focus-within strong {
  color: #101827;
  transform: translateY(-1px);
}

body[data-page="home"] .cap-item p {
  transition: color .24s ease, opacity .24s ease;
}

body[data-page="home"] .cap-item:hover p,
body[data-page="home"] .cap-item:focus-within p {
  color: #475467;
  opacity: .92;
}
/* Iteration v60: homepage finishing polish */
body[data-page="home"] .course-card::after {
  top: 24px;
  left: 24px;
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0;
}

body[data-page="home"] .tool-card img {
  width: 156px;
  height: 126px;
  max-width: none;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), filter .28s ease;
}

body[data-page="home"] .tool-card:hover img,
body[data-page="home"] .tool-card:focus-within img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 14px 18px rgb(230 0 28 / .14));
}

body[data-page="home"] .audience-card .audience-icon {
  width: 118px;
  height: 96px;
  max-width: none;
  object-fit: contain;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), filter .28s ease;
}

body[data-page="home"] .audience-card:hover .audience-icon,
body[data-page="home"] .audience-card:focus-within .audience-icon {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 14px 18px rgb(230 0 28 / .13));
}

body[data-page="home"] .dark-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .36s cubic-bezier(.16, 1, .3, 1), box-shadow .36s ease, filter .36s ease;
  will-change: transform;
}

body[data-page="home"] .dark-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 68% 45%, rgb(230 0 28 / .2), transparent 28%),
    linear-gradient(120deg, rgb(255 255 255 / .1), transparent 22%, transparent 72%, rgb(230 0 28 / .18));
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s ease;
  z-index: 1;
}

body[data-page="home"] .dark-cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -18%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .18), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-80%) rotate(12deg);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), opacity .36s ease;
  z-index: 2;
}

body[data-page="home"] .dark-cta > * {
  position: relative;
  z-index: 3;
}

body[data-page="home"] .dark-cta:hover,
body[data-page="home"] .dark-cta:focus-within {
  transform: translateY(-8px);
  box-shadow:
    0 34px 80px rgb(15 23 42 / .22),
    0 0 0 1px rgb(230 0 28 / .18);
  filter: saturate(1.04) contrast(1.02);
}

body[data-page="home"] .dark-cta:hover::before,
body[data-page="home"] .dark-cta:focus-within::before {
  opacity: 1;
}

body[data-page="home"] .dark-cta:hover::after,
body[data-page="home"] .dark-cta:focus-within::after {
  opacity: .9;
  transform: translateX(390%) rotate(12deg);
}

body[data-page="home"] .dark-cta:hover .btn,
body[data-page="home"] .dark-cta:focus-within .btn {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgb(230 0 28 / .34);
}

@media (max-width: 1280px) {
  body[data-page="home"] .tool-card img {
    width: 146px;
    height: 118px;
  }

  body[data-page="home"] .audience-card .audience-icon {
    width: 110px;
    height: 90px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .course-card::after {
    top: 18px;
    left: 18px;
    height: 30px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 30px;
  }

  body[data-page="home"] .tool-card img {
    width: 132px;
    height: 108px;
  }

  body[data-page="home"] .audience-card .audience-icon {
    width: 96px;
    height: 80px;
  }

  body[data-page="home"] .dark-cta:hover,
  body[data-page="home"] .dark-cta:focus-within {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .tool-card img,
  body[data-page="home"] .audience-card .audience-icon,
  body[data-page="home"] .dark-cta,
  body[data-page="home"] .dark-cta::before,
  body[data-page="home"] .dark-cta::after {
    transition: none;
  }

  body[data-page="home"] .tool-card:hover img,
  body[data-page="home"] .audience-card:hover .audience-icon,
  body[data-page="home"] .dark-cta:hover,
  body[data-page="home"] .dark-cta:focus-within {
    transform: none;
  }
}
/* Iteration v61: deepen course content and separate card icons from text */
body[data-page="home"] .tool-card {
  grid-template-columns: minmax(0, 1fr) 168px;
  column-gap: 32px;
}

body[data-page="home"] .tool-card > img,
body[data-page="home"] .tool-card img {
  width: 156px;
  height: 126px;
  justify-self: end;
}

body[data-page="home"] .audience-card {
  grid-template-columns: minmax(0, 1fr) 132px;
  column-gap: 30px;
}

body[data-page="home"] .audience-card .audience-icon {
  width: 118px;
  height: 96px;
  justify-self: end;
}

body[data-page="home"] .course-card {
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .course-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 28px 28px;
}

body[data-page="home"] .course-body > p:not(.course-result) {
  margin-bottom: 14px;
  min-height: 48px;
}

body[data-page="home"] .course-points {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #5b6678;
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="home"] .course-points li {
  position: relative;
  padding-left: 18px;
}

body[data-page="home"] .course-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e6001c;
  box-shadow: 0 0 0 4px rgb(230 0 28 / .08);
}

body[data-page="home"] .course-result {
  margin: auto 0 22px;
  color: #465268;
  font-size: 14px;
  line-height: 1.62;
}

body[data-page="home"] .course-result strong {
  color: #101827;
  font-weight: 800;
}

body[data-page="home"] .course-card .mini-btn {
  margin-top: auto;
}

@media (max-width: 1280px) {
  body[data-page="home"] .tool-card {
    grid-template-columns: minmax(0, 1fr) 146px;
    column-gap: 24px;
  }

  body[data-page="home"] .tool-card > img,
  body[data-page="home"] .tool-card img {
    width: 138px;
    height: 112px;
  }

  body[data-page="home"] .audience-card {
    grid-template-columns: minmax(0, 1fr) 118px;
    column-gap: 24px;
  }

  body[data-page="home"] .audience-card .audience-icon {
    width: 106px;
    height: 88px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .tool-card,
  body[data-page="home"] .audience-card {
    grid-template-columns: minmax(0, 1fr) 96px;
    column-gap: 18px;
  }

  body[data-page="home"] .tool-card > img,
  body[data-page="home"] .tool-card img,
  body[data-page="home"] .audience-card .audience-icon {
    width: 88px;
    height: 76px;
  }

  body[data-page="home"] .course-body {
    padding: 24px 22px 24px;
  }

  body[data-page="home"] .course-body > p:not(.course-result) {
    min-height: auto;
  }
}
/* Iteration v62: tighten rhythm and rebalance icon/text cards */
body[data-page="home"] .section {
  padding-top: 96px;
  padding-bottom: 96px;
}

body[data-page="home"] .section-title {
  margin-bottom: 46px;
}

body[data-page="home"] .section:first-of-type {
  padding-top: 104px;
}

body[data-page="home"] .tool-card {
  grid-template-columns: minmax(0, 1fr) 136px;
  column-gap: 20px;
}

body[data-page="home"] .tool-card > img,
body[data-page="home"] .tool-card img {
  width: 132px;
  height: 108px;
  justify-self: end;
}

body[data-page="home"] .tool-card p {
  max-width: none;
}

body[data-page="home"] .audience-card {
  grid-template-columns: minmax(0, 1fr) 112px;
  column-gap: 18px;
}

body[data-page="home"] .audience-card .audience-icon {
  width: 104px;
  height: 86px;
  justify-self: end;
}

body[data-page="home"] .audience-card p {
  max-width: none;
}

body[data-page="home"] .course-result {
  display: none;
}

body[data-page="home"] .course-points {
  margin-bottom: 22px;
}

body[data-page="home"] .course-card .mini-btn {
  margin-top: auto;
}

@media (max-width: 1280px) {
  body[data-page="home"] .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  body[data-page="home"] .section-title {
    margin-bottom: 38px;
  }

  body[data-page="home"] .tool-card {
    grid-template-columns: minmax(0, 1fr) 118px;
    column-gap: 16px;
  }

  body[data-page="home"] .tool-card > img,
  body[data-page="home"] .tool-card img {
    width: 112px;
    height: 94px;
  }

  body[data-page="home"] .audience-card {
    grid-template-columns: minmax(0, 1fr) 98px;
    column-gap: 14px;
  }

  body[data-page="home"] .audience-card .audience-icon {
    width: 90px;
    height: 76px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  body[data-page="home"] .section-title {
    margin-bottom: 32px;
  }

  body[data-page="home"] .tool-card,
  body[data-page="home"] .audience-card {
    grid-template-columns: minmax(0, 1fr) 86px;
    column-gap: 14px;
  }

  body[data-page="home"] .tool-card > img,
  body[data-page="home"] .tool-card img,
  body[data-page="home"] .audience-card .audience-icon {
    width: 78px;
    height: 68px;
  }
}
/* Iteration v63: align tool and audience card titles, icons, and buttons */
body[data-page="home"] .section {
  padding-top: 88px;
  padding-bottom: 88px;
}

body[data-page="home"] .section-title {
  margin-bottom: 42px;
}

body[data-page="home"] .course-result {
  display: none !important;
}

body[data-page="home"] .tool-card {
  grid-template-columns: minmax(0, 1fr) 118px;
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  row-gap: 0;
  align-items: start;
}

body[data-page="home"] .tool-card h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  white-space: nowrap;
  margin-bottom: 14px;
}

body[data-page="home"] .tool-card p {
  grid-column: 1;
  grid-row: 2;
  max-width: none;
  margin: 0;
}

body[data-page="home"] .tool-card > img,
body[data-page="home"] .tool-card img {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  width: 112px;
  height: 92px;
  margin-top: 0;
}

body[data-page="home"] .tool-card .mini-btn {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 18px;
}

body[data-page="home"] .audience-card {
  grid-template-columns: minmax(0, 1fr) 98px;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: start;
}

body[data-page="home"] .audience-card h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  white-space: nowrap;
  margin-bottom: 16px;
}

body[data-page="home"] .audience-card p {
  grid-column: 1;
  grid-row: 2;
  max-width: none;
  margin: 0;
}

body[data-page="home"] .audience-card .audience-icon {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  width: 90px;
  height: 76px;
  margin-top: 0;
}

@media (max-width: 1280px) {
  body[data-page="home"] .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  body[data-page="home"] .section-title {
    margin-bottom: 36px;
  }

  body[data-page="home"] .tool-card {
    grid-template-columns: minmax(0, 1fr) 102px;
    column-gap: 14px;
  }

  body[data-page="home"] .tool-card h3,
  body[data-page="home"] .audience-card h3 {
    font-size: 18px;
  }

  body[data-page="home"] .tool-card > img,
  body[data-page="home"] .tool-card img {
    width: 96px;
    height: 80px;
  }

  body[data-page="home"] .audience-card {
    grid-template-columns: minmax(0, 1fr) 88px;
    column-gap: 12px;
  }

  body[data-page="home"] .audience-card .audience-icon {
    width: 82px;
    height: 70px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  body[data-page="home"] .tool-card h3,
  body[data-page="home"] .audience-card h3 {
    white-space: normal;
  }

  body[data-page="home"] .tool-card,
  body[data-page="home"] .audience-card {
    grid-template-columns: minmax(0, 1fr) 78px;
    column-gap: 12px;
  }

  body[data-page="home"] .tool-card > img,
  body[data-page="home"] .tool-card img,
  body[data-page="home"] .audience-card .audience-icon {
    width: 72px;
    height: 62px;
  }
}
/* Iteration v64: iconify trust metrics and course check marks */
body[data-page="home"] .trust-item .iconify-mark iconify-icon {
  width: 24px;
  height: 24px;
  color: #e6001c;
}

body[data-page="home"] .trust-item strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #101827;
  font-size: 34px;
  letter-spacing: 0;
}

body[data-page="home"] .trust-item strong em {
  font-size: .48em;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

body[data-page="home"] .trust-item span:not(.count-up) {
  margin-top: 8px;
  color: #667085;
  font-size: 15px;
  font-weight: 700;
}

body[data-page="home"] .course-points {
  gap: 9px;
}

body[data-page="home"] .course-points li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  padding-left: 0;
}

body[data-page="home"] .course-points li::before {
  content: none;
  display: none;
}

body[data-page="home"] .course-points .point-check {
  width: 12px;
  height: 12px;
  margin-top: .34em;
  color: #e6001c;
  filter: drop-shadow(0 4px 8px rgb(230 0 28 / .16));
}

@media (max-width: 1280px) {
  body[data-page="home"] .trust-item strong {
    font-size: 28px;
  }

  body[data-page="home"] .trust-item span:not(.count-up) {
    font-size: 13px;
  }
}
/* Iteration v65: normalize trust metric typography */
body[data-page="home"] .trust-item strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: #101827;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

body[data-page="home"] .trust-item strong .count-up {
  color: inherit;
  font: inherit;
}

body[data-page="home"] .trust-item strong em {
  color: inherit;
  font-size: 1em;
  line-height: 1;
  font-style: normal;
  font-weight: inherit;
  margin-left: 0;
}

body[data-page="home"] .trust-item:nth-child(4) span:not(.count-up) {
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0;
}

@media (max-width: 1280px) {
  body[data-page="home"] .trust-item strong {
    font-size: 22px;
  }

  body[data-page="home"] .trust-item:nth-child(4) span:not(.count-up) {
    white-space: normal;
    font-size: 14px;
  }
}
/* Iteration v66: align trust certification copy and course card CTA text */
body[data-page="home"] .trust-item:nth-child(4) span:not(.count-up) {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 1280px) {
  body[data-page="home"] .trust-item:nth-child(4) span:not(.count-up) {
    white-space: normal;
    font-size: 13px;
  }
}
/* Iteration v67: visually center trust strip iconify marks */
body[data-page="home"] .trust-item .iconify-mark {
  display: grid;
  place-items: center;
  line-height: 0;
}

body[data-page="home"] .trust-item .iconify-mark iconify-icon,
body[data-page="home"] .trust-item .iconify-mark svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translateY(0);
}
/* Iteration v68: hero carousel bars and trust icon optical centering */
body[data-page="home"] .hero::before {
  content: none;
  display: none;
}

body[data-page="home"] .hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

body[data-page="home"] .hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .78s ease, transform 5.8s ease;
  will-change: opacity, transform;
}

body[data-page="home"] .hero-bg-slide--light {
  background-image: url("/assets/home-light-ai-education-banner-image2-hf4XaurO.webp");
}

body[data-page="home"] .hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1.045);
}

body[data-page="home"] .hero-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 28px;
  padding: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / .34);
  border: 1px solid rgb(255 255 255 / .48);
  box-shadow: 0 16px 42px rgb(10 24 46 / .08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

body[data-page="home"] .hero-switch button {
  position: relative;
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(7 17 31 / .16);
  cursor: pointer;
  overflow: hidden;
  transition: width .28s cubic-bezier(.16, 1, .3, 1), background-color .28s ease, transform .28s ease;
}

body[data-page="home"] .hero-switch button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #e6001c, #ff3149);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1);
}

body[data-page="home"] .hero-switch button.is-active {
  width: 64px;
  background: rgb(230 0 28 / .14);
}

body[data-page="home"] .hero-switch button.is-active::before {
  transform: scaleX(1);
}

body[data-page="home"] .hero-switch button:hover {
  transform: translateY(-1px);
  background: rgb(230 0 28 / .18);
}

body[data-page="home"] .trust-item:nth-child(3) .iconify-mark iconify-icon,
body[data-page="home"] .trust-item:nth-child(3) .iconify-mark svg {
  transform: translateX(1.5px);
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-switch {
    margin-top: 22px;
    gap: 9px;
  }

  body[data-page="home"] .hero-switch button {
    width: 32px;
  }

  body[data-page="home"] .hero-switch button.is-active {
    width: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-bg-slide,
  body[data-page="home"] .hero-switch button,
  body[data-page="home"] .hero-switch button::before {
    transition: none;
  }
}
/* Iteration v69: Aliyun-style red hero switch bars */
body[data-page="home"] .hero-switch {
  display: flex;
  align-items: center;
  gap: 28px;
  width: fit-content;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="home"] .hero-switch button {
  position: relative;
  width: 108px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform .22s ease, opacity .22s ease;
}

body[data-page="home"] .hero-switch button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgb(230 0 28 / .18);
  transform: translateY(-50%);
  transition: background .22s ease, height .22s ease, box-shadow .22s ease;
}

body[data-page="home"] .hero-switch button.is-active {
  width: 108px;
  background: transparent;
}

body[data-page="home"] .hero-switch button.is-active::before {
  height: 3px;
  background: #e6001c;
  box-shadow: 0 8px 18px rgb(230 0 28 / .22);
}

body[data-page="home"] .hero-switch button:hover {
  transform: translateY(-1px);
  background: transparent;
}

body[data-page="home"] .hero-switch button:hover::before {
  background: rgb(230 0 28 / .42);
}

body[data-page="home"] .hero-switch button.is-active:hover::before {
  background: #e6001c;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-switch {
    gap: 14px;
    margin-top: 20px;
  }

  body[data-page="home"] .hero-switch button,
  body[data-page="home"] .hero-switch button.is-active {
    width: 54px;
  }
}
/* Iteration v70: keep original hero switch size with red loading progress */
body[data-page="home"] .hero-switch {
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="home"] .hero-switch button,
body[data-page="home"] .hero-switch button.is-active {
  position: relative;
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(230 0 28 / .16);
  box-shadow: none;
}

body[data-page="home"] .hero-switch button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgb(230 0 28 / .34);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease, background .24s ease;
}

body[data-page="home"] .hero-switch button.is-active::before {
  background: #e6001c;
  animation: heroSwitchLoad 6s linear infinite;
}

body[data-page="home"] .hero-switch button:hover {
  transform: translateY(-1px);
  background: rgb(230 0 28 / .22);
}

@keyframes heroSwitchLoad {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-switch {
    gap: 9px;
  }

  body[data-page="home"] .hero-switch button,
  body[data-page="home"] .hero-switch button.is-active {
    width: 32px;
    height: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-switch button.is-active::before {
    animation: none;
    transform: scaleX(1);
  }
}
/* Iteration v71: refine hero switch spacing and width */
body[data-page="home"] .hero-switch {
  margin-top: 30px;
  gap: 14px;
}

body[data-page="home"] .hero-switch button,
body[data-page="home"] .hero-switch button.is-active {
  width: 58px;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-switch {
    margin-top: 24px;
    gap: 10px;
  }

  body[data-page="home"] .hero-switch button,
  body[data-page="home"] .hero-switch button.is-active {
    width: 40px;
  }
}
/* Iteration v72: move hero switch near trust strip and hard-center trust icons */
body[data-page="home"] .hero-switch {
  position: absolute;
  left: calc((100% - var(--home-content)) / 2);
  bottom: 146px;
  z-index: 3;
  margin-top: 0;
}

body[data-page="home"] .trust-item .iconify-mark {
  position: relative;
  display: block;
  line-height: 0;
}

body[data-page="home"] .trust-item .iconify-mark iconify-icon,
body[data-page="home"] .trust-item .iconify-mark svg {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-switch {
    left: 24px;
    bottom: 228px;
  }
}
/* Iteration v73: place hero switch directly above trust strip */
body[data-page="home"] .hero-switch {
  position: absolute;
  left: calc((100% - var(--home-content)) / 2);
  bottom: 124px;
  z-index: 4;
  margin: 0;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-switch {
    left: 24px;
    bottom: 190px;
  }
}
/* Iteration v74: keep hero switch in flow 14px above trust strip */
body[data-page="home"] .hero > .hero-switch {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 4;
  width: var(--home-content);
  margin: 0 auto 14px;
  justify-content: flex-start;
}

body[data-page="home"] .hero > .hero-switch + .trust-strip {
  margin-top: 0;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero > .hero-switch {
    left: auto;
    bottom: auto;
    width: var(--home-content);
    margin: 18px auto 14px;
  }
}
/* Iteration v75: raise hero switch 12px above current position */
body[data-page="home"] .hero > .hero-switch {
  margin-bottom: 26px;
}

@media (max-width: 760px) {
  body[data-page="home"] .hero > .hero-switch {
    margin-bottom: 26px;
  }
}
/* Browser comment: reduce homepage section title size by 28%. */
body[data-page="home"] .section-title h2 {
  font-size: clamp(26px, 2.38vw, 41px);
}

@media (max-width: 760px) {
  body[data-page="home"] .section-title h2 {
    font-size: 22px;
  }
}
/* Browser comment: keep homepage descriptive text at normal weight. */
body[data-page="home"] p,
body[data-page="home"] .course-points li,
body[data-page="home"] .rich-list li,
body[data-page="home"] .trust-item span:not(.count-up) {
  font-weight: 400;
}
/* Browser comment: unify homepage descriptive text color and normal weight. */
body[data-page="home"] .section-title p,
body[data-page="home"] .hero p,
body[data-page="home"] .problem-card p,
body[data-page="home"] .business-card p,
body[data-page="home"] .course-card p,
body[data-page="home"] .tool-card p,
body[data-page="home"] .audience-card p,
body[data-page="home"] .cap-item p,
body[data-page="home"] .course-points li,
body[data-page="home"] .rich-list li,
body[data-page="home"] .trust-strip .trust-item span:not(.count-up) {
  color: #475467;
  font-weight: 400;
}
/* Browser comment: nudge homepage trust-strip icons 2px to the right. */
body[data-page="home"] .trust-strip .trust-item .iconify-mark iconify-icon,
body[data-page="home"] .trust-strip .trust-item .iconify-mark svg {
  transform: translate(calc(-50% + 2px), -50%) !important;
}
/* Browser comment: enlarge homepage hero title by 20% while keeping two lines. */
@media (min-width: 761px) {
  body[data-page="home"] .hero h1 {
    max-width: 900px;
    font-size: clamp(55px, 5.22vw, 77px);
    white-space: normal;
  }
}
/* AI training page rebuild from Figma content, scoped to content area only. */
body[data-page='training'] {
  --training-ink: #1a1d2b;
  --training-muted: #6e707b;
  --training-red: #e60012;
  --training-soft: #f3f6fb;
}

body[data-page='training'] .training-hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f8fbff;
}

body[data-page='training'] .training-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/course-BdiUaG0p.webp') center top / cover no-repeat;
}

body[data-page='training'] .training-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}

body[data-page='training'] .training-hero-copy { max-width: 900px; }
body[data-page='training'] .training-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--training-red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.4px;
}
body[data-page='training'] .training-kicker iconify-icon { font-size: 17px; }
body[data-page='training'] .training-hero h1 {
  margin: 28px 0 24px;
  color: var(--training-ink);
  font-size: clamp(55px, 5.22vw, 77px);
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: 0;
}
body[data-page='training'] .training-hero h1 span { color: var(--training-red); }
body[data-page='training'] .training-hero p {
  margin: 0;
  color: var(--training-muted);
  font-size: 20px;
  line-height: 1.9;
  font-weight: 500;
}
body[data-page='training'] .training-actions { display: flex; gap: 22px; margin-top: 36px; }
body[data-page='training'] .training-actions .btn,
body[data-page='training'] .training-actions .ghost-btn {
  min-width: 186px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 16px;
}

body[data-page='training'] .training-hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
  margin-top: 0;
  margin-bottom: 30px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
body[data-page='training'] .training-hero-metrics > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  align-content: center;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}
body[data-page='training'] .training-hero-metrics > div:last-child { border-right: 0; }
body[data-page='training'] .training-hero-metrics span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff1f3;
  color: var(--training-red);
  font-size: 20px;
}
body[data-page='training'] .training-hero-metrics strong {
  color: var(--training-ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}
body[data-page='training'] .training-hero-metrics p {
  margin: 7px 0 0;
  color: var(--training-muted);
  font-size: 13px;
  line-height: 1.4;
}

body[data-page='training'] .training-section { background: #fff; }
body[data-page='training'] .training-section.section-soft { background: var(--training-soft); }
body[data-page='training'] .section-title { margin-bottom: 54px; }
body[data-page='training'] .section-title h2 {
  color: var(--training-ink);
  font-size: clamp(36px, 3vw, 50px);
  letter-spacing: 0;
}
body[data-page='training'] .section-title p {
  max-width: 860px;
  color: var(--training-muted);
  font-weight: 500;
}
body[data-page='training'] .training-section .section-title h2 span,
body[data-page='training'] .training-card h3 span,
body[data-page='training'] .training-gain-panel h3 span,
body[data-page='training'] .training-price-card h3 span { color: var(--training-red); }

body[data-page='training'] .training-why-grid,
body[data-page='training'] .training-fit-grid,
body[data-page='training'] .training-course-grid,
body[data-page='training'] .training-coop-grid,
body[data-page='training'] .training-aigc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

body[data-page='training'] .training-card,
body[data-page='training'] .training-course-card,
body[data-page='training'] .training-price-card,
body[data-page='training'] .training-gain-panel {
  position: relative;
  border: 1px solid #e6ebf2;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff 0%, #fff 70%, #fff7f7 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
body[data-page='training'] .training-card,
body[data-page='training'] .training-course-card,
body[data-page='training'] .training-price-card { min-height: 100%; padding: 34px 32px; }
body[data-page='training'] .training-card::before,
body[data-page='training'] .training-course-card::before,
body[data-page='training'] .training-price-card::before,
body[data-page='training'] .training-gain-panel::before {
  content: none;
  display: none;
}
body[data-page='training'] .training-card h3,
body[data-page='training'] .training-course-card h3,
body[data-page='training'] .training-price-card h3,
body[data-page='training'] .training-gain-panel h3 {
  margin: 0;
  color: var(--training-ink);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 950;
}
body[data-page='training'] .training-card p,
body[data-page='training'] .training-course-card p,
body[data-page='training'] .training-price-card p,
body[data-page='training'] .training-gain-panel p {
  margin: 14px 0 0;
  color: var(--training-muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}
body[data-page='training'] .training-card ul,
body[data-page='training'] .training-course-card ul,
body[data-page='training'] .training-gain-panel ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
body[data-page='training'] .training-card li,
body[data-page='training'] .training-course-card li,
body[data-page='training'] .training-gain-panel li {
  color: #475467;
  font-size: 14px;
  line-height: 1.55;
}
body[data-page='training'] .training-card li::before,
body[data-page='training'] .training-course-card li::before,
body[data-page='training'] .training-gain-panel li::before {
  content: '✓';
  margin-right: 8px;
  color: var(--training-red);
  font-weight: 950;
}

body[data-page='training'] .training-card-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  min-height: 360px;
}
body[data-page='training'] .training-card-visual img {
  align-self: end;
  width: 150px;
  filter: drop-shadow(0 14px 26px rgb(230 0 18 / .13));
}

body[data-page='training'] .training-gain-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  background: linear-gradient(122deg, #fff 0%, #fff 78%, #fff2f2 100%);
}
body[data-page='training'] .training-gain-panel article {
  min-height: 520px;
  padding: 38px 30px 32px;
  border-right: 1px solid #e6ebf2;
}
body[data-page='training'] .training-gain-panel article:last-child { border-right: 0; }
body[data-page='training'] .training-gain-panel i {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--training-red);
}
body[data-page='training'] .training-gain-panel img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  margin: 34px auto 0;
  filter: drop-shadow(0 14px 26px rgb(230 0 18 / .12));
}

body[data-page='training'] .training-fit-grid .training-card,
body[data-page='training'] .training-course-card,
body[data-page='training'] .training-coop-card { display: flex; flex-direction: column; }
body[data-page='training'] .training-fit-grid .training-card { min-height: 520px; }
body[data-page='training'] .training-fit-grid .mini-btn,
body[data-page='training'] .training-course-card .mini-btn,
body[data-page='training'] .training-coop-card .mini-btn { margin-top: auto; border-radius: 999px; }
body[data-page='training'] .training-persona-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 38px 0 26px;
  color: var(--training-muted);
  font-size: 18px;
  font-weight: 700;
}
body[data-page='training'] .training-persona-title span { height: 1px; background: #e6ebf2; }
body[data-page='training'] .training-personas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
body[data-page='training'] .training-personas span {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid #e6ebf2;
  border-radius: var(--radius);
  background: #fff;
  color: #344054;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
body[data-page='training'] .training-personas iconify-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
  color: var(--training-red);
  font-size: 22px;
}
body[data-page='training'] .training-personas strong { color: var(--training-ink); font-size: 15px; line-height: 1.35; }
body[data-page='training'] .training-personas em { color: var(--training-muted); font-size: 14px; line-height: 1.45; font-style: normal; font-weight: 400; }

body[data-page='training'] .training-course-card { min-height: 740px; }
body[data-page='training'] .training-course-card:nth-child(2)::before,
body[data-page='training'] .training-price-card.blue::before { background: #315bef; }
body[data-page='training'] .training-course-card:nth-child(3)::before,
body[data-page='training'] .training-price-card.orange::before { background: #ff8a00; }
body[data-page='training'] .training-course-card .badge {
  align-self: flex-start;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--training-red);
  color: #fff;
}
body[data-page='training'] .training-course-card .badge.blue { background: #315bef; }
body[data-page='training'] .training-course-card .badge.orange { background: #ff8a00; }
body[data-page='training'] .training-result {
  padding-top: 18px;
  border-top: 1px solid #e6ebf2;
  font-weight: 700 !important;
}
body[data-page='training'] .training-subtitle {
  margin: 78px 0 34px;
  color: var(--training-ink);
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  font-weight: 950;
}
body[data-page='training'] .training-price-card { min-height: 430px; display: flex; flex-direction: column; }
body[data-page='training'] .training-price-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid #e6ebf2;
}
body[data-page='training'] .training-price-card strong { color: var(--training-ink); font-size: 28px; font-weight: 950; }
body[data-page='training'] .training-price-card a { color: var(--training-red); font-size: 15px; font-weight: 900; }

body[data-page='training'] .training-coop-card { min-height: 508px; padding-bottom: 118px; }
body[data-page='training'] .training-coop-card img {
  position: absolute;
  right: 34px;
  bottom: 78px;
  width: 150px;
  height: 150px;
  object-fit: contain;
  opacity: .18;
}
body[data-page='training'] .training-coop-card .mini-btn {
  position: absolute;
  left: 32px;
  bottom: 34px;
  min-width: 150px;
}

@media (max-width: 1200px) {
  body[data-page='training'] .training-hero { min-height: 100svh; padding-top: 130px; }
  body[data-page='training'] .training-hero-inner { min-height: 560px; }
  body[data-page='training'] .training-hero-metrics,
  body[data-page='training'] .training-gain-panel,
  body[data-page='training'] .training-personas { grid-template-columns: repeat(2, 1fr); }
  body[data-page='training'] .training-why-grid,
  body[data-page='training'] .training-fit-grid,
  body[data-page='training'] .training-course-grid,
  body[data-page='training'] .training-coop-grid,
  body[data-page='training'] .training-aigc-grid { grid-template-columns: 1fr; }
  body[data-page='training'] .training-gain-panel article:nth-child(2) { border-right: 0; }
  body[data-page='training'] .training-gain-panel article { border-bottom: 1px solid #e6ebf2; }
}

@media (max-width: 760px) {
  body[data-page='training'] .training-hero { min-height: auto; padding-top: 104px; }
  body[data-page='training'] .training-hero-inner { min-height: 520px; }
  body[data-page='training'] .training-hero h1 { font-size: 42px; line-height: 1.16; }
  body[data-page='training'] .training-hero p { font-size: 15px; line-height: 1.75; }
  body[data-page='training'] .training-actions { flex-direction: column; gap: 14px; }
  body[data-page='training'] .training-actions .btn,
  body[data-page='training'] .training-actions .ghost-btn { width: 100%; }
  body[data-page='training'] .training-hero-metrics,
  body[data-page='training'] .training-gain-panel,
  body[data-page='training'] .training-personas { grid-template-columns: 1fr; }
  body[data-page='training'] .training-hero-metrics { padding: 0; }
  body[data-page='training'] .training-hero-metrics > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 22px; }
  body[data-page='training'] .training-card,
  body[data-page='training'] .training-course-card,
  body[data-page='training'] .training-price-card { padding: 26px 22px; }
  body[data-page='training'] .training-card-visual { grid-template-columns: 1fr; }
  body[data-page='training'] .training-card-visual img { width: 108px; }
  body[data-page='training'] .training-gain-panel article { min-height: auto; border-right: 0; }
  body[data-page='training'] .training-coop-card { padding-bottom: 112px; }
}
/* AI training polish: align card radius, card hover, and button state with homepage cards. */
body[data-page='training'] .training-card,
body[data-page='training'] .training-course-card,
body[data-page='training'] .training-price-card,
body[data-page='training'] .training-gain-panel,
body[data-page='training'] .training-personas span {
  border-radius: var(--radius);
}

body[data-page='training'] .training-card,
body[data-page='training'] .training-course-card,
body[data-page='training'] .training-price-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body[data-page='training'] .training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgb(10 24 46 / .14);
  border-color: rgb(230 0 28 / .22);
}

body[data-page='training'] .training-card .mini-btn,
body[data-page='training'] .training-course-card .mini-btn,
body[data-page='training'] .training-coop-card .mini-btn {
  min-height: 38px;
  border-radius: 999px;
}

body[data-page='training'] .training-card:hover .mini-btn,
body[data-page='training'] .training-coop-card:hover .mini-btn {
  color: #fff;
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  border-color: rgb(230 0 28 / .92);
  box-shadow:
    0 16px 30px rgb(230 0 28 / .22),
    0 5px 14px rgb(17 24 39 / .08),
    inset 0 1px 0 rgb(255 255 255 / .24);
  transform: translateY(-2px);
}

body[data-page='training'] .training-card:hover .mini-btn::before,
body[data-page='training'] .training-coop-card:hover .mini-btn::before {
  opacity: .82;
  transform: skewX(-18deg) translateX(360%);
}

body[data-page='training'] .training-card:hover .mini-btn .btn-icon,
body[data-page='training'] .training-coop-card:hover .mini-btn .btn-icon {
  transform: translateX(3px);
}
/* AI training polish: match homepage course-card button width rhythm. */
body[data-page='training'] .training-fit-grid .mini-btn,
body[data-page='training'] .training-course-card .mini-btn {
  width: 100%;
  justify-content: center;
}
/* AI training polish: unify AIGC price-card content density. */
body[data-page='training'] .training-price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page='training'] .training-price-card li {
  color: #475467;
  font-size: 15px;
  line-height: 1.65;
}

body[data-page='training'] .training-price-card li::before {
  content: '✓';
  margin-right: 8px;
  color: var(--training-red);
  font-weight: 950;
}

/* AI training detail polish from browser comments. */
body[data-page='training'] .training-hero h1 br {
  display: block;
}

body[data-page='training'] .training-gain-panel article {
  display: flex;
  flex-direction: column;
}

body[data-page='training'] .training-gain-panel img {
  width: 176px;
  height: 176px;
  margin-top: auto;
  filter: drop-shadow(0 22px 36px rgb(10 24 46 / .13));
}

body[data-page='training'] .training-card .mini-btn,
body[data-page='training'] .training-course-card .mini-btn,
body[data-page='training'] .training-coop-card .mini-btn {
  min-height: 46px;
  font-size: 15px;
}

body[data-page='training'] .training-fit-grid .training-card {
  min-height: 500px;
}

body[data-page='training'] .training-fit-grid .mini-btn,
body[data-page='training'] .training-course-card .mini-btn {
  margin-top: 26px;
}

body[data-page='training'] .training-personas {
  gap: 22px 18px;
}

body[data-page='training'] .training-personas span {
  min-height: 126px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

body[data-page='training'] .training-personas span:hover,
body[data-page='training'] .training-personas span:focus-within {
  transform: translateY(-4px);
  border-color: rgb(230 0 28 / .22);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 18px 44px rgb(10 24 46 / .1);
}

body[data-page='training'] .training-aigc-grid {
  align-items: stretch;
}

body[data-page='training'] .training-price-card {
  min-height: 420px;
  padding: 34px 34px 30px;
  border-top: 4px solid var(--training-red);
}

body[data-page='training'] .training-price-card.blue {
  border-top-color: #315bef;
}

body[data-page='training'] .training-price-card.orange {
  border-top-color: #ff8a00;
}

body[data-page='training'] .training-price-card h3 {
  font-size: 26px;
}

body[data-page='training'] .training-price-card p {
  min-height: 54px;
}

body[data-page='training'] .training-price-card ul {
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 20px;
}

body[data-page='training'] .training-price-card div {
  margin-top: auto;
  padding-top: 24px;
}

body[data-page='training'] .training-price-card a {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(219 227 239 / .96);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(10 24 46 / .07);
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

body[data-page='training'] .training-price-card a:hover,
body[data-page='training'] .training-price-card a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  border-color: rgb(230 0 28 / .92);
  box-shadow: 0 16px 30px rgb(230 0 28 / .2);
  transform: translateY(-2px);
}

body[data-page='training'] .training-coop-grid {
  align-items: stretch;
  gap: 34px;
}

body[data-page='training'] .training-coop-card {
  min-height: 500px;
  padding: 42px 38px 122px;
  overflow: hidden;
}

body[data-page='training'] .training-coop-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 38px;
  top: 0;
  width: 78px;
  height: 4px;
  background: var(--training-red);
}

body[data-page='training'] .training-coop-card img {
  right: 30px;
  bottom: 68px;
  width: 184px;
  height: 184px;
  opacity: 1;
  filter: drop-shadow(0 22px 36px rgb(10 24 46 / .13));
}

body[data-page='training'] .training-coop-card .mini-btn {
  left: 38px;
  bottom: 40px;
  min-width: 156px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-hero h1 { font-size: 39px; }
  body[data-page='training'] .training-gain-panel img,
  body[data-page='training'] .training-coop-card img {
    width: 136px;
    height: 136px;
  }
  body[data-page='training'] .training-price-card div {
    flex-direction: column;
    align-items: stretch;
  }
  body[data-page='training'] .training-price-card a {
    width: 100%;
  }
}
body[data-page='training'] .btn::after,
body[data-page='training'] .ghost-btn::after,
body[data-page='training'] .mini-btn::after {
  content: none !important;
  display: none !important;
}
/* AI training final card polish: homepage-aligned hover and tighter card rhythm. */
body[data-page='training'] .training-card-visual {
  grid-template-columns: minmax(0, 1fr) 178px;
}

body[data-page='training'] .training-card-visual h3 {
  font-size: 23px;
}

body[data-page='training'] .training-card-visual h3 span {
  white-space: nowrap;
}

body[data-page='training'] .training-card-visual img {
  width: 178px;
  height: 146px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgb(10 24 46 / .1));
}

body[data-page='training'] .training-card,
body[data-page='training'] .training-course-card,
body[data-page='training'] .training-price-card,
body[data-page='training'] .training-gain-panel,
body[data-page='training'] .training-personas span {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

body[data-page='training'] .training-gain-panel:hover,
body[data-page='training'] .training-card:hover,
body[data-page='training'] .training-personas span:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgb(10 24 46 / .14);
  border-color: rgb(230 0 28 / .22);
}

body[data-page='training'] .training-gain-panel article {
  min-height: 500px;
}

body[data-page='training'] .training-gain-panel img {
  width: 158px;
  height: 132px;
  margin-top: auto;
  filter: drop-shadow(0 16px 28px rgb(10 24 46 / .1));
}

body[data-page='training'] .training-fit-grid .training-card {
  min-height: 470px;
  padding-bottom: 26px;
}

body[data-page='training'] .training-fit-grid .mini-btn,
body[data-page='training'] .training-course-card .mini-btn {
  margin-top: 22px;
  margin-bottom: 0;
}

body[data-page='training'] .training-personas {
  gap: 22px 20px;
}

body[data-page='training'] .training-personas span {
  min-height: 124px;
}

body[data-page='training'] .training-course-grid {
  align-items: stretch;
}

body[data-page='training'] .training-course-card {
  min-height: 720px;
  padding-bottom: 28px;
}

body[data-page='training'] .training-course-card p:first-of-type {
  min-height: 56px;
}

body[data-page='training'] .training-course-card ul {
  min-height: 252px;
}

body[data-page='training'] .training-course-card .training-result {
  min-height: 112px;
  margin-top: 18px;
}

body[data-page='training'] .training-course-card .mini-btn {
  margin-top: 18px;
  min-height: 46px;
}

body[data-page='training'] .training-price-card {
  min-height: 410px;
  border-top: 0;
  padding: 34px 34px 28px;
}

body[data-page='training'] .training-price-card p {
  min-height: 52px;
}

body[data-page='training'] .training-price-card ul {
  min-height: 116px;
}

body[data-page='training'] .training-price-card a {
  border-radius: 8px;
  min-height: 42px;
  padding: 0 18px;
}

body[data-page='training'] .training-coop-card::before {
  content: none;
  display: none;
}

body[data-page='training'] .training-coop-card {
  min-height: 484px;
  padding-bottom: 116px;
}

body[data-page='training'] .training-coop-card img {
  width: 158px;
  height: 132px;
  opacity: 1;
  filter: drop-shadow(0 16px 28px rgb(10 24 46 / .1));
}

@media (max-width: 760px) {
  body[data-page='training'] .training-card-visual {
    grid-template-columns: 1fr;
  }
  body[data-page='training'] .training-card-visual h3 {
    font-size: 22px;
  }
  body[data-page='training'] .training-card-visual img,
  body[data-page='training'] .training-gain-panel img,
  body[data-page='training'] .training-coop-card img {
    width: 132px;
    height: 112px;
  }
  body[data-page='training'] .training-course-card ul,
  body[data-page='training'] .training-course-card .training-result,
  body[data-page='training'] .training-price-card ul {
    min-height: 0;
  }
}
/* AI training final interaction pass: card-level hover parity. */
body[data-page='training'] .training-gain-panel article {
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

body[data-page='training'] .training-gain-panel article:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 20px 46px rgb(10 24 46 / .1);
}

body[data-page='training'] .training-price-card:hover a,
body[data-page='training'] .training-price-card:focus-within a {
  color: #fff;
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  border-color: rgb(230 0 28 / .92);
  box-shadow: 0 16px 30px rgb(230 0 28 / .2);
  transform: translateY(-2px);
}

body[data-page='training'] .training-card:hover .btn-icon,
body[data-page='training'] .training-coop-card:hover .btn-icon {
  transform: translateX(3px);
}
/* AI training final browser-comment adjustments. */
body[data-page='training'] .training-card-visual {
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
}

body[data-page='training'] .training-card-visual img {
  width: 210px;
  height: 168px;
}

body[data-page='training'] .training-card-visual:nth-child(3) {
  grid-template-columns: minmax(0, 1.12fr) 190px;
}

body[data-page='training'] .training-card-visual:nth-child(3) h3 {
  font-size: 22px;
  max-width: none;
}

body[data-page='training'] .training-card-visual:nth-child(3) h3 span {
  white-space: nowrap;
  display: inline-block;
}

body[data-page='training'] .training-card-visual:nth-child(3) img {
  width: 190px;
  height: 158px;
}

body[data-page='training'] .training-gain-panel article {
  min-height: 480px;
}

body[data-page='training'] .training-gain-panel img {
  width: 184px;
  height: 150px;
}

body[data-page='training'] .training-personas iconify-icon {
  color: #98a2b3;
  transition: color .22s ease, transform .22s ease;
}

body[data-page='training'] .training-personas span:hover iconify-icon,
body[data-page='training'] .training-personas span:focus-within iconify-icon {
  color: var(--training-red);
  transform: translateY(-2px);
}

body[data-page='training'] .training-course-card {
  min-height: 690px;
  padding-bottom: 22px;
}

body[data-page='training'] .training-course-card ul {
  min-height: 226px;
}

body[data-page='training'] .training-course-card .training-result {
  min-height: 78px;
}

body[data-page='training'] .training-course-card .mini-btn {
  margin-top: 12px;
}

body[data-page='training'] .training-coop-card {
  min-height: 452px;
  padding-bottom: 92px;
}

body[data-page='training'] .training-coop-card img {
  width: 190px;
  height: 154px;
  right: 26px;
  bottom: 78px;
}

body[data-page='training'] .training-coop-card .mini-btn {
  bottom: 30px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-card-visual,
  body[data-page='training'] .training-card-visual:nth-child(3) {
    grid-template-columns: 1fr;
  }
  body[data-page='training'] .training-card-visual img,
  body[data-page='training'] .training-card-visual:nth-child(3) img,
  body[data-page='training'] .training-gain-panel img,
  body[data-page='training'] .training-coop-card img {
    width: 150px;
    height: 124px;
  }
}
/* AI training browser comment final overrides. */
body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) h3 {
  white-space: nowrap;
  font-size: 21px;
}

body[data-page='training'] .training-why-grid .training-card-visual img {
  width: 218px;
  height: 174px;
}

body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) img {
  width: 198px;
  height: 162px;
}

body[data-page='training'] .training-gain-panel img {
  width: 196px;
  height: 158px;
}

body[data-page='training'] .training-personas iconify-icon {
  color: #98a2b3;
}

body[data-page='training'] .training-personas span:hover iconify-icon,
body[data-page='training'] .training-personas span:focus-within iconify-icon {
  color: var(--training-red);
}

body[data-page='training'] .training-course-card {
  min-height: 660px;
  padding-bottom: 22px;
}

body[data-page='training'] .training-course-card ul {
  min-height: 210px;
}

body[data-page='training'] .training-course-card .training-result {
  min-height: 68px;
}

body[data-page='training'] .training-course-card .mini-btn {
  margin-top: 10px;
}

body[data-page='training'] .training-coop-card {
  min-height: 438px;
  padding-bottom: 96px;
}

body[data-page='training'] .training-coop-card img {
  width: 202px;
  height: 164px;
  bottom: 88px;
}

body[data-page='training'] .training-coop-card .mini-btn {
  bottom: 48px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) h3 {
    white-space: normal;
  }

  body[data-page='training'] .training-why-grid .training-card-visual img,
  body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) img,
  body[data-page='training'] .training-gain-panel img,
  body[data-page='training'] .training-coop-card img {
    width: 154px;
    height: 126px;
  }
}
/* AI training final icon sizing correction. */
body[data-page='training'] .training-why-grid .training-card-visual {
  grid-template-columns: minmax(0, 1fr) 236px;
}

body[data-page='training'] .training-why-grid .training-card-visual img {
  width: 228px;
  height: 182px;
}

body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) {
  grid-template-columns: minmax(0, 1.18fr) 214px;
}

body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) img {
  width: 206px;
  height: 168px;
}

body[data-page='training'] .training-gain-panel img {
  width: 204px;
  height: 164px;
}

body[data-page='training'] .training-coop-card img {
  width: 210px;
  height: 170px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-why-grid .training-card-visual,
  body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) {
    grid-template-columns: 1fr;
  }

  body[data-page='training'] .training-why-grid .training-card-visual img,
  body[data-page='training'] .training-why-grid .training-card-visual:nth-child(3) img,
  body[data-page='training'] .training-gain-panel img,
  body[data-page='training'] .training-coop-card img {
    width: 156px;
    height: 128px;
  }
}
/* AI training final layout tightening from browser comments. */
body[data-page='training'] .training-hero .training-actions .ghost-btn[href='#business-form'] {
  scroll-margin-top: 96px;
}

body[data-page='training'] .training-fit-grid .training-card {
  min-height: 430px;
  padding-bottom: 26px;
}

body[data-page='training'] .training-fit-grid .training-card .mini-btn {
  margin-top: 18px;
}

body[data-page='training'] .training-course-card {
  min-height: auto;
  padding-bottom: 28px;
}

body[data-page='training'] .training-course-card p:first-of-type {
  min-height: 58px;
}

body[data-page='training'] .training-course-card > .mini-btn {
  order: 4;
  width: 100%;
  min-height: 42px;
  margin: 14px 0 0;
}

body[data-page='training'] .training-course-card > ul {
  order: 5;
  min-height: 0;
  margin-top: 24px;
}

body[data-page='training'] .training-course-card > .training-result {
  order: 6;
  min-height: 0;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e6ebf2;
}

body[data-page='training'] .training-coop-card {
  min-height: 398px;
  padding-bottom: 72px;
}

body[data-page='training'] .training-coop-card img {
  width: 232px;
  height: 186px;
  right: -4px;
  bottom: 72px;
}

body[data-page='training'] .training-coop-card .mini-btn {
  bottom: 32px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-fit-grid .training-card,
  body[data-page='training'] .training-coop-card {
    min-height: 0;
  }

  body[data-page='training'] .training-course-card p:first-of-type {
    min-height: 0;
  }

  body[data-page='training'] .training-coop-card img {
    width: 156px;
    height: 128px;
    right: 20px;
    bottom: 84px;
  }
}
/* AI training final spacing correction. */
body[data-page='training'] .training-fit-grid,
body[data-page='training'] .training-course-grid {
  align-items: start;
}

body[data-page='training'] .training-fit-grid .training-card {
  min-height: 0;
}

body[data-page='training'] .training-course-card {
  height: auto;
}

body[data-page='training'] .training-course-card > .mini-btn {
  align-self: stretch;
  flex: 0 0 auto;
}

body[data-page='training'] .training-course-card > ul,
body[data-page='training'] .training-course-card > .training-result {
  flex: 0 0 auto;
}

body[data-page='training'] .training-coop-card {
  min-height: 0;
  padding-bottom: 34px;
}

body[data-page='training'] .training-coop-card img {
  width: 252px;
  height: 202px;
  right: -20px;
  bottom: 34px;
}

body[data-page='training'] .training-coop-card .mini-btn {
  position: relative;
  left: auto;
  bottom: auto;
  align-self: flex-start;
  min-width: 150px;
  margin-top: 18px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-coop-card {
    padding-bottom: 28px;
  }

  body[data-page='training'] .training-coop-card img {
    position: static;
    width: 156px;
    height: 128px;
    margin: 18px auto 0;
  }
}
body[data-page='training'] #business-form {
  scroll-margin-top: 96px;
}
/* AI training course copy rhythm. */
body[data-page='training'] .training-course-card > ul {
  display: grid;
  align-content: start;
  gap: 9px;
}

body[data-page='training'] .training-course-card > .training-result {
  line-height: 1.75;
}
/* AI training course buttons below content. */
body[data-page='training'] .training-course-card > .mini-btn {
  order: 7;
  margin-top: 18px;
}
/* AI training course hover: preserve lift and shadow without scroll-induced hover. */
body[data-page='training'] #training-courses {
  isolation: isolate;
}

body[data-page='training'] #training-courses .training-course-card,
body[data-page='training'] #training-courses .training-price-card {
  contain: none;
  backface-visibility: visible;
  transform: none;
  will-change: auto;
}

body[data-page='training'] #training-courses .training-course-card:hover,
body[data-page='training'] #training-courses .training-price-card:hover,
body[data-page='training'] #training-courses .training-course-card:focus-within,
body[data-page='training'] #training-courses .training-price-card:focus-within {
  transform: none;
  box-shadow: 0 18px 44px rgb(10 24 46 / .12);
  border-color: rgb(230 0 28 / .22);
}

body[data-page='training'] #training-courses .training-course-card .mini-btn,
body[data-page='training'] #training-courses .training-price-card a {
  will-change: auto;
}

body[data-page='training'] #training-courses .training-course-card:hover .mini-btn,
body[data-page='training'] #training-courses .training-course-card:focus-within .mini-btn,
body[data-page='training'] #training-courses .training-price-card:hover .mini-btn,
body[data-page='training'] #training-courses .training-price-card:focus-within .mini-btn {
  color: #fff;
  background: linear-gradient(135deg, #f00022 0%, #d8001b 100%);
  border-color: rgb(230 0 28 / .92);
  box-shadow:
    0 16px 30px rgb(230 0 28 / .22),
    0 5px 14px rgb(17 24 39 / .08),
    inset 0 1px 0 rgb(255 255 255 / .24);
  transform: translateY(-2px);
}

body[data-page='training'] #training-courses .training-course-card:hover .mini-btn::before,
body[data-page='training'] #training-courses .training-course-card:focus-within .mini-btn::before,
body[data-page='training'] #training-courses .training-price-card:hover .mini-btn::before,
body[data-page='training'] #training-courses .training-price-card:focus-within .mini-btn::before {
  opacity: .82;
  transform: skewX(-18deg) translateX(360%);
}

body[data-page='training'] #training-courses .training-course-card:hover .btn-icon,
body[data-page='training'] #training-courses .training-course-card:focus-within .btn-icon,
body[data-page='training'] #training-courses .training-price-card:hover iconify-icon,
body[data-page='training'] #training-courses .training-price-card:focus-within iconify-icon {
  transform: translateX(3px);
}

@media (hover: none), (pointer: coarse) {
  body[data-page='training'] #training-courses .training-course-card,
  body[data-page='training'] #training-courses .training-price-card {
    transform: none !important;
  }
}
/* AI training subtitle color and course covers. */
body[data-page='training'] .training-card-visual > div > p:first-of-type,
body[data-page='training'] .training-gain-panel article > p:first-of-type,
body[data-page='training'] .training-fit-grid .training-card > p:first-of-type,
body[data-page='training'] .training-course-card > p:first-of-type,
body[data-page='training'] .training-price-card > p:first-of-type,
body[data-page='training'] .training-coop-card > p:first-of-type {
  color: var(--training-ink);
  font-weight: 500;
}

body[data-page='training'] .training-card-visual > div > p:first-of-type,
body[data-page='training'] .training-gain-panel article > p:first-of-type {
  max-width: none;
}

body[data-page='training'] .training-course-cover {
  order: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  margin: -8px 0 22px;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  object-fit: cover;
  background: #f8fafc;
  box-shadow: 0 12px 28px rgb(10 24 46 / .06);
}

body[data-page='training'] .training-course-card .badge {
  order: 1;
}

body[data-page='training'] .training-course-card h3 {
  order: 2;
}

body[data-page='training'] .training-course-card > p:first-of-type {
  order: 3;
}

body[data-page='training'] .training-course-card > ul {
  order: 4;
}

body[data-page='training'] .training-course-card > .training-result {
  order: 5;
}

body[data-page='training'] .training-course-card > .mini-btn {
  order: 6;
}

body[data-page='training'] .training-coop-card {
  display: flex;
  flex-direction: column;
}

body[data-page='training'] .training-coop-card .mini-btn {
  margin-top: auto;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-course-cover {
    margin-top: 0;
  }
}
/* AI training why-card subtitle width fix. */
body[data-page='training'] .training-why-grid .training-card-visual {
  display: block;
  min-height: 430px;
  padding-right: 32px;
}

body[data-page='training'] .training-why-grid .training-card-visual > div {
  position: relative;
  z-index: 1;
}

body[data-page='training'] .training-why-grid .training-card-visual > div > p:first-of-type {
  max-width: 100%;
  white-space: normal;
}

body[data-page='training'] .training-why-grid .training-card-visual img {
  position: absolute;
  right: 26px;
  bottom: 32px;
  width: 180px;
  height: 144px;
  pointer-events: none;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-why-grid .training-card-visual {
    min-height: 0;
    padding-right: 22px;
  }

  body[data-page='training'] .training-why-grid .training-card-visual img {
    position: static;
    width: 150px;
    height: 124px;
    margin: 18px auto 0;
  }
}
/* AI training final text, badges, and coop alignment. */
body[data-page='training'] .training-card-visual > div > p:first-of-type,
body[data-page='training'] .training-gain-panel article > p:first-of-type,
body[data-page='training'] .training-fit-grid .training-card > p:first-of-type,
body[data-page='training'] .training-course-card > p:first-of-type,
body[data-page='training'] .training-price-card > p:first-of-type,
body[data-page='training'] .training-coop-card > p:first-of-type {
  color: var(--training-ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

body[data-page='training'] .training-card-visual > div > p:not(:first-of-type),
body[data-page='training'] .training-gain-panel article > p:not(:first-of-type),
body[data-page='training'] .training-fit-grid .training-card > p:not(:first-of-type),
body[data-page='training'] .training-course-card > .training-result,
body[data-page='training'] .training-price-card li,
body[data-page='training'] .training-coop-card li,
body[data-page='training'] .training-personas span em {
  color: #667085;
}

body[data-page='training'] .training-course-cover {
  display: none;
}

body[data-page='training'] .training-course-card .badge,
body[data-page='training'] .training-price-card .aigc-badge {
  box-shadow: 0 10px 22px rgb(230 0 28 / .22), 0 5px 12px rgb(15 23 42 / .08);
}

body[data-page='training'] .training-course-card .badge.blue,
body[data-page='training'] .training-price-card .aigc-badge.blue {
  box-shadow: 0 10px 22px rgb(49 91 239 / .2), 0 5px 12px rgb(15 23 42 / .08);
}

body[data-page='training'] .training-course-card .badge.orange,
body[data-page='training'] .training-price-card .aigc-badge.orange {
  box-shadow: 0 10px 22px rgb(255 138 0 / .2), 0 5px 12px rgb(15 23 42 / .08);
}

body[data-page='training'] .training-price-card .aigc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 56px;
  height: 28px;
  padding: 0 14px;
  margin: 0 0 18px;
  border-radius: 8px;
  background: var(--training-red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

body[data-page='training'] .training-price-card .aigc-badge.blue {
  background: #315bef;
}

body[data-page='training'] .training-price-card .aigc-badge.orange {
  background: #ff8a00;
}

body[data-page='training'] .training-price-card h3 {
  margin-top: 0;
}

body[data-page='training'] .training-coop-card {
  min-height: 390px;
  padding-top: 30px;
  padding-bottom: 34px;
}

body[data-page='training'] .training-coop-card > p:first-of-type {
  margin-top: 12px;
}

body[data-page='training'] .training-coop-card ul {
  margin-top: 18px;
  margin-bottom: 22px;
}

body[data-page='training'] .training-coop-card .mini-btn {
  margin-top: auto;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-card-visual > div > p:first-of-type,
  body[data-page='training'] .training-gain-panel article > p:first-of-type,
  body[data-page='training'] .training-fit-grid .training-card > p:first-of-type,
  body[data-page='training'] .training-course-card > p:first-of-type,
  body[data-page='training'] .training-price-card > p:first-of-type,
  body[data-page='training'] .training-coop-card > p:first-of-type {
    font-size: 16px;
  }
}
/* AI training why-card title size. */
body[data-page='training'] .training-why-grid .training-card-visual h3 {
  font-size: 24px;
  line-height: 1.3;
}
/* AI training subtitle size rollback. */
body[data-page='training'] .training-card-visual > div > p:first-of-type,
body[data-page='training'] .training-gain-panel article > p:first-of-type,
body[data-page='training'] .training-fit-grid .training-card > p:first-of-type,
body[data-page='training'] .training-course-card > p:first-of-type,
body[data-page='training'] .training-price-card > p:first-of-type,
body[data-page='training'] .training-coop-card > p:first-of-type {
  font-size: 15px;
  line-height: 1.7;
}
/* AI training subtitle weight and spacing. */
body[data-page='training'] .training-card-visual > div > p:first-of-type,
body[data-page='training'] .training-gain-panel article > p:first-of-type,
body[data-page='training'] .training-fit-grid .training-card > p:first-of-type,
body[data-page='training'] .training-course-card > p:first-of-type,
body[data-page='training'] .training-price-card > p:first-of-type,
body[data-page='training'] .training-coop-card > p:first-of-type {
  margin-top: 8px;
  font-weight: 400;
}
/* AI training badge radius and why-card visual spacing. */
body[data-page='training'] .training-course-card .badge {
  border-radius: 8px;
}

body[data-page='training'] .training-why-grid .training-card-visual {
  min-height: 400px;
  padding-bottom: 26px;
}

body[data-page='training'] .training-why-grid .training-card-visual img {
  width: 210px;
  height: 168px;
  right: 24px;
  bottom: 18px;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-why-grid .training-card-visual {
    min-height: auto;
  }

  body[data-page='training'] .training-why-grid .training-card-visual img {
    width: 180px;
    height: 144px;
    bottom: 22px;
  }
}
/* AI training latest card refinements. */
body[data-page='training'] .training-why-grid .training-card-visual {
  min-height: 382px;
  padding-bottom: 20px;
}

body[data-page='training'] .training-why-grid .training-card-visual img {
  width: 240px;
  height: 192px;
  right: 18px;
  bottom: 8px;
}

body[data-page='training'] .training-gain-panel article > p:first-of-type {
  margin-top: 4px;
}

body[data-page='training'] .training-gain-panel article > p:nth-of-type(2),
body[data-page='training'] .training-fit-grid .training-card > p:nth-of-type(2) {
  color: #667085;
  font-weight: 400;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-why-grid .training-card-visual img {
    width: 190px;
    height: 152px;
    right: 18px;
    bottom: 16px;
  }
}
/* AI training final typography consistency. */
body[data-page='training'] #why-ai .training-why-grid .training-card-visual h3,
body[data-page='training'] #why-ai .training-why-grid .training-card-visual:nth-child(3) h3 {
  font-size: 24px;
  line-height: 1.3;
  white-space: nowrap;
}

body[data-page='training'] #why-ai .training-why-grid .training-card-visual h3 span,
body[data-page='training'] #why-ai .training-why-grid .training-card-visual:nth-child(3) h3 span {
  font-size: inherit;
  line-height: inherit;
}

body[data-page='training'] .training-gain-panel article > p:nth-of-type(2),
body[data-page='training'] .training-fit-grid .training-card > p:nth-of-type(2) {
  color: #475467;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}
/* AI training course badge height match AIGC labels. */
body[data-page='training'] .training-course-card .badge {
  height: 28px;
  min-width: 56px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* AI tools page redesign */
body[data-page='tools'] {
  --tools-red: #e6001c;
  --tools-ink: #07111f;
  --tools-muted: #667085;
  --tools-line: #d9e3f0;
  --tools-soft: #f3f6fb;
  --tools-content: min(1520px, calc(100% - 96px));
  background: #f3f6fa;
}

body[data-page='tools'] .container,
body[data-page='tools'] .container-sm {
  width: var(--tools-content);
}

body[data-page='tools'] .site {
  background: #fff;
}

body[data-page='tools'] .tools-hero {
  position: relative;
  min-height: 100dvh;
  padding: clamp(124px, 13vh, 154px) 0 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 255 255 / .72) 0%, rgb(255 255 255 / .2) 44%, rgb(225 232 244 / .42) 100%),
    repeating-linear-gradient(112deg, rgb(255 255 255 / .34) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

body[data-page='tools'] .tools-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(248 251 255 / .98) 0%, rgb(248 251 255 / .9) 34%, rgb(248 251 255 / .34) 68%, rgb(248 251 255 / .18) 100%);
  pointer-events: none;
}

body[data-page='tools'] .tools-hero-grid,
body[data-page='tools'] .tools-metric-strip {
  position: relative;
  z-index: 1;
}

body[data-page='tools'] .tools-hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 780px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

body[data-page='tools'] .tools-hero-copy h1 {
  max-width: 850px;
  margin: 0;
  color: var(--tools-ink);
  font-size: clamp(50px, 4.35vw, 72px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 950;
}

body[data-page='tools'] .tools-hero-copy h1 span,
body[data-page='tools'] .section-title h2 span,
body[data-page='tools'] .tools-final-cta h2 span {
  color: var(--tools-red);
}

body[data-page='tools'] .tools-hero-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #4a5568;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.82;
  font-weight: 650;
}

body[data-page='tools'] .tools-hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 30px;
}

body[data-page='tools'] .tools-hero-actions .btn,
body[data-page='tools'] .tools-hero-actions .ghost-btn {
  min-height: 52px;
}

body[data-page='tools'] .tools-hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

body[data-page='tools'] .tools-hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 4% 8% 6%;
  border: 1px solid rgb(214 224 238 / .9);
  border-radius: 28px;
  background: rgb(255 255 255 / .78);
  box-shadow: 0 24px 70px rgb(10 24 46 / .11);
}

body[data-page='tools'] .tools-hero-visual img {
  position: relative;
  width: min(820px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 52px rgb(10 24 46 / .14);
}

body[data-page='tools'] .tools-metric-strip {
  flex: 0 0 auto;
  margin-top: clamp(28px, 5vh, 52px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgb(214 224 238 / .86);
  border-radius: 22px;
  background: rgb(255 255 255 / .97);
  box-shadow: 0 18px 54px rgb(28 42 68 / .1);
  overflow: hidden;
}

body[data-page='tools'] .tools-metric-strip article {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-right: 1px solid var(--tools-line);
}

body[data-page='tools'] .tools-metric-strip article:last-child {
  border-right: 0;
}

body[data-page='tools'] .tools-metric-strip iconify-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgb(230 0 28 / .12);
  border-radius: 14px;
  background: rgb(255 255 255 / .92);
  color: var(--tools-red);
  box-shadow: 0 12px 28px rgb(10 24 46 / .08);
}

body[data-page='tools'] .tools-metric-strip strong {
  display: block;
  color: var(--tools-ink);
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1;
  font-weight: 950;
}

body[data-page='tools'] .tools-metric-strip span {
  display: block;
  margin-top: 5px;
  color: #66738a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

body[data-page='tools'] .tools-section {
  padding: 112px 0;
  background: #fff;
}

body[data-page='tools'] .tools-soft {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .72) 0%, rgb(255 255 255 / .18) 46%, rgb(230 236 247 / .38) 100%),
    repeating-linear-gradient(112deg, rgb(255 255 255 / .36) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #f8fbff 0%, var(--tools-soft) 100%);
}

body[data-page='tools'] .section-title {
  margin-bottom: 54px;
}

body[data-page='tools'] .section-title h2 {
  color: var(--tools-ink);
  font-size: clamp(36px, 3.3vw, 56px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 950;
}

body[data-page='tools'] .section-title p {
  max-width: 760px;
  color: var(--tools-muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

body[data-page='tools'] .tools-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

body[data-page='tools'] .tools-problem-card,
body[data-page='tools'] .tools-app-card,
body[data-page='tools'] .tools-scenario-grid article,
body[data-page='tools'] .tools-process-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(207 219 235 / .9);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgb(255 255 255 / .98), rgb(255 255 255 / .84)),
    linear-gradient(180deg, rgb(230 0 28 / .05), transparent 38%);
  box-shadow: 0 18px 46px rgb(35 51 79 / .08);
}

body[data-page='tools'] .tools-problem-card {
  min-height: 330px;
  padding: 28px 24px 26px;
}

body[data-page='tools'] .tools-problem-card img {
  width: 118px;
  height: 96px;
  object-fit: contain;
  margin-left: auto;
  filter: drop-shadow(0 16px 24px rgb(10 24 46 / .13));
}

body[data-page='tools'] .tools-problem-card iconify-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 9px;
  border-radius: 12px;
  background: #fff4f6;
  color: var(--tools-red);
  box-shadow: 0 10px 22px rgb(230 0 28 / .1);
}

body[data-page='tools'] .tools-problem-card h3,
body[data-page='tools'] .tools-app-card h3,
body[data-page='tools'] .tools-scenario-grid h3,
body[data-page='tools'] .tools-process-list h3 {
  margin: 16px 0 0;
  color: var(--tools-ink);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 950;
}

body[data-page='tools'] .tools-problem-card p,
body[data-page='tools'] .tools-app-card p,
body[data-page='tools'] .tools-scenario-grid p,
body[data-page='tools'] .tools-process-list p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 400;
}

body[data-page='tools'] .tools-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body[data-page='tools'] .tools-app-card {
  min-height: 328px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
}

body[data-page='tools'] .tools-app-card-large {
  grid-column: span 2;
  min-height: 328px;
  padding: 30px;
}

body[data-page='tools'] .tools-app-card-dark {
  color: #fff;
  border-color: rgb(255 255 255 / .12);
  background:
    linear-gradient(135deg, #07111f 0%, #0c1d31 58%, #470711 100%);
  box-shadow: 0 24px 70px rgb(10 24 46 / .16);
}

body[data-page='tools'] .tools-card-icon {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body[data-page='tools'] .tools-app-card-large .tools-card-icon {
  height: 132px;
}

body[data-page='tools'] .tools-card-icon img {
  width: 132px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgb(10 24 46 / .14));
}

body[data-page='tools'] .tools-app-card-large .tools-card-icon img {
  width: 170px;
  height: 132px;
}

body[data-page='tools'] .tools-app-card > span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  background: #fff4f6;
  color: var(--tools-red);
  font-size: 13px;
  font-weight: 900;
}

body[data-page='tools'] .tools-app-card > span iconify-icon {
  font-size: 15px;
}

body[data-page='tools'] .tools-app-card-dark > span {
  background: rgb(255 255 255 / .12);
  color: #fff;
}

body[data-page='tools'] .tools-app-card-dark h3,
body[data-page='tools'] .tools-app-card-dark p {
  color: #fff;
}

body[data-page='tools'] .tools-app-card-dark p {
  color: #d7e0ee;
}

body[data-page='tools'] .tools-app-card .mini-btn {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
}

body[data-page='tools'] .tools-process-panel {
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

body[data-page='tools'] .tools-process-copy {
  padding: 40px 34px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #07111f 0%, #0c1d31 58%, #470711 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgb(10 24 46 / .16);
}

body[data-page='tools'] .tools-process-copy .section-title {
  margin: 0 0 28px;
  text-align: left;
}

body[data-page='tools'] .tools-process-copy h2 {
  color: #fff;
  font-size: clamp(32px, 2.7vw, 44px);
}

body[data-page='tools'] .tools-process-copy p {
  color: #d7e0ee;
  margin-left: 0;
  margin-right: 0;
}

body[data-page='tools'] .tools-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body[data-page='tools'] .tools-process-list article {
  min-height: 230px;
  padding: 24px 22px;
}

body[data-page='tools'] .tools-process-list strong {
  color: rgb(230 0 28 / .18);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

body[data-page='tools'] .tools-process-list iconify-icon {
  position: absolute;
  right: 22px;
  top: 24px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 14px;
  background: #fff4f6;
  color: var(--tools-red);
}

body[data-page='tools'] .tools-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

body[data-page='tools'] .tools-scenario-grid article {
  min-height: 300px;
  padding: 28px 24px;
}

body[data-page='tools'] .tools-scenario-grid article > div {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body[data-page='tools'] .tools-scenario-grid img {
  width: 132px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgb(10 24 46 / .14));
}

body[data-page='tools'] .tools-delivery-section {
  padding-top: 0;
}

body[data-page='tools'] .tools-delivery-panel {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(420px, 680px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 52px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgb(7 17 31 / .97) 0%, rgb(7 17 31 / .88) 44%, rgb(7 17 31 / .45) 72%, rgb(7 17 31 / .22) 100%),
    url("/assets/home-dark-ai-solution-banner-image2-DN08hZc5.webp") center / cover no-repeat;
  box-shadow: 0 24px 70px rgb(10 24 46 / .18);
}

body[data-page='tools'] .tools-delivery-panel .section-title {
  margin: 0 0 28px;
  text-align: left;
}

body[data-page='tools'] .tools-delivery-panel h2 {
  color: #fff;
  font-size: clamp(34px, 3.1vw, 50px);
}

body[data-page='tools'] .tools-delivery-panel p {
  color: #d7e0ee;
  margin-left: 0;
  margin-right: 0;
}

body[data-page='tools'] .tools-delivery-panel > img {
  width: 100%;
  max-height: 280px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 46px rgb(0 0 0 / .24);
}

body[data-page='tools'] .tools-delivery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body[data-page='tools'] .tools-delivery-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 10px;
  background: rgb(255 255 255 / .1);
  color: #fff;
  font-weight: 800;
}

body[data-page='tools'] .tools-delivery-tags iconify-icon {
  color: #ff4257;
  font-size: 18px;
}

body[data-page='tools'] .tools-cta-section {
  padding-top: 0;
  background: #fff;
}

body[data-page='tools'] .tools-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 46px;
  border: 1px solid rgb(207 219 235 / .9);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / .96), rgb(255 255 255 / .78)),
    linear-gradient(180deg, rgb(230 0 28 / .06), transparent 48%);
  box-shadow: 0 18px 46px rgb(35 51 79 / .08);
}

body[data-page='tools'] .tools-final-cta h2 {
  max-width: 860px;
  margin: 0;
  color: var(--tools-ink);
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.2;
  font-weight: 950;
}

body[data-page='tools'] .tools-final-cta p {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--tools-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

body[data-page='tools'] .tools-final-cta .btn {
  min-width: 176px;
  min-height: 52px;
}

body[data-page='tools'] .modal-card .btn {
  margin-top: 8px;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-problem-card,
  body[data-page='tools'] .tools-app-card,
  body[data-page='tools'] .tools-scenario-grid article,
  body[data-page='tools'] .tools-process-list article {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  }

  body[data-page='tools'] .tools-problem-card:hover,
  body[data-page='tools'] .tools-app-card:hover,
  body[data-page='tools'] .tools-scenario-grid article:hover,
  body[data-page='tools'] .tools-process-list article:hover {
    transform: translateY(-5px);
    border-color: rgb(230 0 28 / .22);
    box-shadow: 0 24px 62px rgb(10 24 46 / .14);
  }

  body[data-page='tools'] .tools-app-card:hover .mini-btn {
    color: #fff;
    background: var(--tools-red);
    border-color: var(--tools-red);
    box-shadow: 0 14px 26px rgb(230 0 28 / .22);
  }

  body[data-page='tools'] .tools-card-icon img,
  body[data-page='tools'] .tools-scenario-grid img,
  body[data-page='tools'] .tools-problem-card img {
    transition: transform .24s ease;
  }

  body[data-page='tools'] .tools-app-card:hover .tools-card-icon img,
  body[data-page='tools'] .tools-scenario-grid article:hover img,
  body[data-page='tools'] .tools-problem-card:hover img {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 1280px) {
  body[data-page='tools'] {
    --tools-content: min(1120px, calc(100% - 40px));
  }

  body[data-page='tools'] .tools-hero-grid,
  body[data-page='tools'] .tools-process-panel,
  body[data-page='tools'] .tools-delivery-panel {
    grid-template-columns: 1fr;
  }

  body[data-page='tools'] .tools-hero-visual {
    min-height: 380px;
  }

  body[data-page='tools'] .tools-metric-strip,
  body[data-page='tools'] .tools-problem-grid,
  body[data-page='tools'] .tools-card-grid,
  body[data-page='tools'] .tools-scenario-grid,
  body[data-page='tools'] .tools-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='tools'] .tools-metric-strip article:nth-child(2n) {
    border-right: 0;
  }

  body[data-page='tools'] .tools-app-card-large {
    grid-column: span 2;
  }

  body[data-page='tools'] .tools-delivery-panel > img {
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  body[data-page='tools'] {
    --tools-content: calc(100% - 28px);
  }

  body[data-page='tools'] .tools-hero {
    min-height: auto;
    padding: 104px 0 42px;
    justify-content: flex-start;
  }

  body[data-page='tools'] .tools-hero-grid,
  body[data-page='tools'] .tools-metric-strip,
  body[data-page='tools'] .tools-problem-grid,
  body[data-page='tools'] .tools-card-grid,
  body[data-page='tools'] .tools-scenario-grid,
  body[data-page='tools'] .tools-process-list,
  body[data-page='tools'] .tools-final-cta {
    grid-template-columns: 1fr;
  }

  body[data-page='tools'] .tools-hero-copy h1 {
    font-size: 36px;
    line-height: 1.18;
  }

  body[data-page='tools'] .tools-hero-copy p {
    font-size: 14px;
    line-height: 1.72;
  }

  body[data-page='tools'] .tools-hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  body[data-page='tools'] .tools-hero-actions .btn,
  body[data-page='tools'] .tools-hero-actions .ghost-btn {
    width: 100%;
  }

  body[data-page='tools'] .tools-hero-visual {
    min-height: auto;
  }

  body[data-page='tools'] .tools-hero-visual::before {
    inset: 8% 2%;
    border-radius: 20px;
  }

  body[data-page='tools'] .tools-hero-visual img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  body[data-page='tools'] .tools-metric-strip article,
  body[data-page='tools'] .tools-metric-strip article:nth-child(2n) {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--tools-line);
    padding: 18px 20px;
  }

  body[data-page='tools'] .tools-metric-strip article:last-child {
    border-bottom: 0;
  }

  body[data-page='tools'] .tools-section {
    padding: 76px 0;
  }

  body[data-page='tools'] .section-title {
    margin-bottom: 34px;
  }

  body[data-page='tools'] .section-title h2 {
    font-size: 30px;
  }

  body[data-page='tools'] .section-title p {
    font-size: 16px;
  }

  body[data-page='tools'] .tools-problem-card,
  body[data-page='tools'] .tools-app-card,
  body[data-page='tools'] .tools-scenario-grid article,
  body[data-page='tools'] .tools-process-list article {
    min-height: auto;
    padding: 24px 20px;
  }

  body[data-page='tools'] .tools-app-card-large {
    grid-column: auto;
  }

  body[data-page='tools'] .tools-card-icon,
  body[data-page='tools'] .tools-app-card-large .tools-card-icon,
  body[data-page='tools'] .tools-scenario-grid article > div {
    height: 92px;
  }

  body[data-page='tools'] .tools-card-icon img,
  body[data-page='tools'] .tools-app-card-large .tools-card-icon img,
  body[data-page='tools'] .tools-scenario-grid img,
  body[data-page='tools'] .tools-problem-card img {
    width: 108px;
    height: 88px;
  }

  body[data-page='tools'] .tools-process-copy,
  body[data-page='tools'] .tools-delivery-panel,
  body[data-page='tools'] .tools-final-cta {
    padding: 30px 22px;
    border-radius: 18px;
  }

  body[data-page='tools'] .tools-delivery-panel > img {
    max-height: 220px;
  }

  body[data-page='tools'] .tools-delivery-tags span {
    width: 100%;
  }

  body[data-page='tools'] .tools-final-cta .btn {
    width: 100%;
  }
}

/* AI tools browser-comment refinements */
body[data-page='tools'] .tools-hero {
  padding: clamp(118px, 13vh, 150px) 0 clamp(38px, 6vh, 62px);
  background:
    linear-gradient(90deg, rgb(248 251 255 / .96) 0%, rgb(248 251 255 / .88) 33%, rgb(248 251 255 / .24) 67%, rgb(248 251 255 / .08) 100%),
    linear-gradient(180deg, rgb(248 251 255 / .12) 0%, rgb(238 243 250 / .86) 100%),
    url("/assets/ai-tools-full-bleed-hero-image2-CVlCEEpt.webp") center / cover no-repeat;
}

body[data-page='tools'] .tools-hero::before {
  background: linear-gradient(90deg, rgb(248 251 255 / .98) 0%, rgb(248 251 255 / .9) 34%, rgb(248 251 255 / .28) 64%, rgb(248 251 255 / .02) 100%);
}

body[data-page='tools'] .tools-hero-grid {
  grid-template-columns: minmax(560px, 860px) minmax(0, 1fr);
  min-height: 500px;
}

body[data-page='tools'] .tools-hero-copy {
  max-width: 900px;
}

body[data-page='tools'] .tools-hero-copy h1 {
  max-width: 900px;
}

body[data-page='tools'] .tools-hero-copy p {
  max-width: 770px;
}

body[data-page='tools'] .tools-hero-visual {
  display: none;
}

body[data-page='tools'] .tools-metric-strip {
  margin-top: clamp(28px, 5vh, 56px);
}

body[data-page='tools'] .tools-problem-card {
  min-height: 360px;
  padding: 34px 28px 30px;
}

body[data-page='tools'] .tools-problem-card > iconify-icon {
  display: none !important;
}

body[data-page='tools'] .tools-problem-card img {
  width: 164px;
  height: 132px;
  margin: 0 auto 26px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgb(10 24 46 / .14));
}

body[data-page='tools'] .tools-problem-card h3 {
  margin-top: 0;
}

body[data-page='tools'] .tools-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

body[data-page='tools'] .tools-app-card-large {
  grid-column: span 2;
}

body[data-page='tools'] .tools-card-icon {
  justify-content: center;
  height: 126px;
}

body[data-page='tools'] .tools-app-card-large .tools-card-icon {
  height: 144px;
}

body[data-page='tools'] .tools-card-icon img {
  width: 150px;
  height: 122px;
}

body[data-page='tools'] .tools-app-card-large .tools-card-icon img {
  width: 184px;
  height: 146px;
}

body[data-page='tools'] .tools-process-copy {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(7 17 31 / .96) 0%, rgb(10 29 50 / .9) 52%, rgb(71 7 17 / .72) 100%),
    url("/assets/dark-process-banner-image2-Cf53Q0L4.webp") center / cover no-repeat;
}

body[data-page='tools'] .tools-process-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 16%, rgb(230 0 28 / .32), transparent 28%),
    linear-gradient(135deg, transparent 0 62%, rgb(230 0 28 / .34) 62.2%, transparent 63.2%);
  pointer-events: none;
}

body[data-page='tools'] .tools-process-copy .section-title,
body[data-page='tools'] .tools-process-copy .btn {
  position: relative;
  z-index: 1;
}

body[data-page='tools'] .tools-scenario-grid article {
  min-height: 330px;
  padding: 30px 24px 28px;
}

body[data-page='tools'] .tools-scenario-grid article > div {
  height: 156px;
  justify-content: center;
}

body[data-page='tools'] .tools-scenario-grid img {
  width: 178px;
  height: 142px;
  margin: 0 auto;
}

body[data-page='tools'] .tools-scenario-grid h3 {
  margin-top: 18px;
}

@media (max-width: 1280px) {
  body[data-page='tools'] .tools-hero-grid {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  body[data-page='tools'] .tools-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='tools'] .tools-app-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  body[data-page='tools'] .tools-hero {
    min-height: 100dvh;
    background-position: 58% center;
  }

  body[data-page='tools'] .tools-hero-grid {
    min-height: 440px;
  }

  body[data-page='tools'] .tools-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='tools'] .tools-app-card-large {
    grid-column: auto;
  }

  body[data-page='tools'] .tools-problem-card img,
  body[data-page='tools'] .tools-card-icon img,
  body[data-page='tools'] .tools-app-card-large .tools-card-icon img,
  body[data-page='tools'] .tools-scenario-grid img {
    width: 150px;
    height: 120px;
  }

  body[data-page='tools'] .tools-problem-card,
  body[data-page='tools'] .tools-scenario-grid article {
    text-align: left;
  }

  body[data-page='tools'] .tools-card-icon,
  body[data-page='tools'] .tools-app-card-large .tools-card-icon,
  body[data-page='tools'] .tools-scenario-grid article > div {
    height: 128px;
  }
}

/* AI tools latest browser-comment adjustments */
body[data-page='tools'] .tools-hero {
  min-height: 100dvh;
  padding: clamp(112px, 13vh, 148px) 0 clamp(42px, 6vh, 64px) !important;
  background: url("/assets/ai-tools-full-bleed-hero-image2-CVlCEEpt.webp") center / cover no-repeat !important;
}

body[data-page='tools'] .tools-hero::before {
  display: none !important;
  content: none !important;
}

body[data-page='tools'] .tools-hero-grid {
  min-height: clamp(470px, 58vh, 610px);
  align-items: center;
}

body[data-page='tools'] .tools-hero-visual {
  display: none !important;
}

body[data-page='tools'] .tools-hero-copy h1 {
  max-width: 900px;
  font-size: clamp(50px, 4.35vw, 72px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body[data-page='tools'] .tools-hero-copy p {
  max-width: 760px;
  color: #667085 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 600 !important;
}

body[data-page='tools'] .tools-metric-strip {
  margin-top: clamp(28px, 5vh, 56px) !important;
  margin-bottom: 0 !important;
}

body[data-page='tools'] .section-title {
  margin-bottom: 58px !important;
}

body[data-page='tools'] .section-title h2 {
  font-size: clamp(36px, 3.3vw, 56px) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

body[data-page='tools'] .section-title p {
  max-width: 760px;
  color: #667085 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
}

body[data-page='tools'] .tools-problem-card {
  display: flex !important;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

body[data-page='tools'] .tools-problem-card img {
  width: 166px;
  height: 134px;
  margin: 0 auto 24px !important;
}

body[data-page='tools'] .tools-problem-card h3,
body[data-page='tools'] .tools-scenario-grid h3 {
  margin: 0 !important;
  color: #101828;
  font-size: 22px;
  line-height: 1.35;
}

body[data-page='tools'] .tools-problem-card p,
body[data-page='tools'] .tools-scenario-grid p,
body[data-page='tools'] .tools-app-card p,
body[data-page='tools'] .tools-process-list p {
  color: #667085 !important;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 400;
}

body[data-page='tools'] .tools-problem-card p,
body[data-page='tools'] .tools-scenario-grid p {
  max-width: 280px;
  margin: 12px auto 0 !important;
}

body[data-page='tools'] .tools-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
}

body[data-page='tools'] .tools-app-card,
body[data-page='tools'] .tools-app-card-large {
  grid-column: auto !important;
  min-height: 352px;
  padding: 24px 22px 22px !important;
}

body[data-page='tools'] .tools-app-card-large .tools-card-icon,
body[data-page='tools'] .tools-card-icon {
  height: 126px !important;
}

body[data-page='tools'] .tools-app-card-large .tools-card-icon img,
body[data-page='tools'] .tools-card-icon img {
  width: 150px !important;
  height: 122px !important;
}

body[data-page='tools'] .tools-process-copy {
  background: url("/assets/dark-process-banner-image2-Cf53Q0L4.webp") center / cover no-repeat !important;
}

body[data-page='tools'] .tools-process-copy::before {
  display: none !important;
  content: none !important;
}

body[data-page='tools'] .tools-process-copy .section-title,
body[data-page='tools'] .tools-process-copy .btn {
  position: relative;
  z-index: 1;
}

body[data-page='tools'] .tools-process-copy h2,
body[data-page='tools'] .tools-process-copy p {
  text-shadow: 0 10px 24px rgb(0 0 0 / .28);
}

body[data-page='tools'] .tools-scenario-grid article {
  display: flex !important;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

body[data-page='tools'] .tools-scenario-grid article > div {
  height: auto !important;
  margin: 0 auto 24px;
  justify-content: center;
}

body[data-page='tools'] .tools-scenario-grid img {
  width: 178px !important;
  height: 142px !important;
  margin: 0 auto !important;
}

body[data-page='tools'] .tools-delivery-panel {
  overflow: hidden;
  grid-template-columns: minmax(360px, 560px) minmax(0, 1fr) !important;
  align-items: center;
  background: #07111f !important;
}

body[data-page='tools'] .tools-delivery-panel::before,
body[data-page='tools'] .tools-delivery-panel::after {
  display: none !important;
  content: none !important;
}

body[data-page='tools'] .tools-delivery-panel > img {
  width: 100%;
  height: 326px;
  max-height: none !important;
  border-radius: 18px;
  object-fit: cover;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 28px 70px rgb(0 0 0 / .34);
}

@media (max-width: 1280px) {
  body[data-page='tools'] .tools-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page='tools'] .tools-app-card-large {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  body[data-page='tools'] .tools-hero {
    background-position: 57% center !important;
  }

  body[data-page='tools'] .tools-hero-copy h1 {
    font-size: 42px !important;
  }

  body[data-page='tools'] .tools-hero-copy p,
  body[data-page='tools'] .section-title p {
    font-size: 16px !important;
  }

  body[data-page='tools'] .section-title h2 {
    font-size: 32px !important;
  }

  body[data-page='tools'] .tools-card-grid,
  body[data-page='tools'] .tools-delivery-panel {
    grid-template-columns: 1fr !important;
  }

  body[data-page='tools'] .tools-problem-card,
  body[data-page='tools'] .tools-scenario-grid article {
    text-align: center !important;
  }

  body[data-page='tools'] .tools-delivery-panel > img {
    height: 240px;
  }
}

/* AI tools browser-comment adjustments round 3 */
body[data-page='tools'] .tools-hero {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  padding: clamp(96px, 11vh, 132px) 0 54px !important;
  background: url("/assets/ai-tools-hero-clean-left-image2-BdeowdXg.webp") center / cover no-repeat !important;
}

body[data-page='tools'] .tools-hero-grid {
  flex: 1 1 auto;
  min-height: 0 !important;
  align-items: center;
}

body[data-page='tools'] .tools-hero-copy {
  max-width: 780px;
}

body[data-page='tools'] .tools-hero-copy h1 {
  max-width: 780px;
}

body[data-page='tools'] .tools-hero-copy p {
  max-width: 660px;
}

body[data-page='tools'] .tools-metric-strip {
  flex: 0 0 auto;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body[data-page='tools'] .tools-app-card {
  display: flex !important;
  min-height: 352px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

body[data-page='tools'] .tools-app-card-dark {
  background: #fff !important;
  border-color: #cbd9ea !important;
  color: #101828 !important;
  box-shadow: 0 18px 46px rgb(12 30 60 / .08) !important;
}

body[data-page='tools'] .tools-app-card-dark h3,
body[data-page='tools'] .tools-app-card-dark p {
  color: inherit !important;
}

body[data-page='tools'] .tools-app-card-dark p,
body[data-page='tools'] .tools-app-card-dark .mini-btn {
  color: #667085 !important;
}

body[data-page='tools'] .tools-process-copy {
  min-height: 400px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 34px !important;
  background: url("/assets/ai-tools-process-premium-space-image2-Dky5lSNz.webp") center / cover no-repeat !important;
}

body[data-page='tools'] .tools-process-copy .section-title {
  max-width: 520px;
}

body[data-page='tools'] .tools-process-copy h2,
body[data-page='tools'] .tools-process-copy p {
  text-shadow: 0 14px 30px rgb(0 0 0 / .34);
}

body[data-page='tools'] .tools-delivery-panel {
  min-height: 380px;
  grid-template-columns: minmax(360px, 570px) minmax(0, 1fr) !important;
  padding: 54px 46px !important;
  background: url("/assets/ai-tools-delivery-full-bleed-image2-BWhrKlg8.webp") center / cover no-repeat !important;
}

body[data-page='tools'] .tools-delivery-panel > img {
  display: none !important;
}

body[data-page='tools'] .tools-delivery-panel .section-title {
  max-width: 540px;
}

body[data-page='tools'] .tools-delivery-panel h2,
body[data-page='tools'] .tools-delivery-panel p {
  text-shadow: 0 16px 34px rgb(0 0 0 / .42);
}

body[data-page='tools'] .tools-delivery-tags {
  max-width: 520px;
}

body[data-page='tools'] .tools-final-cta .btn {
  scroll-margin-top: 110px;
}

@media (max-width: 760px) {
  body[data-page='tools'] .tools-hero {
    padding: 92px 0 54px !important;
    background-position: 62% center !important;
  }

  body[data-page='tools'] .tools-hero-grid {
    min-height: 560px !important;
  }

  body[data-page='tools'] .tools-app-card {
    min-height: 330px;
  }

  body[data-page='tools'] .tools-process-copy,
  body[data-page='tools'] .tools-delivery-panel {
    min-height: 420px;
    padding: 34px 24px !important;
  }
}

body[data-page='tools'] #business-form {
  scroll-margin-top: 110px;
}


/* AI tools browser-comment adjustments round 4 */
@media (min-width: 761px) {
  body[data-page='tools'] .tools-hero-copy,
  body[data-page='tools'] .tools-hero-copy h1 {
    max-width: 900px !important;
  }

  body[data-page='tools'] .tools-hero-copy h1 {
    font-size: clamp(55px, 5.22vw, 77px) !important;
    white-space: normal !important;
  }
}

body[data-page='tools'] .section-title h2 {
  font-size: clamp(36px, 3.3vw, 56px) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(6) {
  align-items: center !important;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(6) .tools-card-icon {
  justify-content: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(6) p {
  max-width: 260px;
  margin-left: auto !important;
  margin-right: auto !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(6) .mini-btn {
  align-self: stretch;
}

body[data-page='tools'] .tools-process-copy .section-title h2,
body[data-page='tools'] .tools-process-copy .section-title h2 span,
body[data-page='tools'] .tools-delivery-panel .section-title h2,
body[data-page='tools'] .tools-delivery-panel .section-title h2 span {
  color: #fff !important;
}

body[data-page='tools'] .tools-process-copy .section-title p,
body[data-page='tools'] .tools-delivery-panel .section-title p {
  color: rgb(255 255 255 / .6) !important;
}

body[data-page='tools'] .tools-delivery-tags iconify-icon {
  color: #fff !important;
}

/* AI tools browser-comment adjustments round 5 */
body[data-page='tools'] .tools-hero-copy h1 {
  max-width: 960px !important;
}

body[data-page='tools'] .tools-hero-break {
  display: block;
}

body[data-page='tools'] .section-title h2 {
  font-size: clamp(26px, 2.38vw, 41px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body[data-page='tools'] .tools-final-cta h2 {
  font-size: clamp(26px, 2.38vw, 41px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(2) {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(2) .tools-card-icon {
  justify-content: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(2) h3 {
  width: 100%;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(2) p {
  max-width: 260px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card:nth-child(2) .mini-btn {
  align-self: stretch;
}

/* AI tools browser-comment adjustments round 6 */
body[data-page='tools'] .tools-card-grid .tools-app-card {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card .tools-card-icon,
body[data-page='tools'] .tools-card-grid .tools-app-card-large .tools-card-icon {
  justify-content: center !important;
  margin-left: auto;
  margin-right: auto;
}

body[data-page='tools'] .tools-card-grid .tools-app-card > span {
  align-self: center !important;
  justify-content: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card h3 {
  width: 100%;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card p {
  max-width: 275px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card .mini-btn {
  align-self: stretch !important;
}

/* AI tools browser-comment adjustments round 7 */
body[data-page='tools'] .tools-process-copy .section-title,
body[data-page='tools'] .tools-process-copy .btn {
  transform: translateY(10px);
}

/* AI tools browser-comment adjustments round 8 */
body[data-page='tools'] .tools-metric-strip strong {
  font-size: 28px !important;
  line-height: 1.12 !important;
}

body[data-page='tools'] .tools-card-grid + .tools-final-cta {
  margin-top: 56px !important;
}

body[data-page='tools'] .tools-card-grid .tools-app-card .mini-btn {
  transform: translateY(5px);
}

body[data-page='tools'] .tools-process-copy .section-title,
body[data-page='tools'] .tools-process-copy .btn {
  transform: translateY(6px) !important;
}

body[data-page='tools'] .tools-process-copy .section-title {
  margin-bottom: 20px !important;
}

body[data-page='tools'] .tools-process-copy .btn {
  margin-top: 0 !important;
}
/* AI tools browser-comment adjustments round 9 */
body[data-page='tools'] .tools-scroll-cue {
  width: 48px;
  height: 64px;
  margin-top: 38px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgb(230 0 28 / .16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(255 255 255 / .82), rgb(255 255 255 / .54));
  color: var(--tools-red);
  box-shadow: 0 18px 42px rgb(10 24 46 / .1), inset 0 1px 0 rgb(255 255 255 / .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-page='tools'] .tools-scroll-cue span {
  width: 1px;
  height: 18px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgb(230 0 28 / .72));
}

body[data-page='tools'] .tools-scroll-cue iconify-icon {
  font-size: 18px;
}

body[data-page='tools'] .tools-card-grid .tools-app-card .mini-btn {
  text-decoration: none;
}

body[data-page='tools'] .tools-process-copy,
body[data-page='tools'] .tools-delivery-panel {
  border: 1px solid rgb(0 128 255 / .28);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    animation: toolsCueFloat 2.6s ease-in-out infinite;
  }

  body[data-page='tools'] .tools-scroll-cue:hover {
    transform: translateY(3px);
    border-color: rgb(230 0 28 / .3);
    box-shadow: 0 22px 52px rgb(230 0 28 / .16), inset 0 1px 0 rgb(255 255 255 / .92);
  }

  body[data-page='tools'] .tools-process-copy:hover,
  body[data-page='tools'] .tools-delivery-panel:hover {
    transform: translateY(-6px);
    border-color: rgb(230 0 28 / .34);
    box-shadow: 0 30px 76px rgb(10 24 46 / .22), 0 0 0 1px rgb(255 255 255 / .28) inset;
    filter: saturate(1.06) contrast(1.02);
  }
}

@keyframes toolsCueFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 760px) {
  body[data-page='tools'] .tools-scroll-cue {
    display: none;
  }
}
/* AI training browser-comment adjustments round 1 */
body[data-page='training'] .training-hero-metrics {
  margin-bottom: 54px !important;
}

body[data-page='training'] .training-hero-metrics > div {
  column-gap: 20px !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

body[data-page='training'] .training-hero-metrics p {
  margin-top: 10px !important;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-hero-metrics {
    margin-bottom: 54px !important;
  }

  body[data-page='training'] .training-hero-metrics > div {
    column-gap: 18px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
/* AI tools browser-comment adjustments round 11 */
body[data-page='tools'] .tools-hero-actions .btn-icon,
body[data-page='tools'] .tools-card-grid .mini-btn .btn-icon,
body[data-page='tools'] .tools-process-copy .btn-icon,
body[data-page='tools'] .tools-final-cta .btn-icon {
  display: inline-flex;
  margin-left: 8px;
  font-size: 16px;
  transition: transform .22s ease;
}

body[data-page='tools'] .tools-hero-actions a:hover .btn-icon,
body[data-page='tools'] .tools-card-grid .mini-btn:hover .btn-icon,
body[data-page='tools'] .tools-process-copy .btn:hover .btn-icon,
body[data-page='tools'] .tools-final-cta .btn:hover .btn-icon {
  transform: translateX(3px);
}
/* AI tools browser-comment adjustments round 12 */
body[data-page='tools'] #tools-problems {
  scroll-margin-top: 92px;
}

body[data-page='tools'] .tools-scroll-cue {
  position: relative;
  width: 58px !important;
  height: 78px !important;
  margin-top: 42px !important;
  isolation: isolate;
  gap: 0 !important;
  border-color: rgb(255 255 255 / .72) !important;
  background:
    radial-gradient(circle at 50% 15%, rgb(255 255 255 / .95), rgb(255 255 255 / .34) 45%, rgb(255 255 255 / .12) 100%),
    linear-gradient(180deg, rgb(255 255 255 / .78), rgb(231 239 250 / .38)) !important;
  box-shadow:
    0 24px 56px rgb(10 24 46 / .14),
    0 8px 24px rgb(230 0 28 / .1),
    inset 0 1px 0 rgb(255 255 255 / .96),
    inset 0 -1px 0 rgb(230 0 28 / .12) !important;
  color: var(--tools-red) !important;
  text-decoration: none;
}

body[data-page='tools'] .tools-scroll-cue::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgb(230 0 28 / .12);
  background: linear-gradient(180deg, rgb(255 255 255 / .38), transparent 62%);
  pointer-events: none;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-line {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 1px !important;
  height: 34px !important;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(230 0 28 / 0), rgb(230 0 28 / .62), rgb(230 0 28 / 0)) !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 6px !important;
  height: 6px !important;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--tools-red) !important;
  box-shadow: 0 0 0 5px rgb(230 0 28 / .1), 0 0 18px rgb(230 0 28 / .38);
}

body[data-page='tools'] .tools-scroll-cue iconify-icon {
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  font-size: 20px !important;
  filter: drop-shadow(0 8px 14px rgb(230 0 28 / .18));
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue {
    animation: toolsCueBreath 3.2s ease-in-out infinite !important;
  }

  body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
    animation: toolsCueDot 2.1s ease-in-out infinite;
  }

  body[data-page='tools'] .tools-scroll-cue:hover {
    transform: translateY(4px) !important;
    border-color: rgb(230 0 28 / .24) !important;
    box-shadow:
      0 28px 68px rgb(10 24 46 / .18),
      0 14px 32px rgb(230 0 28 / .16),
      inset 0 1px 0 rgb(255 255 255 / .96) !important;
  }
}

@keyframes toolsCueBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes toolsCueDot {
  0% { transform: translate(-50%, 0); opacity: .32; }
  42% { opacity: 1; }
  100% { transform: translate(-50%, 25px); opacity: .12; }
}
/* AI tools browser-comment adjustments round 13 */
body[data-page='tools'] .tools-scroll-cue {
  width: 34px !important;
  height: 52px !important;
  margin-top: 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body[data-page='tools'] .tools-scroll-cue::before {
  content: none !important;
  display: none !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-line {
  top: 7px !important;
  height: 27px !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
  top: 9px !important;
  width: 5px !important;
  height: 5px !important;
  box-shadow: 0 0 0 4px rgb(230 0 28 / .09), 0 0 14px rgb(230 0 28 / .3) !important;
}

body[data-page='tools'] .tools-scroll-cue iconify-icon {
  bottom: 4px !important;
  font-size: 16px !important;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue:hover {
    transform: translateY(3px) !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}
/* AI tools browser-comment adjustments round 14 */
body[data-page='tools'] .tools-scroll-cue {
  width: 48px !important;
  height: 72px !important;
  margin-top: 28px !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-label {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto !important;
  height: auto !important;
  transform: translateX(-50%);
  color: #172033;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-line {
  top: 24px !important;
  height: 24px !important;
  background: linear-gradient(180deg, rgb(23 32 51 / .12), rgb(230 0 28 / .55), rgb(23 32 51 / .08)) !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
  top: 39px !important;
  width: 5px !important;
  height: 5px !important;
  box-shadow: 0 0 0 4px rgb(230 0 28 / .08), 0 0 12px rgb(230 0 28 / .26) !important;
}

body[data-page='tools'] .tools-scroll-cue iconify-icon {
  bottom: 0 !important;
  font-size: 15px !important;
  opacity: .86;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
    animation: toolsCueDotWithLabel 1.9s ease-in-out infinite !important;
  }
}

@keyframes toolsCueDotWithLabel {
  0% { transform: translate(-50%, -12px); opacity: .18; }
  38% { opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: .16; }
}
/* AI tools browser-comment adjustments round 15 */
body[data-page='tools'] .tools-scroll-cue {
  width: 26px !important;
  height: 42px !important;
  margin-top: 32px !important;
  display: inline-flex !important;
  border: 1px solid rgb(23 32 51 / .24) !important;
  border-radius: 999px !important;
  background: rgb(255 255 255 / .42) !important;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .7), 0 12px 30px rgb(10 24 46 / .08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body[data-page='tools'] .tools-scroll-cue::before {
  content: none !important;
  display: none !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-label {
  display: none !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-line {
  top: 9px !important;
  height: 19px !important;
  background: linear-gradient(180deg, rgb(230 0 28 / 0), rgb(230 0 28 / .36), rgb(230 0 28 / 0)) !important;
}

body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
  top: 10px !important;
  width: 4px !important;
  height: 4px !important;
  box-shadow: 0 0 0 3px rgb(230 0 28 / .08), 0 0 10px rgb(230 0 28 / .28) !important;
}

body[data-page='tools'] .tools-scroll-cue iconify-icon {
  bottom: -18px !important;
  font-size: 14px !important;
  opacity: .72;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue {
    animation: toolsMouseCue 2.6s ease-in-out infinite !important;
  }

  body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
    animation: toolsMouseDot 1.8s ease-in-out infinite !important;
  }

  body[data-page='tools'] .tools-scroll-cue:hover {
    transform: translateY(3px) !important;
    border-color: rgb(230 0 28 / .36) !important;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .8), 0 16px 34px rgb(230 0 28 / .12) !important;
  }
}

@keyframes toolsMouseCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes toolsMouseDot {
  0% { transform: translate(-50%, 0); opacity: .18; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: .12; }
}
/* AI tools browser-comment adjustments round 16 */
body[data-page='tools'] .tools-hero-grid {
  position: relative;
}

body[data-page='tools'] .tools-scroll-cue {
  position: absolute !important;
  left: 50% !important;
  bottom: clamp(96px, 11vh, 130px) !important;
  margin-top: 0 !important;
  transform: translateX(-50%) !important;
  z-index: 3;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue {
    animation: toolsMouseCueCenter 2.6s ease-in-out infinite !important;
  }

  body[data-page='tools'] .tools-scroll-cue:hover {
    transform: translate(-50%, 3px) !important;
  }
}

@keyframes toolsMouseCueCenter {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 5px); }
}

@media (max-width: 760px) {
  body[data-page='tools'] .tools-scroll-cue {
    display: none !important;
  }
}
/* AI tools browser-comment adjustments round 17 */
body[data-page='tools'] .tools-scroll-cue {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  margin-top: 48px !important;
  transform: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue {
    animation: toolsMouseCue 2.6s ease-in-out infinite !important;
  }

  body[data-page='tools'] .tools-scroll-cue:hover {
    transform: translateY(3px) !important;
  }
}
/* AI tools browser-comment adjustments round 18 */
body[data-page='tools'] .tools-scroll-cue {
  margin-top: 40px !important;
}
/* AI tools browser-comment adjustments round 19 */
@media (prefers-reduced-motion: no-preference) {
  body[data-page='tools'] .tools-scroll-cue {
    animation: toolsMouseCueLeftFloat 2.4s ease-in-out infinite !important;
    transform-origin: center top;
  }

  body[data-page='tools'] .tools-scroll-cue:hover {
    animation-play-state: paused;
    transform: translateY(6px) !important;
  }

  body[data-page='tools'] .tools-scroll-cue .tools-cue-dot {
    animation: toolsMouseDot 1.8s ease-in-out infinite !important;
  }
}

@keyframes toolsMouseCueLeftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
/* AI tools browser-comment adjustments round 20 */
body[data-page='tools'] .tools-scroll-cue {
  animation: toolsCueTranslateBob 1.9s ease-in-out infinite !important;
  will-change: translate;
}

body[data-page='tools'] .tools-scroll-cue:hover {
  animation-play-state: paused;
  translate: 0 8px;
}

@keyframes toolsCueTranslateBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}
/* AI tools browser-comment adjustments round 21 */
body[data-page='tools'] .tools-scroll-cue {
  animation: toolsCueBreathingBob 3.8s cubic-bezier(.45, 0, .2, 1) infinite !important;
}

body[data-page='tools'] .tools-scroll-cue:hover {
  animation-play-state: paused;
  translate: 0 5px;
}

@keyframes toolsCueBreathingBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 5px; }
}
/* AI tools browser-comment adjustments round 22 */
body[data-page='tools'] .tools-hero-actions .btn::after,
body[data-page='tools'] .tools-hero-actions .ghost-btn::after,
body[data-page='tools'] .tools-card-grid .mini-btn::after,
body[data-page='tools'] .tools-process-copy .btn::after,
body[data-page='tools'] .tools-final-cta .btn::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 0 !important;
}

body[data-page='tools'] .tools-hero-actions .btn,
body[data-page='tools'] .tools-hero-actions .ghost-btn,
body[data-page='tools'] .tools-card-grid .mini-btn,
body[data-page='tools'] .tools-process-copy .btn,
body[data-page='tools'] .tools-final-cta .btn {
  gap: 0 !important;
}
/* AI tools browser-comment adjustments round 23 */
body[data-page='tools'] .tools-hero-actions .btn::after,
body[data-page='tools'] .tools-hero-actions .ghost-btn::after,
body[data-page='tools'] .tools-process-copy .btn::after,
body[data-page='tools'] .tools-final-cta .btn::after {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  margin-left: 8px !important;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
}

body[data-page='tools'] .tools-card-grid .mini-btn::after {
  content: "" !important;
  display: inline-block !important;
  width: 13px !important;
  height: 13px !important;
  margin-left: 6px !important;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1em'%20height='1em'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20stroke='%23ffffff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%20d='M5%2012h14m-7-7l7%207l-7%207'/%3e%3c/svg%3e") center / contain no-repeat;
}
/* AI tools browser-comment adjustments round 24 */
body[data-page='tools'] #business-form .btn::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 0 !important;
}

body[data-page='tools'] #business-form .btn {
  gap: 0 !important;
}
/* AI tools browser-comment adjustments round 25 */
body[data-page='tools'] .tools-process-list iconify-icon {
  right: 20px !important;
  top: 26px !important;
}
/* AI tools browser-comment adjustments round 26 */
body[data-page='tools'] .tools-process-list iconify-icon {
  right: 22px !important;
  top: 24px !important;
  padding: 12px 8px 8px 12px !important;
  box-sizing: border-box;
}
/* AI tools browser-comment adjustments round 27 */
body[data-page='tools'] .tools-card-grid + .tools-final-cta {
  padding-top: 28px;
  padding-bottom: 28px;
}

body[data-page='tools'] .tools-card-grid + .tools-final-cta > div {
  min-width: 0;
}

body[data-page='tools'] .tools-card-grid + .tools-final-cta p {
  max-width: none;
  margin-top: 10px;
  line-height: 1.55;
}

@media (min-width: 1280px) {
  body[data-page='tools'] .tools-card-grid + .tools-final-cta p {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  body[data-page='tools'] .tools-card-grid + .tools-final-cta {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  body[data-page='tools'] .tools-card-grid + .tools-final-cta p {
    white-space: normal;
  }
}
/* AI training banner scroll cue and AI tools button icon corrections. */
body[data-page='training'] #why-ai {
  scroll-margin-top: 92px;
}

body[data-page='training'] .training-scroll-cue {
  position: relative;
  width: 26px;
  height: 42px;
  margin-top: 40px;
  display: inline-flex;
  border: 1px solid rgb(23 32 51 / .24);
  border-radius: 999px;
  background: rgb(255 255 255 / .42);
  color: var(--training-red);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .7), 0 12px 30px rgb(10 24 46 / .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  will-change: translate;
}

body[data-page='training'] .training-scroll-cue .training-cue-line {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 1px;
  height: 19px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(230 0 28 / 0), rgb(230 0 28 / .36), rgb(230 0 28 / 0));
}

body[data-page='training'] .training-scroll-cue .training-cue-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--training-red);
  box-shadow: 0 0 0 3px rgb(230 0 28 / .08), 0 0 10px rgb(230 0 28 / .28);
}

body[data-page='training'] .training-scroll-cue iconify-icon {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  font-size: 14px;
  opacity: .72;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page='training'] .training-scroll-cue {
    animation: trainingCueBreathingBob 3.8s cubic-bezier(.45, 0, .2, 1) infinite;
  }

  body[data-page='training'] .training-scroll-cue .training-cue-dot {
    animation: trainingCueDot 2.4s ease-in-out infinite;
  }

  body[data-page='training'] .training-scroll-cue:hover {
    animation-play-state: paused;
    translate: 0 5px;
  }
}

@keyframes trainingCueBreathingBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 5px; }
}

@keyframes trainingCueDot {
  0% { transform: translate(-50%, 0); opacity: .18; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: .12; }
}

body[data-page='tools'] .tools-hero-actions .btn::after,
body[data-page='tools'] .tools-hero-actions .ghost-btn::after,
body[data-page='tools'] .tools-card-grid .mini-btn::after,
body[data-page='tools'] .tools-process-copy .btn::after,
body[data-page='tools'] .tools-final-cta .btn::after,
body[data-page='tools'] .modal-card .btn::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 0 !important;
}

body[data-page='tools'] .tools-hero-actions .btn-icon,
body[data-page='tools'] .tools-process-copy .btn-icon,
body[data-page='tools'] .tools-final-cta .btn-icon,
body[data-page='tools'] .modal-card .btn-icon {
  display: inline-flex !important;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  flex: 0 0 auto;
  transition: transform .22s ease;
}

body[data-page='tools'] .tools-card-grid .mini-btn .btn-icon {
  display: inline-flex !important;
  width: 13px;
  height: 13px;
  margin-left: 6px;
  flex: 0 0 auto;
  transition: transform .22s ease;
}

body[data-page='tools'] .tools-hero-actions a:hover .btn-icon,
body[data-page='tools'] .tools-card-grid .mini-btn:hover .btn-icon,
body[data-page='tools'] .tools-process-copy .btn:hover .btn-icon,
body[data-page='tools'] .tools-final-cta .btn:hover .btn-icon,
body[data-page='tools'] .modal-card .btn:hover .btn-icon {
  transform: translateX(3px);
}

body[data-page='tools'] #business-form .btn .btn-icon {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}

@media (max-width: 760px) {
  body[data-page='training'] .training-scroll-cue {
    display: none;
  }
}
/* About page: restrained editorial brand story. Scoped to avoid affecting other pages. */
body[data-page="about"] { background:#fff; }
body[data-page="about"] .site { background:#fff; }
body[data-page="about"] .about-kicker { margin:0 0 22px; color:var(--red); font-size:14px; font-weight:900; letter-spacing:.08em; }
.about-intro { padding:112px 0 0; background:#fff; }
.about-intro-grid { display:grid; grid-template-columns:minmax(0,1.12fr) minmax(380px,.88fr); gap:clamp(72px,9vw,168px); align-items:end; }
.about-intro h1 { margin:0; color:#15181d; font-size:clamp(54px,6vw,106px); line-height:1.04; letter-spacing:-.06em; font-weight:950; }
.about-intro h1 span { color:var(--red); }
.about-intro-copy { padding-bottom:10px; }
.about-intro-copy p { margin:0; color:#69707b; font-size:17px; line-height:1.9; font-weight:600; }
.about-intro-copy .about-lead { margin-bottom:24px; color:#252a31; font-size:23px; line-height:1.65; font-weight:800; }
.about-text-link { display:inline-flex; gap:12px; align-items:center; margin-top:32px; color:#1c2026; font-size:15px; font-weight:900; }
.about-text-link span { color:var(--red); font-size:20px; transition:transform .2s ease; }
.about-text-link:hover span { transform:translateX(5px); }
.about-metrics { display:grid; grid-template-columns:repeat(4,1fr); margin-top:94px; padding:36px 0 42px; border-top:1px solid #dfe3e8; }
.about-metrics>div { padding-left:30px; border-left:1px solid #e5e8ec; }
.about-metrics>div:first-child { padding-left:0; border-left:0; }
.about-metrics strong { display:block; color:#171b20; font-size:clamp(38px,3.6vw,62px); line-height:1; letter-spacing:-.045em; }
.about-metrics span { display:block; margin-top:13px; color:#7b818a; font-size:14px; font-weight:700; }
.about-culture { padding:138px 0; background:#f4f5f7; }
.about-culture-grid { display:grid; grid-template-columns:minmax(340px,.82fr) minmax(0,1.18fr); gap:clamp(72px,10vw,180px); }
.about-culture-heading h2,.about-sticky-copy h2,.about-story-heading h2 { margin:0; color:#191d22; font-size:clamp(40px,4vw,66px); line-height:1.18; letter-spacing:-.045em; font-weight:950; }
.about-culture-heading p { margin:24px 0 0; color:#767d86; font-size:17px; line-height:1.75; font-weight:600; }
.about-beliefs article { padding:0 0 40px; margin-bottom:40px; border-bottom:1px solid #d9dde2; }
.about-beliefs article:last-child { margin:0; padding-bottom:0; border-bottom:0; }
.about-beliefs span { display:block; margin-bottom:15px; color:var(--red); font-size:14px; font-weight:900; }
.about-beliefs h3 { margin:0; color:#1d2127; font-size:clamp(26px,2.3vw,38px); line-height:1.4; font-weight:900; }
.about-values ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px 44px; margin:0; padding:0; list-style:none; }
.about-values li { color:#252a30; font-size:25px; font-weight:850; }
.about-image-section { padding:0; background:#f4f5f7; }
.about-editorial-image { margin:0; height:clamp(460px,52vw,820px); overflow:hidden; border-radius:16px 16px 0 0; }
.about-editorial-image img { width:100%; height:100%; object-fit:cover; }
.about-capabilities { padding:150px 0; background:#fff; }
.about-capabilities-grid { display:grid; grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr); gap:clamp(70px,10vw,180px); align-items:start; }
.about-sticky-copy { position:sticky; top:132px; }
.about-sticky-copy>p:last-child { max-width:520px; margin:28px 0 0; color:#6f7680; font-size:17px; line-height:1.85; font-weight:600; }
.about-capability-list article { display:grid; grid-template-columns:62px 1fr; gap:28px; padding:0 0 40px; margin-bottom:40px; border-bottom:1px solid #e1e4e8; }
.about-capability-list article:last-child { margin:0; border-bottom:0; }
.about-capability-list article>span { color:#a0a5ad; font-size:13px; font-weight:900; }
.about-capability-list h3 { margin:-8px 0 13px; color:#1b1f24; font-size:clamp(26px,2.2vw,36px); line-height:1.35; font-weight:900; }
.about-capability-list p { margin:0; max-width:620px; color:#737983; font-size:16px; line-height:1.8; font-weight:600; }
.about-story { padding:142px 0; background:#fff; color:#171a1f; }
.about-story-heading { margin-bottom:82px; }
.about-story-heading h2 { color:#171a1f; }
.about-story-heading p { margin:22px 0 0; color:#717781; font-size:18px; font-weight:600; }
.about-timeline { margin-left:clamp(0px,12vw,200px); }
.about-timeline article { display:grid; grid-template-columns:170px 1fr; gap:42px; padding:40px 0; border-top:1px solid #d9dde2; }
.about-timeline time { color:#ef3349; font-size:16px; font-weight:900; }
.about-timeline h3 { margin:-5px 0 12px; color:#20242a; font-size:28px; line-height:1.35; }
.about-timeline p { margin:0; max-width:780px; color:#737983; font-size:16px; line-height:1.8; font-weight:600; }
@media(max-width:900px){.about-intro{padding-top:72px}.about-intro-grid,.about-culture-grid,.about-capabilities-grid{grid-template-columns:1fr;gap:52px}.about-intro h1{font-size:clamp(46px,13vw,72px)}.about-metrics{grid-template-columns:repeat(2,1fr);gap:34px 0;margin-top:64px}.about-metrics>div:nth-child(3){padding-left:0;border-left:0}.about-culture,.about-capabilities,.about-story{padding:92px 0}.about-sticky-copy{position:static}.about-editorial-image{height:58vw;min-height:360px}.about-timeline{margin-left:0}}
@media(max-width:560px){.about-intro-copy .about-lead{font-size:20px}.about-metrics{grid-template-columns:1fr 1fr}.about-metrics>div{padding-left:18px}.about-metrics strong{font-size:34px}.about-values ul{grid-template-columns:1fr 1fr;gap:12px 22px}.about-values li{font-size:20px}.about-capability-list article{grid-template-columns:38px 1fr;gap:14px}.about-timeline article{grid-template-columns:1fr;gap:14px;padding:32px 0}.about-editorial-image{min-height:280px;border-radius:12px 12px 0 0}}
@media(prefers-reduced-motion:reduce){body[data-page="about"] *{scroll-behavior:auto!important;transition-duration:.01ms!important}}

/* About page v2: Ninebot clarity + OPPO-style immersive scroll story. */
body[data-page="about"] { --about-black:#101215; --about-paper:#f2f3f4; --about-red:#e6001c; background:#fff; }
body[data-page="about"] .site { overflow:clip; }
body[data-page="about"] .about-chapter-nav {
  position:fixed; left:16px; top:50%; z-index:30; width:82px; display:grid; gap:14px; padding:14px 10px;
  transform:translateY(-50%); border:1px solid rgb(255 255 255 / .5); border-radius:14px;
  background:rgb(255 255 255 / .78); box-shadow:0 14px 40px rgb(18 24 33 / .1);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
}
body[data-page="about"] .about-chapter-nav a { display:grid; grid-template-columns:22px 0fr; gap:0; align-items:center; min-width:0; min-height:22px; color:#8b9098; overflow:hidden; white-space:nowrap; font-size:11px; font-weight:800; transition:color .25s ease,grid-template-columns .35s ease,gap .35s ease; }
body[data-page="about"] .about-chapter-nav a b { width:max-content; opacity:0; white-space:nowrap; font-size:12px; transition:opacity .25s ease; }
body[data-page="about"] .about-chapter-nav a:hover,body[data-page="about"] .about-chapter-nav a:focus-visible,body[data-page="about"] .about-chapter-nav a.is-active { grid-template-columns:22px 1fr; gap:6px; color:var(--about-black); }
body[data-page="about"] .about-chapter-nav a.is-active span { color:var(--about-red); }
body[data-page="about"] .about-chapter-nav a:hover b,body[data-page="about"] .about-chapter-nav a:focus-visible b,body[data-page="about"] .about-chapter-nav a.is-active b { opacity:1; }

body[data-page="about"] .about-cinematic-hero { position:relative; min-height:calc(100dvh - 108px); display:flex; align-items:flex-end; overflow:hidden; isolation:isolate; background:#70757a; }
body[data-page="about"] .about-hero-media,body[data-page="about"] .about-hero-media img,body[data-page="about"] .about-hero-scrim { position:absolute; inset:0; width:100%; height:100%; }
body[data-page="about"] .about-hero-media { z-index:-2; overflow:hidden; }
body[data-page="about"] .about-hero-media img { object-fit:cover; object-position:center; transform:scale(1.04); }
body[data-page="about"] .about-hero-scrim { z-index:-1; background:linear-gradient(90deg,rgb(7 11 16 / .78) 0%,rgb(7 11 16 / .44) 40%,rgb(7 11 16 / .06) 72%),linear-gradient(0deg,rgb(7 11 16 / .42),transparent 42%); }
body[data-page="about"] .about-hero-content { padding-bottom:clamp(64px,9vh,120px); color:#fff; }
body[data-page="about"] .about-hero-label { margin:0 0 26px; font-size:13px; letter-spacing:.14em; font-weight:900; }
body[data-page="about"] .about-cinematic-hero h1 { margin:0; max-width:1120px; color:#fff; font-size:clamp(60px,7vw,124px); line-height:1.02; letter-spacing:-.065em; font-weight:950; text-wrap:balance; }
body[data-page="about"] .about-cinematic-hero h1 span { color:#fff; }
body[data-page="about"] .about-hero-note { margin:30px 0 0; max-width:560px; color:rgb(255 255 255 / .78); font-size:18px; line-height:1.75; font-weight:650; }

body[data-page="about"] .about-profile { padding:150px 0 0; background:#fff; }
body[data-page="about"] .about-profile-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr); gap:clamp(68px,9vw,160px); align-items:start; }
body[data-page="about"] .about-profile h2 { margin:0; color:var(--about-black); font-size:clamp(42px,4.7vw,76px); line-height:1.2; letter-spacing:-.055em; font-weight:950; }
body[data-page="about"] .about-profile-copy p { margin:0; color:#6d747e; font-size:17px; line-height:1.9; font-weight:600; }
body[data-page="about"] .about-profile-copy .about-profile-lead { margin-bottom:28px; color:#20252b; font-size:23px; line-height:1.65; font-weight:850; }
body[data-page="about"] .about-metrics { margin-top:112px; padding:42px 0 54px; }
body[data-page="about"] .about-metrics strong { font-variant-numeric:tabular-nums; }
body[data-page="about"] .about-metrics strong span { display:inline; margin:0; color:inherit; font-size:inherit; font-weight:inherit; }
body[data-page="about"] .about-metrics p { margin:14px 0 0; color:#7b818a; font-size:14px; font-weight:750; }

body[data-page="about"] .about-belief { position:relative; height:210dvh; background:#111417; }
body[data-page="about"] .about-belief-sticky { position:sticky; top:0; height:100dvh; overflow:hidden; isolation:isolate; }
body[data-page="about"] .about-belief-visual,body[data-page="about"] .about-belief-overlay { position:absolute; inset:0; z-index:-2; }
body[data-page="about"] .about-belief-visual img { width:100%; height:100%; object-fit:cover; transform:scale(1.1); filter:saturate(.72) contrast(1.05); }
body[data-page="about"] .about-belief-overlay { z-index:-1; background:linear-gradient(90deg,rgb(7 9 12 / .94),rgb(7 9 12 / .6) 54%,rgb(7 9 12 / .28)),linear-gradient(0deg,rgb(7 9 12 / .62),transparent 50%); }
body[data-page="about"] .about-belief-message { height:100%; display:flex; flex-direction:column; justify-content:center; color:#fff; }
body[data-page="about"] .about-belief-message>p { margin:0 0 28px; color:#ef3349; font-size:15px; font-weight:900; }
body[data-page="about"] .about-belief-message h2 { margin:0; max-width:1050px; color:#f5f6f7; font-size:clamp(46px,5.3vw,86px); line-height:1.22; letter-spacing:-.055em; font-weight:950; }
body[data-page="about"] .about-floating-frame { position:absolute; z-index:2; width:clamp(210px,20vw,340px); margin:0; padding:10px 10px 12px; border-radius:13px; background:rgb(255 255 255 / .94); box-shadow:0 28px 80px rgb(0 0 0 / .32); }
body[data-page="about"] .about-floating-frame img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:8px; }
body[data-page="about"] .about-floating-frame figcaption { padding:10px 4px 0; color:#1f242a; font-size:12px; line-height:1.5; font-weight:800; }
body[data-page="about"] .about-frame-one { right:7vw; top:12vh; transform:rotate(2.4deg); }
body[data-page="about"] .about-frame-two { right:15vw; bottom:8vh; transform:rotate(-2deg); }

body[data-page="about"] .about-culture { padding:150px 0; background:var(--about-paper); }
body[data-page="about"] .about-culture-grid { align-items:start; }
body[data-page="about"] .about-culture-heading { position:sticky; top:132px; }
body[data-page="about"] .about-culture-heading h2 { font-size:clamp(42px,4.2vw,68px); }
body[data-page="about"] .about-culture-heading p { max-width:460px; }
body[data-page="about"] .about-beliefs article { padding-bottom:48px; margin-bottom:48px; }
body[data-page="about"] .about-beliefs h3 { font-size:clamp(28px,2.6vw,42px); }

body[data-page="about"] .about-capabilities { padding:160px 0; }
body[data-page="about"] .about-capability-list article { min-height:176px; align-items:start; padding:14px 0 46px; transition:transform .3s ease,border-color .3s ease; }
body[data-page="about"] .about-capability-list article:hover { transform:translateX(10px); border-color:#bec3c9; }
body[data-page="about"] .about-capability-list article:hover>span { color:var(--about-red); }
body[data-page="about"] .about-capability-list article>span { transition:color .3s ease; }

body[data-page="about"] .about-story { padding:160px 0 110px; }
body[data-page="about"] .about-story-heading { display:grid; grid-template-columns:1fr .65fr; gap:60px; align-items:end; }
body[data-page="about"] .about-story-heading p { max-width:390px; justify-self:end; }
body[data-page="about"] .about-timeline article { position:relative; transition:background .3s ease,padding .3s ease; }
body[data-page="about"] .about-timeline article::before { content:""; position:absolute; left:-22px; top:0; bottom:0; width:2px; background:var(--about-red); transform:scaleY(0); transform-origin:top; transition:transform .4s ease; }
body[data-page="about"] .about-timeline article:hover { padding-left:18px; background:rgb(230 0 28 / .035); }
body[data-page="about"] .about-timeline article:hover::before { transform:scaleY(1); }

body[data-page="about"].about-motion-ready [data-reveal] { opacity:0; transform:translateY(34px); transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1); }
body[data-page="about"].about-motion-ready [data-reveal].is-visible { opacity:1; transform:translateY(0); }
body[data-page="about"].about-motion-ready .about-floating-frame[data-reveal] { opacity:0; }
body[data-page="about"].about-motion-ready .about-frame-one[data-reveal] { transform:translateY(42px) rotate(2.4deg); }
body[data-page="about"].about-motion-ready .about-frame-two[data-reveal] { transform:translateY(42px) rotate(-2deg); }
body[data-page="about"].about-motion-ready .about-floating-frame[data-reveal].is-visible { opacity:1; }
body[data-page="about"].about-motion-ready .about-frame-one[data-reveal].is-visible { transform:translateY(0) rotate(2.4deg); }
body[data-page="about"].about-motion-ready .about-frame-two[data-reveal].is-visible { transform:translateY(0) rotate(-2deg); }

@supports (animation-timeline:scroll()) {
  @media (prefers-reduced-motion:no-preference) {
    body[data-page="about"] .about-hero-media img { animation:aboutHeroScale linear both; animation-timeline:scroll(root); animation-range:0 85vh; }
    body[data-page="about"] .about-belief-visual img { animation:aboutBeliefScale linear both; animation-timeline:view(block); animation-range:entry 0% exit 100%; }
  }
}
@keyframes aboutHeroScale { from { transform:scale(1.04); } to { transform:scale(1.14); } }
@keyframes aboutBeliefScale { from { transform:scale(1.14); } to { transform:scale(1.04); } }

@media(max-width:1300px){body[data-page="about"] .about-chapter-nav{display:none}}
@media(max-width:900px){
  body[data-page="about"] .about-cinematic-hero{min-height:760px}
  body[data-page="about"] .about-hero-media img{object-position:64% center}
  body[data-page="about"] .about-profile{padding-top:96px}
  body[data-page="about"] .about-profile-grid,body[data-page="about"] .about-story-heading{grid-template-columns:1fr;gap:48px}
  body[data-page="about"] .about-story-heading p{justify-self:start}
  body[data-page="about"] .about-belief{height:auto}
  body[data-page="about"] .about-belief-sticky{position:relative;height:860px}
  body[data-page="about"] .about-belief-message{justify-content:flex-start;padding-top:120px}
  body[data-page="about"] .about-belief-message h2{max-width:760px}
  body[data-page="about"] .about-frame-one{top:auto;bottom:130px;right:8vw}
  body[data-page="about"] .about-frame-two{right:auto;left:7vw;bottom:44px}
  body[data-page="about"] .about-culture-heading{position:static}
}
@media(max-width:560px){
  body[data-page="about"] .about-cinematic-hero{min-height:680px}
  body[data-page="about"] .about-hero-content{padding-bottom:56px}
  body[data-page="about"] .about-cinematic-hero h1{font-size:clamp(46px,14vw,64px);line-height:1.08}
  body[data-page="about"] .about-hero-note{font-size:16px}
  body[data-page="about"] .about-profile h2{font-size:38px}
  body[data-page="about"] .about-profile-copy .about-profile-lead{font-size:20px}
  body[data-page="about"] .about-metrics{margin-top:72px}
  body[data-page="about"] .about-metrics>div{min-height:110px}
  body[data-page="about"] .about-belief-sticky{height:760px}
  body[data-page="about"] .about-belief-message{padding-top:88px}
  body[data-page="about"] .about-belief-message h2{font-size:38px}
  body[data-page="about"] .about-floating-frame{width:190px}
  body[data-page="about"] .about-frame-one{bottom:128px;right:4vw}
  body[data-page="about"] .about-frame-two{bottom:38px;left:4vw}
  body[data-page="about"] .about-culture,body[data-page="about"] .about-capabilities,body[data-page="about"] .about-story{padding-top:96px;padding-bottom:96px}
  body[data-page="about"] .about-timeline article:hover{padding-left:0}
}
@media(prefers-reduced-motion:reduce){body[data-page="about"].about-motion-ready [data-reveal]{opacity:1;transform:none;transition:none}}

/* About page v3: refined editorial hierarchy and a unified premium image system. */
body[data-page="about"] .about-cinematic-hero { min-height:calc(100dvh - 108px); }
body[data-page="about"] .about-hero-media img { object-position:center; filter:saturate(.72) contrast(1.04); }
body[data-page="about"] .about-hero-scrim { background:linear-gradient(90deg,rgb(10 12 15 / .74) 0%,rgb(10 12 15 / .38) 37%,rgb(10 12 15 / .03) 68%),linear-gradient(0deg,rgb(10 12 15 / .24),transparent 48%); }
body[data-page="about"] .about-hero-content { padding-bottom:clamp(70px,10vh,132px); }
body[data-page="about"] .about-cinematic-hero h1 { max-width:900px; font-size:clamp(68px,7.7vw,138px); line-height:.98; }
body[data-page="about"] .about-cinematic-hero h1 span { color:#fff; }
body[data-page="about"] .about-hero-note { max-width:620px; color:rgb(255 255 255 / .82); font-size:19px; }

body[data-page="about"] .about-profile { padding-top:168px; }
body[data-page="about"] .about-profile-grid { grid-template-columns:minmax(0,1.22fr) minmax(360px,.78fr); }
body[data-page="about"] .about-profile h2 { max-width:980px; }
body[data-page="about"] .about-profile-copy p+p { margin-top:20px; }
body[data-page="about"] .about-metrics { margin-top:126px; padding:48px 0 62px; }
body[data-page="about"] .about-metrics>div { min-height:90px; display:flex; flex-direction:column; justify-content:space-between; }

body[data-page="about"] .about-belief { height:140dvh; }
body[data-page="about"] .about-belief-visual img { transform:scale(1.08); filter:saturate(.82) contrast(1.06); }
body[data-page="about"] .about-belief-overlay { background:linear-gradient(90deg,rgb(4 5 7 / .58) 0%,rgb(4 5 7 / .36) 36%,rgb(4 5 7 / .04) 67%),linear-gradient(0deg,rgb(4 5 7 / .16),transparent 56%); }
body[data-page="about"] .about-belief-message { max-width:none; align-items:flex-start; }
body[data-page="about"] .about-belief-kicker { margin:0 0 30px; color:#ef3349; font-size:14px; letter-spacing:.08em; font-weight:900; }
body[data-page="about"] .about-belief-message h2 { max-width:920px; font-size:clamp(50px,5.6vw,92px); line-height:1.16; }
body[data-page="about"] .about-belief-statement { max-width:850px; margin:28px 0 0; color:rgb(255 255 255 / .72); font-size:clamp(21px,2vw,30px); line-height:1.6; font-weight:650; }
body[data-page="about"] .about-belief-principles { display:flex; flex-wrap:wrap; gap:12px 34px; margin-top:56px; padding-top:25px; border-top:1px solid rgb(255 255 255 / .2); color:rgb(255 255 255 / .62); font-size:14px; font-weight:750; }
body[data-page="about"] .about-belief-principles span { position:relative; padding-left:20px; }
body[data-page="about"] .about-belief-principles span::before { content:""; position:absolute; left:0; top:.62em; width:8px; height:1px; background:#ef3349; }

body[data-page="about"] .about-culture { padding:170px 0; background:#f4f7fb; }
body[data-page="about"] .about-culture-grid { grid-template-columns:minmax(360px,.9fr) minmax(0,1.1fr); }
body[data-page="about"] .about-beliefs article { padding-bottom:54px; margin-bottom:54px; }
body[data-page="about"] .about-values li { font-size:clamp(21px,2vw,30px); }

body[data-page="about"] .about-field { padding:168px 0 184px; background:#fff; }
body[data-page="about"] .about-field-heading { max-width:1000px; }
body[data-page="about"] .about-field-heading h2 { margin:0; color:#171a1f; font-size:clamp(44px,4.8vw,78px); line-height:1.18; letter-spacing:-.052em; font-weight:950; }
body[data-page="about"] .about-field-heading p { max-width:620px; margin:30px 0 0; color:#747b84; font-size:17px; line-height:1.85; font-weight:600; }
body[data-page="about"] .about-field-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(340px,.8fr); gap:clamp(28px,3.5vw,58px); margin-top:94px; align-items:start; }
body[data-page="about"] .about-field-card { margin:0; }
body[data-page="about"] .about-field-card-small { margin-top:170px; }
body[data-page="about"] .about-field-image { position:relative; overflow:hidden; border-radius:14px; background:#e9eaeb; }
body[data-page="about"] .about-field-card-large .about-field-image { aspect-ratio:1.42/1; }
body[data-page="about"] .about-field-card-small .about-field-image { aspect-ratio:1/1.02; }
body[data-page="about"] .about-field-image img { width:100%; height:100%; object-fit:cover; transition:transform 1s cubic-bezier(.16,1,.3,1),filter .6s ease; }
body[data-page="about"] .about-field-card:hover .about-field-image img { transform:scale(1.035); filter:contrast(1.03); }
body[data-page="about"] .about-field-card figcaption { display:grid; grid-template-columns:minmax(120px,.32fr) 1fr; gap:30px; padding:24px 2px 0; }
body[data-page="about"] .about-field-card figcaption strong { color:#20242a; font-size:18px; font-weight:900; }
body[data-page="about"] .about-field-card figcaption span { color:#787e87; font-size:15px; line-height:1.75; font-weight:600; }

body[data-page="about"] .about-capabilities { padding:176px 0; background:#f4f7fb; }
body[data-page="about"] .about-capability-list article { min-height:190px; }
body[data-page="about"] .about-story { padding-top:176px; }
body[data-page="about"] .about-story-heading h2 { max-width:820px; }

body[data-page="about"].about-motion-ready .about-field-card[data-reveal] { clip-path:inset(0 0 18% 0 round 14px); transform:translateY(44px); }
body[data-page="about"].about-motion-ready .about-field-card[data-reveal].is-visible { clip-path:inset(0 0 0 0 round 14px); transform:translateY(0); }
body[data-page="about"].about-motion-ready .about-belief-principles[data-reveal] span { opacity:0; transform:translateY(12px); transition:opacity .5s ease,transform .5s ease; }
body[data-page="about"].about-motion-ready .about-belief-principles[data-reveal].is-visible span { opacity:1; transform:translateY(0); }
body[data-page="about"].about-motion-ready .about-belief-principles[data-reveal].is-visible span:nth-child(2) { transition-delay:.1s; }
body[data-page="about"].about-motion-ready .about-belief-principles[data-reveal].is-visible span:nth-child(3) { transition-delay:.2s; }

@supports (animation-timeline:scroll()) {
  @media (prefers-reduced-motion:no-preference) {
    body[data-page="about"] .about-hero-content { animation:aboutHeroCopyFade linear both; animation-timeline:scroll(root); animation-range:0 72vh; }
    body[data-page="about"] .about-hero-media img { animation:aboutHeroScaleV3 linear both; animation-timeline:scroll(root); animation-range:0 92vh; }
  }
}
@keyframes aboutHeroCopyFade { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(68px); } }
@keyframes aboutHeroScaleV3 { from { transform:scale(1.02); } to { transform:scale(1.12); } }

@media(max-width:900px){
  body[data-page="about"] .about-cinematic-hero{min-height:780px}
  body[data-page="about"] .about-hero-media img{object-position:62% center}
  body[data-page="about"] .about-profile{padding-top:104px}
  body[data-page="about"] .about-belief{height:auto}
  body[data-page="about"] .about-belief-message{justify-content:center;padding-top:0;padding-bottom:120px}
  body[data-page="about"] .about-belief-principles{margin-top:38px}
  body[data-page="about"] .about-culture{padding:104px 0}
  body[data-page="about"] .about-field{padding:104px 0 118px}
  body[data-page="about"] .about-field-grid{grid-template-columns:1fr;margin-top:64px}
  body[data-page="about"] .about-field-card-small{margin-top:18px;margin-left:16vw}
  body[data-page="about"] .about-capabilities{padding:112px 0}
}
@media(max-width:560px){
  body[data-page="about"] .about-cinematic-hero{min-height:720px}
  body[data-page="about"] .about-cinematic-hero h1{font-size:58px}
  body[data-page="about"] .about-hero-note{font-size:16px;max-width:340px}
  body[data-page="about"] .about-profile h2{font-size:40px}
  body[data-page="about"] .about-belief-sticky{height:780px}
  body[data-page="about"] .about-belief-message h2{font-size:40px}
  body[data-page="about"] .about-belief-statement{font-size:20px}
  body[data-page="about"] .about-belief-principles{display:grid;gap:12px}
  body[data-page="about"] .about-field-heading h2{font-size:40px}
  body[data-page="about"] .about-field-card-small{margin-left:0}
  body[data-page="about"] .about-field-card figcaption{grid-template-columns:1fr;gap:8px;padding-top:18px}
  body[data-page="about"] .about-field-card-large .about-field-image,body[data-page="about"] .about-field-card-small .about-field-image{aspect-ratio:4/3}
}

/* About history v4: editorial scroll narrative with a clickable year rail. */
body[data-page="about"] .about-story { padding:168px 0 120px; overflow:clip; background:#fff; }
body[data-page="about"] .about-story-heading { display:block; margin-bottom:112px; }
body[data-page="about"] .about-story-heading p { max-width:none; justify-self:auto; white-space:nowrap; }
body[data-page="about"] .about-history-layout { display:grid; grid-template-columns:150px minmax(0,1fr) 104px; gap:clamp(36px,5vw,84px); align-items:start; }
body[data-page="about"] .about-history-label,body[data-page="about"] .about-history-rail { position:sticky; top:132px; align-self:start; }
body[data-page="about"] .about-history-label { padding-top:18px; color:#252a30; font-size:20px; line-height:1.25; font-weight:900; }
body[data-page="about"] .about-history-label i { width:34px; height:3px; display:block; margin-top:16px; background:var(--about-red); }
body[data-page="about"] .about-timeline { min-width:0; margin:0; }
body[data-page="about"] .about-timeline .about-history-step { min-height:62vh; display:grid; grid-template-columns:1fr; align-content:center; gap:34px; padding:72px 0; scroll-margin-top:112px; border-top:1px solid #e1e4e8; opacity:1; transform:none; }
body[data-page="about"] .about-timeline .about-history-step:first-child { border-top:0; }
body[data-page="about"].about-history-ready .about-history-step { opacity:.3; transform:translateY(22px); transition:opacity .42s ease,transform .42s cubic-bezier(.16,1,.3,1); }
body[data-page="about"].about-history-ready .about-history-step.is-active { opacity:1; transform:translateY(0); }
body[data-page="about"] .about-timeline .about-history-step::before { content:none; }
body[data-page="about"] .about-timeline .about-history-step:hover { padding-left:0; background:transparent; }
body[data-page="about"] .about-history-step time { display:block; color:#b8bdc5; font-size:clamp(62px,7.2vw,112px); line-height:.92; letter-spacing:-.055em; font-weight:850; transition:color .35s ease; }
body[data-page="about"] .about-history-step.is-active time { color:#252a30; }
body[data-page="about"] .about-history-step.is-active time::after { content:""; width:44px; height:4px; display:block; margin:20px 0 0; background:var(--about-red); }
body[data-page="about"] .about-history-step h3 { margin:0 0 18px; color:#20242a; font-size:clamp(28px,2.7vw,42px); line-height:1.25; letter-spacing:-.025em; font-weight:900; }
body[data-page="about"] .about-history-step p { margin:0; max-width:720px; color:#737983; font-size:17px; line-height:1.85; font-weight:600; }
body[data-page="about"] .about-history-rail { height:360px; display:grid; grid-template-rows:repeat(5,1fr); padding-left:22px; }
body[data-page="about"] .about-history-progress { position:absolute; left:2px; top:8%; bottom:8%; width:1px; background:#dfe3e8; }
body[data-page="about"] .about-history-progress span { width:3px; height:var(--history-progress); display:block; margin-left:-1px; background:var(--about-red); transition:height .42s cubic-bezier(.16,1,.3,1); }
body[data-page="about"] .about-history-rail a { position:relative; display:flex; align-items:center; color:#a0a5ad; font-size:13px; line-height:1.2; font-weight:800; text-decoration:none; transition:color .28s ease,transform .28s ease; }
body[data-page="about"] .about-history-rail a::before { content:""; position:absolute; left:-22px; width:5px; height:5px; border-radius:50%; background:#c7cbd1; transition:background .28s ease,transform .28s ease; }
body[data-page="about"] .about-history-rail a:hover,body[data-page="about"] .about-history-rail a[aria-current="step"] { color:var(--about-red); transform:none; }
body[data-page="about"] .about-history-rail a[aria-current="step"]::before { background:var(--about-red); transform:scale(1.8); }

@media(max-width:900px) {
  body[data-page="about"] .about-story { padding:104px 0 96px; overflow:hidden; }
  body[data-page="about"] .about-story-heading { margin-bottom:72px; }
  body[data-page="about"] .about-story-heading p { white-space:normal; }
  body[data-page="about"] .about-history-layout { grid-template-columns:1fr; gap:40px; }
  body[data-page="about"] .about-history-label { position:static; padding:0; font-size:18px; }
  body[data-page="about"] .about-history-rail { display:none; }
  body[data-page="about"] .about-timeline { position:relative; padding-left:30px; }
  body[data-page="about"] .about-timeline::before { content:""; position:absolute; left:4px; top:8px; bottom:8px; width:1px; background:#dfe3e8; }
  body[data-page="about"] .about-timeline .about-history-step,body[data-page="about"].about-history-ready .about-history-step,body[data-page="about"].about-history-ready .about-history-step.is-active { position:relative; min-height:0; display:block; padding:44px 0 48px; opacity:1; transform:none; border-top:0; }
  body[data-page="about"] .about-timeline .about-history-step::before { content:""; position:absolute; left:-30px; top:57px; width:9px; height:9px; border-radius:50%; background:var(--about-red); transform:translateX(0); }
  body[data-page="about"] .about-history-step time { margin-bottom:24px; color:#252a30; font-size:clamp(42px,10vw,68px); }
  body[data-page="about"] .about-history-step.is-active time::after { width:28px; height:3px; margin:14px 0 0; }
  body[data-page="about"] .about-history-step h3 { font-size:clamp(25px,5vw,34px); }
}

@media(max-width:560px) {
  body[data-page="about"] .about-story-heading { margin-bottom:56px; }
  body[data-page="about"] .about-timeline { padding-left:24px; }
  body[data-page="about"] .about-timeline .about-history-step::before { left:-24px; top:48px; }
  body[data-page="about"] .about-timeline .about-history-step { padding:36px 0 42px; }
  body[data-page="about"] .about-history-step time { margin-bottom:20px; font-size:40px; letter-spacing:-.045em; }
  body[data-page="about"] .about-history-step h3 { margin-bottom:13px; font-size:25px; }
  body[data-page="about"] .about-history-step p { font-size:15px; line-height:1.75; }
}

@media(prefers-reduced-motion:reduce) {
  body[data-page="about"] .about-history-step,body[data-page="about"] .about-history-progress span,body[data-page="about"] .about-history-rail a { transition:none !important; }
}
/* About page polish: calmer motion, precise history progress and compact chapter orientation. */
body[data-page="about"] [data-about-section] { scroll-margin-top:112px; }
body[data-page="about"].about-motion-ready [data-reveal] { transform:translateY(22px); transition:opacity .58s cubic-bezier(.16,1,.3,1),transform .58s cubic-bezier(.16,1,.3,1); }
body[data-page="about"].about-motion-ready .about-field-card[data-reveal] { clip-path:inset(0 0 10% 0 round 14px); transform:translateY(24px); }
body[data-page="about"] .about-capability-list article { transform:none; transition:border-color .3s ease; }
body[data-page="about"] .about-capability-list article:hover { transform:none; border-color:var(--about-red); }
body[data-page="about"] .about-capability-list h3 { transition:color .3s ease; }
body[data-page="about"] .about-capability-list article:hover h3 { color:#b80016; }
body[data-page="about"] .about-timeline .about-history-step { min-height:clamp(400px,54vh,570px); padding:54px 0; }
body[data-page="about"].about-history-ready .about-history-step { opacity:.58; transform:translateY(12px); transition:opacity .38s ease,transform .38s cubic-bezier(.16,1,.3,1); }
body[data-page="about"].about-history-ready .about-history-step.is-active { opacity:1; transform:translateY(0); }
body[data-page="about"] .about-history-progress { top:10%; bottom:10%; }
body[data-page="about"] .about-history-rail a::before { left:-22px; transform-origin:center; }
body[data-page="about"] .about-history-rail a.is-passed { color:#4f555d; }
body[data-page="about"] .about-history-rail a.is-passed::before,body[data-page="about"] .about-history-rail a[aria-current="step"]::before { background:var(--about-red); }
body[data-page="about"] .about-history-rail a[aria-current="step"]::before { transform:scale(1.8); }
body[data-page="about"] .about-history-rail a:focus-visible { color:var(--about-red); outline:2px solid rgb(230 0 28 / .35); outline-offset:5px; }

@media (hover:hover) and (pointer:fine) {
  body[data-page="about"] .about-field-card:hover .about-field-image img { transform:scale(1.025); filter:contrast(1.03); }
}

@media (hover:none), (pointer:coarse) {
  body[data-page="about"] .about-field-card:hover .about-field-image img { transform:none; filter:none; }
  body[data-page="about"] .about-capability-list article:hover { border-color:#e1e4e8; }
  body[data-page="about"] .about-capability-list article:hover h3 { color:#1b1f24; }
}

@media (min-width:1301px) {
  body[data-page="about"] { --about-content-safe-start:118px; }
  body[data-page="about"] main > section .container {
    padding-left:max(0px,calc(var(--about-content-safe-start) - max(48px,calc((100vw - 1680px) / 2))));
  }
}

@media (min-width:1440px) {
  body[data-page="about"] { --about-content-safe-start:122px; }
}

@media (max-width:900px) {
  body[data-page="about"] [data-about-section] { scroll-margin-top:88px; }
  body[data-page="about"] .about-timeline .about-history-step,body[data-page="about"].about-history-ready .about-history-step,body[data-page="about"].about-history-ready .about-history-step.is-active { min-height:0; padding:40px 0 44px; }
}

@media (max-width:560px) {
  body[data-page="about"] .about-timeline .about-history-step,body[data-page="about"].about-history-ready .about-history-step,body[data-page="about"].about-history-ready .about-history-step.is-active { padding:32px 0 36px; }
}

@media (prefers-reduced-motion:reduce) {
  body[data-page="about"] .about-field-image img,body[data-page="about"] .about-capability-list article,body[data-page="about"] .about-capability-list h3,body[data-page="about"] .about-history-rail a::before { transition:none !important; }
  body[data-page="about"] .about-field-card:hover .about-field-image img { transform:none; filter:none; }
}
/* Success cases redesign */
body[data-page="cases"]{--cases-ink:#111827;--cases-muted:#5e6878;--cases-line:#dde3eb;--cases-soft:#f3f6f9;background:#fff}
body[data-page="cases"] .cases-hero{position:relative;min-height:700px;padding:94px 0 100px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(145deg,#f7f9fc 0%,#fff 64%)}
body[data-page="cases"] .cases-hero:before{content:"";position:absolute;width:520px;height:520px;right:-210px;top:-210px;border-radius:50%;background:rgb(230 0 28/.055);pointer-events:none}
body[data-page="cases"] .cases-hero-grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(520px,1.12fr);gap:clamp(54px,7vw,118px);align-items:center}
body[data-page="cases"] .cases-kicker,body[data-page="cases"] .case-type{margin:0 0 20px;color:var(--red);font-size:13px;font-weight:950;letter-spacing:.12em}
body[data-page="cases"] .cases-hero h1{margin:0;max-width:760px;font-size:clamp(48px,5.1vw,88px);line-height:1.07;letter-spacing:-.055em;font-weight:950;color:var(--cases-ink)}
body[data-page="cases"] .cases-hero h1 span{display:block;color:var(--red)}
body[data-page="cases"] .cases-hero-lead{max-width:680px;margin:28px 0 0;color:var(--cases-muted);font-size:18px;line-height:1.85;font-weight:600}
body[data-page="cases"] .cases-capability-list{display:flex;gap:0;margin-top:32px;flex-wrap:wrap}
body[data-page="cases"] .cases-capability-list span{padding:0 18px;border-left:1px solid var(--cases-line);color:#303b4b;font-size:14px;font-weight:850}
body[data-page="cases"] .cases-capability-list span:first-child{padding-left:0;border-left:0}
body[data-page="cases"] .cases-hero-actions{display:flex;align-items:center;gap:30px;margin-top:38px}
body[data-page="cases"] .cases-text-link{display:inline-flex;align-items:center;gap:10px;color:#202b3b;font-size:15px;font-weight:900;transition:color .2s ease,gap .2s ease}
body[data-page="cases"] .cases-text-link:hover{color:var(--red);gap:14px}
body[data-page="cases"] .cases-hero-proof{position:relative;padding:18px 0 36px}
body[data-page="cases"] .cases-browser{position:relative;border:1px solid #dce2e9;border-radius:18px;background:#fff;box-shadow:0 28px 70px rgb(17 24 39/.15);overflow:hidden}
body[data-page="cases"] .cases-browser-bar{height:44px;display:flex;align-items:center;gap:7px;padding:0 16px;background:#f4f6f8;border-bottom:1px solid #e1e6ec;color:#7b8492;font-size:12px;font-weight:700}
body[data-page="cases"] .cases-browser-bar i{width:8px;height:8px;border-radius:50%;background:#c8ced6}
body[data-page="cases"] .cases-browser-bar span{margin-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
body[data-page="cases"] .cases-browser img{width:100%;aspect-ratio:16/10;object-fit:cover;object-position:top center;transition:transform .7s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .cases-browser:hover img{transform:scale(1.018)}
body[data-page="cases"] .cases-proof-stat{position:absolute;right:-24px;bottom:0;width:190px;padding:22px 24px;border-radius:18px;background:#151d29;color:#fff;box-shadow:0 20px 40px rgb(17 24 39/.22)}
body[data-page="cases"] .cases-proof-stat strong{display:block;color:#fff;font-size:34px;line-height:1;font-weight:950}
body[data-page="cases"] .cases-proof-stat span{display:block;margin-top:8px;color:#b9c1cb;font-size:13px;font-weight:750}
body[data-page="cases"] .cases-anchor-nav{position:sticky;top:108px;z-index:20;border-top:1px solid #edf0f4;border-bottom:1px solid #e5e9ef;background:rgb(255 255 255/.94);backdrop-filter:blur(15px)}
body[data-page="cases"] .cases-anchor-inner{height:72px;display:flex;align-items:center;justify-content:center;gap:8px}
body[data-page="cases"] .cases-anchor-inner a{position:relative;padding:13px 20px;color:#697383;font-size:14px;font-weight:850;white-space:nowrap;transition:color .2s ease}
body[data-page="cases"] .cases-anchor-inner a:after{content:"";position:absolute;left:20px;right:20px;bottom:4px;height:2px;background:var(--red);transform:scaleX(0);transition:transform .25s ease}
body[data-page="cases"] .cases-anchor-inner a:hover,body[data-page="cases"] .cases-anchor-inner a.is-active{color:var(--red)}
body[data-page="cases"] .cases-anchor-inner a.is-active:after{transform:scaleX(1)}
body[data-page="cases"] .case-section{scroll-margin-top:180px;padding:130px 0}
body[data-page="cases"] .case-featured{background:var(--cases-soft)}
body[data-page="cases"] .case-featured-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(420px,.85fr);gap:clamp(54px,6vw,96px);align-items:center}
body[data-page="cases"] .case-copy h2,body[data-page="cases"] .case-innovation-head h2,body[data-page="cases"] .case-shantou-grid h2{margin:0;color:var(--cases-ink);font-size:clamp(36px,3.6vw,60px);line-height:1.14;letter-spacing:-.045em;font-weight:950}
body[data-page="cases"] .case-copy>p:not(.case-type):not(.case-client){margin:20px 0 0;color:var(--cases-muted);font-size:16px;line-height:1.9;font-weight:600}
body[data-page="cases"] .case-meta{margin:34px 0 0;border-top:1px solid var(--cases-line)}
body[data-page="cases"] .case-meta div{display:grid;grid-template-columns:92px 1fr;gap:20px;padding:18px 0;border-bottom:1px solid var(--cases-line)}
body[data-page="cases"] .case-meta dt{color:#8a93a0;font-size:13px;font-weight:800}
body[data-page="cases"] .case-meta dd{margin:0;color:#273242;font-size:14px;line-height:1.65;font-weight:750}
body[data-page="cases"] .case-meta dd a{display:block;width:max-content;max-width:100%;color:#273242;transition:color .2s ease}
body[data-page="cases"] .case-meta dd a:hover{color:var(--red)}
body[data-page="cases"] .case-evidence{display:grid;grid-template-columns:1.05fr 1fr 1fr 1fr;margin-top:74px;border-top:1px solid #d8dee7}
body[data-page="cases"] .case-evidence div{padding:28px 28px 6px;border-left:1px solid #d8dee7}
body[data-page="cases"] .case-evidence div:first-child{padding-left:0;border-left:0}
body[data-page="cases"] .case-evidence strong{display:block;color:#1c2736;font-size:22px;font-weight:950}
body[data-page="cases"] .case-evidence div:first-child strong{color:var(--red);font-size:34px}
body[data-page="cases"] .case-evidence span{display:block;margin-top:8px;color:#7b8492;font-size:13px;font-weight:700}
body[data-page="cases"] .case-split{display:grid;grid-template-columns:minmax(440px,.9fr) minmax(0,1.1fr);gap:clamp(70px,9vw,150px);align-items:center}
body[data-page="cases"] .case-visual-placeholder{min-height:520px;padding:56px;display:flex;flex-direction:column;justify-content:flex-end;border-radius:18px;background:linear-gradient(145deg,#172131,#293649);color:#fff;box-shadow:0 28px 70px rgb(17 24 39/.18)}
body[data-page="cases"] .case-visual-placeholder:before{content:"ZS";margin:auto;color:rgb(255 255 255/.08);font-size:180px;line-height:1;font-weight:950;letter-spacing:-.08em}
body[data-page="cases"] .case-visual-placeholder strong{font-size:27px}
body[data-page="cases"] .case-visual-placeholder span{margin-top:10px;color:#aeb8c6;font-size:14px}
body[data-page="cases"] .case-visual-placeholder a{width:max-content;margin-top:26px;color:#fff;font-size:14px;font-weight:900}
body[data-page="cases"] .case-keywords{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
body[data-page="cases"] .case-keywords span{padding:9px 13px;border:1px solid #dfe4ea;border-radius:8px;background:#fff;color:#4d5868;font-size:12px;font-weight:800}
body[data-page="cases"] .case-shunde{background:#171f2b;color:#fff}
body[data-page="cases"] .case-shunde .case-type{color:#ff4c61}
body[data-page="cases"] .case-innovation-head{display:grid;grid-template-columns:1.4fr .6fr;gap:80px;align-items:end}
body[data-page="cases"] .case-innovation-head h2{color:#fff}
body[data-page="cases"] .case-innovation-head>p{margin:0 0 6px;color:#b5beca;font-size:16px;line-height:1.8;font-weight:600}
body[data-page="cases"] .case-innovation-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;margin-top:70px;padding-top:60px;border-top:1px solid rgb(255 255 255/.13)}
body[data-page="cases"] .case-innovation-numbers{display:grid;grid-template-columns:1fr 1fr;gap:20px}
body[data-page="cases"] .case-innovation-numbers div{padding:34px 26px;border-radius:18px;background:#222c3a}
body[data-page="cases"] .case-innovation-numbers strong{display:block;color:#ff334c;font-size:66px;line-height:1;font-weight:950}
body[data-page="cases"] .case-innovation-numbers span{display:block;margin-top:16px;color:#b9c2ce;font-size:14px;font-weight:750}
body[data-page="cases"] .case-shunde .case-meta{border-color:rgb(255 255 255/.14);margin-top:0}
body[data-page="cases"] .case-shunde .case-meta div{border-color:rgb(255 255 255/.14)}
body[data-page="cases"] .case-shunde .case-meta dt{color:#8e99a9}
body[data-page="cases"] .case-shunde .case-meta dd,body[data-page="cases"] .case-shunde .case-meta dd a{color:#fff}
body[data-page="cases"] .case-shunde .case-copy>p:not(.case-type){color:#b9c2ce}
body[data-page="cases"] .case-shunde .case-keywords span{border-color:rgb(255 255 255/.16);background:transparent;color:#d8dee7}
body[data-page="cases"] .case-shantou{background:#f6f8fa}
body[data-page="cases"] .case-shantou-grid{display:grid;grid-template-columns:.72fr .78fr 1.5fr;gap:55px;align-items:center}
body[data-page="cases"] .case-shantou-grid h2{font-size:clamp(36px,3.2vw,54px)}
body[data-page="cases"] .case-shantou-grid .cases-text-link{margin-top:32px}
body[data-page="cases"] .case-client{color:#263140;font-size:14px;font-weight:900}
body[data-page="cases"] .case-service-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:28px}
body[data-page="cases"] .case-service-list span{padding:15px;border-left:2px solid var(--red);background:#fff;color:#4c5766;font-size:13px;font-weight:800}
body[data-page="cases"] .cases-cta{padding:100px 0;background:#fff}
body[data-page="cases"] .cases-cta-inner{display:flex;justify-content:space-between;align-items:center;gap:40px;padding:58px 64px;border-radius:18px;background:#151d29;color:#fff}
body[data-page="cases"] .cases-cta h2{margin:0;font-size:clamp(34px,3.2vw,52px);letter-spacing:-.04em}
body[data-page="cases"] .cases-cta p{margin:12px 0 0;color:#b9c2ce;font-size:16px}
body[data-page="cases"].cases-motion-ready [data-case-reveal]{opacity:0;transform:translateY(26px);transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"].cases-motion-ready [data-case-reveal].is-visible{opacity:1;transform:none}
body[data-page="cases"] a:focus-visible{outline:3px solid rgb(230 0 28/.3);outline-offset:4px}
@media(max-width:1180px){body[data-page="cases"] .cases-hero-grid,body[data-page="cases"] .case-featured-grid{grid-template-columns:1fr 1fr;gap:46px}body[data-page="cases"] .case-split{grid-template-columns:1fr 1fr;gap:48px}body[data-page="cases"] .case-shantou-grid{grid-template-columns:1fr 1fr}body[data-page="cases"] .case-shantou-browser{grid-column:1/-1}}
@media(max-width:760px){body[data-page="cases"] .cases-hero{min-height:auto;padding:64px 0 72px}body[data-page="cases"] .cases-hero-grid,body[data-page="cases"] .case-featured-grid,body[data-page="cases"] .case-split,body[data-page="cases"] .case-innovation-head,body[data-page="cases"] .case-innovation-grid,body[data-page="cases"] .case-shantou-grid{grid-template-columns:1fr;gap:42px}body[data-page="cases"] .cases-hero h1{font-size:44px;letter-spacing:-.045em}body[data-page="cases"] .cases-hero-lead{font-size:16px}body[data-page="cases"] .cases-capability-list{row-gap:12px}body[data-page="cases"] .cases-capability-list span{width:50%;padding-left:14px}body[data-page="cases"] .cases-capability-list span:nth-child(odd){padding-left:0;border-left:0}body[data-page="cases"] .cases-hero-actions{align-items:flex-start;flex-direction:column;gap:22px}body[data-page="cases"] .cases-proof-stat{right:12px;width:160px}body[data-page="cases"] .cases-anchor-nav{top:93px;overflow:hidden}body[data-page="cases"] .cases-anchor-inner{justify-content:flex-start;overflow-x:auto;scrollbar-width:none}body[data-page="cases"] .case-section{padding:82px 0;scroll-margin-top:150px}body[data-page="cases"] .case-copy h2,body[data-page="cases"] .case-innovation-head h2,body[data-page="cases"] .case-shantou-grid h2{font-size:38px}body[data-page="cases"] .case-evidence{grid-template-columns:1fr 1fr;margin-top:50px}body[data-page="cases"] .case-evidence div,body[data-page="cases"] .case-evidence div:first-child{padding:22px 16px;border-left:0;border-bottom:1px solid #d8dee7}body[data-page="cases"] .case-visual-placeholder{min-height:420px;padding:34px}body[data-page="cases"] .case-visual-placeholder:before{font-size:120px}body[data-page="cases"] .case-innovation-head>p{margin:0}body[data-page="cases"] .case-innovation-grid{margin-top:45px;padding-top:40px}body[data-page="cases"] .case-innovation-numbers strong{font-size:50px}body[data-page="cases"] .cases-cta{padding:64px 0}body[data-page="cases"] .cases-cta-inner{align-items:flex-start;flex-direction:column;padding:40px 28px}}
@media(prefers-reduced-motion:reduce){body[data-page="cases"]{scroll-behavior:auto}body[data-page="cases"].cases-motion-ready [data-case-reveal]{opacity:1;transform:none;transition:none}body[data-page="cases"] .cases-browser img,body[data-page="cases"] .cases-text-link{transition:none}}


/* Browser feedback refinement: compact case index, light innovation section, generated case art */
body[data-page="cases"] .cases-anchor-nav{top:108px;padding:14px 0;border-top:0;border-bottom:1px solid #e8ecf1;background:rgb(255 255 255/.94)}
body[data-page="cases"] .cases-anchor-inner{width:max-content;max-width:calc(100% - 32px);height:44px;margin:0 auto;padding:4px 6px;display:flex;align-items:center;gap:2px;border:1px solid #e3e7ed;border-radius:12px;background:#f7f8fa;box-shadow:0 8px 24px rgb(17 24 39/.05)}
body[data-page="cases"] .cases-anchor-label{padding:0 13px 0 9px;color:#929aa6;font-size:11px;font-weight:850;letter-spacing:.08em;white-space:nowrap}
body[data-page="cases"] .cases-anchor-inner a{height:34px;padding:0 12px;display:flex;align-items:center;gap:0;border-radius:8px;color:#747e8c;font-size:12px;font-weight:850;transition:background .25s ease,color .25s ease,gap .3s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .cases-anchor-inner a i{font-style:normal;font-size:10px;font-weight:900}
body[data-page="cases"] .cases-anchor-inner a b{max-width:0;opacity:0;overflow:hidden;white-space:nowrap;font-size:12px;transition:max-width .3s cubic-bezier(.16,1,.3,1),opacity .2s ease}
body[data-page="cases"] .cases-anchor-inner a:after{display:none}
body[data-page="cases"] .cases-anchor-inner a:hover{color:#303a48;background:#fff}
body[data-page="cases"] .cases-anchor-inner a.is-active{gap:8px;color:var(--red);background:#fff;box-shadow:0 3px 12px rgb(17 24 39/.08)}
body[data-page="cases"] .cases-anchor-inner a.is-active b{max-width:72px;opacity:1}
body[data-page="cases"] .case-section{scroll-margin-top:150px}
body[data-page="cases"] .case-art{position:relative;margin:0;border:1px solid #dce2e9;border-radius:18px;background:#fff;box-shadow:0 28px 70px rgb(17 24 39/.13);overflow:hidden}
body[data-page="cases"] .case-art img{display:block;width:100%;aspect-ratio:3/2;object-fit:cover;transition:transform .7s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-art:hover img{transform:scale(1.018)}
body[data-page="cases"] .case-shunde{background:#fff;color:var(--cases-ink)}
body[data-page="cases"] .case-shunde .case-type{color:var(--red)}
body[data-page="cases"] .case-innovation-head h2{color:var(--cases-ink)}
body[data-page="cases"] .case-innovation-head>p{color:var(--cases-muted)}
body[data-page="cases"] .case-innovation-grid{border-top-color:var(--cases-line)}
body[data-page="cases"] .case-innovation-numbers div{background:#f3f6f9;border:1px solid #e5e9ee}
body[data-page="cases"] .case-innovation-numbers strong{color:var(--red)}
body[data-page="cases"] .case-innovation-numbers span{color:#667181}
body[data-page="cases"] .case-shunde .case-meta{border-color:var(--cases-line)}
body[data-page="cases"] .case-shunde .case-meta div{border-color:var(--cases-line)}
body[data-page="cases"] .case-shunde .case-meta dt{color:#8a93a0}
body[data-page="cases"] .case-shunde .case-meta dd,body[data-page="cases"] .case-shunde .case-meta dd a{color:#273242}
body[data-page="cases"] .case-shunde .case-copy>p:not(.case-type){color:var(--cases-muted)}
body[data-page="cases"] .case-shunde .case-keywords span{border-color:#dfe4ea;background:#f8fafb;color:#4d5868}
@media(max-width:760px){
 body[data-page="cases"] .cases-anchor-nav{top:93px;padding:9px 0}
 body[data-page="cases"] .cases-anchor-inner{max-width:calc(100% - 24px);height:42px;overflow:visible}
 body[data-page="cases"] .cases-anchor-label{display:none}
 body[data-page="cases"] .cases-anchor-inner a{padding:0 10px}
 body[data-page="cases"] .cases-anchor-inner a b{max-width:58px;opacity:1}
 body[data-page="cases"] .cases-anchor-inner a.is-active{gap:6px}
 body[data-page="cases"] .case-section{scroll-margin-top:132px}
}
@media(prefers-reduced-motion:reduce){body[data-page="cases"] .case-art img,body[data-page="cases"] .cases-anchor-inner a,body[data-page="cases"] .cases-anchor-inner a b{transition:none}}

/* Browser feedback refinement: unified case cover proportions */
body[data-page="cases"] .case-art{height:520px}
body[data-page="cases"] .case-art img{height:100%;aspect-ratio:auto;object-fit:cover}
body[data-page="cases"] .case-art-shunde{margin-top:62px}
body[data-page="cases"] .case-innovation-grid{margin-top:54px}
body[data-page="cases"] #guangdong{padding-top:104px}
@media(max-width:1180px){
 body[data-page="cases"] .case-art{height:480px}
}
@media(max-width:760px){
 body[data-page="cases"] .case-art{height:310px}
 body[data-page="cases"] .case-art-shunde{margin-top:38px}
 body[data-page="cases"] .case-innovation-grid{margin-top:38px}
 body[data-page="cases"] #guangdong{padding-top:70px}
}

/* Browser feedback refinement: spacing, Shunde composition and elevated interactions */
body[data-page="cases"] #guangdong{padding-top:134px}
body[data-page="cases"] .case-art{isolation:isolate;transition:transform .5s cubic-bezier(.16,1,.3,1),box-shadow .5s cubic-bezier(.16,1,.3,1),border-color .35s ease}
body[data-page="cases"] .case-art:after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(115deg,transparent 34%,rgb(255 255 255/.26) 49%,transparent 64%);transform:translateX(-125%);transition:transform .85s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-art:hover{transform:translateY(-6px);border-color:#cfd6df;box-shadow:0 34px 78px rgb(17 24 39/.18)}
body[data-page="cases"] .case-art:hover:after{transform:translateX(125%)}
body[data-page="cases"] .case-art:hover img{transform:scale(1.025)}
body[data-page="cases"] .case-meta dd a{position:relative;padding-right:3px}
body[data-page="cases"] .case-meta dd a:after{content:"";position:absolute;left:0;right:3px;bottom:1px;height:1px;background:var(--red);transform:scaleX(0);transform-origin:left;transition:transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-meta dd a:hover:after{transform:scaleX(1)}
body[data-page="cases"] .case-evidence div{transition:background .3s ease,transform .3s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-evidence div:hover{background:rgb(255 255 255/.7);transform:translateY(-4px)}
body[data-page="cases"] .case-keywords span{transition:color .25s ease,border-color .25s ease,background .25s ease,transform .25s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-keywords span:hover{color:var(--red);border-color:rgb(230 0 28/.28);background:#fff5f6;transform:translateY(-2px)}
body[data-page="cases"] .case-shunde .case-innovation-grid{position:relative;grid-template-columns:minmax(320px,.78fr) minmax(0,1.22fr);gap:0;margin-top:46px;padding:0;border:1px solid #e1e6ec;border-radius:18px;background:#f7f9fb;box-shadow:0 18px 48px rgb(17 24 39/.08);overflow:hidden;transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-shunde .case-innovation-grid:hover{transform:translateY(-5px);box-shadow:0 26px 62px rgb(17 24 39/.12)}
body[data-page="cases"] .case-shunde .case-innovation-numbers{display:grid;grid-template-columns:1fr 1fr;gap:0;min-height:100%;border-right:1px solid #e1e6ec;background:#fff}
body[data-page="cases"] .case-shunde .case-innovation-numbers div{position:relative;min-height:100%;padding:42px 30px;display:flex;flex-direction:column;justify-content:center;border:0;border-radius:0;background:#fff}
body[data-page="cases"] .case-shunde .case-innovation-numbers div+div{border-left:1px solid #e1e6ec}
body[data-page="cases"] .case-shunde .case-innovation-numbers div:after{content:"";position:absolute;left:30px;bottom:28px;width:28px;height:2px;background:var(--red);transform-origin:left;transition:width .35s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-shunde .case-innovation-numbers div:hover:after{width:54px}
body[data-page="cases"] .case-shunde .case-innovation-numbers strong{font-size:clamp(54px,5vw,76px);letter-spacing:-.055em}
body[data-page="cases"] .case-shunde .case-innovation-numbers span{max-width:120px;margin-top:18px;line-height:1.55}
body[data-page="cases"] .case-shunde .case-innovation-grid .case-copy{padding:38px 42px;background:#f7f9fb}
body[data-page="cases"] .case-shunde .case-innovation-grid .case-meta{margin:0}
body[data-page="cases"] .case-shunde .case-innovation-grid .case-meta div{grid-template-columns:92px 1fr;padding:15px 0}
body[data-page="cases"] .case-shunde .case-innovation-grid .case-copy>p:not(.case-type){margin-top:24px;font-size:15px;line-height:1.82}
body[data-page="cases"] .case-shunde .case-innovation-grid .case-keywords{margin-top:22px}
body[data-page="cases"] .cases-cta{padding:78px 0 92px;background:#f6f8fa}
body[data-page="cases"] .cases-cta-inner{min-height:0;padding:34px 42px;border:1px solid #e2e7ed;border-radius:18px;background:#fff;color:var(--cases-ink);box-shadow:0 16px 44px rgb(17 24 39/.1);transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s cubic-bezier(.16,1,.3,1),border-color .35s ease}
body[data-page="cases"] .cases-cta-inner:hover{transform:translateY(-6px);border-color:#d6dce4;box-shadow:0 26px 66px rgb(17 24 39/.15)}
body[data-page="cases"] .cases-cta h2{font-size:clamp(30px,2.7vw,44px);color:var(--cases-ink)}
body[data-page="cases"] .cases-cta p{margin-top:8px;color:var(--cases-muted);font-size:15px}
body[data-page="cases"] .cases-cta .btn{min-height:46px;box-shadow:0 12px 26px rgb(230 0 28/.2)}
body[data-page="cases"] .cases-cta .btn:hover{transform:translateY(-3px);box-shadow:0 18px 34px rgb(230 0 28/.3)}
@media(max-width:900px){
 body[data-page="cases"] .case-shunde .case-innovation-grid{grid-template-columns:1fr}
 body[data-page="cases"] .case-shunde .case-innovation-numbers{min-height:230px;border-right:0;border-bottom:1px solid #e1e6ec}
}
@media(max-width:760px){
 body[data-page="cases"] #guangdong{padding-top:100px}
 body[data-page="cases"] .case-art:hover,body[data-page="cases"] .case-shunde .case-innovation-grid:hover,body[data-page="cases"] .cases-cta-inner:hover{transform:none}
 body[data-page="cases"] .case-shunde .case-innovation-grid{margin-top:32px}
 body[data-page="cases"] .case-shunde .case-innovation-numbers{min-height:210px}
 body[data-page="cases"] .case-shunde .case-innovation-numbers div{padding:30px 20px}
 body[data-page="cases"] .case-shunde .case-innovation-numbers div:after{left:20px;bottom:20px}
 body[data-page="cases"] .case-shunde .case-innovation-grid .case-copy{padding:26px 22px}
 body[data-page="cases"] .cases-cta{padding:58px 0 72px}
 body[data-page="cases"] .cases-cta-inner{padding:28px 24px;gap:24px}
}
@media(prefers-reduced-motion:reduce){
 body[data-page="cases"] .case-art,body[data-page="cases"] .case-art:after,body[data-page="cases"] .case-meta dd a:after,body[data-page="cases"] .case-evidence div,body[data-page="cases"] .case-keywords span,body[data-page="cases"] .case-shunde .case-innovation-grid,body[data-page="cases"] .cases-cta-inner{transition:none}
 body[data-page="cases"] .case-art:hover,body[data-page="cases"] .case-evidence div:hover,body[data-page="cases"] .case-keywords span:hover,body[data-page="cases"] .case-shunde .case-innovation-grid:hover,body[data-page="cases"] .cases-cta-inner:hover{transform:none}
}

/* Browser feedback refinement: aligned case headings and unified link motion */
body[data-page="cases"] #guangdong{padding-top:154px}
body[data-page="cases"] .case-featured-grid,
body[data-page="cases"] .case-split{align-items:start}
body[data-page="cases"] .cases-kicker,
body[data-page="cases"] .case-type{margin-bottom:10px}
body[data-page="cases"] .case-meta dd a{transition:color .22s ease,transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-meta dd a:hover{transform:translateX(6px)}
body[data-page="cases"] .case-shantou-grid .cases-text-link{position:relative;width:max-content;transition:color .22s ease,transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-shantou-grid .cases-text-link:after{content:"";position:absolute;left:0;right:0;bottom:-4px;height:1px;background:var(--red);transform:scaleX(0);transform-origin:left;transition:transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .case-shantou-grid .cases-text-link:hover{gap:10px;color:var(--red);transform:translateX(6px)}
body[data-page="cases"] .case-shantou-grid .cases-text-link:hover:after{transform:scaleX(1)}
@media(max-width:760px){
 body[data-page="cases"] #guangdong{padding-top:120px}
}
@media(prefers-reduced-motion:reduce){
 body[data-page="cases"] .case-meta dd a,
 body[data-page="cases"] .case-shantou-grid .cases-text-link,
 body[data-page="cases"] .case-shantou-grid .cases-text-link:after{transition:none}
 body[data-page="cases"] .case-meta dd a:hover,
 body[data-page="cases"] .case-shantou-grid .cases-text-link:hover{transform:none}
}

/* Browser feedback refinement: inline Guangdong platform links */
body[data-page="cases"] #guangdong .case-meta div:nth-child(2) dd{display:flex;align-items:center;gap:22px;flex-wrap:wrap}
body[data-page="cases"] #guangdong .case-meta div:nth-child(2) dd a{display:inline-flex;width:auto;white-space:nowrap}
body[data-page="cases"] #guangdong .case-meta + p{margin-top:14px}
@media(max-width:520px){
 body[data-page="cases"] #guangdong .case-meta div:nth-child(2) dd{gap:6px 18px}
}

/* Browser feedback refinement: tighter CTA spacing and reliable arrow */
body[data-page="cases"] .case-shantou{padding-bottom:72px}
body[data-page="cases"] .cases-cta{padding-top:32px}
body[data-page="cases"] .cases-cta .btn{gap:10px}
body[data-page="cases"] .cases-cta .btn:after{content:"→";display:inline-block;font-size:18px;line-height:1;transition:transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .cases-cta .btn:hover:after{transform:translateX(5px)}
@media(max-width:760px){
 body[data-page="cases"] .case-shantou{padding-bottom:48px}
 body[data-page="cases"] .cases-cta{padding-top:22px}
}
@media(prefers-reduced-motion:reduce){
 body[data-page="cases"] .cases-cta .btn:after{transition:none}
 body[data-page="cases"] .cases-cta .btn:hover:after{transform:none}
}

/* Reliable CTA arrow: real DOM element avoids global button pseudo-element mask */
body[data-page="cases"] .cases-cta .btn:after{content:none!important;display:none!important}
body[data-page="cases"] .cases-cta-arrow{display:inline-block;margin-left:2px;font-size:18px;line-height:1;font-weight:800;transform:translateX(0);transition:transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .cases-cta .btn:hover .cases-cta-arrow{transform:translateX(5px)}
@media(prefers-reduced-motion:reduce){
 body[data-page="cases"] .cases-cta-arrow{transition:none}
 body[data-page="cases"] .cases-cta .btn:hover .cases-cta-arrow{transform:none}
}

/* Browser feedback refinement: final case offset and Iconify CTA arrow */
body[data-page="cases"] #guangdong{padding-top:174px}
body[data-page="cases"] .cases-cta-arrow{width:18px;height:18px;margin-left:2px;display:inline-block;flex:0 0 auto;color:currentColor;transform:translateX(0);transition:transform .28s cubic-bezier(.16,1,.3,1)}
body[data-page="cases"] .cases-cta .btn:hover .cases-cta-arrow{transform:translateX(5px)}
@media(max-width:760px){
 body[data-page="cases"] #guangdong{padding-top:140px}
}

/* About history performance: keep large sections on the normal paint layer. */
body[data-page="about"].about-history-ready .about-history-step,
body[data-page="about"].about-history-ready .about-history-step.is-active{
  opacity:1;
  transform:none;
  transition:none;
}
body[data-page="about"] .about-history-step time{
  transition:color .24s ease;
}
body[data-page="about"] .about-history-step time::after{
  content:"";
  width:44px;
  height:4px;
  display:block;
  margin:20px 0 0;
  background:var(--about-red);
  opacity:0;
  transform:scaleX(.55);
  transform-origin:left center;
  transition:opacity .2s ease,transform .28s cubic-bezier(.16,1,.3,1);
}
body[data-page="about"] .about-history-step.is-active time::after{
  opacity:1;
  transform:scaleX(1);
}
body[data-page="about"] .about-history-progress span{
  height:100%;
  transform:scaleY(var(--history-progress-scale,0));
  transform-origin:center top;
  transition:transform .28s cubic-bezier(.16,1,.3,1);
}
@media (max-width:900px), (max-height:819px){
  body[data-page="about"].about-history-ready .about-history-step,
  body[data-page="about"].about-history-ready .about-history-step.is-active,
  body[data-page="about"] .about-history-step time,
  body[data-page="about"] .about-history-step > div{
    opacity:1!important;
    transform:none!important;
  }
}

/* Shared scroll reveal: home, AI training and AI tools */
body:is([data-page="home"], [data-page="cases"], [data-page="training"], [data-page="tools"], [data-solution-key="digital"], [data-solution-key="content-brand"], [data-solution-key="ai-application"], [data-solution-key="ai-talent"]).page-reveal-ready [data-page-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .66s cubic-bezier(.16, 1, .3, 1),
    transform .66s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--page-reveal-delay, 0ms);
  will-change: opacity, transform;
}

body:is([data-page="home"], [data-page="cases"], [data-page="training"], [data-page="tools"], [data-solution-key="digital"], [data-solution-key="content-brand"], [data-solution-key="ai-application"], [data-solution-key="ai-talent"]).page-reveal-ready [data-page-reveal].is-page-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  body:is([data-page="home"], [data-page="cases"], [data-page="training"], [data-page="tools"], [data-solution-key="digital"], [data-solution-key="content-brand"], [data-solution-key="ai-application"], [data-solution-key="ai-talent"]).page-reveal-ready [data-page-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* 2026-07-21 shared interaction consistency pass */
.btn:has(.btn-icon)::after,
.ghost-btn:has(.btn-icon)::after,
.mini-btn:has(.btn-icon)::after,
.contact-form .btn:has(.btn-icon)::after {
  content:none!important;
  display:none!important;
}
.btn .btn-icon,
.ghost-btn .btn-icon,
.mini-btn .btn-icon {
  display:block;
  align-self:center;
  overflow:visible;
}
.visually-hidden {
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  white-space:nowrap!important;
  border:0!important;
}
/* Mobile header reliability: preserve the desktop layout while keeping the compact navigation reachable. */
@media (max-width: 1280px) {
  .nav-shell {
    overflow: visible;
    grid-template-columns: 190px minmax(0, 1fr) 54px;
  }
  .nav-shell > .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav-shell > .menu-btn {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    align-self: center;
    justify-self: end;
    position: relative;
    z-index: 12;
  }
  .nav-shell > .main-nav {
    top: calc(100% + 10px);
    z-index: 11;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: opacity .22s ease, transform .3s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .3s;
  }
  .nav-shell > .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

}
@media (max-width: 760px) {
  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    grid-template-columns: minmax(0, 1fr) 54px;
  }
  .nav-shell > .menu-btn {
    grid-column: 2;
  }
  .nav-shell > .main-nav {
    left: 0;
    right: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-shell > .main-nav,
  .menu-btn,
  .menu-icon-fallback,
  .menu-icon-fallback::before,
  .menu-icon-fallback::after {
    transition: none;
  }
}
/* Homepage service detail checks: centered group with left-aligned rows */
body[data-page="home"] .business-card .service-points {
  width: max-content;
  max-width: 100%;
  min-height: 112px;
  margin: 8px auto 12px;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  list-style: none;
  text-align: left;
}
body[data-page="home"] .business-card .service-points li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 5px;
  align-items: start;
  color: #667085;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 650;
}
body[data-page="home"] .business-card .service-points iconify-icon {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: var(--red);
  stroke-width: 2.4;
}
@media (max-width: 760px) {
  body[data-page="home"] .business-card .service-points { min-height: 0; }
}
/* Homepage browser refinements: CTA color, solution copy alignment, capability type */
body[data-page="home"] .hero-actions .service-ghost-btn {
  color: var(--red);
}
body[data-page="home"] .hero-actions .service-ghost-btn .btn-icon {
  color: currentColor;
}
body[data-page="home"] .business-card .service-copy {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
body[data-page="home"] .business-card .service-copy h3 {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
body[data-page="home"] .business-card .service-copy .service-points {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}
body[data-page="home"] .cap-item strong {
  font-size: 19px;
}
body[data-page="home"] .cap-item p {
  font-size: 15px;
}
/* Homepage browser refinements: secondary CTA hover, centered metrics, address icon */
body[data-page="home"] .hero-actions .service-ghost-btn:hover,
body[data-page="home"] .hero-actions .service-ghost-btn:focus-visible {
  color: #fff;
}
body[data-page="home"] .trust-item {
  justify-content: center;
}
.contact-line span iconify-icon {
  width: 14px;
  height: 14px;
  color: #aab2bf;
}
.contact-address {
  align-items: flex-start;
  line-height: 1.55;
}
.contact-address span {
  flex: 0 0 33px;
}
/* Homepage solution cards: regular descriptions and tighter upper spacing */
body[data-page="home"] .business-card {
  padding-top: 14px;
}
body[data-page="home"] .business-card > img {
  margin-top: -4px;
  margin-bottom: 4px;
}
body[data-page="home"] .business-card .service-points li {
  font-weight: 400;
}
/* Footer balance: uniform contact type, wider address column, filled location icon */
@media (min-width: 1281px) {
  .footer-grid {
    grid-template-columns: minmax(300px, 1.15fr) minmax(120px, .5fr) minmax(130px, .55fr) minmax(430px, 1.25fr);
    gap: 40px;
  }
  .footer-grid > div {
    min-height: 190px;
  }
  .footer-grid > div:not(:first-child) {
    padding-left: 40px;
  }
}
.contact-line,
.contact-line:first-of-type {
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0;
}
.contact-line {
  margin-bottom: 10px !important;
}
.contact-address {
  align-items: center;
  white-space: nowrap;
}
.contact-line span iconify-icon {
  width: 16px;
  height: 16px;
  color: #aab2bf;
}
/* Footer columns: equal navigation widths and right-aligned contact block */
@media (min-width: 1281px) {
  .footer-grid {
    grid-template-columns: minmax(300px, 1.15fr) minmax(180px, .55fr) minmax(180px, .55fr) minmax(430px, 1.25fr);
  }
  .footer-grid > div:nth-child(2) a,
  .footer-grid > div:nth-child(3) a {
    line-height: 44px;
  }
  .footer-grid > div:last-child {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}
/* Footer precision: four equal columns and optical icon alignment */
@media (min-width: 1281px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .footer-grid > div:last-child {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}
.contact-line:nth-of-type(2) span img {
  transform: translateX(1px);
}
.contact-address span iconify-icon {
  width: 15px;
  height: 15px;
  font-size: 15px;
  line-height: 1;
  transform: translate(0, 0);
}
body[data-page="home"] .business-card .service-points {
  position: relative;
  top: 2px;
}
/* Footer contact icon optical sizing */
.contact-line span {
  width: 31px;
  height: 31px;
}
.contact-address span {
  flex-basis: 31px;
}
.contact-address span img {
  transform: translateX(1px) scale(1.2);
  transform-origin: center;
}

/* Homepage solution check optical alignment */
body[data-page="home"] .business-card .service-points li > iconify-icon {
  transform: translateY(3px);
}

/* Footer divider and copyright optical offset */
.footer > .container.copyright {
  position: relative;
  top: 3px;
}

/* Footer navigation rhythm matches contact rows */
.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) a {
  line-height: 34px;
  margin: 0 0 10px;
}

/* Homepage section background sequence */
body[data-page="home"] main.site > section:nth-of-type(2),
body[data-page="home"] main.site > section:nth-of-type(4),
body[data-page="home"] main.site > section:nth-of-type(6),
body[data-page="home"] main.site > section:nth-of-type(7) {
  background: #fff;
}
body[data-page="home"] main.site > section:nth-of-type(3),
body[data-page="home"] main.site > section:nth-of-type(5),
body[data-page="home"] main.site > section:nth-of-type(8) {
  background: #f3f6fb;
}
/* Homepage dark CTA optical lift */
body[data-page="home"] main.site > section:nth-of-type(7) .dark-cta {
  position: relative;
  top: -47px;
}
@media (min-width: 1281px) {
  body[data-page="home"] main.site > section:nth-of-type(7) {
    padding-bottom: 32px;
  }
}

/* AI training hero metrics: center each content group */
@media (min-width: 761px) {
  body[data-page='training'] .training-hero-metrics > div {
    grid-template-columns: 42px auto;
    justify-content: center;
  }
}

/* AI training hero metric icon tiles match homepage banner */
body[data-page='training'] .training-hero-metrics > div {
  grid-template-columns: 46px 1fr;
}
body[data-page='training'] .training-hero-metrics span {
  width: 46px;
  height: 46px;
  border: 1px solid rgb(230 0 28 / .12);
  border-radius: 14px;
  background: rgb(255 255 255 / .9);
  box-shadow: 0 12px 28px rgb(10 24 46 / .08);
  color: #e6001c;
}
body[data-page='training'] .training-hero-metrics span iconify-icon {
  width: 24px;
  height: 24px;
  color: #e6001c;
}
@media (min-width: 761px) {
  body[data-page='training'] .training-hero-metrics > div {
    grid-template-columns: 46px auto;
    justify-content: center;
  }
}
/* AI tools hero metric groups centered in each column */
body[data-page='tools'] .tools-metric-strip article {
  justify-content: center;
}

/* About page content hierarchy and caption refinements */
body[data-page="about"] .about-belief-message h2 {
  max-width: 760px;
  color: rgb(255 255 255 / .58);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.4;
  letter-spacing: -.025em;
  font-weight: 650;
}
body[data-page="about"] .about-belief-message > .about-belief-statement {
  max-width: 1100px;
  margin: 30px 0 0;
  color: #ef3349;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 950;
}
body[data-page="about"] .about-field-card figcaption strong {
  font-size: 22px;
}
body[data-page="about"] .about-field-card figcaption span {
  font-size: 17px;
}
@media (max-width: 560px) {
  body[data-page="about"] .about-belief-message h2 {
    font-size: 26px;
  }
  body[data-page="about"] .about-belief-message > .about-belief-statement {
    font-size: 38px;
    line-height: 1.25;
  }
}
/* About metrics centered content and belief color assignment */
body[data-page="about"] .about-metrics > div {
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 0;
  text-align: center;
}
body[data-page="about"] .about-metrics p {
  margin: 0;
}
body[data-page="about"] .about-belief-message h2 {
  color: #ef3349;
}
body[data-page="about"] .about-belief-message > .about-belief-statement {
  color: #fff;
}
/* About belief statement: more generous line spacing */
body[data-page="about"] .about-belief-message > .about-belief-statement {
  line-height: 1.32;
}

/* Mobile nav drawer refinement: right-side compact menu, desktop unchanged. */
@media (max-width: 760px) {
  .nav-shell > .main-nav {
    left: auto;
    right: 0;
    width: min(280px, calc(100vw - 40px));
    align-items: stretch;
    text-align: right;
    border-radius: 18px;
  }
  .nav-shell > .main-nav a {
    justify-content: flex-end;
  }
}
/* Home dual-banner carousel: selected infinity visual */
body[data-page="home"] .hero-copy-stack {
  display: grid;
  min-width: 0;
}

body[data-page="home"] .hero-copy-slide {
  grid-area: 1 / 1;
  align-self: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .56s cubic-bezier(.16, 1, .3, 1),
    transform .72s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear .72s;
}

body[data-page="home"] .hero-copy-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: .16s, .16s, 0s;
}

body[data-page="home"] .hero-bg-slide--infinity {
  background-image: url("/assets/home-education-simple-infinity-banner-image2-aMSPc-Ev.webp");
  background-color: #f8fbff;
  background-position: right 48%;
  background-repeat: no-repeat;
  background-size: auto 82%;
  transform: scale(1);
}

body[data-page="home"] .hero-bg-slide--infinity.is-active {
  transform: scale(1.018);
}

body[data-page="home"] .hero-bg-slide--infinity::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(248 251 255 / 1) 0%,
    rgb(248 251 255 / 1) 42%,
    rgb(248 251 255 / .98) 50%,
    rgb(248 251 255 / .78) 58%,
    rgb(248 251 255 / .22) 67%,
    rgb(248 251 255 / 0) 75%
  );
  content: "";
  pointer-events: none;
}

body[data-page="home"] #hero-copy-slide-2 {
  max-width: 820px;
}

body[data-page="home"] #hero-copy-slide-2 h1 {
  max-width: 820px;
  font-size: clamp(55px, 5.22vw, 77px);
  line-height: 1.16;
  text-wrap: balance;
}

body[data-page="home"] #hero-copy-slide-2 p {
  max-width: 660px;
}

body[data-page="home"] .hero-switch button:focus-visible {
  outline: 3px solid rgb(230 0 28 / .24);
  outline-offset: 5px;
}

@media (max-width: 1280px) {
  body[data-page="home"] .hero-bg-slide--infinity {
    background-position: right 52%;
    background-size: auto 76%;
  }

  body[data-page="home"] .hero-bg-slide--infinity::after {
    background: linear-gradient(
      90deg,
      rgb(248 251 255 / 1) 0%,
      rgb(248 251 255 / 1) 45%,
      rgb(248 251 255 / .96) 54%,
      rgb(248 251 255 / .54) 66%,
      rgb(248 251 255 / .06) 82%,
      rgb(248 251 255 / 0) 100%
    );
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-copy-stack {
    align-self: start;
  }

  body[data-page="home"] .hero-copy-slide {
    align-self: start;
  }

  body[data-page="home"] .hero-bg-slide--infinity {
    background-color: #f8fbff;
    background-position: 72% 72%;
    background-repeat: no-repeat;
    background-size: auto 58%;
  }

  body[data-page="home"] .hero-bg-slide--infinity::after {
    background: linear-gradient(
      180deg,
      #f8fbff 0%,
      #f8fbff 38%,
      rgb(248 251 255 / .94) 46%,
      rgb(248 251 255 / .18) 60%,
      rgb(248 251 255 / 0) 72%
    );
  }

  body[data-page="home"] #hero-copy-slide-2 .eyebrow {
    max-width: 100%;
    min-height: 0;
    padding: 9px 13px;
    line-height: 1.45;
  }

  body[data-page="home"] #hero-copy-slide-2 h1 {
    margin-top: 0;
    font-size: 34px;
    line-height: 1.18;
  }

  body[data-page="home"] #hero-copy-slide-2 p {
    max-width: 32em;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-copy-slide {
    transform: none;
    transition: none;
  }
}
body[data-page="home"] .hero.is-carousel-paused .hero-switch button.is-active::before {
  animation-play-state: paused;
}
/* Home second banner: full-bleed image without the left-side mask. */
body[data-page="home"] .hero-bg-slide--infinity,
body[data-page="home"] .hero-bg-slide--infinity.is-active {
  background-position: center;
  background-size: cover;
}

body[data-page="home"] .hero-bg-slide--infinity::after {
  content: none;
}
/* Browser comment: increase the visual weight of homepage capability icons. */
body[data-page="home"] .cap-item {
  padding-top: 24px;
  padding-bottom: 28px;
}

body[data-page="home"] .cap-item .mark {
  width: 82px;
  height: 82px;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  body[data-page="home"] .cap-item .mark {
    width: 72px;
    height: 72px;
  }
}

/* Production header glass: keep the row transparent and let only the nav shell blur the hero. */
.site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-shell {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .54), rgb(255 255 255 / .28)),
    rgb(255 255 255 / .22);
  border-color: rgb(255 255 255 / .74);
  backdrop-filter: blur(42px) saturate(220%) contrast(1.05);
  -webkit-backdrop-filter: blur(42px) saturate(220%) contrast(1.05);
  box-shadow:
    0 18px 54px rgb(15 26 46 / .13),
    inset 0 1px 0 rgb(255 255 255 / .82),
    inset 0 -1px 0 rgb(255 255 255 / .16);
}

.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .nav-shell {
  background:
    linear-gradient(90deg, rgb(255 255 255 / .58), rgb(255 255 255 / .34)),
    rgb(255 255 255 / .24);
  border-color: rgb(255 255 255 / .56);
  backdrop-filter: blur(46px) saturate(230%) contrast(1.06);
  -webkit-backdrop-filter: blur(46px) saturate(230%) contrast(1.06);
}

/* Udesk service panel: use the official IM page without loading the buggy button script. */
.udesk-service-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  justify-items: end;
  align-items: end;
  padding: 24px;
  background: rgb(15 23 42 / .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.udesk-service-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.udesk-service-dialog {
  width: min(420px, 100vw - 32px);
  height: min(660px, 100vh - 48px);
  overflow: hidden;
  border: 1px solid rgb(226 232 240 / .86);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgb(15 23 42 / .22);
}

.udesk-service-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 10px 0 16px;
  border-bottom: 1px solid #edf1f6;
  color: #111827;
  font-weight: 900;
}

.udesk-service-bar > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.udesk-service-bar a {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.udesk-service-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f3f6fa;
  color: #111827;
  font-size: 22px;
  line-height: 1;
}

.udesk-service-close:hover,
.udesk-service-close:focus-visible {
  background: var(--red);
  color: #fff;
}

.udesk-service-dialog iframe {
  width: 100%;
  height: calc(100% - 48px);
  border: 0;
}

@media (max-width: 760px) {
  .udesk-service-panel {
    padding: 12px;
  }

  .udesk-service-dialog {
    width: calc(100vw - 24px);
    height: min(620px, 100vh - 24px);
    border-radius: 16px;
  }
}

/* Keep customer service available from the first viewport; only back-to-top waits for scroll. */
.float-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-action {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.float-action.js-back-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
}

.float-actions.show .float-action.js-back-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.float-action.js-service,
.float-actions.show .float-action.js-service {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.float-action.js-service:hover,
.float-action.js-service:focus-visible {
  transform: translateY(-3px) scale(1);
}
