:root {
  color-scheme: light;
  --ink: #101917;
  --ink-soft: #223631;
  --muted: #667570;
  --muted-2: #8a9692;
  --line: #dfe7e4;
  --line-strong: #cbd8d4;
  --page: #f6f8f7;
  --surface: #ffffff;
  --surface-soft: #f9fbfa;
  --surface-green: #f0f8f1;
  --brand: #1677ff;
  --brand-dark: #0b3d91;
  --green: #2e7d32;
  --green-dark: #1c5f2a;
  --green-soft: #eaf7ec;
  --mint: #36b37e;
  --gold: #f6a623;
  --coral: #ef6a4b;
  --purple: #7d6be8;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 28px rgba(16, 25, 23, 0.07);
  --shadow-md: 0 22px 60px rgba(16, 25, 23, 0.12);
  --shadow-lg: 0 30px 90px rgba(16, 25, 23, 0.16);
  --header-height: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(46, 125, 50, 0.08), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(22, 119, 255, 0.08), transparent 30%),
    var(--page);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 231, 228, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 16px 42px rgba(16, 25, 23, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: fit-content;
  font-weight: 950;
  color: var(--ink);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  box-shadow: 0 8px 20px rgba(22, 119, 255, 0.22);
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: #fff;
}

.nav-actions {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(16, 25, 23, 0.05);
}

.nav-back:hover {
  border-color: rgba(46, 125, 50, 0.28);
  background: #fff;
}

.nav-cta,
.button,
.mobile-menu-btn,
.icon-button {
  border: 0;
  appearance: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-xs);
  color: #fff;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.22);
}

.nav-cta:hover {
  background: var(--green);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.mobile-menu-btn span,
.mobile-menu-btn::before,
.mobile-menu-btn::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  content: "";
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .mobile-menu-btn span {
  opacity: 0;
}

body.nav-open .mobile-menu-btn::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .mobile-menu-btn::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #071a38;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 70% 16%, rgba(167, 243, 185, 0.34), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(46, 125, 50, 0.46), transparent 34%),
    radial-gradient(circle at 24% 18%, rgba(22, 119, 255, 0.16), transparent 30%),
    linear-gradient(106deg, #061329 0%, #0b1f42 42%, #123f45 72%, #2e7d32 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.74;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.14), transparent 36%);
  background-size: 80px 80px, 80px 80px, auto;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 0.98fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
  min-height: clamp(720px, calc(100svh - var(--header-height)), 860px);
  padding: 84px 0 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.breadcrumb strong {
  color: #a7f3b9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: #a7f3b9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: #a7f3b9;
}

/* Banner title redraw: keep the headline in two clean lines instead of an accidental three-line wrap */
.hero-title-redraw {
  max-width: 740px;
  margin: 0 0 24px;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: normal;
}

.hero-title-redraw .hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 12px 30px rgba(3, 14, 34, 0.28);
}

.hero-title-redraw .hero-title-main {
  color: #fff;
  font-size: clamp(54px, 4.45vw, 72px);
}

.hero-title-redraw .hero-title-sub {
  margin-top: 8px;
  color: #a7f3b9;
  font-size: clamp(46px, 3.65vw, 60px);
  letter-spacing: -0.06em;
}

@media (max-width: 1100px) {
  .hero-title-redraw {
    max-width: 690px;
  }

  .hero-title-redraw .hero-title-main {
    font-size: clamp(50px, 6vw, 66px);
  }

  .hero-title-redraw .hero-title-sub {
    font-size: clamp(42px, 5vw, 54px);
  }
}

@media (max-width: 820px) {
  .hero-title-redraw {
    margin-bottom: 20px;
  }

  .hero-title-redraw .hero-title-main {
    font-size: 46px;
  }

  .hero-title-redraw .hero-title-sub {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .hero-title-redraw .hero-title-main {
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .hero-title-redraw .hero-title-sub {
    font-size: clamp(31px, 8.7vw, 38px);
  }
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 950;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.86;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius-xs);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 18px 36px rgba(46, 125, 50, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 48px rgba(46, 125, 50, 0.34);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button-ghost {
  color: var(--green-dark);
  border: 1px solid var(--line);
  background: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 32px;
}

.metric-card {
  min-height: 104px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.metric-card strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 950;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.11);
  font-size: 13px;
}

.hero-trust span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #a7f3b9;
  box-shadow: 0 0 0 4px rgba(167, 243, 185, 0.13);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual.hero-visual-clean {
  display: grid;
  align-items: center;
  justify-items: end;
  min-height: 628px;
}

.hero-visual.hero-visual-clean::before {
  position: absolute;
  inset: 10% 1% 14% 18%;
  z-index: 0;
  content: "";
  border-radius: 40px;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(167, 243, 185, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 80px rgba(4, 16, 35, 0.16);
  backdrop-filter: blur(6px);
}

.hero-visual.hero-visual-clean::after {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 78%;
  height: 72%;
  z-index: 0;
  content: "";
  border-radius: 48px;
  background: radial-gradient(circle at 50% 50%, rgba(167, 243, 185, 0.28), rgba(22, 119, 255, 0.06) 52%, transparent 72%);
  filter: blur(36px);
  opacity: 0.9;
}

.hero-showcase-card {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  margin: 0;
  transform: translateX(8px) rotate(-2.2deg);
}

.hero-showcase-card::before {
  position: absolute;
  inset: 8% 10% 12% 10%;
  z-index: -1;
  content: "";
  border-radius: 46px;
  background: radial-gradient(circle at 52% 44%, rgba(167, 243, 185, 0.28), rgba(167, 243, 185, 0.02) 56%, transparent 74%);
  filter: blur(28px);
}

.hero-showcase-card img {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 38px 76px rgba(4, 16, 35, 0.30);
}


.anchor-band {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 247, 0.86);
  backdrop-filter: blur(18px);
}

.anchor-scroll {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-scroll::-webkit-scrollbar {
  display: none;
}

.anchor-scroll a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 850;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.anchor-scroll a:hover,
.anchor-scroll a.active {
  color: #fff;
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.section {
  padding: 104px 0;
}

.section + .section {
  border-top: 1px solid rgba(223, 231, 228, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.54fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.kicker-line {
  width: 48px;
  height: 4px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--brand));
}

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

.overview-card,
.scene-card,
.role-panel,
.logic-card,
.component-card,
.operation-card,
.spec-card,
.delivery-card,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.overview-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
}

.overview-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 132px;
  height: 132px;
  border-radius: 36px;
  content: "";
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(22, 119, 255, 0.08));
  transform: rotate(14deg);
}

.overview-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.overview-card p,
.scene-card p,
.role-panel p,
.logic-card p,
.component-card p,
.operation-card p,
.spec-card p,
.delivery-card p {
  color: var(--muted);
}

.overview-card ul,
.scene-card ul,
.role-panel ul,
.operation-card ul,
.delivery-card ul,
.spec-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.overview-card li,
.scene-card li,
.role-panel li,
.operation-card li,
.delivery-card li,
.spec-card li {
  position: relative;
  padding-left: 18px;
}

.overview-card li::before,
.scene-card li::before,
.role-panel li::before,
.operation-card li::before,
.delivery-card li::before,
.spec-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.scene-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 28px;
  align-items: stretch;
}

.scene-cards {
  display: grid;
  gap: 14px;
}

.scene-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
}

.scene-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-size: 20px;
  font-weight: 950;
}

.scene-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(223, 231, 228, 0.8);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.scene-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: contain;
}

.visual-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 31, 26, 0.82), rgba(46, 125, 50, 0.78));
  backdrop-filter: blur(14px);
}

.visual-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.visual-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.role-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 850;
}

.role-tab[aria-selected="true"] {
  color: #fff;
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.22);
}

.role-panels {
  position: relative;
}

.role-panel {
  display: none;
  overflow: hidden;
}

.role-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
}

.role-copy {
  padding: 30px;
}

.role-copy img {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.module-cloud span,
.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 850;
}

.role-wireframe {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(22, 119, 255, 0.08)),
    #f7fbf8;
}

.mini-screen {
  max-width: 310px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  background: #11151d;
  box-shadow: 0 24px 70px rgba(16, 25, 23, 0.22);
}

.mini-screen-inner {
  overflow: hidden;
  border-radius: 26px;
  background: #f7faf7;
}

.mini-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.mini-hero {
  margin: 8px 12px 12px;
  padding: 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
}

.mini-hero strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.2;
}

.mini-hero span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.mini-search {
  margin: 0 12px 12px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted-2);
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 25, 23, 0.06);
  font-size: 12px;
}

.mini-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 12px 14px;
}

.mini-cat {
  display: grid;
  gap: 5px;
  justify-items: center;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.mini-cat::before {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  content: "";
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.18), rgba(22, 119, 255, 0.14));
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0 12px 16px;
}

.mini-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 25, 23, 0.05);
}

.mini-thumb {
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dceedd, #f6dfc5);
}

.mini-row strong {
  display: block;
  font-size: 13px;
}

.mini-row span {
  color: var(--muted);
  font-size: 11px;
}

.mini-price {
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.flow-track::before {
  position: absolute;
  top: 40px;
  left: 6%;
  right: 6%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--green), rgba(46, 125, 50, 0.16));
}

.flow-step {
  position: relative;
  z-index: 1;
  padding: 0 0 20px;
}

.step-dot {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border: 8px solid var(--page);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--brand));
  box-shadow: 0 12px 36px rgba(46, 125, 50, 0.22);
  font-weight: 950;
}

.flow-step h3 {
  margin-bottom: 6px;
  text-align: center;
  font-size: 17px;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.logic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.logic-card {
  padding: 26px;
}

.logic-card + .logic-card {
  margin-top: 14px;
}

.calculator-card {
  position: sticky;
  top: calc(var(--header-height) + 84px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.calculator-head {
  padding: 24px 24px 0;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 24px;
}

.service-option,
.slot-option,
.addon-option {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-option {
  padding: 14px;
  text-align: left;
}

.service-option.active,
.slot-option.active,
.addon-option.active {
  border-color: rgba(46, 125, 50, 0.44);
  background: var(--green-soft);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.11);
}

.service-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 950;
}

.service-option span {
  color: var(--muted);
  font-size: 13px;
}

.service-option em {
  display: block;
  margin-top: 8px;
  color: var(--coral);
  font-style: normal;
  font-weight: 950;
}

.calc-section {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

.calc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 950;
}

.slot-options,
.addon-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-option,
.addon-option {
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.price-panel {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #fff, #f5fbf6);
}

.price-line,
.price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.price-line + .price-line {
  margin-top: 8px;
}

.price-total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.price-total strong {
  color: var(--coral);
  font-size: 30px;
  line-height: 1;
}

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

.component-card {
  min-height: 260px;
  padding: 24px;
}

.component-preview {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(46, 125, 50, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 159, 89, 0.08), transparent 38%),
    linear-gradient(180deg, #f8fcf9 0%, #f3faf5 100%);
}

.service-card-preview {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(16, 25, 23, 0.07);
}

.service-card-preview .pic {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f9f59, #1f7fe8);
  box-shadow: 0 12px 22px rgba(46, 125, 50, 0.18);
}

.service-card-preview .pic::before {
  content: "价";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.service-card-preview strong,
.staff-preview strong,
.status-preview strong {
  display: block;
  margin-bottom: 5px;
}

.service-card-preview span,
.staff-preview span,
.status-preview span {
  color: var(--muted);
  font-size: 12px;
}

.service-card-preview em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 6px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(241, 93, 66, 0.1);
  color: var(--coral);
  font-style: normal;
  font-weight: 950;
}

.chip-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-preview span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(46, 125, 50, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.staff-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--brand));
  font-weight: 950;
}

.status-preview {
  display: grid;
  gap: 10px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.status-row::before {
  width: 12px;
  height: 12px;
  border: 3px solid #dceee1;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

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

.operation-card {
  padding: 24px;
}

.operation-card .icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--brand));
  font-weight: 950;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.68fr);
  gap: 20px;
  align-items: start;
}

.spec-grid {
  display: grid;
  gap: 16px;
}

.spec-card {
  padding: 24px;
}

.color-token-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.color-token {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.color-swatch {
  height: 72px;
}

.color-token div:last-child {
  padding: 10px;
}

.color-token strong {
  display: block;
  font-size: 13px;
}

.color-token span {
  color: var(--muted);
  font-size: 12px;
}

.spec-showcase {
  position: sticky;
  top: calc(var(--header-height) + 84px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.spec-showcase img {
  width: 100%;
  min-height: 430px;
  object-fit: contain;
}

.spec-showcase-caption {
  padding: 22px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.delivery-card {
  padding: 24px;
}

.delivery-card code,
.code-block code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.code-block {
  overflow: auto;
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid rgba(46, 125, 50, 0.16);
  border-radius: 20px;
  color: #d7ffe3;
  background: #0a2118;
  box-shadow: var(--shadow-md);
}

.code-block pre {
  margin: 0;
  white-space: pre-wrap;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: #fff;
  text-align: left;
  font-weight: 950;
}

.faq-question::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "+";
  color: var(--green-dark);
  background: var(--green-soft);
  text-align: center;
  line-height: 28px;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-section {
  padding-bottom: 132px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.52fr);
  gap: 38px;
  align-items: center;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 26, 56, 0.98), rgba(10, 73, 63, 0.94)),
    url("../images/pattern-grid.svg");
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  background: rgba(167, 243, 185, 0.16);
}

.contact-card .eyebrow {
  color: #a7f3b9;
}

.contact-card h2,
.contact-card p {
  position: relative;
  z-index: 1;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-panel {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.contact-panel ul {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.contact-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-panel span:first-child {
  color: rgba(255, 255, 255, 0.66);
}

.contact-panel strong {
  color: #fff;
  text-align: right;
}

.floating-bar {
  position: fixed;
  right: 24px;
  bottom: calc(24px + var(--safe-bottom));
  left: 24px;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(223, 231, 228, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.floating-bar.show {
  display: flex;
}

.floating-copy strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.floating-copy span {
  color: var(--muted);
  font-size: 12px;
}

.floating-bar .button {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: calc(104px + var(--safe-bottom));
  z-index: 44;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-2px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 17, 19, 0.54);
  backdrop-filter: blur(10px);
}

.modal-backdrop.open {
  display: grid;
}

.modal-card {
  width: min(520px, 100%);
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.3);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 26px 14px;
}

.modal-head h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.modal-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: #fff;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 16px 26px 26px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 46px;
  padding: 0 12px;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
  padding: 12px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(46, 125, 50, 0.52);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(32px + var(--safe-bottom));
  z-index: 100;
  transform: translate(-50%, 18px);
  display: none;
  width: min(420px, calc(100% - 40px));
  padding: 14px 16px;
  border-radius: 14px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
  opacity: 0;
}

.toast.show {
  display: block;
  animation: toast-in 2.4s ease both;
}

@keyframes toast-in {
  0% { opacity: 0; transform: translate(-50%, 18px); }
  14%, 84% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 14px;
  }

  .nav-actions {
    justify-self: end;
  }

  .mobile-menu-btn {
    display: inline-block;
  }

  .hero-inner,
  .scene-layout,
  .logic-grid,
  .spec-layout,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-visual {
    min-height: 700px;
  }


  .role-panel.active {
    grid-template-columns: 1fr;
  }

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

  .flow-track::before {
    display: none;
  }

  .calculator-card,
  .spec-showcase {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    gap: 34px;
    padding: 54px 0 48px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    font-size: 13px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-metrics,
  .overview-grid,
  .components-grid,
  .operation-grid,
  .color-token-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }




  .anchor-band {
    top: var(--header-height);
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-heading p:last-child {
    font-size: 16px;
  }

  .scene-card {
    grid-template-columns: 1fr;
  }

  .scene-visual img {
    min-height: 0;
  }

  .role-copy,
  .role-wireframe,
  .logic-card,
  .component-card,
  .operation-card,
  .spec-card,
  .delivery-card {
    padding: 20px;
  }

  .flow-track {
    grid-template-columns: 1fr;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .step-dot {
    width: 66px;
    height: 66px;
    margin: 0;
  }

  .flow-step h3,
  .flow-step p {
    text-align: left;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    padding: 28px;
  }

  .floating-bar {
    right: 12px;
    bottom: calc(12px + var(--safe-bottom));
    left: 12px;
    width: auto;
  }

  .back-top {
    right: 16px;
    bottom: calc(92px + var(--safe-bottom));
  }
}

@media (max-width: 520px) {
  .hero-actions .button,
  .cta-row .button {
    flex: 1 1 100%;
  }

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

  .hero-visual {
    min-height: 520px;
  }


  .floating-copy span {
    display: none;
  }

  .floating-bar .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* Banner rebuild: cleaner hero composition generated for home-service-detail-html */
@media (max-width: 1100px) {
  .hero-visual.hero-visual-clean {
    min-height: auto;
    justify-items: center;
  }

  .hero-visual.hero-visual-clean::before {
    inset: 6% 2% 10% 2%;
  }

  .hero-showcase-card {
    width: min(100%, 760px);
    margin: -4px auto 0;
    transform: none;
  }
}

@media (max-width: 820px) {
  .hero-showcase-card {
    width: min(100%, 720px);
    margin: -10px 0 0;
  }
}

@media (max-width: 520px) {
  .hero-visual.hero-visual-clean::before,
  .hero-visual.hero-visual-clean::after {
    display: none;
  }

  .hero-showcase-card {
    width: 112%;
    margin-left: -6%;
  }
}


/* Scenario section rebuilt according to the new generated illustration */
.scene-feature-pills,
.scene-mini-pills,
.scene-note-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scene-feature-pills {
  margin-top: 18px;
}

.scene-feature-pills span,
.scene-mini-pills span,
.scene-note-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.scene-feature-pills span {
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(167, 243, 185, 0.22));
  border: 1px solid rgba(46, 125, 50, 0.14);
}

.scene-layout.scene-layout-upgraded {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.scene-card.scene-card-upgraded {
  align-items: start;
  padding: 24px 22px;
}

.scene-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.scene-card-upgraded h3 {
  margin-bottom: 10px;
}

.scene-card-upgraded p {
  margin-bottom: 0;
}

.scene-mini-pills {
  margin-top: 16px;
}

.scene-mini-pills span {
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.scene-visual-wrap {
  display: grid;
  gap: 16px;
}

.scene-visual.scene-visual-upgraded {
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248, 244, 238, 0.96));
  box-shadow: 0 24px 72px rgba(16, 25, 23, 0.12);
}

.scene-visual.scene-visual-upgraded img {
  min-height: 0;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.scene-service-note {
  padding: 20px 22px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(234, 247, 236, 0.9));
  box-shadow: var(--shadow-sm);
}

.scene-service-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.18;
}

.scene-service-note p {
  margin-bottom: 14px;
  color: var(--muted);
}

.scene-note-pills span {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.16);
}

@media (max-width: 1100px) {
  .scene-layout.scene-layout-upgraded {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .scene-feature-pills span,
  .scene-mini-pills span,
  .scene-note-pills span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .scene-service-note strong {
    font-size: 20px;
  }
}


/* Scenario layout rebuilt: larger image-led product showcase */
.section-heading-single {
  grid-template-columns: 1fr;
  gap: 0;
}

.section-subcopy {
  max-width: 980px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.scene-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 30px;
}

.scene-showcase-visual,
.scene-showcase-note {
  margin: 0;
}

.scene-showcase-visual {
  overflow: hidden;
  border: 1px solid rgba(223, 231, 228, 0.85);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248, 244, 238, 0.96));
  box-shadow: 0 28px 80px rgba(16, 25, 23, 0.12);
}

.scene-showcase-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: contain;
}

.scene-showcase-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(234, 247, 236, 0.92));
  box-shadow: var(--shadow-sm);
}

.scene-showcase-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.14;
}

.scene-showcase-note p {
  margin-bottom: 22px;
  color: var(--muted);
}

.scene-note-points {
  display: grid;
  gap: 14px;
}

.scene-note-points div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(46, 125, 50, 0.08);
}

.scene-note-points span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-size: 15px;
  font-weight: 950;
}

.scene-note-points b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  color: var(--ink);
}

.scene-note-points em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.scene-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.scene-service-grid .scene-card {
  height: 100%;
}

@media (max-width: 1180px) {
  .scene-showcase {
    grid-template-columns: 1fr;
  }
}

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

  .scene-showcase-visual img {
    min-height: 420px;
  }

  .scene-showcase-note strong {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .section-subcopy {
    font-size: 16px;
  }

  .scene-showcase-visual img {
    min-height: 320px;
  }

  .scene-showcase-note {
    padding: 20px;
  }

  .scene-showcase-note strong {
    font-size: 22px;
  }
}


/* Product service section rebuild: image-led, larger visual, no cramped side cards */
.product-service-section {
  position: relative;
  overflow: hidden;
}

.product-service-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 20% 16%, rgba(46, 125, 50, 0.08), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(22, 119, 255, 0.08), transparent 32%);
}

.product-service-shell {
  width: min(1320px, calc(100% - 48px));
}

.product-service-header {
  max-width: 980px;
  margin-bottom: 30px;
}

.product-service-header h2 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(40px, 4.15vw, 64px);
}

.product-service-header > p {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
}

.product-service-tags,
.service-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-service-tags span,
.service-card-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.product-service-tags span {
  color: var(--green-dark);
  border: 1px solid rgba(46, 125, 50, 0.16);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(167, 243, 185, 0.22));
}

.product-service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.product-service-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 620px;
  border: 1px solid rgba(223, 231, 228, 0.88);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248, 244, 238, 0.96));
  box-shadow: 0 30px 88px rgba(16, 25, 23, 0.14);
}

.product-service-visual::after {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 26px;
}

.product-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
}

.product-service-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234, 247, 236, 0.94));
  box-shadow: var(--shadow-sm);
}

.panel-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.1);
  font-size: 12px;
  font-weight: 950;
}

.product-service-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.1vw, 34px);
}

.product-service-panel > p {
  margin-bottom: 22px;
  color: var(--muted);
}

.product-service-points {
  display: grid;
  gap: 14px;
}

.product-service-points article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(46, 125, 50, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.product-service-points article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-weight: 950;
}

.product-service-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.product-service-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-service-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  column-gap: 14px;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.service-card-number {
  order: 1;
  display: inline-flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin: 0 0 14px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-size: 20px;
  font-weight: 950;
}

.product-service-card h3 {
  order: 2;
  display: flex;
  flex: 1 1 calc(100% - 68px);
  align-items: center;
  min-height: 54px;
  margin: 0 0 14px;
}

.service-card-label {
  order: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.product-service-card p {
  order: 4;
  flex: 0 0 100%;
  margin: 0;
  color: var(--muted);
}

.product-service-card ul {
  order: 5;
  display: grid;
  flex: 0 0 100%;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-service-card li {
  position: relative;
  padding-left: 18px;
}

.product-service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.service-card-chips {
  order: 6;
  flex: 0 0 100%;
  margin-top: 18px;
}

.service-card-chips span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

@media (max-width: 1180px) {
  .product-service-showcase {
    grid-template-columns: 1fr;
  }

  .product-service-visual,
  .product-service-visual img {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .product-service-grid {
    grid-template-columns: 1fr;
  }

  .product-service-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .product-service-shell {
    width: min(100% - 28px, 1200px);
  }

  .product-service-header h2 {
    font-size: 34px;
  }

  .product-service-header > p {
    font-size: 16px;
  }

  .product-service-visual,
  .product-service-visual img {
    min-height: 420px;
  }

  .product-service-panel {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .product-service-visual,
  .product-service-visual img {
    min-height: 310px;
  }

  .product-service-points article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
  }

  .product-service-points article > span {
    width: 42px;
    height: 42px;
  }
}


/* One-line title layout for customer-facing copy */
@media (min-width: 821px) {
  .hero-title-redraw {
    max-width: none;
    white-space: nowrap;
  }

  .hero-title-redraw .hero-title-line {
    display: inline-block;
    vertical-align: baseline;
    white-space: nowrap;
  }

  .hero-title-redraw .hero-title-sub {
    margin-left: 0.24em;
  }

  .section-heading h2,
  .product-service-header h2,
  .product-service-panel h3,
  .overview-card h3,
  .scene-card h3,
  .role-panel h3,
  .logic-card h3,
  .calculator-head h3,
  .component-card h3,
  .operation-card h3,
  .spec-card h3,
  .spec-showcase-caption h3,
  .delivery-card h3,
  .faq-layout h2,
  .contact-card h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-heading h2,
  .product-service-header h2,
  .faq-layout h2,
  .contact-card h2 {
    font-size: clamp(34px, 3.2vw, 52px);
  }
}

@media (max-width: 820px) {
  .hero-title-redraw,
  .section-heading h2,
  .product-service-header h2,
  .product-service-panel h3,
  .overview-card h3,
  .scene-card h3,
  .role-panel h3,
  .logic-card h3,
  .calculator-head h3,
  .component-card h3,
  .operation-card h3,
  .spec-card h3,
  .spec-showcase-caption h3,
  .delivery-card h3,
  .faq-layout h2,
  .contact-card h2 {
    white-space: normal;
  }
}


/* Interaction section redraw */
.pricing-heading {
  align-items: end;
}

.pricing-stage {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.pricing-feature-list {
  display: grid;
  gap: 16px;
}

.pricing-feature-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
}

.pricing-feature-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 14px 30px rgba(46, 125, 50, 0.2);
  font-size: 24px;
  font-weight: 950;
}

.pricing-feature-card h3 {
  margin-bottom: 8px;
  font-size: 26px;
  white-space: nowrap;
}

.pricing-feature-card p {
  margin-bottom: 14px;
  color: var(--muted);
}

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

.pricing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.pricing-demo-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,247,0.98));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.pricing-demo-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 24px 24px 18px;
}

.pricing-demo-head h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.pricing-demo-head > p {
  max-width: 360px;
  margin-bottom: 2px;
  color: var(--muted);
  text-align: right;
}

.pricing-picker-block {
  padding: 0 24px 20px;
}

.pricing-block-title,
.pricing-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.pricing-block-title span,
.pricing-summary-head strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.pricing-block-title em,
.pricing-summary-head span {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.pricing-service-options {
  padding: 0;
}

.pricing-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.pricing-sub-block {
  min-height: 148px;
}

.pricing-inline-grid .pricing-sub-block + .pricing-sub-block {
  border-left: 1px solid var(--line);
}

.pricing-summary-block {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(238,247,239,0.72));
}

.pricing-price-table {
  display: grid;
  gap: 10px;
}

.pricing-price-table > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-price-table > div strong {
  color: var(--ink);
  font-size: 15px;
}

.pricing-price-table .price-total {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
}

.pricing-price-table .price-total strong {
  color: var(--coral);
  font-size: 34px;
  line-height: 1;
}

.pricing-summary-block .full-button {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .pricing-stage {
    grid-template-columns: 1fr;
  }

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

  .pricing-demo-head > p {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .pricing-feature-card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 20px;
  }

  .pricing-feature-card h3,
  .pricing-demo-head h3 {
    font-size: 22px;
    white-space: normal;
  }

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

  .pricing-inline-grid .pricing-sub-block + .pricing-sub-block {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}


/* Rebuilt boxed sections: pricing, analytics, faq */
.pricing-heading-redrawn,
.analytics-heading,
.faq-heading-redrawn {
  align-items: end;
}

.pricing-top-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pricing-top-badges span,
.analytics-caption-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.pricing-stage-redrawn {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-side-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,244,0.98));
  box-shadow: var(--shadow-sm);
}

.pricing-side-head h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.pricing-side-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-feature-list-redrawn {
  gap: 14px;
}

.pricing-feature-list-redrawn .pricing-feature-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.pricing-demo-card-redrawn {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}

.pricing-inline-grid-redrawn {
  border-top: 1px solid var(--line);
}

.pricing-summary-block-redrawn {
  display: grid;
  align-content: start;
}

.analytics-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.analytics-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.analytics-visual img {
  width: 100%;
  min-height: 560px;
  object-fit: contain;
}

.analytics-caption {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.analytics-caption h3 {
  margin-bottom: 8px;
}

.analytics-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.analytics-caption-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.analytics-side {
  display: grid;
  gap: 16px;
}

.analytics-overview-card,
.analytics-note-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.analytics-card-head h3,
.analytics-note-card h3 {
  margin-bottom: 8px;
}

.analytics-card-head p {
  margin-bottom: 16px;
  color: var(--muted);
}

.analytics-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.analytics-kpi-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.analytics-kpi-bar {
  height: 64px;
  margin-bottom: 10px;
  border-radius: 14px;
}

.analytics-kpi-bar.tone-green { background: linear-gradient(135deg, #2e7d32, #43a047); }
.analytics-kpi-bar.tone-blue { background: linear-gradient(135deg, #1677ff, #5a9bff); }
.analytics-kpi-bar.tone-amber { background: linear-gradient(135deg, #f6a623, #ffd064); }
.analytics-kpi-bar.tone-mint { background: linear-gradient(135deg, #36b37e, #6cd8b2); }

.analytics-kpi-item strong {
  display: block;
  margin-bottom: 4px;
}

.analytics-kpi-item span {
  color: var(--muted);
  font-size: 12px;
}

.analytics-note-grid {
  display: grid;
  gap: 16px;
}

.analytics-note-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.analytics-note-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.analytics-note-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.faq-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.faq-guide-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,248,243,0.98));
  box-shadow: var(--shadow-sm);
}

.faq-guide-head h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.faq-guide-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-guide-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-guide-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-guide-list strong {
  font-size: 16px;
}

.faq-guide-list span {
  color: var(--muted);
  font-size: 14px;
}

.faq-guide-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px;
}

.faq-guide-cta span {
  color: var(--ink-soft);
  font-weight: 900;
}

.faq-list-redrawn {
  gap: 14px;
}

.faq-list-redrawn .faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-list-redrawn .faq-question {
  min-height: 74px;
  padding: 0 24px;
  border-radius: 22px;
  background: transparent;
}

.faq-list-redrawn .faq-answer {
  padding: 0 24px 22px;
}

@media (max-width: 1180px) {
  .pricing-stage-redrawn,
  .analytics-stage,
  .faq-stage {
    grid-template-columns: 1fr;
  }

  .analytics-visual img {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  .pricing-side-head h3,
  .faq-guide-head h3 {
    font-size: 24px;
  }

  .analytics-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .analytics-visual img {
    min-height: 340px;
  }

  .faq-guide-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .pricing-top-badges,
  .analytics-caption-tags {
    gap: 8px;
  }

  .pricing-top-badges span,
  .analytics-caption-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .analytics-kpi-grid {
    grid-template-columns: 1fr;
  }
}


/* Visual section regenerated with new artwork and new layout */
.analytics-section-regenerated .analytics-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.analytics-section-regenerated .analytics-metric-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.analytics-section-regenerated .analytics-metric-top {
  height: 48px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.analytics-section-regenerated .analytics-metric-top.tone-green { background: linear-gradient(135deg, #2e7d32, #43a047); }
.analytics-section-regenerated .analytics-metric-top.tone-blue { background: linear-gradient(135deg, #1677ff, #5a9bff); }
.analytics-section-regenerated .analytics-metric-top.tone-amber { background: linear-gradient(135deg, #f6a623, #ffd064); }
.analytics-section-regenerated .analytics-metric-top.tone-mint { background: linear-gradient(135deg, #36b37e, #6cd8b2); }

.analytics-section-regenerated .analytics-metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.analytics-section-regenerated .analytics-metric-card span {
  color: var(--muted);
  font-size: 13px;
}

.analytics-regenerated-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.analytics-hero-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.analytics-hero-card img {
  width: 100%;
  min-height: 620px;
  object-fit: contain;
}

.analytics-hero-caption {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,241,0.98));
}

.analytics-hero-caption h3 {
  margin-bottom: 8px;
}

.analytics-hero-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.analytics-insight-stack {
  display: grid;
  gap: 16px;
}

.analytics-insight-card,
.analytics-highlight-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.analytics-insight-card h3 {
  margin-bottom: 12px;
}

.analytics-insight-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.analytics-insight-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.analytics-insight-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.analytics-highlight-card {
  background: linear-gradient(135deg, rgba(46,125,50,0.08), rgba(22,119,255,0.06));
}

.analytics-highlight-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
}

.analytics-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.analytics-highlight-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(46,125,50,0.12);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .analytics-section-regenerated .analytics-metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-regenerated-layout {
    grid-template-columns: 1fr;
  }

  .analytics-hero-card img {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .analytics-section-regenerated .analytics-metric-strip {
    grid-template-columns: 1fr;
  }

  .analytics-hero-card img {
    min-height: 340px;
  }
}


/* Full page redraw */
.page-redraw {
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 125, 50, 0.10), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(22, 119, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f4f8f6 0%, #f7faf8 46%, #f5f8f7 100%);
}

.page-redraw main {
  padding-bottom: 88px;
}

.page-redraw .shell {
  width: min(1240px, calc(100% - 48px));
}

.page-redraw .site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(223, 231, 228, 0.72);
  backdrop-filter: blur(24px);
}

.page-redraw .nav-links,
.page-redraw .nav-cta,
.page-redraw .mobile-menu-btn,
.page-redraw .anchor-scroll {
  box-shadow: 0 12px 30px rgba(16, 25, 23, 0.05);
}

.page-redraw .nav-links {
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
}

.page-redraw .nav-links a,
.page-redraw .anchor-scroll a {
  border-radius: 999px;
}

.page-redraw .hero {
  padding: 38px 0 24px;
}

.page-redraw .hero-inner {
  position: relative;
  align-items: center;
  gap: 34px;
  padding: 40px;
  border: 1px solid rgba(223, 231, 228, 0.95);
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 14%, rgba(46,125,50,0.10), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(22,119,255,0.10), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(244,250,246,0.92));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-redraw .hero-inner::before,
.page-redraw .hero-inner::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
}

.page-redraw .hero-inner::before {
  width: 240px;
  height: 240px;
  top: -110px;
  right: -70px;
  background: rgba(54, 179, 126, 0.12);
}

.page-redraw .hero-inner::after {
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: -60px;
  background: rgba(22, 119, 255, 0.10);
}

.page-redraw .hero-content,
.page-redraw .hero-visual {
  position: relative;
  z-index: 1;
}

.page-redraw .hero-title-redraw {
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-redraw .hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.page-redraw .hero-actions {
  margin-bottom: 28px;
}

.page-redraw .hero-metrics {
  gap: 14px;
}

.page-redraw .metric-card {
  min-height: 112px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(223,231,228,0.9);
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 28px rgba(16,25,23,0.05);
}

.page-redraw .hero-trust {
  gap: 10px;
}

.page-redraw .hero-trust span {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(46,125,50,0.12);
  box-shadow: 0 8px 22px rgba(16,25,23,0.04);
}

.page-redraw .hero-showcase-card {
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,246,0.96));
  box-shadow: 0 22px 52px rgba(16,25,23,0.12);
}

.page-redraw .hero-showcase-card img {
  border-radius: 24px;
}

.page-redraw .anchor-band {
  position: sticky;
  top: 72px;
  z-index: 20;
  padding: 14px 0 6px;
  background: transparent;
}

.page-redraw .anchor-scroll {
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(223, 231, 228, 0.9);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
}

.page-redraw .anchor-scroll a {
  min-height: 38px;
  padding: 0 16px;
}

.page-redraw .section {
  position: relative;
  padding: 34px 0;
}

.page-redraw .section > .shell {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(223,231,228,0.9);
  border-radius: 34px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 44px rgba(16,25,23,0.06);
  backdrop-filter: blur(10px);
}

.page-redraw .section:nth-of-type(odd) > .shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(246,250,247,0.78));
}

.page-redraw .section-heading {
  margin-bottom: 30px;
}

.page-redraw .section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.06;
}

.page-redraw .section-heading > p,
.page-redraw .product-service-header > p,
.page-redraw .analytics-hero-caption p,
.page-redraw .contact-card > div > p,
.page-redraw .faq-guide-head p {
  color: var(--ink-soft);
}

.page-redraw .overview-card,
.page-redraw .product-service-card,
.page-redraw .pricing-feature-card,
.page-redraw .pricing-demo-card,
.page-redraw .pricing-side-panel,
.page-redraw .analytics-overview-card,
.page-redraw .analytics-note-card,
.page-redraw .analytics-insight-card,
.page-redraw .analytics-highlight-card,
.page-redraw .faq-guide-card,
.page-redraw .faq-list-redrawn .faq-item,
.page-redraw .delivery-card,
.page-redraw .component-card,
.page-redraw .operation-card,
.page-redraw .logic-card,
.page-redraw .role-panel,
.page-redraw .contact-card,
.page-redraw .product-service-panel,
.page-redraw .analytics-hero-card {
  border: 1px solid rgba(223,231,228,0.92);
  box-shadow: 0 16px 34px rgba(16,25,23,0.05);
}

.page-redraw .overview-card,
.page-redraw .product-service-card,
.page-redraw .delivery-card,
.page-redraw .component-card,
.page-redraw .operation-card,
.page-redraw .logic-card,
.page-redraw .contact-card,
.page-redraw .role-panel {
  background: rgba(255,255,255,0.92);
}

.page-redraw .role-tabs {
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 28px rgba(16,25,23,0.05);
}

.page-redraw .role-tab {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
}

.page-redraw .flow-path,
.page-redraw .module-cloud,
.page-redraw .service-card-chips,
.page-redraw .pricing-tags,
.page-redraw .analytics-caption-tags,
.page-redraw .analytics-highlight-list {
  gap: 10px;
}

.page-redraw .product-service-showcase,
.page-redraw .analytics-regenerated-layout,
.page-redraw .pricing-stage-redrawn,
.page-redraw .faq-stage {
  gap: 26px;
}

.page-redraw .analytics-section-regenerated .analytics-metric-strip {
  margin-bottom: 24px;
}

.page-redraw .analytics-hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,245,0.98));
}

.page-redraw .analytics-hero-card img {
  min-height: 560px;
}

.page-redraw .faq-list-redrawn .faq-question {
  font-weight: 900;
}

.page-redraw .contact-card {
  overflow: hidden;
  background: linear-gradient(135deg, #0f2850 0%, #124a55 46%, #1c6b4a 100%);
}

.page-redraw .contact-card::before {
  position: absolute;
  inset: auto -120px -110px auto;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.page-redraw .contact-card::after {
  position: absolute;
  inset: 28px 28px auto auto;
  width: 320px;
  height: 180px;
  content: "";
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
}

.page-redraw .contact-card > * {
  position: relative;
  z-index: 1;
}

.page-redraw .contact-pill {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.12);
}

.page-redraw .contact-copy h2,
.page-redraw .contact-copy p,
.page-redraw .contact-list strong,
.page-redraw .contact-list span,
.page-redraw .contact-summary-grid strong,
.page-redraw .contact-summary-grid span {
  color: #fff;
}

@media (max-width: 1180px) {
  .page-redraw .hero-inner,
  .page-redraw .section > .shell {
    padding: 30px;
  }

  .page-redraw .anchor-scroll {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .page-redraw .section > .shell {
    padding: 24px;
    border-radius: 28px;
  }

  .page-redraw .hero-inner {
    padding: 24px;
    border-radius: 28px;
  }

  .page-redraw .hero-title-redraw {
    white-space: normal;
  }

  .page-redraw .anchor-band {
    top: 64px;
  }
}


/* Fix analytics image showing fully */
.analytics-hero-card {
  display: grid;
  grid-template-rows: auto auto;
}

.analytics-hero-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}

.analytics-section-regenerated .analytics-hero-card img,
.page-redraw .analytics-hero-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.analytics-regenerated-layout {
  align-items: start;
}

.analytics-hero-card,
.page-redraw .analytics-hero-card {
  overflow: visible;
}

@media (min-width: 1181px) {
  .analytics-hero-card img,
  .analytics-section-regenerated .analytics-hero-card img,
  .page-redraw .analytics-hero-card img {
    max-height: none;
  }
}


/* Feature module section redrawn from design reference */
.feature-module-section > .feature-module-shell {
  width: min(1280px, calc(100% - 48px));
}

.feature-module-card {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(223,231,228,0.92);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 48%, rgba(46,125,50,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,252,251,0.94));
  box-shadow: 0 28px 90px rgba(16,25,23,0.10);
}

.feature-module-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.feature-module-head h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.feature-module-head > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.module-role-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 32px rgba(16,25,23,0.06);
}

.module-role-tabs .role-tab {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.module-role-tabs .role-tab span {
  color: currentColor;
  opacity: .78;
}

.module-role-tabs .role-tab[aria-selected="true"],
.module-role-tabs .role-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 12px 26px rgba(46,125,50,0.24);
}

.module-role-panels {
  overflow: hidden;
  border: 1px solid rgba(223,231,228,0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(16,25,23,0.08);
}

.module-panel {
  display: none;
  grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.16fr);
  min-height: 570px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.module-panel.active {
  display: grid;
}

.module-copy-card {
  padding: clamp(26px, 3.2vw, 44px);
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fbfdfc 100%);
}

.module-person-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 20px;
  color: var(--green);
  background: linear-gradient(135deg, rgba(46,125,50,0.12), rgba(54,179,126,0.08));
  font-size: 34px;
  line-height: 1;
}

.module-copy-card h3 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.15;
}

.module-copy-card > p {
  margin-bottom: 22px;
  color: var(--muted);
}

.module-feature-list {
  display: grid;
  gap: 17px;
}

.module-feature-list div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.module-feature-list div > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  grid-row: span 2;
  border-radius: 50%;
  background: rgba(46,125,50,0.10);
  font-size: 21px;
}

.module-feature-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.24;
}

.module-feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.module-feature-list.compact {
  gap: 18px;
}

.module-cloud-redraw {
  margin-top: 28px;
}

.module-visual-stage {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 570px;
  padding: 44px 32px 34px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255,255,255,0.92), rgba(255,255,255,0.14) 30%, transparent 58%),
    radial-gradient(circle at 86% 70%, rgba(46,125,50,0.18), transparent 28%),
    linear-gradient(135deg, #edf8ef 0%, #e9f5ef 46%, #e8f1f8 100%);
}

.module-visual-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 13% 88%, rgba(46,125,50,0.16), transparent 16%),
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,0.78) 42% 44%, transparent 44%);
  pointer-events: none;
}

.module-visual-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 160px;
  content: "";
  background:
    radial-gradient(ellipse at bottom right, rgba(46,125,50,0.22), transparent 64%);
}

.module-phone,
.module-board-card,
.module-dashboard {
  position: relative;
  z-index: 1;
}

.module-phone {
  width: 220px;
  min-height: 420px;
  border: 10px solid #172027;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(16,25,23,0.20);
  padding: 18px 14px;
}

.phone-main {
  width: 260px;
  min-height: 470px;
  z-index: 3;
  transform: translateY(0);
}

.phone-order {
  z-index: 2;
  margin-right: -32px;
  transform: translateY(36px) rotate(-2deg);
}

.phone-chat {
  z-index: 1;
  margin-left: -30px;
  transform: translateY(38px) rotate(2deg);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.module-phone h4 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
}

.order-tabs,
.phone-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.order-tabs span,
.phone-icons span {
  display: grid;
  place-items: center;
  min-height: 28px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46,125,50,0.08);
  font-size: 10px;
  font-weight: 850;
}

.phone-icons {
  grid-template-columns: repeat(5, 1fr);
}

.phone-icons span::before {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 4px;
  border-radius: 10px;
  content: "";
  background: linear-gradient(135deg, #eef8ef, #e5f3ff);
}

.order-row,
.phone-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.order-row strong,
.phone-service strong {
  font-size: 13px;
}

.order-row em,
.phone-service em {
  color: var(--coral);
  font-style: normal;
  font-weight: 950;
}

.order-row small,
.phone-service small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
}

.phone-hero {
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
}

.phone-hero strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.phone-hero small {
  display: block;
  margin-top: 7px;
  opacity: .84;
}

.phone-search {
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted-2);
  background: var(--surface-soft);
  font-size: 12px;
}

.phone-coupon {
  margin: 12px 0;
  padding: 12px;
  border-radius: 16px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #e4f8e8, #ccf1d8);
  font-size: 12px;
  font-weight: 900;
}

.phone-coupon b {
  float: right;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 2px 8px;
}

.phone-service {
  grid-template-columns: 42px minmax(0,1fr) auto;
  align-items: center;
}

.phone-service div {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e9f5e9, #fff2dc);
}

.chat-bubble {
  max-width: 86%;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.55;
}

.chat-bubble.left { background: var(--surface-soft); }
.chat-bubble.right { margin-left: auto; color: var(--green-dark); background: var(--green-soft); }
.chat-input { position: absolute; left: 14px; right: 14px; bottom: 16px; padding: 10px 12px; border-radius: 999px; color: var(--muted-2); background: var(--surface-soft); font-size: 12px; }

.module-board-card,
.module-dashboard {
  display: grid;
  gap: 10px;
  min-width: 260px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 44px rgba(16,25,23,0.10);
  backdrop-filter: blur(10px);
}

.module-board-card strong {
  font-size: 24px;
  margin-bottom: 6px;
}

.module-board-card span {
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--surface-soft);
  font-weight: 850;
}

.module-board-card.wide {
  min-width: 360px;
}

.module-dashboard {
  grid-template-columns: repeat(2, minmax(0,1fr));
  min-width: 420px;
}

.module-dashboard div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
}

.module-dashboard strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.module-dashboard b {
  display: block;
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 26px;
}

.module-visual-worker,
.module-visual-merchant,
.module-visual-platform {
  justify-content: center;
  gap: 26px;
}

@media (max-width: 1180px) {
  .feature-module-head,
  .module-panel.active {
    grid-template-columns: 1fr;
  }

  .module-visual-stage {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .feature-module-section > .feature-module-shell {
    width: min(100% - 28px, 1200px);
  }

  .feature-module-card {
    padding: 24px;
    border-radius: 28px;
  }

  .feature-module-head h2 {
    font-size: 38px;
  }

  .module-role-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .module-role-tabs .role-tab {
    flex: 0 0 auto;
  }

  .module-copy-card {
    padding: 24px;
  }

  .module-feature-list div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .module-feature-list div > span {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .module-visual-stage {
    min-height: 460px;
    padding: 30px 16px;
  }

  .phone-order,
  .phone-chat {
    display: none;
  }

  .phone-main {
    width: min(100%, 280px);
  }

  .module-dashboard,
  .module-board-card,
  .module-board-card.wide {
    min-width: 0;
    width: 100%;
  }
}


/* Feature module 1:1 sliced from approved design image */
.feature-module-section-sliced {
  padding: 34px 0;
}

.feature-module-section-sliced > .feature-module-slice-shell,
.page-redraw .feature-module-section-sliced > .feature-module-slice-shell {
  width: min(1348px, calc(100% - 48px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.feature-module-design-cut {
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.feature-module-design-cut img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 820px) {
  .feature-module-section-sliced > .feature-module-slice-shell,
  .page-redraw .feature-module-section-sliced > .feature-module-slice-shell {
    width: min(100% - 20px, 1348px);
  }
}


/* Feature module: HTML redraw for boxed tab and copy areas */
.feature-module-html-section {
  padding: 34px 0;
}

.feature-module-html-section > .feature-module-html-shell,
.page-redraw .feature-module-html-section > .feature-module-html-shell {
  width: min(1348px, calc(100% - 48px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.feature-html-card {
  padding: 52px 54px 48px;
  border: 1px solid rgba(223, 231, 228, 0.95);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 56%, rgba(46,125,50,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,252,251,0.98));
  box-shadow: 0 28px 78px rgba(16, 25, 23, 0.10);
}

.feature-html-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.55fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 30px;
}

.feature-html-head h2 {
  margin: 0;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.feature-html-head > p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

.feature-html-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 30px rgba(16,25,23,0.05);
  overflow: hidden;
}

.feature-html-tab,
.feature-html-tab.role-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 184px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink-soft);
  background: transparent;
  font-size: 16px;
  font-weight: 950;
  box-shadow: none;
}

.feature-html-tab:last-child {
  border-right: 0;
}

.feature-html-tab[aria-selected="true"],
.feature-html-tab.role-tab[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: inset 0 -3px 0 rgba(255,255,255,0.18);
}

.tab-icon {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 1;
}

.feature-html-panels {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
}

.feature-html-panel.role-panel,
.feature-html-panel.role-panel.active {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 0.95fr);
  min-height: 570px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.feature-html-copy {
  position: relative;
  z-index: 2;
  padding: 48px 44px 38px;
  background: #fff;
}

.feature-title-row {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.feature-role-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(46,125,50,0.15), rgba(54,179,126,0.10));
}

.feature-role-icon::before {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 45% 45%;
  content: "";
  background: var(--green);
  box-shadow: 0 28px 0 -10px var(--green);
}

.feature-title-row h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
  white-space: nowrap;
}

.feature-title-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-list-html {
  display: grid;
  gap: 20px;
}

.feature-list-html > div {
  display: grid;
  grid-template-columns: 50px minmax(0,1fr);
  gap: 16px;
  align-items: start;
}

.feature-list-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 14px;
  font-weight: 950;
}

.feature-list-html strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.feature-list-html p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.feature-html-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.feature-html-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(46,125,50,0.16);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46,125,50,0.08);
  font-size: 13px;
  font-weight: 900;
}

.feature-html-visual {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: end;
  min-height: 570px;
  padding: 34px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 48%, rgba(167, 243, 185, 0.30), transparent 40%),
    linear-gradient(135deg, #eef7ef 0%, #f7fbf8 54%, #eaf5ec 100%);
}

.feature-html-visual::before {
  position: absolute;
  left: -22%;
  top: -18%;
  width: 74%;
  height: 130%;
  content: "";
  border-radius: 50%;
  background: #fff;
}

.feature-html-visual img {
  position: relative;
  z-index: 1;
  width: 108%;
  max-width: none;
  height: auto;
  margin-right: -12px;
  filter: drop-shadow(0 24px 48px rgba(16,25,23,0.12));
}

.feature-html-panel[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .feature-html-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-html-head > p {
    max-width: none;
  }

  .feature-html-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .feature-html-tab,
  .feature-html-tab.role-tab {
    flex: 0 0 auto;
    min-width: 164px;
  }

  .feature-html-panel.role-panel,
  .feature-html-panel.role-panel.active {
    grid-template-columns: 1fr;
  }

  .feature-html-visual {
    min-height: auto;
  }

  .feature-html-visual img {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 820px) {
  .feature-module-html-section > .feature-module-html-shell,
  .page-redraw .feature-module-html-section > .feature-module-html-shell {
    width: min(100% - 20px, 1348px);
  }

  .feature-html-card {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .feature-html-head h2 {
    font-size: 38px;
    white-space: normal;
  }

  .feature-html-copy {
    padding: 28px 22px 26px;
  }

  .feature-title-row {
    grid-template-columns: 58px minmax(0,1fr);
  }

  .feature-role-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .feature-title-row h3 {
    font-size: 24px;
  }

  .feature-list-html > div {
    grid-template-columns: 42px minmax(0,1fr);
  }

  .feature-list-icon {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
}


/* Fix feature module HTML redraw styles */
.feature-html-head {
  align-items: start;
}

.feature-html-tabs {
  margin-bottom: 20px;
}

.feature-html-panel.role-panel,
.feature-html-panel.role-panel.active {
  align-items: stretch;
}

.feature-html-copy {
  display: flex;
  flex-direction: column;
}

.feature-list-html {
  gap: 18px;
}

.feature-list-html > div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    ". desc";
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
}

.feature-list-html > div > .feature-list-icon {
  grid-area: icon;
  align-self: start;
}

.feature-list-html > div > strong {
  grid-area: title;
  margin: 0;
}

.feature-list-html > div > p {
  grid-area: desc;
  margin: 0;
}

.feature-title-row {
  margin-bottom: 24px;
}

.feature-title-row p {
  max-width: 480px;
}

.feature-html-visual {
  border-left: 1px solid rgba(223,231,228,0.7);
}

.feature-html-visual img {
  width: 103%;
  margin-right: -8px;
}

@media (max-width: 1120px) {
  .feature-html-visual {
    border-left: 0;
    border-top: 1px solid rgba(223,231,228,0.7);
  }

  .feature-html-copy {
    padding-bottom: 22px;
  }
}

@media (max-width: 820px) {
  .feature-html-tabs {
    width: 100%;
  }

  .feature-html-tab,
  .feature-html-tab.role-tab {
    min-width: 148px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .feature-list-html > div {
    grid-template-columns: 42px minmax(0,1fr);
    column-gap: 12px;
  }
}


/* Feature module: reduce top empty space and use sharper visual */
.feature-html-card {
  padding: 40px 42px 34px;
}

.feature-html-head {
  gap: 28px;
  margin-bottom: 22px;
}

.feature-html-head h2 {
  font-size: clamp(42px, 4vw, 62px);
}

.feature-html-head > p {
  font-size: 17px;
  line-height: 1.72;
}

.feature-html-tabs {
  margin-bottom: 16px;
}

.feature-html-panel.role-panel,
.feature-html-panel.role-panel.active {
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  min-height: 520px;
}

.feature-html-copy {
  padding: 34px 32px 24px;
}

.feature-title-row {
  margin-bottom: 18px;
}

.feature-title-row h3 {
  font-size: 25px;
}

.feature-list-html {
  gap: 16px;
}

.feature-list-html strong {
  font-size: 18px;
}

.feature-list-html p {
  font-size: 14px;
}

.feature-html-chips {
  margin-top: 26px;
}

.feature-html-visual {
  min-height: 520px;
  padding: 0;
  align-items: center;
  justify-items: center;
  background:
    radial-gradient(circle at 48% 55%, rgba(167, 243, 185, 0.24), transparent 38%),
    linear-gradient(135deg, #eef7ef 0%, #f7fbf8 54%, #ebf5ed 100%);
}

.feature-html-visual::before {
  left: -18%;
  top: -10%;
  width: 58%;
  height: 116%;
  opacity: 0.94;
}

.feature-html-visual img {
  width: calc(100% - 8px);
  max-width: 760px;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 18px 36px rgba(16,25,23,0.10));
  image-rendering: auto;
}

@media (max-width: 1120px) {
  .feature-html-card {
    padding: 32px 26px 28px;
  }

  .feature-html-head {
    gap: 14px;
  }

  .feature-html-panel.role-panel,
  .feature-html-panel.role-panel.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-html-visual {
    min-height: auto;
    padding: 0;
  }

  .feature-html-visual img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .feature-html-card {
    padding: 24px 18px 22px;
  }

  .feature-html-copy {
    padding: 24px 18px 20px;
  }
}


/* Banner blend fix: remove the large white patch look */
.page-redraw .hero {
  padding: 28px 0 18px;
}

.page-redraw .hero-inner {
  padding: 46px 42px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 243, 185, 0.10), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(147, 197, 253, 0.12), transparent 24%),
    radial-gradient(circle at 78% 78%, rgba(46, 125, 50, 0.10), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 28px 70px rgba(4, 16, 35, 0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.page-redraw .hero-inner::before {
  width: 300px;
  height: 300px;
  top: -120px;
  right: -70px;
  background: rgba(167, 243, 185, 0.10);
  filter: blur(14px);
}

.page-redraw .hero-inner::after {
  width: 280px;
  height: 280px;
  bottom: -150px;
  left: -80px;
  background: rgba(59, 130, 246, 0.10);
  filter: blur(16px);
}

.page-redraw .hero-copy {
  color: rgba(255, 255, 255, 0.84);
}

.page-redraw .hero-showcase-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  box-shadow: 0 26px 60px rgba(4,16,35,0.24);
  backdrop-filter: blur(10px);
}

.page-redraw .hero-showcase-card::before {
  inset: 8% 10% 12% 10%;
  border-radius: 40px;
  background: radial-gradient(circle at 55% 50%, rgba(167,243,185,0.24), rgba(167,243,185,0.02) 56%, transparent 74%);
  filter: blur(24px);
}

.page-redraw .hero-showcase-card img {
  border-radius: 24px;
  box-shadow: 0 20px 38px rgba(4,16,35,0.22);
}

.page-redraw .metric-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
  box-shadow: 0 12px 26px rgba(4,16,35,0.10);
}

.page-redraw .metric-card span,
.page-redraw .hero-trust span {
  color: rgba(255,255,255,0.76);
}

.page-redraw .hero-trust span {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

@media (max-width: 900px) {
  .page-redraw .hero-inner {
    padding: 28px 22px;
    border-radius: 28px;
  }
}


/* Banner final fix: remove outer frame and prevent headline overlap */
.page-redraw .hero {
  padding: 78px 0 84px;
}

.page-redraw .hero-inner {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 0.92fr);
  gap: 72px;
  align-items: center;
  min-height: 560px;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible;
}

.page-redraw .hero-inner::before,
.page-redraw .hero-inner::after {
  display: none !important;
}

.page-redraw .hero-content {
  z-index: 3;
  max-width: 560px;
}

.page-redraw .hero-title-redraw {
  max-width: 560px;
  margin-bottom: 18px;
  white-space: normal;
}

.page-redraw .hero-title-redraw .hero-title-line {
  display: block;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  line-height: 0.96;
}

.page-redraw .hero-title-redraw .hero-title-main {
  font-size: clamp(50px, 4.2vw, 68px);
  letter-spacing: -0.055em;
}

.page-redraw .hero-copy {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.page-redraw .hero-actions {
  margin-bottom: 28px;
}

.page-redraw .hero-visual.hero-visual-clean {
  justify-items: end;
  min-height: 0;
}

.page-redraw .hero-visual.hero-visual-clean::before,
.page-redraw .hero-visual.hero-visual-clean::after {
  display: none !important;
}

.page-redraw .hero-showcase-card {
  width: min(100%, 620px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: translateX(0) rotate(-2deg);
}

.page-redraw .hero-showcase-card::before {
  inset: 8% 7% 10% 7%;
  border-radius: 44px;
  background: radial-gradient(circle at 52% 50%, rgba(167, 243, 185, 0.28), rgba(22, 119, 255, 0.08) 50%, transparent 72%);
  filter: blur(30px);
}

.page-redraw .hero-showcase-card img {
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.page-redraw .metric-card {
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
}

@media (max-width: 1120px) {
  .page-redraw .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
  }

  .page-redraw .hero-content {
    max-width: 760px;
  }

  .page-redraw .hero-title-redraw {
    max-width: 760px;
  }

  .page-redraw .hero-showcase-card {
    width: min(100%, 720px);
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-redraw .hero {
    padding: 46px 0 54px;
  }

  .page-redraw .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .page-redraw .hero-title-redraw .hero-title-main {
    font-size: clamp(36px, 10vw, 48px);
    white-space: normal;
  }
}


/* Banner title smaller */
.page-redraw .hero-title-redraw .hero-title-main {
  font-size: clamp(44px, 3.8vw, 58px) !important;
  letter-spacing: -0.045em;
}

.page-redraw .hero-title-redraw {
  margin-bottom: 14px;
}

@media (max-width: 720px) {
  .page-redraw .hero-title-redraw .hero-title-main {
    font-size: clamp(34px, 8.6vw, 42px) !important;
  }
}


/* Contact left copy redraw */
.contact-copy-redraw {
  max-width: 560px;
}

.contact-copy-redraw .eyebrow {
  margin-bottom: 14px;
}

.contact-copy-redraw h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.04;
}

.contact-copy-redraw .contact-lead {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.contact-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-highlight-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.contact-feature-list article {
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
}

.contact-feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
}

.contact-feature-list p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}

.contact-cta-row {
  margin-top: 4px;
}

.page-redraw .contact-copy-redraw .contact-lead,
.page-redraw .contact-feature-list p {
  color: rgba(255,255,255,0.80) !important;
}

@media (max-width: 1100px) {
  .contact-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .contact-copy-redraw h2 {
    font-size: clamp(34px, 9vw, 44px);
  }
}


/* Contact cleanup: remove middle highlighted blocks spacing */
.contact-copy-redraw .contact-lead {
  margin-bottom: 28px;
}

.contact-cta-row {
  margin-top: 0;
}

/* Mobile detail rebuild: align case detail pages with the homepage mobile system */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  body {
    background:
      linear-gradient(180deg, #eef6ff 0%, #f7fbff 34%, #f6f8f7 100%);
  }

  .shell,
  .page-redraw .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: var(--header-height);
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: var(--header-height);
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand span:last-child {
    max-width: 150px;
    font-size: 14px;
    line-height: 1.2;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-back {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12px;
  }

  .mobile-menu-btn {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    max-height: min(72vh, 520px);
    overflow-y: auto;
  }

  .page-redraw .hero,
  .hero {
    padding: 28px 0 0;
    background:
      radial-gradient(260px 170px at 82% 18%, rgba(63, 190, 124, 0.34), transparent 70%),
      radial-gradient(230px 170px at 14% 78%, rgba(22, 119, 255, 0.22), transparent 72%),
      linear-gradient(145deg, #06152e 0%, #0b2456 48%, #0d6b42 100%);
  }

  .page-redraw .hero-inner,
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 0 0 28px;
  }

  .page-redraw .hero-content,
  .hero-content {
    max-width: none;
  }

  .page-redraw .hero-title-redraw,
  .hero-title-redraw,
  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
  }

  .page-redraw .hero-title-redraw .hero-title-main,
  .hero-title-redraw .hero-title-main,
  h1 {
    font-size: clamp(30px, 8.4vw, 38px) !important;
    line-height: 1.12;
    white-space: normal;
  }

  .page-redraw .hero-copy,
  .hero-copy {
    max-width: none;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-actions,
  .page-redraw .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .button,
  .page-redraw .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
  }

  .page-redraw .hero-metrics,
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    overflow: hidden;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(0, 24, 84, 0.16);
  }

  .page-redraw .metric-card,
  .metric-card {
    min-height: 96px;
    padding: 14px 9px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-redraw .metric-card:not(:last-child),
  .metric-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metric-card strong {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.18;
  }

  .metric-card span {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .hero-trust,
  .page-redraw .hero-trust {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin-top: 16px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hero-trust::-webkit-scrollbar,
  .page-redraw .hero-trust::-webkit-scrollbar {
    display: none;
  }

  .hero-trust span,
  .page-redraw .hero-trust span {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-visual,
  .hero-visual.hero-visual-clean,
  .page-redraw .hero-visual.hero-visual-clean {
    min-height: 0;
    margin: 0;
  }

  .hero-showcase-card,
  .page-redraw .hero-showcase-card {
    width: 100%;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)) !important;
    box-shadow: 0 16px 34px rgba(0, 24, 84, 0.18) !important;
    transform: none;
  }

  .hero-showcase-card::before,
  .page-redraw .hero-showcase-card::before {
    display: none;
  }

  .hero-showcase-card img,
  .page-redraw .hero-showcase-card img {
    width: 100%;
    border-radius: 16px;
    box-shadow: none;
  }

  .anchor-band,
  .page-redraw .anchor-band {
    position: sticky;
    top: var(--header-height);
    padding: 10px 0;
    border-bottom: 0;
    background: linear-gradient(180deg, #eaf5ff 0%, #f7fbff 100%);
  }

  .anchor-scroll,
  .page-redraw .anchor-scroll {
    justify-content: flex-start;
    min-height: 0;
    padding: 7px;
    border: 1px solid rgba(203, 216, 212, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(18, 83, 167, 0.08);
  }

  .anchor-scroll a,
  .page-redraw .anchor-scroll a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .section,
  .page-redraw .section {
    padding: 18px 0;
  }

  .section + .section {
    border-top: 0;
  }

  .section > .shell,
  .page-redraw .section > .shell {
    padding: 20px !important;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(18, 83, 167, 0.08);
  }

  .section-heading,
  .page-redraw .section-heading,
  .product-service-header,
  .feature-html-head,
  .module-head,
  .pricing-head {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-bottom: 18px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .eyebrow::before {
    width: 18px;
    height: 2px;
  }

  h2,
  .page-redraw .section-heading h2,
  .product-service-header h2,
  .feature-html-head h2,
  .module-head h2,
  .pricing-head h2 {
    margin-bottom: 10px;
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.14;
    letter-spacing: -0.035em;
  }

  .section-heading p:last-child,
  .page-redraw .section-heading > p,
  .product-service-header > p,
  .feature-html-head > p,
  .module-head > p,
  .pricing-head p {
    font-size: 15px;
    line-height: 1.78;
  }

  .overview-grid,
  .product-service-grid,
  .components-grid,
  .operation-grid,
  .delivery-grid,
  .analytics-kpi-panel,
  .pricing-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .overview-card,
  .product-service-card,
  .component-card,
  .operation-card,
  .delivery-card,
  .logic-card,
  .pricing-feature-card,
  .analytics-kpi-card {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .overview-card h3,
  .product-service-card h3,
  .component-card h3,
  .operation-card h3,
  .delivery-card h3 {
    font-size: 20px;
    line-height: 1.24;
  }

  .overview-card p,
  .product-service-card p,
  .component-card p,
  .operation-card p,
  .delivery-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .overview-card ul,
  .product-service-card ul,
  .component-card ul,
  .operation-card ul,
  .delivery-card ul {
    gap: 7px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.72;
  }

  .floating-bar {
    right: 14px;
    bottom: calc(12px + var(--safe-bottom));
    left: 14px;
    width: auto;
    padding: 10px;
    border-radius: 14px;
  }
}

@media (max-width: 380px) {
  .hero-actions,
  .page-redraw .hero-actions {
    grid-template-columns: 1fr;
  }

  .metric-card strong {
    font-size: 14px;
  }

  .metric-card span {
    font-size: 10.5px;
  }

  h2,
  .page-redraw .section-heading h2 {
    font-size: 24px;
  }
}


/* Feature module width fix: keep same width as other sections */
.feature-module-html-section > .feature-module-html-shell,
.page-redraw .feature-module-html-section > .feature-module-html-shell {
  width: min(1240px, calc(100% - 48px)) !important;
  margin-left: auto;
  margin-right: auto;
}

.feature-html-card {
  width: 100%;
}

@media (max-width: 820px) {
  .feature-module-html-section > .feature-module-html-shell,
  .page-redraw .feature-module-html-section > .feature-module-html-shell {
    width: min(100% - 28px, 1240px) !important;
  }
}


/* Pricing section redraw */
.pricing-section-v3 > .pricing-shell-v3,
.page-redraw .pricing-section-v3 > .pricing-shell-v3 {
  width: min(1240px, calc(100% - 48px));
  padding: 42px;
}

.pricing-v3-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.56fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 18px;
}

.pricing-v3-header h2 {
  margin-bottom: 0;
}

.pricing-v3-header > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.pricing-v3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pricing-v3-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green-dark);
  border: 1px solid rgba(46, 125, 50, 0.14);
  background: rgba(46, 125, 50, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.pricing-v3-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-v3-main-card,
.pricing-v3-side article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.pricing-v3-main-card {
  overflow: hidden;
}

.pricing-v3-main-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 20px;
  align-items: end;
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.pricing-v3-main-head h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.pricing-v3-main-head > p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.pricing-v3-service-area {
  padding: 22px 28px;
}

.pricing-v3-block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.pricing-v3-block-title strong {
  font-size: 17px;
}

.pricing-v3-block-title span {
  color: var(--muted);
  font-size: 13px;
}

.pricing-v3-service-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.pricing-v3-service-options .service-option {
  min-height: 130px;
  padding: 16px;
}

.pricing-v3-service-options .service-option strong {
  font-size: 17px;
}

.pricing-v3-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-v3-pick-card {
  padding: 20px 28px;
  min-height: 142px;
}

.pricing-v3-pick-card + .pricing-v3-pick-card {
  border-left: 1px solid var(--line);
}

.pricing-v3-slot-options,
.pricing-v3-addon-options {
  gap: 10px;
}

.pricing-v3-slot-options .slot-option,
.pricing-v3-addon-options .addon-option {
  min-height: 38px;
  padding: 0 13px;
  background: #fff;
}

.pricing-v3-summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: end;
  padding: 22px 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,248,241,0.92));
}

.pricing-v3-summary > div:first-child strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.pricing-v3-summary > div:first-child span {
  color: var(--muted);
  font-size: 13px;
}

.pricing-v3-price-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.pricing-v3-price-table > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-v3-price-table > div strong {
  color: var(--ink);
  font-size: 15px;
}

.pricing-v3-price-table .price-total {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
}

.pricing-v3-price-table .price-total strong {
  color: var(--coral);
  font-size: 34px;
  line-height: 1;
}

.pricing-v3-summary .full-button {
  width: 100%;
  min-height: 52px;
}

.pricing-v3-side {
  display: grid;
  gap: 14px;
}

.pricing-v3-side article {
  padding: 22px;
}

.pricing-v3-side article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 14px 26px rgba(46, 125, 50, 0.20);
  font-weight: 950;
  font-size: 20px;
}

.pricing-v3-side h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.pricing-v3-side p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .pricing-v3-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .pricing-v3-header,
  .pricing-v3-main-head,
  .pricing-v3-summary {
    grid-template-columns: 1fr;
  }

  .pricing-v3-main-head > p {
    text-align: left;
  }

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

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

  .pricing-v3-summary .full-button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .pricing-section-v3 > .pricing-shell-v3,
  .page-redraw .pricing-section-v3 > .pricing-shell-v3 {
    width: min(100% - 28px, 1240px);
    padding: 24px 18px;
  }

  .pricing-v3-service-options,
  .pricing-v3-pick-grid,
  .pricing-v3-price-table {
    grid-template-columns: 1fr;
  }

  .pricing-v3-pick-card + .pricing-v3-pick-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}


/* Pricing APP redraw */
.pricing-app-section > .pricing-app-shell,
.page-redraw .pricing-app-section > .pricing-app-shell {
  width: min(1240px, calc(100% - 48px));
  padding: 42px;
}

.pricing-app-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 24px;
}

.pricing-app-header h2 {
  margin-bottom: 12px;
}

.pricing-app-header p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.pricing-app-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.pricing-app-header-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green-dark);
  border: 1px solid rgba(46, 125, 50, 0.14);
  background: rgba(46, 125, 50, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.pricing-app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.45fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-app-main,
.pricing-app-phone-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.pricing-app-main {
  overflow: hidden;
}

.pricing-app-main-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 20px;
  align-items: end;
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.pricing-app-main-head h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.pricing-app-main-head > p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.pricing-app-step {
  padding: 22px 28px;
}

.pricing-app-step + .pricing-app-step {
  border-top: 1px solid var(--line);
}

.pricing-app-step-title {
  display: grid;
  grid-template-columns: 34px auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.pricing-app-step-title span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-weight: 950;
}

.pricing-app-step-title strong {
  color: var(--ink);
  font-size: 18px;
  white-space: nowrap;
}

.pricing-app-step-title em {
  color: var(--muted);
  text-align: right;
  font-size: 13px;
  font-style: normal;
}

.pricing-app-service-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.pricing-app-service-options .service-option {
  min-height: 138px;
  padding: 16px;
}

.pricing-app-service-options .service-option strong {
  font-size: 17px;
}

.pricing-app-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-app-two-col .pricing-app-step + .pricing-app-step {
  border-top: 0;
  border-left: 1px solid var(--line);
}

.pricing-app-slot-options,
.pricing-app-addon-options {
  gap: 10px;
}

.pricing-app-slot-options .slot-option,
.pricing-app-addon-options .addon-option {
  min-height: 40px;
  padding: 0 14px;
}

.pricing-app-summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: end;
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,248,241,0.92));
}

.pricing-app-summary-left h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.pricing-app-summary-left p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-app-price-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.pricing-app-price-table > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-app-price-table > div strong {
  color: var(--ink);
  font-size: 15px;
}

.pricing-app-price-table .price-total {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
}

.pricing-app-price-table .price-total strong {
  color: var(--coral);
  font-size: 36px;
  line-height: 1;
}

.pricing-app-summary .full-button {
  width: 100%;
  min-height: 52px;
}

.pricing-app-phone-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 100%;
  padding: 24px 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(46, 125, 50, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,247,242,0.98));
}

.pricing-phone-glow {
  position: absolute;
  top: 60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(54, 179, 126, 0.16);
  filter: blur(30px);
}

.pricing-app-phone-card img {
  position: relative;
  z-index: 1;
  width: min(86%, 360px);
  height: auto;
  margin: -8px auto 12px;
  filter: drop-shadow(0 24px 42px rgba(16,25,23,0.16));
}

.pricing-app-benefits {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-sm);
}

.pricing-app-benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

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

.pricing-app-benefits div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-app-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46,125,50,0.08);
  border: 1px solid rgba(46,125,50,0.12);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .pricing-app-layout {
    grid-template-columns: 1fr;
  }

  .pricing-app-phone-card {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: 20px;
  }

  .pricing-app-phone-card img {
    width: min(100%, 320px);
  }
}

@media (max-width: 980px) {
  .pricing-app-header,
  .pricing-app-main-head,
  .pricing-app-summary {
    grid-template-columns: 1fr;
  }

  .pricing-app-header-tags {
    justify-content: flex-start;
  }

  .pricing-app-main-head > p,
  .pricing-app-step-title em {
    text-align: left;
  }

  .pricing-app-service-options,
  .pricing-app-two-col,
  .pricing-app-price-table {
    grid-template-columns: 1fr;
  }

  .pricing-app-two-col .pricing-app-step + .pricing-app-step {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-app-summary .full-button {
    width: fit-content;
  }

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

@media (max-width: 640px) {
  .pricing-app-section > .pricing-app-shell,
  .page-redraw .pricing-app-section > .pricing-app-shell {
    width: min(100% - 28px, 1240px);
    padding: 24px 18px;
  }
}


/* pricing phone showcase redraw */
.pricing-phone-showcase-section > .pricing-phone-showcase-shell,
.page-redraw .pricing-phone-showcase-section > .pricing-phone-showcase-shell {
  width: min(1240px, calc(100% - 48px));
  padding: 34px 36px;
}

.pricing-phone-showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.pricing-phone-showcase-header h2 {
  margin-bottom: 10px;
}

.pricing-phone-showcase-header p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.pricing-phone-showcase-tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-phone-showcase-tags span,
.pricing-phone-highlight-row span,
.pricing-phone-device-note span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  background: rgba(46, 125, 50, 0.08);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.pricing-phone-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-phone-copy-card,
.pricing-phone-device-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.pricing-phone-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  min-height: 100%;
}

.pricing-phone-copy-head .eyebrow {
  margin-bottom: 8px;
}

.pricing-phone-copy-head h3 {
  margin-bottom: 10px;
  font-size: 32px;
}

.pricing-phone-copy-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-phone-copy-card > * + * {
  margin-top: 18px;
}

.pricing-phone-copy-card .pricing-phone-feature-list,
.pricing-phone-copy-card .pricing-phone-highlight-row,
.pricing-phone-copy-card .pricing-phone-actions {
  margin-top: 0;
}

.pricing-phone-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pricing-phone-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
}

.pricing-phone-feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green), var(--mint));
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.2);
}

.pricing-phone-feature-item h4 {
  margin-bottom: 6px;
  font-size: 19px;
}

.pricing-phone-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-phone-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pricing-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.pricing-phone-device-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  background: radial-gradient(circle at 50% 0%, rgba(83, 193, 135, 0.18), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,249,244,0.98));
}

.pricing-phone-device-bg {
  position: absolute;
  top: 60px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(54, 179, 126, 0.14);
  filter: blur(28px);
}

.pricing-phone-device-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 292px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(15, 25, 23, 0.18));
}

.pricing-phone-device-note {
  display: none;
}

.pricing-phone-device-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.pricing-phone-device-note p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-phone-device-note div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1120px) {
  .pricing-phone-showcase-layout {
    grid-template-columns: 1fr;
  }

  .pricing-phone-device-card {
    padding-top: 22px;
  }
}

@media (max-width: 920px) {
  .pricing-phone-showcase-header,
  .pricing-phone-showcase-layout,
  .pricing-phone-feature-list {
    grid-template-columns: 1fr;
  }

  .pricing-phone-showcase-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .pricing-phone-showcase-section > .pricing-phone-showcase-shell,
  .page-redraw .pricing-phone-showcase-section > .pricing-phone-showcase-shell {
    width: min(100% - 28px, 1240px);
    padding: 22px 16px;
  }

  .pricing-phone-copy-card {
    padding: 20px;
  }

  .pricing-phone-copy-head h3 {
    font-size: 28px;
  }

  .pricing-phone-feature-item {
    min-height: auto;
  }
}


/* Pricing phone section cleanup */
.pricing-phone-highlight-row {
  margin-bottom: 0;
}


/* Pricing phone cleanup: highlighted tag row removed */
.pricing-phone-highlight-row {
  display: none !important;
}

.pricing-phone-device-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

.pricing-phone-device-bg {
  display: none !important;
}


/* Data analytics KPI redraw */
.analytics-section-regenerated .analytics-metric-strip {
  display: none;
}

.analytics-kpi-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.analytics-kpi-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(223, 231, 228, 0.95);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,248,0.96));
  box-shadow: 0 16px 34px rgba(16,25,23,0.06);
}

.analytics-kpi-card::before {
  position: absolute;
  inset: auto -28px -34px auto;
  width: 112px;
  height: 112px;
  content: "";
  border-radius: 36px;
  transform: rotate(14deg);
  opacity: 0.13;
}

.analytics-kpi-card::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 92px;
  height: 42px;
  content: "";
  border-radius: 12px;
  opacity: 0.36;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.2), transparent),
    repeating-linear-gradient(90deg, currentColor 0 8px, transparent 8px 15px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
}

.analytics-kpi-card.kpi-order { color: #2e7d32; }
.analytics-kpi-card.kpi-revenue { color: #1677ff; }
.analytics-kpi-card.kpi-rating { color: #f6a623; }
.analytics-kpi-card.kpi-repeat { color: #36b37e; }

.analytics-kpi-card.kpi-order::before { background: #2e7d32; }
.analytics-kpi-card.kpi-revenue::before { background: #1677ff; }
.analytics-kpi-card.kpi-rating::before { background: #f6a623; }
.analytics-kpi-card.kpi-repeat::before { background: #36b37e; }

.analytics-kpi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.analytics-kpi-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: currentColor;
  box-shadow: 0 12px 24px color-mix(in srgb, currentColor 24%, transparent);
  font-size: 16px;
  font-weight: 950;
}

.analytics-kpi-head em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.analytics-kpi-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.analytics-kpi-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.analytics-kpi-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.analytics-kpi-foot span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: currentColor;
  background: color-mix(in srgb, currentColor 10%, white);
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  font-size: 12px;
  font-weight: 900;
}

.analytics-kpi-foot i {
  flex: 1;
  min-width: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.28;
}

@media (max-width: 1100px) {
  .analytics-kpi-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .analytics-kpi-panel {
    grid-template-columns: 1fr;
  }
}

/* Mobile paired icon/title alignment for all similar detail cards */
@media (max-width: 760px) {
  .anchor-band,
  .page-redraw .anchor-band {
    display: none !important;
  }

  .product-service-card .service-card-label,
  .product-service-card p,
  .product-service-card ul,
  .product-service-card .service-card-chips,
  .overview-card p,
  .overview-card ul {
    flex: 0 0 calc(100% - 44px);
    margin-left: 44px;
  }

  .product-service-card .service-card-label {
    width: max-content;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: left;
  }

  .flow-track::before {
    display: none;
  }

  .step-dot {
    width: 32px;
    height: 32px;
    margin: 0;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.16);
  }

  .flow-step > div {
    min-width: 0;
  }

  .flow-step h3 {
    display: flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 6px;
    text-align: left;
  }

  .flow-step p {
    margin: 0;
    text-align: left;
  }

  .pricing-phone-feature-item {
    gap: 12px;
  }

  .pricing-phone-feature-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
  }

  .pricing-phone-feature-item h4 {
    display: flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 6px;
  }
}

/* Mobile hero image containment: prevent the main visual from using its intrinsic width */
@media (max-width: 760px) {
  .page-redraw .hero,
  .hero {
    overflow: hidden;
  }

  .shell,
  .page-redraw .hero-inner,
  .hero-inner {
    box-sizing: border-box;
    width: calc(100% - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .page-redraw .hero-content,
  .hero-content,
  .page-redraw .hero-visual,
  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .page-redraw .hero-showcase-card,
  .hero-showcase-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .page-redraw .hero-showcase-card img,
  .hero-showcase-card img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }

  .product-service-card {
    column-gap: 12px;
  }

  .service-card-number {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
  }

  .product-service-card h3 {
    flex-basis: calc(100% - 44px);
    min-height: 32px;
    margin-bottom: 10px;
  }

  .product-service-points article {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .product-service-points article > span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
  }

  .product-service-points strong {
    display: flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 6px;
  }

  .product-service-points article > div {
    min-width: 0;
    text-align: left;
  }

  .product-service-points p {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    text-indent: 0;
  }

  .overview-card {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    column-gap: 12px;
  }

  .overview-card img {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin: 0 0 12px;
  }

  .overview-card h3 {
    display: flex;
    flex: 1 1 calc(100% - 44px);
    align-items: center;
    min-height: 32px;
    margin: 0 0 12px;
  }

  .overview-card p,
  .overview-card ul {
    flex: 0 0 calc(100% - 44px);
    margin-left: 44px;
    padding-left: 0;
    text-align: left;
    text-indent: 0;
  }

  .feature-html-tabs {
    display: none !important;
  }

  .pricing-phone-feature-item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: start;
  }

  .pricing-phone-feature-item > div:not(.pricing-phone-feature-icon) {
    display: contents;
  }

  .pricing-phone-feature-icon {
    grid-column: 1;
    align-self: center;
    flex: 0 0 30px !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
  }

  .pricing-phone-feature-item h4 {
    grid-column: 2;
    display: flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
  }

  .pricing-phone-feature-item p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
    text-align: left;
    text-indent: 0;
  }
}

/* Service assurance cleanup: remove nested card-on-card styling */
.component-card {
  min-height: 0;
}

.component-card .component-preview {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.component-card .service-card-preview,
.component-card .staff-preview {
  display: grid;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.component-card .service-card-preview {
  grid-template-columns: 36px minmax(0, 1fr);
}

.component-card .staff-preview {
  grid-template-columns: 36px minmax(0, 1fr) auto;
}

.component-card .service-card-preview .pic,
.component-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(46, 125, 50, 0.16);
}

.component-card .service-card-preview .pic::before {
  font-size: 15px;
}

.component-card .service-card-preview strong,
.component-card .staff-preview strong {
  margin: 0 0 3px;
  font-size: 16px;
  line-height: 1.2;
}

.component-card .service-card-preview span,
.component-card .staff-preview span {
  font-size: 13px;
  line-height: 1.4;
}

.component-card .service-card-preview em {
  display: block;
  min-height: 0;
  margin-top: 3px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.3;
}

.component-card .staff-preview .tag {
  align-self: center;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.component-card .chip-preview,
.component-card .status-preview {
  padding: 0;
  background: transparent;
}

.component-card .status-row {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 760px) {
  .component-card .component-preview {
    margin-bottom: 14px;
  }

  .component-card .service-card-preview,
  .component-card .staff-preview {
    gap: 10px;
  }

  .component-card .service-card-preview {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .component-card .staff-preview {
    grid-template-columns: 32px minmax(0, 1fr) auto;
  }

  .component-card .service-card-preview .pic,
  .component-card .avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .component-card .service-card-preview .pic::before,
  .component-card .avatar {
    font-size: 14px;
  }
}

/* Cohesive detail-page polish: flatter hierarchy, denser rhythm and aligned controls */
.site-header {
  box-shadow: 0 1px 0 rgba(16, 25, 23, 0.04);
}

.nav {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
}

.nav-links {
  min-width: 0;
}

.nav-links a {
  padding-right: 10px;
  padding-left: 10px;
  font-size: 13px;
}

.nav-back,
.nav-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-cta {
  min-width: 116px;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.page-redraw .section {
  padding: 24px 0;
}

.page-redraw .section + .section {
  border-top: 1px solid rgba(203, 216, 212, 0.42);
}

.page-redraw .section > .shell,
.page-redraw .section:nth-of-type(odd) > .shell {
  padding: 42px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-redraw .section-heading,
.product-service-header,
.pricing-phone-showcase-header {
  margin-bottom: 26px;
}

.page-redraw .overview-card,
.page-redraw .product-service-card,
.page-redraw .component-card,
.page-redraw .operation-card,
.page-redraw .delivery-card,
.page-redraw .analytics-kpi-card,
.page-redraw .analytics-insight-card,
.page-redraw .analytics-highlight-card,
.page-redraw .faq-list-redrawn .faq-item {
  border-color: rgba(203, 216, 212, 0.76);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(16, 25, 23, 0.045);
}

.overview-card::after,
.analytics-kpi-card::before {
  opacity: 0.08;
}

.operation-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0 14px;
  align-content: start;
}

.operation-card .icon {
  grid-column: 1;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 12px;
  font-size: 14px;
}

.operation-card h3 {
  grid-column: 2;
  display: flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
}

.operation-card p,
.operation-card ul {
  grid-column: 1 / -1;
}

.operation-card p {
  margin-top: 16px;
}

.component-card .component-preview {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(203, 216, 212, 0.62);
}

.faq-guide-card {
  gap: 12px;
  border: 0;
  border-radius: 20px;
  background: rgba(238, 247, 240, 0.72);
  box-shadow: none;
}

.faq-guide-list {
  border-top: 1px solid rgba(46, 125, 50, 0.12);
}

.faq-guide-list li {
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 0;
  background: transparent;
}

.faq-list-redrawn .faq-item {
  box-shadow: none;
}

.faq-list-redrawn .faq-question {
  min-height: 66px;
}

.floating-bar {
  right: 28px;
  left: auto;
  width: min(430px, calc(100% - 56px));
  margin: 0;
  padding: 10px 10px 10px 16px;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(16, 25, 23, 0.14);
}

.back-top {
  right: 28px;
  bottom: calc(92px + var(--safe-bottom));
}

@media (hover: hover) and (pointer: fine) {
  .overview-card,
  .product-service-card,
  .component-card,
  .operation-card,
  .delivery-card,
  .analytics-kpi-card {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .overview-card:hover,
  .product-service-card:hover,
  .component-card:hover,
  .operation-card:hover,
  .delivery-card:hover,
  .analytics-kpi-card:hover {
    transform: translateY(-3px);
    border-color: rgba(46, 125, 50, 0.24);
    box-shadow: 0 18px 36px rgba(16, 25, 23, 0.08);
  }
}

@media (max-width: 1240px) and (min-width: 761px) {
  .nav {
    gap: 10px;
  }

  .nav-links a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-back,
  .nav-cta {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .nav-cta {
    min-width: 104px;
  }

  .metric-card strong {
    font-size: 18px;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    height: var(--header-height);
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    min-height: var(--header-height);
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .brand span:last-child {
    max-width: 148px;
    font-size: 13px;
  }

  .nav-back {
    min-height: 34px;
    padding: 0 9px;
    font-size: 0;
  }

  .nav-back::before {
    content: "案例列表";
    font-size: 12px;
  }

  .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }

  .page-redraw main {
    padding-bottom: 64px;
  }

  .page-redraw .hero,
  .hero {
    padding-top: 22px;
  }

  .page-redraw .hero-inner,
  .hero-inner {
    gap: 18px;
    padding-bottom: 22px;
  }

  .page-redraw .hero-title-redraw .hero-title-main,
  .hero-title-redraw .hero-title-main,
  h1 {
    font-size: clamp(28px, 7.7vw, 34px) !important;
  }

  .page-redraw .hero-copy,
  .hero-copy {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions,
  .page-redraw .hero-actions {
    margin-bottom: 16px;
  }

  .page-redraw .metric-card,
  .metric-card {
    min-height: 86px;
    padding: 12px 7px;
  }

  .metric-card strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-trust,
  .page-redraw .hero-trust {
    margin-top: 12px;
  }

  .hero-showcase-card,
  .page-redraw .hero-showcase-card {
    padding: 8px;
    border-radius: 18px;
  }

  .hero-showcase-card img,
  .page-redraw .hero-showcase-card img {
    border-radius: 12px;
  }

  .page-redraw .section,
  .section {
    padding: 10px 0;
  }

  .page-redraw .section + .section {
    border-top: 1px solid rgba(203, 216, 212, 0.42);
  }

  .page-redraw .section > .shell,
  .page-redraw .section:nth-of-type(odd) > .shell,
  .section > .shell {
    padding: 22px 0 !important;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .section-heading,
  .page-redraw .section-heading,
  .product-service-header,
  .feature-html-head,
  .pricing-phone-showcase-header {
    margin-bottom: 16px;
  }

  h2,
  .page-redraw .section-heading h2,
  .product-service-header h2,
  .feature-html-head h2,
  .pricing-phone-showcase-header h2 {
    font-size: clamp(25px, 6.7vw, 29px);
    letter-spacing: 0;
  }

  .section-heading p:last-child,
  .page-redraw .section-heading > p,
  .product-service-header > p,
  .feature-html-head > p,
  .pricing-phone-showcase-header > p {
    font-size: 14px;
    line-height: 1.72;
  }

  .overview-grid,
  .product-service-grid,
  .components-grid,
  .operation-grid,
  .delivery-grid {
    gap: 12px;
  }

  .overview-card,
  .product-service-card,
  .component-card,
  .operation-card,
  .delivery-card {
    padding: 18px;
    border-radius: 16px;
    box-shadow: none;
  }

  .overview-card h3,
  .product-service-card h3,
  .component-card h3,
  .operation-card h3,
  .delivery-card h3 {
    font-size: 19px;
  }

  .product-service-showcase {
    gap: 12px;
  }

  .product-service-visual,
  .product-service-panel {
    border-radius: 18px;
    box-shadow: none;
  }

  .product-service-panel {
    padding: 18px;
  }

  .product-service-points {
    gap: 0;
    border-top: 1px solid rgba(46, 125, 50, 0.12);
  }

  .product-service-points article {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 0;
    background: transparent;
  }

  .feature-html-card {
    padding: 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .feature-html-panel.role-panel,
  .feature-html-panel.role-panel.active {
    border-radius: 18px;
    box-shadow: none;
  }

  .pricing-phone-copy-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-phone-feature-list {
    gap: 0;
    border-top: 1px solid rgba(46, 125, 50, 0.12);
  }

  .pricing-phone-feature-item {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .component-card .component-preview {
    padding-bottom: 12px;
  }

  .operation-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 12px;
  }

  .operation-card .icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 12px;
  }

  .operation-card h3 {
    min-height: 34px;
  }

  .operation-card p {
    margin-top: 14px;
  }

  .analytics-kpi-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    margin-bottom: 14px;
  }

  .analytics-kpi-card {
    min-height: 144px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: none;
  }

  .analytics-kpi-head {
    margin-bottom: 10px;
  }

  .analytics-kpi-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 13px;
  }

  .analytics-kpi-card strong {
    font-size: 24px;
  }

  .analytics-kpi-card p {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .faq-guide-card {
    display: none;
  }

  .faq-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-list-redrawn {
    gap: 10px;
  }

  .faq-list-redrawn .faq-item,
  .faq-list-redrawn .faq-question {
    border-radius: 16px;
  }

  .faq-list-redrawn .faq-question {
    min-height: 58px;
    padding: 0 16px;
    font-size: 15px;
  }

  .faq-list-redrawn .faq-answer {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-panel {
    padding: 18px 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .floating-bar {
    right: 12px;
    bottom: calc(10px + var(--safe-bottom));
    left: 12px;
    width: auto;
    padding: 8px 8px 8px 12px;
    border-radius: 13px;
  }

  .floating-copy span {
    display: none;
  }

  .floating-bar .button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 9px;
  }

  .back-top {
    right: 12px;
    bottom: calc(76px + var(--safe-bottom));
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .brand span:last-child {
    max-width: 116px;
  }

  .analytics-kpi-panel {
    grid-template-columns: 1fr !important;
  }
}

/* Tighten the mobile transition from service cards into the feature module. */
@media (max-width: 760px) {
  .page-redraw #scenario.product-service-section {
    padding-bottom: 0 !important;
  }

  .page-redraw #scenario > .product-service-shell {
    padding-bottom: 4px !important;
  }

  .page-redraw #architecture.feature-module-html-section {
    padding-top: 0 !important;
  }

  .page-redraw #architecture > .feature-module-html-shell {
    padding-top: 0 !important;
  }

  .page-redraw #architecture .feature-html-card {
    padding-top: 10px;
  }
}

/* Keep the contact eyebrow legible against the dark product-demo panel. */
.page-redraw .contact-card .eyebrow,
.page-redraw .contact-copy-redraw .eyebrow {
  position: relative;
  z-index: 2;
  color: #d9ffe5 !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.page-redraw .contact-card .eyebrow::before,
.page-redraw .contact-copy-redraw .eyebrow::before {
  background: #73ee9b;
  box-shadow: 0 0 14px rgba(115, 238, 155, 0.38);
}

/* Enterprise product-system refinement */
body.page-redraw {
  --enterprise-ink: #122338;
  --enterprise-muted: #5f7184;
  --enterprise-line: #dbe4ec;
  --enterprise-blue: #1768d1;
  --enterprise-blue-dark: #0e4eaa;
  --enterprise-blue-soft: #eaf3ff;
  --enterprise-green: #24864a;
  --enterprise-surface: #ffffff;
  color: var(--enterprise-ink);
  background: #f3f6f9;
}

.page-redraw .site-header {
  border-bottom-color: rgba(146, 164, 181, 0.22);
  background: rgba(249, 251, 253, 0.94);
  box-shadow: 0 8px 26px rgba(23, 47, 72, 0.055);
}

.page-redraw .brand {
  color: var(--enterprise-ink);
  font-weight: 850;
}

.page-redraw .brand img {
  border: 1px solid rgba(23, 104, 209, 0.14);
  box-shadow: 0 7px 18px rgba(23, 104, 209, 0.16);
}

.page-redraw .nav-links {
  border-color: rgba(146, 164, 181, 0.24);
  background: #f3f6f9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.page-redraw .nav-links a {
  color: #617184;
  font-weight: 700;
}

.page-redraw .nav-links a:hover,
.page-redraw .nav-links a.active {
  color: var(--enterprise-blue-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(30, 65, 102, 0.07);
}

.page-redraw .nav-back {
  border-color: rgba(23, 104, 209, 0.18);
  color: var(--enterprise-blue-dark);
  background: #fff;
  box-shadow: none;
}

.page-redraw .nav-cta {
  border-radius: 8px;
  background: var(--enterprise-blue-dark);
  box-shadow: 0 8px 18px rgba(14, 78, 170, 0.2);
}

.page-redraw .nav-cta:hover {
  background: var(--enterprise-blue);
}

.page-redraw .hero {
  background: linear-gradient(118deg, #071a36 0%, #0b2a50 48%, #0c4a4b 100%);
}

.page-redraw .hero::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, rgba(15, 77, 145, 0.28), rgba(22, 104, 209, 0.08) 48%, rgba(36, 134, 74, 0.2));
  background-size: 72px 72px, 72px 72px, auto;
}

.page-redraw .hero::after {
  opacity: 0.42;
  background: linear-gradient(90deg, rgba(4, 17, 39, 0.7), transparent 58%, rgba(24, 121, 77, 0.14));
  mask-image: none;
}

.page-redraw .hero-content {
  max-width: 570px;
}

.page-redraw .hero .eyebrow {
  color: #8dd8ff;
  letter-spacing: 0;
}

.page-redraw .hero-title-redraw .hero-title-line {
  letter-spacing: -0.035em;
  text-shadow: 0 10px 28px rgba(1, 10, 28, 0.32);
}

.page-redraw .hero-title-redraw .hero-title-sub,
.page-redraw .hero-title-redraw h1 span {
  color: #78dca0;
}

.page-redraw .hero-copy {
  max-width: 540px;
  color: rgba(235, 244, 252, 0.78);
  line-height: 1.78;
}

.page-redraw .hero-actions .button {
  min-height: 46px;
  border-radius: 9px;
}

.page-redraw .hero-actions .button-primary {
  background: var(--enterprise-blue);
  box-shadow: 0 12px 26px rgba(23, 104, 209, 0.3);
}

.page-redraw .hero-actions .button-secondary {
  border-color: rgba(212, 230, 245, 0.28);
  background: rgba(8, 31, 62, 0.52);
  backdrop-filter: blur(10px);
}

.page-redraw .hero-showcase-card::before {
  display: none;
}

.page-redraw .hero-showcase-card img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 30px 68px rgba(1, 13, 30, 0.32);
}

.page-redraw .hero-metrics {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 222, 240, 0.16);
  border-radius: 14px;
  background: rgba(7, 35, 68, 0.48);
  backdrop-filter: blur(12px);
}

.page-redraw .metric-card {
  min-height: 92px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid rgba(200, 222, 240, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-redraw .metric-card:last-child {
  border-right: 0;
}

.page-redraw .metric-card strong {
  font-size: 22px;
}

.page-redraw .metric-card span {
  color: rgba(221, 235, 247, 0.68);
}

.page-redraw .hero-trust {
  gap: 8px;
  margin-top: 18px;
}

.page-redraw .hero-trust span {
  min-height: 30px;
  border-color: rgba(200, 222, 240, 0.12);
  color: rgba(229, 241, 250, 0.74);
  background: rgba(7, 35, 68, 0.34);
}

.page-redraw .hero-trust span::before {
  background: #78dca0;
  box-shadow: none;
}

.page-redraw .anchor-band {
  border-bottom: 1px solid rgba(146, 164, 181, 0.18);
  background: rgba(249, 251, 253, 0.94);
  box-shadow: 0 10px 26px rgba(27, 55, 82, 0.05);
}

.page-redraw .anchor-scroll {
  border-color: rgba(146, 164, 181, 0.22);
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 60, 91, 0.06);
}

.page-redraw .anchor-scroll a.active,
.page-redraw .anchor-scroll a:hover {
  color: #fff;
  background: var(--enterprise-blue-dark);
}

.page-redraw .section {
  border-top-color: rgba(146, 164, 181, 0.18);
  background: #f6f8fa;
}

.page-redraw #overview,
.page-redraw #flow,
.page-redraw #components,
.page-redraw #visual,
.page-redraw #faq {
  background: #fff;
}

.page-redraw .eyebrow {
  color: var(--enterprise-blue);
  letter-spacing: 0;
  text-transform: none;
}

.page-redraw .eyebrow::before {
  width: 18px;
  height: 2px;
  background: var(--enterprise-blue);
}

.page-redraw .section-heading h2,
.page-redraw .product-service-header h2,
.page-redraw .pricing-phone-showcase-header h2,
.page-redraw .analytics-hero-caption h2 {
  color: var(--enterprise-ink);
  letter-spacing: -0.028em;
}

.page-redraw .section-heading > p,
.page-redraw .product-service-header > p,
.page-redraw .pricing-phone-showcase-header > p,
.page-redraw .analytics-hero-caption p {
  color: var(--enterprise-muted);
  line-height: 1.75;
}

.page-redraw .overview-card,
.page-redraw .product-service-card,
.page-redraw .component-card,
.page-redraw .operation-card,
.page-redraw .delivery-card,
.page-redraw .analytics-kpi-card,
.page-redraw .analytics-insight-card,
.page-redraw .analytics-highlight-card,
.page-redraw .faq-list-redrawn .faq-item {
  border-color: var(--enterprise-line);
  border-radius: 16px;
  background: var(--enterprise-surface);
  box-shadow: 0 10px 26px rgba(26, 52, 79, 0.055);
}

.page-redraw .overview-card h3,
.page-redraw .product-service-card h3,
.page-redraw .component-card h3,
.page-redraw .operation-card h3,
.page-redraw .delivery-card h3 {
  color: var(--enterprise-ink);
  letter-spacing: -0.012em;
}

.page-redraw .operation-card .icon {
  color: #fff;
  background: var(--enterprise-blue);
  box-shadow: 0 8px 18px rgba(23, 104, 209, 0.18);
}

.page-redraw .product-service-tags span,
.page-redraw .service-card-chips span,
.page-redraw .pricing-tags span,
.page-redraw .analytics-caption-tags span {
  border-color: #d7e4f0;
  color: #315674;
  background: #f3f7fb;
}

.page-redraw .button-primary,
.page-redraw .floating-bar .button {
  background: var(--enterprise-blue);
  box-shadow: 0 10px 22px rgba(23, 104, 209, 0.22);
}

.page-redraw .back-top {
  border-color: rgba(23, 104, 209, 0.18);
  color: var(--enterprise-blue-dark);
  background: rgba(255, 255, 255, 0.96);
}

@media (hover: hover) and (pointer: fine) {
  .page-redraw .overview-card:hover,
  .page-redraw .product-service-card:hover,
  .page-redraw .component-card:hover,
  .page-redraw .operation-card:hover,
  .page-redraw .delivery-card:hover,
  .page-redraw .analytics-kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 104, 209, 0.26);
    box-shadow: 0 16px 34px rgba(26, 52, 79, 0.09);
  }
}

@media (max-width: 760px) {
  body.page-redraw {
    background: #f3f6f9;
  }

  .page-redraw .site-header {
    background: rgba(249, 251, 253, 0.97);
  }

  .page-redraw .hero {
    background: linear-gradient(155deg, #071a36 0%, #0b3151 60%, #0d5746 100%);
  }

  .page-redraw .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .page-redraw .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 14px;
  }

  .page-redraw .metric-card {
    min-height: 86px;
    padding: 14px 8px;
    text-align: center;
  }

  .page-redraw .metric-card strong {
    font-size: 21px;
  }

  .page-redraw .metric-card span {
    font-size: 11px;
    white-space: nowrap;
  }

  .page-redraw .hero-showcase-card img {
    border-radius: 16px;
  }

  .page-redraw .section {
    background: #f6f8fa;
  }

  .page-redraw #overview,
  .page-redraw #flow,
  .page-redraw #components,
  .page-redraw #visual,
  .page-redraw #faq {
    background: #fff;
  }

  .page-redraw .overview-card,
  .page-redraw .product-service-card,
  .page-redraw .component-card,
  .page-redraw .operation-card,
  .page-redraw .delivery-card,
  .page-redraw .analytics-kpi-card,
  .page-redraw .analytics-insight-card,
  .page-redraw .analytics-highlight-card,
  .page-redraw .faq-list-redrawn .faq-item {
    border-radius: 14px;
    box-shadow: 0 7px 20px rgba(26, 52, 79, 0.045);
  }

  .page-redraw .floating-bar {
    border: 1px solid rgba(146, 164, 181, 0.22);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 34px rgba(25, 52, 78, 0.13);
  }
}

/* Responsive navigation: compact dropdown instead of the desktop pill shape. */
@media (max-width: 1100px) {
  .page-redraw .nav-links {
    z-index: 60;
    top: calc(var(--header-height) + 8px);
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    height: auto;
    max-height: calc(100dvh - var(--header-height) - 24px);
    margin: 0;
    padding: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(146, 164, 181, 0.3);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 46px rgba(18, 45, 72, 0.18);
    transform: none;
    clip-path: none;
    backdrop-filter: blur(18px);
  }

  body.nav-open .page-redraw .nav-links,
  .page-redraw.nav-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .page-redraw .nav-links a {
    justify-content: flex-start;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 9px;
    color: #42566b;
    background: transparent;
    font-size: 13px;
    font-weight: 750;
  }

  .page-redraw .nav-links a:hover,
  .page-redraw .nav-links a.active {
    color: var(--enterprise-blue-dark);
    background: var(--enterprise-blue-soft);
    box-shadow: none;
  }
}
