:root {
  --site-content-width: 1180px;
  --site-page-gutter: max(18px, calc((100vw - var(--site-content-width)) / 2));
  --orange: #f37021;
  --orange-dark: #d95c12;
  --orange-soft: #fff3e8;
  --ink: #2f3336;
  --text: #666666;
  --muted: #8a8f94;
  --line: #e8e8e8;
  --paper: #f7f8fa;
  --white: #ffffff;
  --danger: #c54934;
  --green: #328767;
  --blue: #4c76a8;
  --shadow: 0 18px 46px rgba(47, 51, 54, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    Arial,
    sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, var(--site-content-width));
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 10px var(--site-page-gutter);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 232, 232, 0.7);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header > .brand,
.site-header > .nav-toggle,
.site-header > .main-nav {
  grid-row: 1;
}

.site-header > .brand {
  grid-column: 1;
  justify-self: start;
}

.site-header > .nav-toggle,
.site-header > .main-nav {
  grid-column: 1;
  justify-self: end;
}

.site-header.is-scrolled,
.site-header.is-open {
  box-shadow: 0 12px 34px rgba(47, 51, 54, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 132px;
}

.brand-logo {
  display: block;
  width: clamp(132px, 12vw, 160px);
  height: auto;
}

.brand-logo-qifu {
  width: clamp(156px, 14vw, 210px);
}

.brand-mark,
.brand strong,
.brand small {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
  color: #474b4e;
  font-size: 15px;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.main-nav a:not(.nav-action)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: none;
  min-width: 188px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.14);
  transform: translateX(-50%);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  min-height: 31px;
  padding: 4px 10px;
  border-radius: 6px;
  color: #474b4e;
  font-size: 15px;
  line-height: 1.45;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.main-nav a[aria-current="page"]:not(.nav-action) {
  color: var(--orange);
  font-weight: 900;
}

.main-nav a[aria-current="page"]:not(.nav-action)::after {
  transform: scaleX(1);
}

.nav-action[aria-current="page"] {
  background: var(--orange-dark);
}

.nav-action {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  justify-content: center;
  text-align: center;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.main-nav .nav-action:hover,
.main-nav .nav-action:focus-visible {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(217, 92, 18, 0.22);
  transform: translateY(-1px);
}

.nav-action[aria-current="page"] {
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 700px;
  padding: 112px var(--site-page-gutter) 66px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 36%, rgba(243, 112, 33, 0.13), transparent 34%),
    linear-gradient(120deg, #ffffff 0%, #fff8f1 47%, #fff1e6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 112, 33, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 112, 33, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 92% 16%, rgba(243, 112, 33, 0.11) 0 2px, transparent 3px);
  background-size: 54px 54px, 54px 54px, 14px 14px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
  opacity: 0.68;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.topic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(243, 112, 33, 0.24);
}

.btn.primary:hover {
  background: var(--orange-dark);
}

.btn.secondary {
  border-color: rgba(243, 112, 33, 0.38);
  background: var(--white);
  color: var(--orange-dark);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-tags span,
.tag-row span {
  padding: 8px 12px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #5a5f63;
  font-size: 13px;
  font-weight: 800;
}

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

.hero-visual-3d {
  display: grid;
  align-items: center;
  justify-items: end;
  isolation: isolate;
}

.hero-visual-3d::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  z-index: 0;
  width: min(520px, 86%);
  height: min(360px, 70%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.17), transparent 68%);
  filter: blur(10px);
}

.hero-visual-3d img {
  position: relative;
  z-index: 1;
  width: min(900px, 142%);
  max-width: none;
  margin-right: -88px;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(198, 95, 30, 0.16));
}

.arc {
  position: absolute;
  border: 28px solid rgba(243, 112, 33, 0.18);
  border-radius: 50%;
}

.arc-one {
  right: 4%;
  top: 14%;
  width: 390px;
  height: 390px;
}

.arc-two {
  right: 27%;
  top: 2%;
  width: 230px;
  height: 230px;
  border-width: 18px;
}

.dashboard-card {
  position: absolute;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.main-board {
  right: 7%;
  top: 82px;
  width: min(420px, 78%);
  padding: 26px;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board-head span,
.risk-board span,
.mini-dashboard span,
.match-result span,
.package-grid span,
.featured-article span,
.case-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.board-head strong {
  font-size: 36px;
}

.progress-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.progress-list div {
  display: grid;
  gap: 8px;
}

.progress-list span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.progress-list i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0f1f2;
}

.progress-list i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffb16d);
}

.risk-board {
  left: 3%;
  bottom: 86px;
  width: 235px;
  padding: 22px;
}

.risk-board strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
}

.risk-board small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.image-board {
  right: 0;
  bottom: 20px;
  width: 280px;
  overflow: hidden;
}

.image-board img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.quick-section,
.section,
.panorama-section,
.lifecycle-section {
  padding: clamp(70px, 9vw, 116px) var(--site-page-gutter);
}

.page-first {
  padding-top: clamp(112px, 12vw, 150px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 36px;
  max-width: 1180px;
  text-align: left;
}

.lifecycle-heading {
  max-width: 820px;
  text-align: center;
}

.lifecycle-heading p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading h1,
.section-heading h2,
.contact-copy h1,
.contact-copy h2,
.about-hero h1,
.about-hero h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.about-hero p {
  margin: 10px 0 0;
  color: var(--text);
}

.quick-section,
.accounting-section,
.business-section {
  background: var(--white);
}

.insights-section {
  background: var(--white);
}

.service-advantage-section {
  padding: clamp(62px, 7vw, 92px) var(--site-page-gutter);
  background: linear-gradient(180deg, #fffaf6 0%, var(--orange-soft) 100%);
}

.service-advantage-inner {
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.service-advantage-inner h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  text-align: center;
}

.service-advantage-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-advantage-stats div {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 132px;
  padding: 24px 18px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(217, 92, 18, 0.08);
}

.service-advantage-stats div:first-child {
  border-left: 1px solid rgba(243, 112, 33, 0.16);
}

.service-advantage-stats strong {
  color: var(--orange);
  font-size: clamp(30px, 3.2vw, 42px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}

.service-advantage-stats span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 1060px) {
  .service-advantage-stats div {
    border: 1px solid rgba(243, 112, 33, 0.16);
  }

  .service-advantage-stats div:nth-child(-n + 2) {
    border-top: 1px solid rgba(243, 112, 33, 0.16);
  }
}

@media (max-width: 760px) {
  .service-advantage-stats div {
    min-height: 128px;
    border: 1px solid rgba(243, 112, 33, 0.16);
  }

  .service-advantage-stats div:nth-child(n + 2) {
    border-top: 1px solid rgba(243, 112, 33, 0.16);
  }

  .service-advantage-stats div:first-child {
    border-top: 1px solid rgba(243, 112, 33, 0.16);
  }
}

.brand-screen-section {
  background: var(--white);
}

.brand-screen-section .section-heading {
  margin-bottom: 44px;
}

.brand-screen-section .section-heading h2 {
  font-size: clamp(36px, 4.2vw, 52px);
}

.brand-screen {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.partner-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
  padding: 8px 0 18px;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(232, 232, 232, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(47, 51, 54, 0.05);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-logo:hover {
  border-color: rgba(243, 112, 33, 0.26);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 51, 54, 0.08);
}

.partner-logo img {
  width: 100%;
  max-width: 180px;
  height: 62px;
  object-fit: contain;
}

.partner-logo[aria-label="氢森"] img,
.partner-logo[aria-label="万科"] img {
  transform: scale(1.08);
  clip-path: inset(5px 7px);
}

.partner-logo span {
  display: block;
  position: relative;
  width: 92px;
  height: 64px;
  overflow: visible;
  background: var(--logo-svg) center / contain no-repeat;
  font-size: 0;
  filter: drop-shadow(0 18px 22px rgba(47, 51, 54, 0.1));
  transition: transform 0.2s ease;
}

.partner-logo:hover span {
  transform: translateY(-2px);
}

.partner-logo.logo-tencent {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M19 38h49c8 0 14-6 14-14s-6-14-14-14c-5 0-9 2-12 6C52 8 44 4 35 6 23 8 16 18 19 30c-6 1-10 4-10 8 0 5 4 8 10 8Z' stroke='%23168AF7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M38 31h26' stroke='%23168AF7' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-now {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56'%3E%3Crect x='20' y='7' width='56' height='42' rx='11' fill='%232FC26B'/%3E%3Cpath d='M42 19v18l18-9-18-9Z' fill='white'/%3E%3C/svg%3E");
}

.partner-logo.logo-ximalaya {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Crect x='25' y='8' width='46' height='40' rx='12' fill='%23FF5A1F'/%3E%3Cpath d='M38 19c6 7 6 12 0 19M48 16c8 9 8 15 0 24M58 19c6 7 6 12 0 19' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-jiang {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M32 13h32v28c0 6-5 10-16 10S32 47 32 41V13Z' fill='%231B58B8'/%3E%3Cpath d='M38 13c1-6 19-6 20 0M40 23h16M40 32h16' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-xunyou {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Ccircle cx='48' cy='28' r='22' fill='%232FC26B'/%3E%3Cpath d='M36 28c7-14 23-13 27 1M61 18l4 11-12-2M60 30c-7 14-23 13-27-1M35 39l-4-11 12 2' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-lixiang {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M22 35h52c6 0 10-4 10-10V13' stroke='%231B58B8' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M22 43h38' stroke='%231B58B8' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-guazi {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M18 35c6-16 21-23 38-19 13 3 20 12 22 24-18 9-43 10-60-5Z' fill='%2329B765'/%3E%3Ccircle cx='36' cy='39' r='5' fill='white'/%3E%3Ccircle cx='63' cy='39' r='5' fill='white'/%3E%3Cpath d='M32 29h30' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-cybernaut {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Ccircle cx='48' cy='28' r='8' fill='%231AAF69'/%3E%3Cpath d='M19 36c13 14 51 11 58-7M77 20c-13-14-51-11-58 7' stroke='%231AAF69' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M68 10l7 11-13 1' stroke='%231AAF69' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-hbr {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M48 5 77 21v14L48 51 19 35V21L48 5Z' fill='%23FF5A1F'/%3E%3Cpath d='M35 21h26M35 35h26M41 15v26M55 15v26' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-huqing {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Ccircle cx='48' cy='28' r='23' stroke='%23C92F22' stroke-width='5'/%3E%3Cpath d='M33 28h30M48 14v28M37 18c9 8 15 16 22 24M60 18c-9 8-15 16-22 24' stroke='%23C92F22' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-huangji {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M25 30h46l-5 14H30l-5-14Z' fill='%23C92F22'/%3E%3Cpath d='M35 27c-4-8 4-10 1-17M49 27c-4-8 4-10 1-17M62 27c-4-8 4-10 1-17' stroke='%23C92F22' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-qixin {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M48 6 72 15v15c0 13-9 20-24 24-15-4-24-11-24-24V15l24-9Z' fill='%23E2B100'/%3E%3Cpath d='M38 27h20M38 36h20M48 18v26' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-baidu {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Crect x='18' y='11' width='60' height='34' rx='10' fill='%231B58B8'/%3E%3Ccircle cx='36' cy='29' r='7' fill='white'/%3E%3Ccircle cx='60' cy='29' r='7' fill='white'/%3E%3Cpath d='M40 39h16' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-jd {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M48 7 75 22v20L48 54 21 42V22L48 7Z' fill='%231B58B8'/%3E%3Cpath d='M21 22 48 36l27-14M48 36v18' stroke='white' stroke-width='5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-netease {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M24 37h47c6 0 10-4 10-10s-5-10-11-10c-4 0-7 1-10 4-4-9-14-13-24-8-7 3-11 9-12 17-5 1-8 4-8 7s3 6 8 6Z' fill='%232FC26B'/%3E%3Cpath d='M39 30h18M39 39h18' stroke='white' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.partner-logo.logo-yonyou {
  --logo-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='56' viewBox='0 0 96 56' fill='none'%3E%3Ccircle cx='28' cy='28' r='9' fill='%23FF5A1F'/%3E%3Ccircle cx='68' cy='18' r='8' fill='%23FF5A1F'/%3E%3Ccircle cx='66' cy='42' r='8' fill='%23FF5A1F'/%3E%3Cpath d='M36 26 60 20M36 31l23 9' stroke='%23FF5A1F' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.quick-grid,
.card-grid,
.package-grid,
.case-grid,
.knowledge-islands,
.license-cards,
.belief-grid {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 16px;
}

.quick-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.card-grid article,
.package-grid article,
.case-grid article,
.knowledge-islands article,
.license-cards article,
.belief-grid article,
.checklist-card,
.file-card,
.featured-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(47, 51, 54, 0.05);
}

.quick-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(68px, auto) 1fr auto;
  align-content: stretch;
  gap: 12px;
  min-height: 240px;
  overflow: hidden;
  padding: 28px 20px 24px;
  border: 0;
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
  color: var(--white);
  box-shadow: 0 20px 42px rgba(217, 92, 18, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.quick-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.24) 100%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.24), transparent 30%);
}

.quick-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(217, 92, 18, 0.2);
}

.quick-card > * {
  position: relative;
  z-index: 1;
}

.quick-card-setup {
  --quick-a: rgba(243, 112, 33, 0.94);
  --quick-b: rgba(193, 76, 15, 0.74);
  --quick-image: url("assets/quick-business-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.quick-card-accounting {
  --quick-a: rgba(255, 139, 58, 0.94);
  --quick-b: rgba(217, 92, 18, 0.72);
  --quick-image: url("assets/quick-accounting-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.quick-card-address {
  --quick-a: rgba(230, 98, 28, 0.94);
  --quick-b: rgba(162, 68, 24, 0.76);
  --quick-image: url("assets/quick-business-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.quick-card-compliance {
  --quick-a: rgba(229, 93, 28, 0.94);
  --quick-b: rgba(156, 61, 20, 0.76);
  --quick-image: url("assets/quick-compliance-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.quick-card-change {
  --quick-a: rgba(196, 100, 45, 0.92);
  --quick-b: rgba(142, 74, 32, 0.74);
  --quick-image: url("assets/quick-change-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.quick-card-license {
  --quick-a: rgba(246, 154, 54, 0.94);
  --quick-b: rgba(187, 91, 19, 0.76);
  --quick-image: url("assets/quick-license-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.quick-card-tax {
  --quick-a: rgba(243, 112, 33, 0.94);
  --quick-b: rgba(178, 91, 27, 0.74);
  --quick-image: url("assets/quick-tax-scene.png");
  background:
    linear-gradient(180deg, var(--quick-a), var(--quick-b)),
    var(--quick-image) center / cover;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 900;
}

.quick-card strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.quick-card small {
  min-height: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.quick-card em {
  align-self: end;
  justify-self: center;
  min-width: min(160px, 100%);
  margin-top: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.quick-card i {
  position: absolute;
  top: 10px;
  right: -20px;
  z-index: 2;
  width: 76px;
  height: 24px;
  background: linear-gradient(90deg, #ff5a36, #ff8a4c);
  box-shadow: 0 8px 18px rgba(191, 71, 24, 0.24);
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  transform: rotate(45deg);
  transform-origin: center;
}

.panorama-section {
  background: var(--orange-soft);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.matrix-block {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(47, 51, 54, 0.07);
}

.matrix-aside {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 24px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--matrix-a), var(--matrix-b));
}

.matrix-aside::before,
.matrix-aside::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.matrix-aside::before {
  right: var(--matrix-mark-right, -26px);
  bottom: var(--matrix-mark-bottom, -18px);
  width: var(--matrix-mark-size, 168px);
  height: var(--matrix-mark-size, 168px);
  opacity: var(--matrix-mark-opacity, 0.28);
  background: var(--matrix-mark) center / contain no-repeat;
}

.matrix-aside::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  opacity: var(--matrix-pattern-opacity, 0.34);
  background: var(--matrix-pattern);
}

.matrix-aside > * {
  position: relative;
  z-index: 1;
}

.matrix-aside h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.matrix-aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.matrix-aside ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.matrix-aside li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}

.matrix-aside a {
  justify-self: start;
  min-width: 88px;
  margin-top: 4px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

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

.matrix-cards a {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  justify-items: center;
  column-gap: 8px;
  row-gap: 12px;
  min-height: 180px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.matrix-cards strong {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.matrix-cards span {
  display: inline-flex;
  margin: 0;
  padding: 3px 8px;
  border: 1px solid rgba(243, 112, 33, 0.22);
  border-radius: 3px;
  background: #fff9f4;
  color: var(--orange-dark);
  font-size: 12px;
}

.matrix-cards small {
  grid-column: 1 / -1;
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
}

.matrix-cards a:hover {
  background: var(--orange-soft);
}

.matrix-blue {
  --matrix-a: #f37021;
  --matrix-b: #d95c12;
  --matrix-mark-size: 188px;
  --matrix-mark-right: -34px;
  --matrix-mark-bottom: -24px;
  --matrix-mark-opacity: 0.34;
  --matrix-pattern-opacity: 0.28;
  --matrix-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23fff' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M36 148h112'/%3E%3Cpath d='M48 148V50h68v98'/%3E%3Cpath d='M116 78h28v70'/%3E%3Cpath d='M64 68h14M88 68h14M64 92h14M88 92h14M64 116h14M88 116h14M124 96h10M124 118h10'/%3E%3Cpath d='M76 148v-22h22v22'/%3E%3Cpath d='M64 50V30h40v20'/%3E%3C/g%3E%3C/svg%3E");
  --matrix-pattern:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 22px),
    linear-gradient(155deg, transparent 0 60%, rgba(255, 255, 255, 0.22) 61% 64%, transparent 65%);
}

.matrix-cyan {
  --matrix-a: #ff8b3d;
  --matrix-b: #df651d;
  --matrix-mark-size: 176px;
  --matrix-mark-right: -18px;
  --matrix-mark-bottom: -38px;
  --matrix-mark-opacity: 0.31;
  --matrix-pattern-opacity: 0.3;
  --matrix-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23fff' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M42 126h88'/%3E%3Cpath d='M54 34h58v92H54z'/%3E%3Cpath d='M70 54h26M70 72h26M70 90h26M70 108h18'/%3E%3Cpath d='M112 58h20v68h-20M42 126v18h102'/%3E%3Cpath d='M60 144h14M84 144h14M108 144h14'/%3E%3C/g%3E%3C/svg%3E");
  --matrix-pattern:
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 255, 255, 0.22) 13px 14px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.14) 35px 36px),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.24) 43% 46%, transparent 47%);
}

.matrix-purple {
  --matrix-a: #e96522;
  --matrix-b: #b94717;
  --matrix-mark-size: 196px;
  --matrix-mark-right: -52px;
  --matrix-mark-bottom: -34px;
  --matrix-mark-opacity: 0.38;
  --matrix-pattern-opacity: 0.24;
  --matrix-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 190'%3E%3Cg fill='none' stroke='%23fff' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M95 18 146 40v44c0 38-22 66-51 84-29-18-51-46-51-84V40l51-22z'/%3E%3Cpath d='m66 88 20 20 40-48'/%3E%3Cpath d='M62 136h66M78 154h34'/%3E%3C/g%3E%3C/svg%3E");
  --matrix-pattern:
    radial-gradient(circle at 32% -12%, transparent 0 46px, rgba(255, 255, 255, 0.28) 47px 50px, transparent 51px),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.34) 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.26) 49% 51%, transparent 52%);
}

.matrix-indigo {
  --matrix-a: #f6a044;
  --matrix-b: #cf6818;
  --matrix-mark-size: 184px;
  --matrix-mark-right: -42px;
  --matrix-mark-bottom: -44px;
  --matrix-mark-opacity: 0.36;
  --matrix-pattern-opacity: 0.32;
  --matrix-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 190'%3E%3Cg fill='none' stroke='%23fff' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M54 24h78v114H54z'/%3E%3Cpath d='M72 50h42M72 72h42M72 94h30'/%3E%3Ccircle cx='116' cy='126' r='22'/%3E%3Cpath d='m104 145-10 24 22-10 22 10-10-24'/%3E%3Cpath d='M106 126h20M116 116v20'/%3E%3C/g%3E%3C/svg%3E");
  --matrix-pattern:
    radial-gradient(circle at 74% 55%, transparent 0 42px, rgba(255, 255, 255, 0.3) 43px 46px, transparent 47px),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.36) 0 5px, transparent 6px),
    linear-gradient(0deg, transparent 0 52%, rgba(255, 255, 255, 0.24) 53% 56%, transparent 57%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.14) 25px 26px);
}

.service-orbit {
  position: relative;
  max-width: 820px;
  min-height: 470px;
  margin: 0 auto;
  border: 1px dashed rgba(243, 112, 33, 0.34);
  border-radius: 50%;
}

.service-orbit::before {
  content: "";
  position: absolute;
  inset: 76px;
  border: 1px dashed rgba(243, 112, 33, 0.24);
  border-radius: 50%;
}

.orbit-center,
.orbit-item {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.orbit-center {
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-center strong {
  font-size: 22px;
}

.orbit-center span {
  color: var(--orange);
  font-weight: 900;
}

.orbit-item {
  width: 128px;
  min-height: 58px;
  padding: 10px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
}

.item-a { top: 18px; left: 50%; transform: translateX(-50%); }
.item-b { top: 126px; right: 34px; }
.item-c { right: 96px; bottom: 58px; }
.item-d { bottom: 58px; left: 96px; }
.item-e { top: 126px; left: 34px; }
.item-f { top: 50%; left: 50%; transform: translate(-50%, 142px); }

.lifecycle-section {
  background: var(--white);
}

.stage-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 26px;
}

.stage-track article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 196px;
  padding: 0 4px;
  text-align: center;
}

.stage-track article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -28px;
  width: 32px;
  height: 14px;
  background:
    radial-gradient(circle, rgba(243, 112, 33, 0.58) 2px, transparent 3px) 0 50% / 9px 9px repeat-x;
}

.stage-track article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 26px;
  right: -30px;
  width: 10px;
  height: 10px;
  border-top: 3px solid rgba(243, 112, 33, 0.58);
  border-right: 3px solid rgba(243, 112, 33, 0.58);
  transform: rotate(45deg);
}

.stage-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 16px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--orange-dark);
  box-shadow:
    10px 10px 0 rgba(243, 112, 33, 0.09),
    0 14px 28px rgba(47, 51, 54, 0.06);
}

.stage-visual svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: #2f3336;
}

.stage-icon::before,
.stage-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.stage-icon::after {
  right: 4px;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(134, 167, 255, 0.35);
}

.icon-file::before {
  left: 7px;
  top: 6px;
  z-index: 1;
  width: 34px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 6px;
  box-shadow:
    9px 12px 0 -7px currentColor,
    9px 22px 0 -7px currentColor,
    9px 32px 0 -7px currentColor;
}

.icon-card::before {
  left: 7px;
  top: 8px;
  z-index: 1;
  width: 42px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 8px;
  box-shadow: inset 0 -13px 0 -10px currentColor;
}

.icon-card {
  background:
    radial-gradient(circle at 50% 42%, transparent 7px, currentColor 8px, currentColor 10px, transparent 11px),
    radial-gradient(ellipse at 50% 76%, transparent 13px, currentColor 14px, currentColor 16px, transparent 17px);
}

.icon-pen::before {
  left: 14px;
  top: 8px;
  z-index: 1;
  width: 18px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: rotate(45deg);
}

.icon-pen::after {
  right: 9px;
  top: 42px;
  width: 36px;
  height: 3px;
  border-radius: 4px;
  background: currentColor;
}

.icon-chat::before {
  left: 7px;
  top: 10px;
  z-index: 1;
  width: 42px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 8px;
  box-shadow:
    12px 11px 0 -10px currentColor,
    22px 11px 0 -10px currentColor;
}

.icon-chat::after {
  left: 21px;
  top: 39px;
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.icon-yuan::before {
  left: 8px;
  top: 8px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-yuan {
  font-size: 30px;
  font-weight: 900;
}

.icon-yuan::after {
  content: "￥";
  left: 0;
  top: 9px;
  width: 56px;
  height: 38px;
  background: transparent;
  color: currentColor;
  text-align: center;
  line-height: 38px;
}

.icon-check::before {
  left: 9px;
  top: 8px;
  z-index: 1;
  width: 38px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.icon-check::after {
  left: 20px;
  top: 24px;
  width: 18px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: transparent;
  transform: rotate(-45deg);
}

.stage-track strong {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.stage-track small {
  display: block;
  max-width: 150px;
  margin-top: 10px;
  color: #7a6f68;
  font-size: 14px;
  line-height: 1.55;
}

.stage-solutions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 243, 232, 0.86), rgba(255, 255, 255, 0.92) 46%, rgba(255, 247, 238, 0.86)),
    radial-gradient(circle at 12% 18%, rgba(243, 112, 33, 0.1), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(217, 92, 18, 0.08), transparent 28%);
}

.stage-solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 112, 33, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 112, 33, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.stage-shell {
  position: relative;
  z-index: 1;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.stage-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(243, 112, 33, 0.16);
}

.stage-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 12px 17px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
  cursor: pointer;
}

.stage-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.stage-tab:hover,
.stage-tab.is-active {
  color: var(--orange-dark);
}

.stage-tab.is-active::after {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.stage-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  min-height: 320px;
  padding: 48px 42px 44px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(47, 51, 54, 0.08);
}

.stage-panel[hidden] {
  display: none;
}

.stage-service {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 24px;
  min-width: 0;
  min-height: 218px;
  padding: 24px 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 247, 240, 0.92), rgba(255, 255, 255, 0.78));
  text-align: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.stage-service:hover {
  border-color: rgba(243, 112, 33, 0.22);
  box-shadow: 0 18px 36px rgba(217, 92, 18, 0.1);
  transform: translateY(-3px);
}

.stage-service-visual {
  display: grid;
  place-items: center;
  align-self: center;
  width: min(132px, 100%);
  aspect-ratio: 1;
  border-radius: 30px;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.75), transparent 16%),
    linear-gradient(135deg, rgba(255, 190, 128, 0.96), rgba(243, 112, 33, 0.88));
  color: var(--white);
  box-shadow:
    0 18px 36px rgba(217, 92, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.stage-service-visual svg {
  width: 70%;
  height: 70%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 10px rgba(174, 68, 8, 0.12));
}

.stage-service strong {
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.35;
}

.product-map-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.product-map-shell {
  position: relative;
  z-index: 1;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.product-map-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.product-map-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

.product-map-heading p {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.product-map-cards {
  display: flex;
  gap: 18px;
  min-height: 430px;
}

.product-map-card {
  position: relative;
  flex: 1 1 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 22px;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  padding: 28px 22px 22px;
  border: 1px solid rgba(243, 112, 33, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(121, 74, 47, 0.36), rgba(89, 56, 39, 0.66)),
    var(--map-image) center / cover no-repeat;
  color: var(--white);
  box-shadow: 0 24px 52px rgba(47, 51, 54, 0.1);
  transition:
    flex 0.34s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    filter 0.24s ease;
}

.product-map-card.is-featured {
  flex: 1.78 1 0;
  border-color: rgba(243, 112, 33, 0.38);
  box-shadow: 0 28px 58px rgba(47, 51, 54, 0.16);
}

.product-map-card:hover,
.product-map-card:focus-within {
  transform: translateY(-4px);
}

.product-map-card:not(.is-featured) {
  grid-template-rows: auto;
  align-content: start;
}

.product-map-card:not(.is-featured) .product-map-products,
.product-map-card:not(.is-featured) .product-map-actions {
  display: none;
}

.product-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 24%);
  background-size: 42px 42px, auto;
}

.product-map-card > * {
  position: relative;
  z-index: 1;
}

.product-map-card-startup {
  --map-image: url("assets/quick-business-scene.png");
}

.product-map-card-growth {
  --map-image: url("assets/hero-finance-tax.png");
}

.product-map-card-mature {
  --map-image: url("assets/quick-compliance-scene.png");
}

.product-map-card-transform {
  --map-image: url("assets/quick-license-scene.png");
}

.product-map-copy h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.product-map-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.72;
}

.product-map-products {
  align-self: end;
}

.product-map-products strong {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
}

.product-map-products div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-map-products a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.product-map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.product-map-actions a:first-child {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(217, 92, 18, 0.18);
}

.topic-hero,
.self-test,
.matcher,
.about-hero,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff7ef);
}

.topic-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.topic-label.danger {
  background: #fff0ed;
  color: var(--danger);
}

.topic-hero h3 {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.22;
}

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

.mini-dashboard article,
.risk-panel div {
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.mini-dashboard strong,
.risk-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

.mini-dashboard small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 20px;
}

.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid article {
  min-height: 218px;
  padding: 24px;
}

.card-grid h3,
.checklist-card h3,
.file-card h3,
.package-grid h3,
.case-grid h3,
.license-cards h3,
.featured-article h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.28;
}

.card-grid p,
.checklist-card p,
.file-card p,
.package-grid p,
.case-grid p,
.license-cards p,
.featured-article p {
  margin: 0;
  color: var(--text);
}

.why-section {
  position: relative;
  overflow: hidden;
  background: var(--orange-soft);
}

.why-section::before {
  display: none;
}

.why-section > * {
  position: relative;
  z-index: 1;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 54px);
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.why-copy {
  display: grid;
  align-content: stretch;
  min-width: 0;
}


.why-points {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.why-points article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 244, 0.76));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.1);
}

.why-points span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.why-points h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.why-points p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

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

.why-gallery {
  display: grid;
  height: 100%;
  min-width: 0;
  margin: 0;
}

.why-gallery-frame {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(47, 51, 54, 0.12);
}

.why-gallery-frame::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  z-index: 2;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.68));
  box-shadow: 0 8px 18px rgba(243, 112, 33, 0.24);
}

.why-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(243, 112, 33, 0.14)),
    linear-gradient(90deg, rgba(47, 51, 54, 0.02), rgba(255, 255, 255, 0.18));
}

.why-gallery-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 0.42s ease,
    transform 0.72s ease;
}

.why-gallery-frame img.is-active {
  opacity: 1;
  transform: scale(1);
}

.workflow-panel {
  max-width: 1180px;
  margin: 24px auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--orange-soft);
}

.workflow-panel h3 {
  margin: 0 0 18px;
}

.loop-flow,
.process-line,
.result-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.loop-flow span,
.process-line span,
.result-strip span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.checklist-card,
.file-card {
  padding: 26px;
}

.checklist-card.highlight,
.file-card.warm {
  background: var(--orange-soft);
}

.checklist-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

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

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

.solutions-section .package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-grid article {
  min-height: 232px;
  padding: 26px;
}

.package-grid article.featured {
  border-color: rgba(243, 112, 33, 0.4);
  background: var(--orange-soft);
}

.package-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 900;
}

.compliance-section,
.license-section,
.cases-section,
.about-section {
  background: var(--paper);
}

.compliance-board {
  background: linear-gradient(135deg, #ffffff, #fff1ed);
}

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

.risk-panel span {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0ed;
  color: var(--danger);
  font-weight: 900;
}

.self-test {
  background: var(--white);
}

.self-test h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.self-test p {
  margin: 0 0 18px;
  color: var(--text);
}

.self-test label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: #494e52;
  font-weight: 800;
}

.self-test input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.risk-meter {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  background: var(--orange-soft);
  text-align: center;
}

.risk-meter span {
  color: var(--text);
  font-weight: 900;
}

.risk-meter strong {
  margin-top: 8px;
  font-size: 48px;
  color: var(--green);
}

.risk-meter i {
  display: block;
  width: 160px;
  height: 16px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
}

.risk-meter i::before {
  content: "";
  display: block;
  width: var(--risk-width, 22%);
  height: 100%;
  background: var(--risk-color, var(--green));
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.risk-meter small {
  max-width: 260px;
  color: var(--text);
}

.warning-grid,
.result-strip {
  max-width: 1180px;
  margin: 24px auto 0;
}

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

.warning-grid article {
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(197, 73, 52, 0.18);
  border-radius: 8px;
  background: #fff7f5;
  color: var(--danger);
  font-weight: 900;
}

.result-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hall-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto 26px;
}

.hall-grid a,
.problem-picker a,
.industry-buttons button,
.case-filters button {
  border: 1px solid rgba(243, 112, 33, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.hall-grid a {
  display: grid;
  place-items: center;
  min-height: 78px;
}

.process-line {
  max-width: 1180px;
  margin: 0 auto 26px;
}

.matcher {
  align-items: stretch;
  background: var(--white);
}

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

.industry-buttons button,
.case-filters button {
  min-height: 46px;
  padding: 0 14px;
}

.industry-buttons button.is-active,
.case-filters button.is-active {
  background: var(--orange);
  color: var(--white);
}

.match-result {
  padding: 24px;
  border-radius: 8px;
  background: var(--orange-soft);
}

.match-result h3 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.match-result p {
  margin: 0;
  color: var(--text);
}

.license-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.license-cards article {
  padding: 24px;
}

.radar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.radar-card h3 {
  margin: 0 0 20px;
}

.radar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}

.radar::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background:
    linear-gradient(135deg, rgba(243, 112, 33, 0.28), rgba(243, 112, 33, 0.06));
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.radar::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(243, 112, 33, 0.35);
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.radar span {
  position: relative;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.radar span:nth-child(1) { transform: translate(0, -92px); }
.radar span:nth-child(2) { transform: translate(92px, -46px); }
.radar span:nth-child(3) { transform: translate(92px, 46px); }
.radar span:nth-child(4) { transform: translate(0, 92px); }
.radar span:nth-child(5) { transform: translate(-92px, 46px); }
.radar span:nth-child(6) { transform: translate(-92px, -46px); }

.warning-grid.compact {
  margin-top: 18px;
}

.solution-stairs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.solution-stairs article {
  display: grid;
  align-content: end;
  min-height: calc(100px + var(--step, 0px));
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(47, 51, 54, 0.05);
  font-weight: 900;
}

.solution-stairs article:nth-child(2) { --step: 26px; }
.solution-stairs article:nth-child(3) { --step: 52px; }
.solution-stairs article:nth-child(4) { --step: 78px; }
.solution-stairs article:nth-child(5) { --step: 104px; }

.solution-stairs span {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 13px;
}

.problem-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.problem-picker a {
  padding: 11px 14px;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 18px;
}

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

.case-grid article {
  min-height: 220px;
  padding: 24px;
}

.case-grid article.is-hidden {
  display: none;
}

.search-card {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.search-card input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 0 10px;
  outline: none;
}

.search-card button {
  min-width: 76px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.knowledge-islands {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.knowledge-islands article {
  min-height: 170px;
  padding: 22px;
}

.knowledge-islands span {
  color: var(--orange-dark);
  font-weight: 900;
}

.knowledge-islands p {
  margin: 12px 0 0;
  color: var(--text);
}

.article-layout {
  margin-top: 24px;
  background: var(--paper);
}

.featured-article {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(47, 51, 54, 0.84), rgba(47, 51, 54, 0.32)),
    url("assets/hero-finance-tax.png") center / cover;
  color: var(--white);
}

.featured-article p {
  color: rgba(255, 255, 255, 0.78);
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

.news-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--site-content-width);
  margin: 28px auto 0;
  gap: 14px;
}

.news-category {
  display: grid;
  grid-template-rows: 148px 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.05);
}

.news-category-head {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 248, 241, 0.78)),
    var(--news-bg, var(--orange-soft)) center / cover no-repeat;
  color: inherit;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.news-category-head:hover {
  filter: saturate(1.08);
}

.news-category-head span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--news-icon, var(--orange));
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.news-category-head .news-line-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-category-head strong {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 3px;
  text-align: left;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
  white-space: nowrap;
}

.news-category-head strong small {
  color: rgba(47, 51, 54, 0.58);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-list {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 24px;
}

.news-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #5c6267;
  font-size: 14px;
  line-height: 1.45;
}

.news-list a span {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list a time {
  color: #a9adb1;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.news-list a:hover {
  color: var(--orange-dark);
}

.news-list a:hover time {
  color: var(--orange);
}

.news-tax {
  --news-bg: url("assets/news-tax-bg.png");
  --news-icon: #f37021;
}

.news-accounting {
  --news-bg: url("assets/news-accounting-bg.png");
  --news-icon: #c77a45;
}

.news-register {
  --news-bg: url("assets/news-register-bg.png");
  --news-icon: #bd8b35;
}

.news-company {
  --news-bg: url("assets/news-company-bg.png");
  --news-icon: #d95c12;
}

.about-hero {
  background: var(--white);
}

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

.belief-grid article {
  min-height: 130px;
  padding: 20px;
}

.belief-grid strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
}

.belief-grid span {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 52px;
  padding: clamp(72px, 9vw, 118px) var(--site-page-gutter);
  overflow: hidden;
  background: var(--white);
}

#contact {
  background: var(--orange-soft);
}

.contact-section::before {
  display: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  align-self: center;
  max-width: 620px;
}

.contact-info {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--text);
  font-weight: 800;
}

.contact-form {
  justify-self: end;
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #3f4447;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #fbfbfb;
  color: var(--ink);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 108px;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1);
}

.prototype-main {
  background:
    linear-gradient(180deg, #fffaf5 0, #f7f8fa 680px),
    var(--paper);
}

.compliance-hero-prototype {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: 620px;
  padding: 120px var(--site-page-gutter) 70px;
  overflow: hidden;
  background:
    linear-gradient(120deg, #ffffff 0%, #fff8f2 54%, #fff1e6 100%);
}

.compliance-hero-prototype::before {
  content: "";
  position: absolute;
  right: max(-150px, -8vw);
  top: 100px;
  width: 420px;
  height: 420px;
  border: 54px solid rgba(243, 112, 33, 0.06);
  border-radius: 50%;
}

.compliance-hero-prototype > * {
  position: relative;
  z-index: 1;
}

.prototype-hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.12;
}

.prototype-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: clamp(16px, 1.7vw, 19px);
}

.prototype-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.prototype-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.prototype-trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #555c60;
  font-size: 13px;
  font-weight: 900;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 700px;
  margin-top: 34px;
  border-top: 1px solid rgba(232, 232, 232, 0.92);
  border-bottom: 1px solid rgba(232, 232, 232, 0.92);
}

.hero-proof-row article {
  min-height: 82px;
  padding: 16px 18px;
  border-right: 1px solid rgba(232, 232, 232, 0.92);
  background: rgba(255, 255, 255, 0.48);
}

.hero-proof-row article:last-child {
  border-right: 0;
}

.hero-proof-row strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.hero-proof-row span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}

.compliance-hero-art {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.art-glow,
.art-plate,
.art-folder,
.art-folder i,
.art-folder b,
.art-document,
.art-document i,
.art-document b,
.art-calculator,
.art-calculator i,
.art-calculator b,
.art-shield,
.art-shield i,
.art-check,
.art-chip {
  position: absolute;
}

.art-glow {
  inset: 14% 8% 10%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 42%, rgba(243, 112, 33, 0.18), transparent 48%),
    radial-gradient(circle at 64% 60%, rgba(50, 135, 103, 0.13), transparent 42%);
  filter: blur(16px);
  opacity: 0.92;
}

.art-plate {
  right: 10%;
  bottom: 54px;
  z-index: 1;
  width: 70%;
  height: 52px;
  border-radius: 50%;
  background: rgba(217, 92, 18, 0.12);
  filter: blur(6px);
  transform: rotate(-7deg);
}

.art-folder {
  left: 19%;
  bottom: 96px;
  z-index: 3;
  width: 250px;
  height: 168px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 196, 141, 0.94), rgba(243, 112, 33, 0.92)),
    var(--orange);
  box-shadow:
    26px 34px 48px rgba(217, 92, 18, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.6),
    inset -18px -22px 30px rgba(180, 68, 8, 0.16);
  transform: rotateX(58deg) rotateZ(-8deg) skewX(-5deg);
  transform-origin: center bottom;
}

.art-folder::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 24px;
  width: 98px;
  height: 42px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #ffd4ad, #ff9d55);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.54);
}

.art-folder i {
  top: 30px;
  left: 36px;
  width: 176px;
  height: 104px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(217, 92, 18, 0.62) 0 10px, transparent 10px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(255, 237, 222, 0.88));
  box-shadow:
    0 18px 28px rgba(170, 64, 11, 0.16),
    inset -12px -10px 18px rgba(243, 112, 33, 0.14);
}

.art-folder b {
  top: 64px;
  left: 78px;
  width: 88px;
  height: 8px;
  border-radius: 999px;
  background: rgba(217, 92, 18, 0.42);
  box-shadow:
    0 24px 0 rgba(217, 92, 18, 0.28),
    0 48px 0 rgba(217, 92, 18, 0.2);
}

.art-document {
  top: 82px;
  right: 22%;
  z-index: 4;
  width: 160px;
  height: 210px;
  border-radius: 24px;
  background: linear-gradient(150deg, #ffffff, #fff0e4 58%, #ffc08b);
  box-shadow:
    22px 28px 46px rgba(217, 92, 18, 0.18),
    inset -16px -18px 24px rgba(243, 112, 33, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 0.96);
  transform: rotate(-7deg);
}

.art-document::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffb16d, var(--orange));
  box-shadow: 0 12px 20px rgba(217, 92, 18, 0.18);
}

.art-document i {
  top: 88px;
  left: 30px;
  width: 92px;
  height: 9px;
  border-radius: 999px;
  background: rgba(217, 92, 18, 0.42);
  box-shadow:
    0 30px 0 rgba(217, 92, 18, 0.3),
    0 60px 0 rgba(217, 92, 18, 0.18);
}

.art-document b {
  right: 0;
  bottom: 0;
  width: 72px;
  height: 72px;
  border-radius: 28px 0 24px;
  background: linear-gradient(145deg, rgba(255, 195, 139, 0.72), rgba(243, 112, 33, 0.62));
}

.art-calculator {
  right: 14%;
  bottom: 112px;
  z-index: 5;
  width: 138px;
  height: 154px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0 34%, transparent 35%),
    linear-gradient(145deg, #fffefe, #ffe3c9 58%, #ff9b4e);
  box-shadow:
    24px 30px 44px rgba(217, 92, 18, 0.2),
    inset -14px -18px 24px rgba(243, 112, 33, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.96);
  transform: rotate(9deg);
}

.art-calculator i {
  top: 24px;
  left: 30px;
  width: 76px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb16d, var(--orange));
}

.art-calculator b {
  top: 76px;
  left: 34px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange-dark);
  box-shadow:
    32px 0 0 rgba(217, 92, 18, 0.58),
    64px 0 0 rgba(217, 92, 18, 0.44),
    0 34px 0 rgba(217, 92, 18, 0.42),
    32px 34px 0 rgba(217, 92, 18, 0.32);
}

.art-shield {
  top: 144px;
  left: 15%;
  z-index: 5;
  width: 108px;
  height: 126px;
  clip-path: polygon(50% 0, 88% 16%, 82% 68%, 50% 100%, 18% 68%, 12% 16%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 229, 208, 0.9) 54%, rgba(243, 112, 33, 0.7));
  box-shadow:
    18px 24px 38px rgba(217, 92, 18, 0.16),
    inset -14px -16px 20px rgba(243, 112, 33, 0.16);
  transform: rotate(-12deg);
}

.art-shield i {
  top: 52px;
  left: 36px;
  width: 42px;
  height: 24px;
  border-bottom: 10px solid var(--orange-dark);
  border-left: 10px solid var(--orange-dark);
  border-radius: 4px;
  transform: rotate(-45deg);
}

.art-check {
  right: 32%;
  top: 62px;
  z-index: 6;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #ffe0c5 56%, #ff9d55);
  box-shadow:
    16px 18px 30px rgba(217, 92, 18, 0.18),
    inset -10px -12px 16px rgba(243, 112, 33, 0.15);
}

.art-check::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 25px;
  width: 30px;
  height: 17px;
  border-bottom: 8px solid var(--orange-dark);
  border-left: 8px solid var(--orange-dark);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.art-chip {
  z-index: 7;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 231, 211, 0.9));
  color: var(--orange-dark);
  font-size: 24px;
  font-weight: 900;
  box-shadow:
    14px 18px 32px rgba(217, 92, 18, 0.14),
    inset -8px -10px 14px rgba(243, 112, 33, 0.11);
}

.art-chip-ledger {
  top: 66px;
  left: 26%;
  transform: rotate(-9deg);
}

.art-chip-invoice {
  right: 10%;
  top: 214px;
  transform: rotate(12deg);
}

.art-chip-tax {
  left: 43%;
  bottom: 76px;
  transform: rotate(7deg);
}

.business-hero-prototype {
  background:
    linear-gradient(120deg, #ffffff 0%, #fff7ef 54%, #fff1e6 100%);
}

.business-hero-art {
  min-height: 500px;
}

.biz-art-glow,
.biz-art-plate,
.biz-art-building,
.biz-art-building i,
.biz-art-building b,
.biz-art-license,
.biz-art-license i,
.biz-art-license b,
.biz-art-folder,
.biz-art-folder i,
.biz-art-folder b,
.biz-art-stamp,
.biz-art-stamp i,
.biz-art-check {
  position: absolute;
}

.biz-art-glow {
  inset: 12% 5% 8%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 46%, rgba(243, 112, 33, 0.18), transparent 48%),
    radial-gradient(circle at 66% 62%, rgba(50, 135, 103, 0.12), transparent 44%);
  filter: blur(16px);
}

.biz-art-plate {
  right: 8%;
  bottom: 56px;
  z-index: 1;
  width: 74%;
  height: 54px;
  border-radius: 50%;
  background: rgba(217, 92, 18, 0.12);
  filter: blur(6px);
  transform: rotate(-6deg);
}

.biz-art-building {
  left: 13%;
  bottom: 104px;
  z-index: 4;
  width: 144px;
  height: 186px;
  border-radius: 24px;
  background: linear-gradient(150deg, #ffffff, #fff0e4 58%, #ffae6b);
  box-shadow:
    24px 30px 46px rgba(217, 92, 18, 0.18),
    inset -16px -18px 24px rgba(243, 112, 33, 0.14),
    inset 0 2px 0 rgba(255, 255, 255, 0.95);
  transform: rotate(-7deg);
}

.biz-art-building::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 38px;
  width: 68px;
  height: 48px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(145deg, #ffd8b8, #ff9a4b);
}

.biz-art-building i {
  top: 48px;
  left: 30px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(217, 92, 18, 0.48);
  box-shadow:
    34px 0 0 rgba(217, 92, 18, 0.34),
    68px 0 0 rgba(217, 92, 18, 0.22),
    0 34px 0 rgba(217, 92, 18, 0.3),
    34px 34px 0 rgba(217, 92, 18, 0.22),
    68px 34px 0 rgba(217, 92, 18, 0.16);
}

.biz-art-building b {
  right: 26px;
  bottom: 0;
  width: 42px;
  height: 62px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, rgba(255, 184, 118, 0.86), var(--orange));
}

.biz-art-license {
  top: 92px;
  right: 18%;
  z-index: 5;
  width: 198px;
  height: 246px;
  border-radius: 26px;
  background: linear-gradient(150deg, #ffffff, #fff1e6 58%, #ffc596);
  box-shadow:
    28px 34px 52px rgba(217, 92, 18, 0.2),
    inset -18px -20px 28px rgba(243, 112, 33, 0.13),
    inset 0 2px 0 rgba(255, 255, 255, 0.96);
  transform: rotate(5deg);
}

.biz-art-license::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: linear-gradient(145deg, #ffb16d, var(--orange));
  box-shadow: 0 12px 22px rgba(217, 92, 18, 0.18);
}

.biz-art-license i {
  top: 104px;
  left: 32px;
  width: 126px;
  height: 10px;
  border-radius: 999px;
  background: rgba(217, 92, 18, 0.38);
  box-shadow:
    0 34px 0 rgba(217, 92, 18, 0.28),
    0 68px 0 rgba(217, 92, 18, 0.18);
}

.biz-art-license b {
  right: 0;
  bottom: 0;
  width: 78px;
  height: 78px;
  border-radius: 30px 0 26px;
  background: linear-gradient(145deg, rgba(255, 195, 139, 0.72), rgba(243, 112, 33, 0.62));
}

.biz-art-folder {
  left: 26%;
  bottom: 78px;
  z-index: 3;
  width: 236px;
  height: 146px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 202, 158, 0.95), rgba(243, 112, 33, 0.92));
  box-shadow:
    28px 34px 50px rgba(217, 92, 18, 0.19),
    inset -18px -22px 30px rgba(180, 68, 8, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.55);
  transform: rotateX(58deg) rotateZ(-8deg) skewX(-5deg);
}

.biz-art-folder::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 24px;
  width: 94px;
  height: 38px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #ffd4ad, #ff9d55);
}

.biz-art-folder i {
  top: 30px;
  left: 34px;
  width: 168px;
  height: 88px;
  border-radius: 17px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 222, 0.88));
}

.biz-art-folder b {
  top: 58px;
  left: 78px;
  width: 82px;
  height: 8px;
  border-radius: 999px;
  background: rgba(217, 92, 18, 0.42);
  box-shadow: 0 24px 0 rgba(217, 92, 18, 0.26);
}

.biz-art-stamp {
  right: 10%;
  bottom: 110px;
  z-index: 6;
  width: 92px;
  height: 112px;
  border-radius: 24px 24px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 28%, transparent 29%),
    linear-gradient(145deg, #fffefe, #ffe2c6 58%, #ff9a4b);
  box-shadow:
    20px 26px 42px rgba(217, 92, 18, 0.2),
    inset -12px -16px 22px rgba(243, 112, 33, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.95);
  transform: rotate(9deg);
}

.biz-art-stamp::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 28px;
  width: 36px;
  height: 32px;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(145deg, #ffb16d, var(--orange));
}

.biz-art-stamp i {
  top: 60px;
  left: 25px;
  width: 42px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange-dark);
  box-shadow: 0 22px 0 rgba(217, 92, 18, 0.42);
}

.biz-art-check {
  right: 30%;
  top: 62px;
  z-index: 7;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #ffe0c5 56%, #ff9d55);
  box-shadow:
    16px 18px 30px rgba(217, 92, 18, 0.18),
    inset -10px -12px 16px rgba(243, 112, 33, 0.15);
}

.biz-art-check::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 25px;
  width: 32px;
  height: 18px;
  border-bottom: 8px solid var(--orange-dark);
  border-left: 8px solid var(--orange-dark);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.biz-chip-name {
  top: 70px;
  left: 24%;
  transform: rotate(-8deg);
}

.biz-chip-license {
  right: 7%;
  top: 214px;
  transform: rotate(12deg);
}

.biz-chip-seal {
  left: 44%;
  bottom: 72px;
  transform: rotate(7deg);
}

.process-detail-card span,
.report-dialog span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.deliverable-grid span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.prototype-section {
  padding: clamp(64px, 8vw, 104px) var(--site-page-gutter);
}

.prototype-main .section-heading,
.prototype-main .section-heading.split {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.prototype-main .section-heading p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.brand-strength-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.98)),
    var(--paper);
}

.brand-strength-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 18px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

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

.strength-proof-grid article,
.strength-system-card,
.assurance-board article,
.related-service-grid a {
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(47, 51, 54, 0.06);
}

.strength-proof-grid article {
  min-height: 190px;
  padding: 24px;
}

.strength-system-card > span,
.related-service-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.assurance-board span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.strength-proof-grid article {
  --strength-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M5 23h18M8 23V7h12v16M11 11h6M11 15h6' stroke='%23F37021' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.strength-proof-grid .strength-judge {
  --strength-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M12.5 20a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15ZM18 18l5 5M9.5 12.5l2.2 2.2 4.2-5' stroke='%23F37021' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.strength-proof-grid .strength-list {
  --strength-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M9 6h13M9 14h13M9 22h13M4.5 6h.1M4.5 14h.1M4.5 22h.1' stroke='%23F37021' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.strength-proof-grid .strength-extend {
  --strength-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M6 14a8 8 0 0 1 14-5M22 5v6h-6M22 14a8 8 0 0 1-14 5M6 23v-6h6' stroke='%23F37021' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.strength-proof-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 22px;
}

.strength-proof-grid h3::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: var(--strength-icon) center / contain no-repeat;
}

.strength-proof-grid p {
  margin: 0;
  color: var(--text);
}

.brand-strength-section .strength-proof-grid article {
  position: relative;
  border: 1px solid rgba(210, 218, 226, 0.98);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.08);
}

.brand-strength-section .strength-proof-grid article::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--orange), rgba(243, 112, 33, 0.28));
  opacity: 0.86;
}

.brand-strength-section .strength-system-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 52px rgba(47, 51, 54, 0.16);
}

.strength-system-card {
  display: grid;
  align-content: center;
  min-height: 394px;
  padding: clamp(26px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(47, 51, 54, 0.92), rgba(58, 91, 78, 0.84));
  color: var(--white);
}

.strength-system-card > span {
  color: #ffba82;
}

.strength-system-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.strength-system-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.strength-system-card em {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.strength-system-card p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.risk-check-layout,
.process-prototype-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 24px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

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

.risk-check-list label {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #4b5053;
  font-weight: 900;
  cursor: pointer;
}

.risk-check-list label:has(input:checked) {
  border-color: rgba(243, 112, 33, 0.46);
  background: var(--orange-soft);
}

.risk-check-list input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.risk-result-card {
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 360px;
  padding: 28px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(47, 51, 54, 0.1);
}

.risk-result-card > strong {
  display: block;
  margin-top: 0;
  font-size: 44px;
  line-height: 1;
}

.risk-level-bar {
  height: 16px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #eef0f1;
}

.risk-level-bar i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.risk-result-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.risk-result-card p {
  margin: 0 0 22px;
  color: var(--text);
}

.service-diagnosis-section,
.deliverable-section,
.faq-prototype-section {
  background: #ffffff;
}

.diagnosis-module-grid,
.deliverable-grid,
.scenario-grid,
.prototype-case-grid {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 14px;
}

.diagnosis-module-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.diagnosis-module-grid article {
  --module-color: var(--orange);
  --module-deep: var(--orange-dark);
  --module-light: #ffb16d;
  --module-soft: #fff6ee;
  scroll-margin-top: 110px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.diagnosis-module-grid article:hover {
  border-color: color-mix(in srgb, var(--module-color) 46%, transparent);
  background: var(--module-soft);
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.08);
  transform: translateY(-3px);
}

.diagnosis-module-grid article:hover .module-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 20px 36px color-mix(in srgb, var(--module-color) 24%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -14px 24px color-mix(in srgb, var(--module-color) 16%, transparent);
}

.module-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.92) 0 24%, transparent 25%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 238, 224, 0.92) 56%, rgba(255, 186, 128, 0.74) 100%);
  color: var(--module-color);
  box-shadow:
    18px 18px 42px rgba(243, 112, 33, 0.14),
    0 10px 22px rgba(217, 92, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset -12px -16px 24px rgba(243, 112, 33, 0.18);
  backdrop-filter: blur(16px) saturate(1.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.module-icon::before,
.module-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.module-icon::before {
  top: 9px;
  left: 11px;
  z-index: 3;
  width: 34px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.16));
  filter: blur(0.3px);
}

.module-icon::after {
  right: -10px;
  bottom: -12px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffbc7b, var(--module-color));
  box-shadow: -10px -8px 22px rgba(217, 92, 18, 0.18);
  opacity: 0.82;
}

.module-icon i,
.module-icon b,
.module-icon i::before,
.module-icon i::after,
.module-icon b::before,
.module-icon b::after {
  content: "";
  position: absolute;
  display: block;
}

.module-icon i,
.module-icon b {
  z-index: 2;
}

.module-icon-risk i {
  top: 16px;
  left: 19px;
  width: 34px;
  height: 40px;
  clip-path: polygon(50% 0, 86% 15%, 81% 68%, 50% 100%, 19% 68%, 14% 15%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 228, 207, 0.94) 58%, rgba(255, 178, 112, 0.84));
  box-shadow:
    9px 10px 18px rgba(217, 92, 18, 0.18),
    inset -8px -9px 12px rgba(243, 112, 33, 0.18),
    inset 5px 4px 10px rgba(255, 255, 255, 0.9);
}

.module-icon-risk b {
  top: 34px;
  left: 31px;
  width: 20px;
  height: 11px;
  border-bottom: 5px solid var(--module-deep);
  border-left: 5px solid var(--module-deep);
  border-radius: 2px;
  transform: rotate(-45deg);
  filter: drop-shadow(0 4px 6px rgba(217, 92, 18, 0.2));
}

.module-icon-books i {
  top: 18px;
  left: 20px;
  width: 32px;
  height: 38px;
  border-radius: 8px 11px 11px 8px;
  background:
    linear-gradient(90deg, var(--module-color) 0 7px, transparent 7px),
    linear-gradient(145deg, #ffffff, #ffe7d2 58%, #ffc089);
  box-shadow:
    10px 10px 18px rgba(217, 92, 18, 0.16),
    inset -8px -10px 12px rgba(243, 112, 33, 0.17);
}

.module-icon-books i::before,
.module-icon-invoice i::before,
.module-icon-plan i::before {
  top: 12px;
  left: 13px;
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-deep) 80%, white);
  box-shadow: 0 8px 0 rgba(217, 92, 18, 0.38);
}

.module-icon-books b {
  top: 13px;
  left: 27px;
  width: 28px;
  height: 37px;
  border-radius: 8px 11px 11px 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 195, 139, 0.8));
  box-shadow: inset -7px -8px 12px rgba(243, 112, 33, 0.18);
  transform: translateZ(0);
  opacity: 0.78;
}

.module-icon-invoice i {
  top: 14px;
  left: 22px;
  width: 34px;
  height: 44px;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 84% 100%, 68% 87%, 52% 100%, 36% 87%, 20% 100%, 0 87%);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(150deg, #ffffff, #ffe6ce 58%, #ffb270);
  box-shadow:
    10px 11px 18px rgba(217, 92, 18, 0.17),
    inset -8px -10px 13px rgba(243, 112, 33, 0.17);
}

.module-icon-invoice i::after {
  top: 25px;
  left: 13px;
  width: 11px;
  height: 3px;
  border-radius: 999px;
  background: rgba(217, 92, 18, 0.38);
  box-shadow: 0 8px 0 rgba(217, 92, 18, 0.28);
}

.module-icon-invoice b {
  top: 19px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--module-light), var(--module-deep));
  box-shadow: 0 7px 14px rgba(217, 92, 18, 0.2);
}

.module-icon-tax i {
  top: 14px;
  left: 20px;
  width: 34px;
  height: 44px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0 34%, transparent 35%),
    linear-gradient(145deg, #ffffff, #ffe5cc 58%, #ffa861);
  box-shadow:
    11px 12px 18px rgba(217, 92, 18, 0.17),
    inset -8px -10px 13px rgba(243, 112, 33, 0.17);
}

.module-icon-tax i::before {
  top: 9px;
  left: 8px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-color) 82%, white);
}

.module-icon-tax i::after {
  top: 23px;
  left: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--module-deep);
  box-shadow:
    10px 0 0 rgba(217, 92, 18, 0.55),
    0 10px 0 rgba(217, 92, 18, 0.48),
    10px 10px 0 rgba(217, 92, 18, 0.36);
}

.module-icon-tax b {
  right: 13px;
  bottom: 13px;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 191, 133, 0.9), var(--module-deep));
  box-shadow: -5px -6px 12px rgba(217, 92, 18, 0.12);
  opacity: 0.9;
}

.module-icon-plan i {
  top: 17px;
  left: 20px;
  width: 34px;
  height: 40px;
  border-radius: 9px;
  background: linear-gradient(145deg, #ffffff, #ffe5cd 58%, #ffb270);
  box-shadow:
    11px 12px 18px rgba(217, 92, 18, 0.17),
    inset -8px -10px 13px rgba(243, 112, 33, 0.17);
}

.module-icon-plan i::after {
  top: -7px;
  left: 9px;
  width: 16px;
  height: 12px;
  border-radius: 7px 7px 4px 4px;
  background: linear-gradient(145deg, var(--module-light), var(--module-deep));
  box-shadow: 0 6px 12px rgba(217, 92, 18, 0.16);
}

.module-icon-plan b {
  top: 34px;
  left: 30px;
  width: 18px;
  height: 10px;
  border-bottom: 5px solid var(--module-deep);
  border-left: 5px solid var(--module-deep);
  border-radius: 2px;
  transform: rotate(-45deg);
  filter: drop-shadow(0 4px 7px rgba(217, 92, 18, 0.18));
}

.module-icon-register i,
.module-icon-change i,
.module-icon-equity i,
.module-icon-cancel i,
.module-icon-abnormal i {
  top: 15px;
  left: 20px;
  width: 34px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #ffe6ce 58%, #ffb270);
  box-shadow:
    10px 11px 18px rgba(217, 92, 18, 0.17),
    inset -8px -10px 13px rgba(243, 112, 33, 0.17);
}

.module-icon-register i::before {
  top: 9px;
  left: 8px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 3px solid var(--module-deep);
}

.module-icon-register i::after {
  top: 32px;
  left: 7px;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: var(--module-deep);
}

.module-icon-register b {
  right: 13px;
  bottom: 13px;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 191, 133, 0.9), var(--module-deep));
  box-shadow: -5px -6px 12px rgba(217, 92, 18, 0.12);
}

.module-icon-change i::before {
  top: 13px;
  left: 7px;
  width: 20px;
  height: 14px;
  border-top: 4px solid var(--module-deep);
  border-right: 4px solid var(--module-deep);
  border-radius: 3px;
  transform: rotate(45deg);
}

.module-icon-change i::after {
  top: 27px;
  left: 8px;
  width: 20px;
  height: 14px;
  border-bottom: 4px solid rgba(217, 92, 18, 0.58);
  border-left: 4px solid rgba(217, 92, 18, 0.58);
  border-radius: 3px;
  transform: rotate(45deg);
}

.module-icon-change b {
  top: 18px;
  left: 30px;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--module-light), var(--module-deep));
  opacity: 0.86;
}

.module-icon-equity i {
  border-radius: 50%;
}

.module-icon-equity i::before {
  top: 11px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--module-deep);
  box-shadow:
    -10px 18px 0 rgba(217, 92, 18, 0.55),
    12px 18px 0 rgba(217, 92, 18, 0.42);
}

.module-icon-equity i::after {
  top: 20px;
  left: 9px;
  width: 23px;
  height: 20px;
  border-top: 4px solid rgba(217, 92, 18, 0.5);
  border-left: 4px solid rgba(217, 92, 18, 0.42);
  border-right: 4px solid rgba(217, 92, 18, 0.42);
  border-radius: 12px 12px 0 0;
}

.module-icon-equity b {
  right: 12px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 191, 133, 0.9), var(--module-deep));
}

.module-icon-cancel i::before,
.module-icon-cancel i::after {
  top: 20px;
  left: 8px;
  width: 22px;
  height: 5px;
  border-radius: 999px;
  background: var(--module-deep);
}

.module-icon-cancel i::before {
  transform: rotate(45deg);
}

.module-icon-cancel i::after {
  transform: rotate(-45deg);
}

.module-icon-cancel b {
  top: 12px;
  left: 27px;
  width: 28px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 195, 139, 0.8));
  opacity: 0.78;
}

.module-icon-abnormal i::before {
  top: 8px;
  left: 15px;
  width: 5px;
  height: 21px;
  border-radius: 999px;
  background: var(--module-deep);
}

.module-icon-abnormal i::after {
  top: 33px;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--module-deep);
}

.module-icon-abnormal b {
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(255, 191, 133, 0.9), var(--module-deep));
  box-shadow: -6px -7px 12px rgba(217, 92, 18, 0.12);
}

.diagnosis-module-grid h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.diagnosis-module-grid p {
  margin: 0;
  color: var(--text);
  min-height: calc(1.65em * 3);
  line-height: 1.65;
}

.diagnosis-module-grid button {
  align-self: flex-start;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.module-detail-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  max-width: var(--site-content-width);
  margin: 16px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(243, 112, 33, 0.18);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 243, 232, 0.82), rgba(255, 250, 245, 0.96));
}

.module-detail-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.module-detail-panel h3,
.process-detail-card h3 {
  margin: 0;
  font-size: 24px;
}

.module-detail-panel em {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.module-detail-panel p,
.process-detail-card p {
  margin: 0;
  color: var(--text);
}

.business-service-board {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) repeat(2, minmax(0, 0.96fr));
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.business-service-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(128px, 0.82fr) auto;
  overflow: hidden;
  min-height: 252px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(47, 51, 54, 0.06);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.business-service-card:hover,
.business-service-card.is-active {
  border-color: rgba(243, 112, 33, 0.46);
  box-shadow: 0 22px 50px rgba(47, 51, 54, 0.1);
  transform: translateY(-3px);
}

.business-service-card.is-active {
  background: linear-gradient(180deg, #ffffff, #fff8f2);
}

.business-service-register {
  grid-row: span 2;
  min-height: 520px;
}

.business-service-register .business-card-visual {
  min-height: 270px;
}

.business-service-card > div:last-child {
  display: grid;
  align-content: start;
  padding: 22px 24px 24px;
}

.business-service-card small {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.business-service-card h3 {
  margin: 10px 0 9px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.25;
}

.business-service-card p {
  min-height: 0;
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.business-service-card button {
  justify-self: start;
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.business-card-visual {
  position: relative;
  isolation: isolate;
  min-height: 136px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, #fff4ea, #f6fbf8);
}

.business-card-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.03);
  transition: transform 0.25s ease;
}

.business-service-card:hover .business-card-visual img {
  transform: scale(1.08);
}

.business-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(47, 51, 54, 0.16), rgba(243, 112, 33, 0.12));
}

.business-card-visual span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(47, 51, 54, 0.1);
}

.business-visual-graph,
.business-visual-cancel,
.business-visual-warning {
  display: grid;
  place-items: center;
}

.business-visual-graph i,
.business-visual-graph b,
.business-visual-cancel i,
.business-visual-cancel b,
.business-visual-warning i,
.business-visual-warning b {
  position: absolute;
  z-index: 3;
  display: block;
}

.business-visual-graph i {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #ffe1c6 56%, #ff9b4e);
  box-shadow:
    16px 18px 28px rgba(217, 92, 18, 0.16),
    inset -8px -10px 14px rgba(243, 112, 33, 0.16);
}

.business-visual-graph i:nth-of-type(1) {
  top: 46px;
  left: 20%;
}

.business-visual-graph i:nth-of-type(2) {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.business-visual-graph i:nth-of-type(3) {
  right: 20%;
  bottom: 32px;
}

.business-visual-graph b {
  top: 72px;
  left: 31%;
  width: 38%;
  height: 42px;
  border-top: 3px solid rgba(243, 112, 33, 0.48);
  border-right: 3px solid rgba(243, 112, 33, 0.36);
  border-left: 3px solid rgba(243, 112, 33, 0.36);
  border-radius: 26px 26px 0 0;
}

.business-visual-cancel i {
  width: 112px;
  height: 142px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #fff0e4 58%, #ffc596);
  box-shadow:
    22px 26px 42px rgba(217, 92, 18, 0.18),
    inset -14px -16px 22px rgba(243, 112, 33, 0.13);
}

.business-visual-cancel i::before,
.business-visual-cancel i::after {
  content: "";
  position: absolute;
  top: 66px;
  left: 35px;
  width: 42px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange-dark);
}

.business-visual-cancel i::before {
  transform: rotate(45deg);
}

.business-visual-cancel i::after {
  transform: rotate(-45deg);
}

.business-visual-cancel b {
  right: 22%;
  bottom: 22px;
  width: 66px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffbd7c, var(--orange));
  box-shadow: 0 18px 28px rgba(217, 92, 18, 0.16);
}

.business-visual-warning i {
  width: 126px;
  height: 112px;
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
  background: linear-gradient(145deg, #ffffff, #ffe2c8 52%, #ff9b4e);
  box-shadow:
    20px 24px 40px rgba(217, 92, 18, 0.18),
    inset -14px -16px 22px rgba(243, 112, 33, 0.15);
}

.business-visual-warning i::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 60px;
  width: 7px;
  height: 32px;
  border-radius: 999px;
  background: var(--orange-dark);
}

.business-visual-warning i::after {
  content: "";
  position: absolute;
  top: 76px;
  left: 59px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-dark);
}

.business-visual-warning b {
  right: 20%;
  bottom: 26px;
  width: 70px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 174, 107, 0.84));
  box-shadow: 0 18px 28px rgba(217, 92, 18, 0.14);
}

.business-module-detail {
  background:
    linear-gradient(90deg, rgba(255, 243, 232, 0.88), rgba(255, 255, 255, 0.96)),
    url("assets/quick-business-scene.png") right 18px center / 118px auto no-repeat;
}

.business-center-main {
  background: #ffffff;
}

.business-command-hero,
.business-route-section,
.business-check-section,
.business-material-section,
.business-workflow-section,
.business-deliverable-section,
.business-combo-section {
  padding: clamp(68px, 8vw, 108px) var(--site-page-gutter);
}

.business-command-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: 660px;
  padding-top: 126px;
  background:
    radial-gradient(circle at 78% 24%, rgba(243, 112, 33, 0.12), transparent 34%),
    linear-gradient(120deg, #ffffff 0%, #fff8f2 58%, #fff1e6 100%);
}

.business-command-copy > span,
.business-section-heading > span,
.business-route-result > span,
.business-counter-card span,
.business-material-grid > article > span,
.business-combo-grid span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.business-command-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.12;
}

.business-command-copy p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.72;
}

.business-material-grid > article > span {
  font-size: 18px;
}

.business-combo-grid span {
  font-size: 18px;
}

.business-command-panel {
  display: grid;
  gap: 16px;
}

.business-hero-artwork {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.business-hero-artwork::before {
  content: "";
  position: absolute;
  inset: 6% 0 0 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 112, 33, 0.17) 0%, rgba(243, 112, 33, 0.08) 34%, rgba(238, 246, 242, 0.62) 58%, transparent 72%);
  filter: blur(2px);
  z-index: -1;
}

.business-hero-artwork img {
  display: block;
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(217, 92, 18, 0.16));
  transform: translateX(2%);
}

.business-float-tag {
  position: absolute;
  padding: 9px 14px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.1);
  backdrop-filter: blur(12px);
}

.business-float-tag.tag-register {
  top: 17%;
  left: 6%;
}

.business-float-tag.tag-change {
  right: 5%;
  top: 29%;
}

.business-float-tag.tag-cancel {
  right: 18%;
  bottom: 15%;
}

.business-counter-card {
  min-height: 220px;
  padding: 30px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(47, 51, 54, 0.9), rgba(58, 91, 78, 0.8)),
    url("assets/quick-business-scene.png") right bottom / 210px auto no-repeat;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(47, 51, 54, 0.16);
}

.business-counter-card span {
  color: #ffba82;
}

.business-counter-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}

.business-counter-card p {
  max-width: 300px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.business-ticket-grid a,
.business-material-grid article,
.business-deliverable-grid button,
.business-combo-grid a {
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(47, 51, 54, 0.06);
}

.business-ticket-grid a {
  min-height: 126px;
  padding: 18px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.business-ticket-grid a:hover,
.business-combo-grid a:hover,
.business-deliverable-grid button:hover {
  border-color: rgba(243, 112, 33, 0.46);
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(47, 51, 54, 0.1);
}

.business-ticket-grid span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.business-ticket-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 22px;
}

.business-ticket-grid small {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.5;
}

.business-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.business-section-heading h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
}

.business-section-heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text);
}

.business-route-section,
.business-deliverable-section {
  background: #ffffff;
}

.business-check-section,
.business-workflow-section,
.business-combo-section {
  background: #fff7ef;
}

.business-material-section {
  background: #ffffff;
}

.business-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 18px;
  align-items: stretch;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.business-route-tabs {
  display: grid;
  gap: 12px;
}

.business-route-tabs article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 126px;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(243, 112, 33, 0.18);
  border-left: 4px solid rgba(243, 112, 33, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(47, 51, 54, 0.07);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.business-route-tabs article:hover,
.business-route-tabs article.is-active {
  border-color: rgba(243, 112, 33, 0.5);
  border-left-color: var(--orange);
  background: linear-gradient(90deg, #fff8f1, #ffffff);
  box-shadow: 0 18px 42px rgba(243, 112, 33, 0.12);
  transform: translateX(4px);
}

.business-route-tabs img,
.business-route-graphic,
.business-route-icon {
  width: 58px;
  height: 58px;
}

.business-route-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.business-route-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-route-tabs article > div > span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.business-route-tabs h3 {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 23px;
}

.business-route-tabs p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.business-route-tabs button {
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.business-route-result {
  position: sticky;
  top: 96px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(243, 112, 33, 0.22);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.92));
  box-shadow: 0 22px 58px rgba(47, 51, 54, 0.1);
}

.business-route-result h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 30px;
}

.business-route-result p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.business-route-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 22px 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(47, 51, 54, 0.1);
}

.business-route-result strong {
  display: block;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
}

.business-route-result ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  line-height: 1.65;
}

.business-route-result li {
  position: relative;
  padding-left: 16px;
}

.business-route-result li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.business-route-result div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.business-route-result em {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--orange-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.business-route-graphic {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(135deg, #fff3e8, #fff1e6);
}

.business-route-graphic i,
.business-route-graphic b {
  position: absolute;
  display: block;
}

.business-route-equity i {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #ffe1c6 56%, #ff9b4e);
  box-shadow: 0 14px 24px rgba(217, 92, 18, 0.16);
}

.business-route-equity i:nth-of-type(1) {
  top: 42px;
  left: 22%;
}

.business-route-equity i:nth-of-type(2) {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.business-route-equity i:nth-of-type(3) {
  right: 22%;
  bottom: 28px;
}

.business-route-equity b {
  top: 66px;
  left: 30%;
  width: 40%;
  height: 38px;
  border-top: 3px solid rgba(243, 112, 33, 0.48);
  border-right: 3px solid rgba(243, 112, 33, 0.36);
  border-left: 3px solid rgba(243, 112, 33, 0.36);
  border-radius: 24px 24px 0 0;
}

.business-route-cancel i {
  top: 22px;
  left: calc(50% - 44px);
  width: 88px;
  height: 106px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #fff0e4 58%, #ffc596);
  box-shadow: 0 18px 32px rgba(217, 92, 18, 0.18);
}

.business-route-cancel i::before,
.business-route-cancel i::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 26px;
  width: 38px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange-dark);
}

.business-route-cancel i::before {
  transform: rotate(45deg);
}

.business-route-cancel i::after {
  transform: rotate(-45deg);
}

.business-route-cancel b,
.business-route-warning b {
  right: 28px;
  bottom: 18px;
  width: 60px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffbd7c, var(--orange));
  box-shadow: 0 16px 24px rgba(217, 92, 18, 0.15);
}

.business-route-warning i {
  top: 24px;
  left: calc(50% - 52px);
  width: 104px;
  height: 96px;
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
  background: linear-gradient(145deg, #ffffff, #ffe2c8 52%, #ff9b4e);
  box-shadow: 0 18px 32px rgba(217, 92, 18, 0.18);
}

.business-route-warning i::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 49px;
  width: 7px;
  height: 30px;
  border-radius: 999px;
  background: var(--orange-dark);
}

.business-route-warning i::after {
  content: "";
  position: absolute;
  top: 68px;
  left: 48px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-dark);
}

.business-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 22px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

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

.business-check-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  color: #4b5053;
  font-weight: 900;
  cursor: pointer;
}

.business-check-list label:has(input:checked) {
  border-color: rgba(243, 112, 33, 0.46);
  background: #fff3e8;
}

.business-check-list input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.business-check-result {
  min-height: 330px;
  padding: 28px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(47, 51, 54, 0.1);
}

.business-check-result > span {
  color: var(--text);
  font-weight: 900;
}

.business-check-result > strong {
  display: block;
  margin-top: 6px;
  font-size: 44px;
  line-height: 1;
}

.business-check-result h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.business-check-result p {
  margin: 0 0 22px;
  color: var(--text);
}

.business-material-grid,
.business-deliverable-grid,
.business-combo-grid {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 14px;
}

.business-material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-material-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(243, 112, 33, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 138, 77, 0.12),
    0 18px 42px rgba(217, 92, 18, 0.08);
}

.business-material-grid h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.28;
}

.business-material-grid p {
  margin: 0;
  color: var(--text);
}

.business-material-grid ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.business-material-grid li {
  position: relative;
  padding-left: 18px;
  color: #555c60;
  font-weight: 800;
}

.business-material-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.business-process-layout,
.compliance-process-layout {
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.08fr);
  align-items: stretch;
  max-width: var(--site-content-width);
}

.business-process-layout .process-tabs,
.compliance-process-layout .process-tabs {
  grid-template-rows: repeat(6, minmax(0, 1fr));
  align-content: stretch;
  gap: 8px;
  min-height: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 52px rgba(47, 51, 54, 0.08);
}

.business-process-layout .process-tabs {
  border: 0;
}

.business-process-layout .process-tabs button,
.compliance-process-layout .process-tabs button {
  min-height: 0;
  padding: 10px 14px 10px 40px;
  font-size: 15px;
}

.business-process-layout .process-tabs button::before,
.compliance-process-layout .process-tabs button::before {
  left: 16px;
  width: 10px;
  height: 10px;
}

.business-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-deliverable-grid button {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(243, 112, 33, 0.38);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 138, 77, 0.1),
    0 18px 42px rgba(217, 92, 18, 0.08);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.business-deliverable-grid span {
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 900;
}

.business-deliverable-grid strong,
.business-combo-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.business-deliverable-grid small,
.business-combo-grid small {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.business-combo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-combo-grid a {
  min-height: 208px;
  padding: 24px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.business-route-result .btn {
  width: fit-content;
  margin-top: auto;
}

.service-scope-section {
  background:
    linear-gradient(180deg, rgba(238, 246, 242, 0.86), rgba(255, 255, 255, 0.95)),
    #fff1e6;
}

.service-scope-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.scope-lead-card,
.scope-service-list article,
.feature-proof-grid article {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(47, 51, 54, 0.06);
}

.scope-lead-card {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.9)),
    url("assets/quick-compliance-scene.png") right 18px bottom 18px / 150px auto no-repeat;
}

.compliance-scope-card {
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
  padding: clamp(28px, 3.6vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.94)),
    #ffffff;
}

.business-scope-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.9)),
    url("assets/quick-business-scene.png") right 18px bottom 18px / 150px auto no-repeat;
}

.scope-lead-card > span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.scope-lead-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
}

.scope-lead-card p {
  margin: 0 0 24px;
  color: var(--text);
}

.scope-lead-card .btn {
  justify-self: start;
}

.compliance-scope-card h3 {
  max-width: 680px;
  margin-top: 18px;
}

.compliance-scope-card p {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.78;
}

.scope-fit-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
  margin: 4px 0 28px;
}

.scope-fit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 999px;
  background: #fff7ef;
  color: #4b5053;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.compliance-scope-card .btn {
  align-self: end;
  margin-top: auto;
}

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

.scope-service-list article {
  min-height: 156px;
  padding: 20px;
}

.scope-service-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff7ef;
  color: #4c76a8;
  font-size: 13px;
  font-weight: 900;
}

.scope-service-list strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
}

.scope-service-list p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.feature-proof-section {
  background: #ffffff;
}

.feature-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.feature-proof-grid article {
  display: grid;
  align-content: start;
  min-height: 158px;
  padding: 22px 24px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-proof-grid article:hover {
  border-color: rgba(243, 112, 33, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.09);
}

.feature-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.feature-proof-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.feature-title-row span {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.feature-proof-grid p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.feature-proof-section .feature-proof-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 218, 226, 0.98);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.07);
}

.feature-proof-section .feature-proof-grid article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(243, 112, 33, 0.2) 100%);
  opacity: 0.82;
}

.feature-proof-section .feature-proof-grid article:hover {
  border-color: rgba(243, 112, 33, 0.62);
  box-shadow: 0 20px 46px rgba(47, 51, 54, 0.11);
}

.feature-proof-section .feature-title-row span {
  border: 1px solid rgba(243, 112, 33, 0.2);
}

.assurance-section {
  background:
    linear-gradient(180deg, #fff8f1, #ffffff),
    var(--white);
}

.assurance-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.assurance-board article {
  position: relative;
  min-height: 224px;
  padding: 24px;
  overflow: hidden;
}

.assurance-board article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border: 18px solid rgba(243, 112, 33, 0.1);
  border-radius: 50%;
}

.assurance-board h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.assurance-board p {
  margin: 0;
  color: var(--text);
}

.process-tabs {
  display: grid;
  gap: 10px;
}

.process-tabs button {
  position: relative;
  min-height: 58px;
  padding: 12px 18px 12px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.process-tabs button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b9c0c4;
  transform: translateY(-50%);
}

.process-tabs button.is-active {
  border-color: rgba(243, 112, 33, 0.48);
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.process-tabs button.is-active::before {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(243, 112, 33, 0.14);
}

.process-detail-card {
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 242, 0.86)),
    url("assets/quick-tax-scene.png") right 24px bottom 24px / 160px auto no-repeat;
  box-shadow: 0 20px 52px rgba(47, 51, 54, 0.08);
}

.business-process-card {
  align-content: start;
  gap: 16px;
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
  border: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 238, 0.9));
}

.compliance-process-card {
  align-content: start;
  gap: 18px;
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 238, 0.9));
}

.process-detail-photo,
.business-process-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.12);
}

.business-process-photo {
  min-height: 330px;
}

.compliance-process-card .process-detail-photo {
  min-height: 330px;
}

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

.deliverable-grid button,
.scenario-grid button {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.deliverable-grid button:hover,
.scenario-grid button:hover {
  border-color: rgba(243, 112, 33, 0.48);
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.08);
  transform: translateY(-3px);
}

.deliverable-grid strong,
.scenario-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 21px;
}

.deliverable-grid small,
.scenario-grid small {
  display: block;
  margin-top: 12px;
  color: var(--text);
  line-height: 1.6;
}

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

.scenario-grid button {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.96)),
    var(--white);
}

.scenario-grid span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff7ef;
  color: #4c76a8;
  font-size: 13px;
  font-weight: 900;
}

.prototype-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prototype-case-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.prototype-case-grid h3 {
  margin: 0 0 18px;
  font-size: 21px;
}

.prototype-case-grid div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.prototype-case-grid div:nth-of-type(1) span {
  color: var(--muted);
}

.prototype-case-grid div:nth-of-type(2) span {
  color: #4c76a8;
}

.prototype-case-grid div:nth-of-type(3) span {
  color: var(--green);
}

.prototype-case-grid span {
  font-weight: 900;
}

.prototype-case-grid p {
  margin: 7px 0 0;
  color: var(--text);
}

.faq-prototype-section {
  background:
    linear-gradient(90deg, rgba(235, 243, 252, 0.92), rgba(247, 251, 255, 0.86)),
    #fff7ef;
}

.business-faq-section {
  background: #ffffff;
}

.accounting-faq-section {
  background: #ffffff;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.faq-card-grid article,
.faq-card-grid .faq-article-card {
  min-height: 132px;
  padding: clamp(18px, 2.1vw, 24px);
  border: 1px solid rgba(218, 229, 240, 0.88);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  box-shadow: 0 18px 42px rgba(76, 118, 168, 0.08);
}

.faq-card-grid article.faq-linked-card,
.faq-card-grid .faq-article-card {
  position: relative;
  display: block;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.faq-card-grid article.faq-linked-card:hover,
.faq-card-grid .faq-article-card:hover {
  border-color: rgba(243, 112, 33, 0.42);
  box-shadow: 0 22px 48px rgba(243, 112, 33, 0.12);
  transform: translateY(-2px);
}

.faq-card-grid .faq-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.faq-card-grid article.faq-linked-card > div,
.faq-card-grid article.faq-linked-card > p {
  position: relative;
  z-index: 1;
}

.faq-card-grid article > div,
.faq-card-grid .faq-article-card > div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.faq-card-grid span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff9d55, var(--orange));
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 8px 18px rgba(243, 112, 33, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.faq-card-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.35;
}

.faq-card-grid p {
  margin: 10px 0 0;
  padding-left: 50px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.faq-slider {
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.faq-slider .faq-card-grid {
  max-width: none;
}

.faq-page[hidden] {
  display: none;
}

.faq-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.faq-pagination button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 50%;
  background: #ffffff;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 51, 54, 0.06);
}

.faq-pagination button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(243, 112, 33, 0.22);
}

.related-services-section {
  background: #ffffff;
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.related-service-grid a {
  min-height: 206px;
  padding: 24px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.related-service-grid a:hover {
  border-color: rgba(243, 112, 33, 0.44);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.09);
}

.related-service-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.related-service-grid small {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.prototype-main {
  --section-alt-bg: #fff7ef;
}

.prototype-main > .prototype-section {
  background: var(--white);
}

.prototype-main > .prototype-section:nth-of-type(3),
.prototype-main > .prototype-section:nth-of-type(5),
.prototype-main > .prototype-section:nth-of-type(7),
.prototype-main > .prototype-section:nth-of-type(9),
.prototype-main > .prototype-section:nth-of-type(11),
.prototype-main > .prototype-section:nth-of-type(13) {
  background: var(--section-alt-bg);
}

.advisor-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.advisor-checklist strong {
  flex-basis: 100%;
  color: var(--ink);
}

.advisor-checklist span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5a5f63;
  font-weight: 900;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(47, 51, 54, 0.46);
}

.report-modal[hidden] {
  display: none;
}

.report-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.report-dialog > button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.report-dialog h3 {
  margin: 10px 0;
  font-size: 28px;
}

.report-dialog p {
  margin: 0;
  color: var(--text);
}

.report-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.report-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #edf0f2;
}

.report-lines i:nth-child(1) {
  width: 86%;
}

.report-lines i:nth-child(2) {
  width: 68%;
}

.report-lines i:nth-child(3) {
  width: 76%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 210px) minmax(0, 1fr);
  align-items: start;
  justify-content: stretch;
  gap: clamp(22px, 3vw, 32px);
  padding: 48px var(--site-page-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-logo {
  display: block;
  width: min(220px, 70vw);
  height: auto;
}

.footer-logo-qifu {
  width: min(180px, 70vw);
}

.footer-nav {
  display: grid;
  gap: 0;
  justify-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr)) minmax(104px, 0.82fr) minmax(190px, 1.1fr);
  gap: 14px;
  width: 100%;
  max-width: none;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 7px;
  font-size: 13px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

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

.footer-col-title {
  margin-bottom: 4px;
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 900;
}

.footer-col-main {
  gap: 10px;
}

.footer-phone {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-phone span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
}

.footer-phone > a:not(.footer-phone-btn) {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-phone small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-phone-btn {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 900;
}

.footer-friend-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-friend-links strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-friend-links a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.footer-friend-links a:hover {
  color: var(--white);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.service-float-panel {
  position: fixed;
  right: clamp(12px, 2.2vw, 34px);
  top: 50%;
  z-index: 45;
  display: grid;
  width: 136px;
  transform: translateY(-42%);
  filter: drop-shadow(0 18px 34px rgba(47, 51, 54, 0.16));
}

.service-float-head {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  margin-bottom: -13px;
  cursor: pointer;
}

.service-float-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #fff7f1;
  box-shadow:
    0 0 0 1px rgba(243, 112, 33, 0.16),
    0 0 0 10px rgba(243, 112, 33, 0.08),
    0 0 0 20px rgba(243, 112, 33, 0.04);
}

.service-float-avatar::before,
.service-float-avatar::after {
  content: "";
  position: absolute;
  inset: -11px;
  border: 2px solid rgba(243, 112, 33, 0.58);
  border-radius: 50%;
  pointer-events: none;
  animation: serviceFloatPulse 2.15s ease-out infinite;
}

.service-float-avatar::after {
  animation-delay: 1.05s;
}

.service-float-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-float-avatar span {
  display: none;
}

.service-float-avatar span::before {
  content: "";
  position: absolute;
  top: -38px;
  left: -8px;
  width: 48px;
  height: 36px;
  border: 3px solid rgba(243, 112, 33, 0.72);
  border-right: 0;
  border-bottom: 0;
  border-radius: 28px 0 0 0;
  transform: rotate(-7deg);
}

.service-float-avatar span::after {
  content: "";
  position: absolute;
  top: -24px;
  right: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    9px 11px 0 -6px var(--orange-dark),
    -25px 2px 0 -6px #ffffff;
}

.service-float-head strong {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 34px;
  margin-top: -7px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(217, 92, 18, 0.24);
}

.service-float-card {
  display: grid;
  gap: 8px;
  padding: 36px 12px 14px;
  border: 1px solid rgba(232, 232, 232, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  backdrop-filter: blur(14px);
}

.service-float-card > span {
  margin-bottom: 2px;
  color: var(--orange-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.service-float-card > a:not(.service-float-phone) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 7px;
  background: #f3f5f8;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.service-float-card > a:not(.service-float-phone):hover {
  background: var(--orange-soft);
  color: var(--orange-dark);
  transform: translateX(-2px);
}

.service-float-card small {
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.service-float-phone {
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
}

.service-float-top {
  display: grid;
  place-items: center;
  min-height: 42px;
  margin-top: 7px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}

.service-float-top span {
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  transform: translateY(5px) rotate(45deg);
}

.service-float-top:hover {
  background: var(--orange-soft);
}

body.has-consult-popup {
  overflow: hidden;
}

@keyframes serviceFloatPulse {
  0% {
    opacity: 0.95;
    transform: scale(0.86);
  }

  58% {
    opacity: 0.36;
    transform: scale(1.32);
  }

  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

.consult-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
}

.consult-popup[hidden] {
  display: none;
}

.consult-popup-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 24%, rgba(243, 112, 33, 0.14), transparent 32%),
    rgba(29, 33, 36, 0.42);
  backdrop-filter: blur(7px);
}

.consult-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  width: min(780px, calc(100vw - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 86px rgba(30, 35, 38, 0.28);
}

.consult-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 247, 241, 0.96);
  color: var(--orange-dark);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.consult-left {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 44px 48px;
  background:
    linear-gradient(135deg, rgba(255, 245, 238, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 82% 78%, rgba(243, 112, 33, 0.18), transparent 34%);
}

.consult-left::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border: 28px solid rgba(243, 112, 33, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.consult-brand {
  width: 142px;
  height: auto;
  margin-bottom: 28px;
}

.consult-left h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0;
}

.consult-left p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.consult-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.consult-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.consult-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243, 112, 33, 0.1);
}

.consult-right {
  display: grid;
  align-content: center;
  justify-items: center;
  row-gap: 10px;
  padding: 42px 40px 38px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  text-align: center;
}

.consult-advisor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.consult-advisor img {
  width: 42px;
  height: 42px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #fff7f1;
  box-shadow: 0 0 0 7px rgba(243, 112, 33, 0.09);
  object-fit: contain;
}

.consult-note {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 6px;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.4;
}

.consult-note::before,
.consult-note::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f0e5dc;
}

.consult-qr {
  display: block;
  width: 184px;
  height: 184px;
  margin: 0 auto 8px;
  padding: 8px;
  border: 1px solid #f0dfd2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.88),
    0 18px 36px rgba(217, 92, 18, 0.12);
}

.consult-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consult-phone-label {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.consult-phone {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  .service-float-avatar::before,
  .service-float-avatar::after {
    animation: none;
  }
}

@media (max-width: 820px) {
  .consult-popup {
    padding: 18px;
  }

  .consult-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
  }

  .consult-left {
    min-height: auto;
    padding: 34px 28px 28px;
  }

  .consult-left h2 {
    font-size: 26px;
  }

  .consult-right {
    padding: 30px 28px 34px;
  }
}

@media (max-width: 520px) {
  .consult-qr {
    width: 164px;
    height: 164px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 72px;
  }

  .brand-logo {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-height: calc(100vh - 92px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-height: 40px;
    padding: 10px 12px;
  }

  .nav-item {
    display: grid;
    min-height: 0;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 8px 12px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 2px solid var(--orange-soft);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    min-height: 32px;
    padding: 5px 10px;
    color: var(--muted);
    font-size: 14px;
  }

  .quick-grid,
  .knowledge-islands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .service-float-panel {
    right: 12px;
    width: 136px;
  }

  .service-float-head strong {
    min-width: 126px;
    font-size: 16px;
  }

  .service-float-card > a:not(.service-float-phone) {
    font-size: 15px;
  }
}

@media (min-width: 1061px) and (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    min-height: 78px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    min-width: 136px;
  }

  .brand-logo {
    width: 136px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    flex: 0 1 auto;
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(11px, 1.05vw, 14px);
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: clamp(13px, 1.22vw, 14px);
    white-space: nowrap;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 42px;
    padding: 0;
  }

  .nav-item {
    display: inline-flex;
    min-height: 42px;
  }

  .nav-action {
    align-items: center;
    justify-content: center;
    min-height: 42px;
    min-width: 78px;
    padding: 0 13px;
    line-height: 1;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: none;
    min-width: 176px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(47, 51, 54, 0.14);
    transform: translateX(-50%);
  }

  .dropdown-menu::before {
    display: block;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    min-height: 30px;
    padding: 4px 9px;
    color: #474b4e;
    font-size: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: 34px;
    min-height: 640px;
  }

  .hero h1 {
    max-width: 440px;
    font-size: clamp(58px, 6.1vw, 72px);
  }

  .hero-copy {
    max-width: 500px;
    font-size: clamp(16px, 1.7vw, 19px);
  }

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

  .hero-visual-3d img {
    width: min(820px, 142%);
    margin-right: -78px;
  }

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

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 112px;
  }

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

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

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

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

  .why-gallery-frame {
    height: auto;
    min-height: 360px;
  }

  .matrix-block {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .nav-item {
    display: grid;
    min-height: 0;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 2px solid var(--orange-soft);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    min-height: 34px;
    padding: 6px 10px;
    color: var(--muted);
  }

  .nav-action {
    justify-content: center;
    margin-top: 6px;
  }

  .hero,
  .section-heading.split,
  .topic-hero,
  .self-test,
  .matcher,
  .license-layout,
  .about-hero,
  .article-layout,
  .brand-screen,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

  .quick-grid,
  .card-grid.four,
  .card-grid.six,
  .card-grid.five,
  .package-grid,
  .solutions-section .package-grid,
  .case-grid,
  .hall-grid,
  .license-cards,
  .knowledge-islands,
  .news-category-grid,
  .service-advantage-stats,
  .service-matrix,
  .stage-track,
  .solution-stairs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matrix-block {
    grid-template-columns: 150px minmax(0, 1fr);
  }

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

  .loop-flow,
  .process-line,
  .result-strip,
  .warning-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stage-track article + article {
    border-left: 0;
    border-top: 0;
  }

  .stage-track article:not(:last-child)::before,
  .stage-track article:not(:last-child)::after {
    display: none;
  }

  .partner-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .product-map-cards {
    flex-wrap: wrap;
  }

  .product-map-card {
    flex-basis: calc(50% - 9px);
  }

  .product-map-card.is-featured {
    flex-basis: calc(50% - 9px);
  }
}

@media (max-width: 760px) {
  .section,
  .quick-section,
  .panorama-section,
  .lifecycle-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    padding-top: 98px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .matrix-block {
    grid-template-columns: 1fr;
  }

  .matrix-aside {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .matrix-aside ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-columns {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .contact-section {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 68px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 86px);
    overflow: auto;
  }

  .hero,
  .quick-section,
  .section,
  .panorama-section,
  .lifecycle-section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 56px);
  }

  .hero-actions,
  .topic-actions,
  .site-footer,
  .search-card {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .service-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    border: 0;
  }

  .service-orbit::before {
    display: none;
  }

  .orbit-center,
  .orbit-item {
    position: static;
    width: auto;
    min-height: 58px;
    border-radius: 8px;
    transform: none;
  }

  .orbit-center {
    height: auto;
    padding: 24px;
  }

  .quick-grid,
  .card-grid.four,
  .card-grid.six,
  .card-grid.five,
  .package-grid,
  .solutions-section .package-grid,
  .case-grid,
  .hall-grid,
  .license-cards,
  .knowledge-islands,
  .news-category-grid,
  .service-advantage-stats,
  .service-matrix,
  .stage-track,
  .solution-stairs,
  .two-column,
  .mini-dashboard,
  .risk-panel,
  .industry-buttons,
  .loop-flow,
  .process-line,
  .result-strip,
  .warning-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .why-points article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-map-heading {
    margin-bottom: 28px;
  }

  .product-map-cards {
    flex-direction: column;
    min-height: 0;
  }

  .product-map-card {
    flex-basis: auto;
    min-height: 360px;
  }

  .product-map-card.is-featured {
    flex-basis: auto;
  }

  .product-map-actions {
    grid-template-columns: 1fr;
  }

  .why-gallery-frame {
    height: auto;
    min-height: 300px;
  }

  .matrix-block {
    grid-template-columns: 1fr;
  }

  .matrix-aside {
    grid-template-columns: 1fr;
  }

  .partner-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 10px;
  }

  .partner-logo {
    min-height: 72px;
    padding: 10px;
  }

  .partner-logo img {
    height: 48px;
  }

  .partner-logo span {
    width: 72px;
    height: 48px;
  }

  .matrix-aside ul {
    grid-template-columns: 1fr;
  }

  .matrix-cards {
    grid-template-columns: 1fr;
  }

  .matrix-cards a {
    min-height: 150px;
  }

  .section-heading,
  .section-heading.split {
    margin-bottom: 26px;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-nav {
    justify-items: start;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}

@media (max-width: 1060px) {
  .service-float-panel {
    display: none;
  }

  .compliance-hero-prototype,
  .business-command-hero,
  .business-route-layout,
  .business-check-layout,
  .risk-check-layout,
  .process-prototype-layout,
  .service-scope-layout,
  .brand-strength-layout {
    grid-template-columns: 1fr;
  }

  .business-command-hero {
    min-height: 0;
  }

  .business-command-panel {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .business-hero-artwork {
    min-height: 440px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .business-route-result {
    position: static;
    min-height: 0;
  }

  .compliance-hero-prototype {
    min-height: 0;
    background:
      linear-gradient(120deg, #ffffff 0%, #fff8f2 58%, #fff1e6 100%);
  }

  .compliance-hero-art {
    min-height: 430px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .diagnosis-module-grid,
  .business-service-board,
  .business-material-grid,
  .business-deliverable-grid,
  .business-combo-grid,
  .deliverable-grid,
  .feature-proof-grid,
  .assurance-board,
  .related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-service-register {
    grid-row: span 1;
    min-height: 252px;
  }

  .business-service-register .business-card-visual {
    min-height: 160px;
  }

  .strength-system-card {
    min-height: 320px;
  }

  .risk-result-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .compliance-hero-prototype,
  .business-command-hero,
  .business-route-section,
  .business-check-section,
  .business-material-section,
  .business-workflow-section,
  .business-deliverable-section,
  .business-combo-section,
  .prototype-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .business-command-hero {
    padding-top: 98px;
    padding-bottom: 58px;
  }

  .compliance-hero-prototype {
    padding-top: 98px;
    padding-bottom: 58px;
  }

  .compliance-hero-art {
    min-height: 340px;
  }

  .art-folder {
    left: 14%;
    bottom: 70px;
    width: 210px;
    height: 142px;
  }

  .art-document {
    top: 66px;
    right: 18%;
    width: 126px;
    height: 170px;
  }

  .art-calculator {
    right: 10%;
    bottom: 88px;
    width: 110px;
    height: 124px;
  }

  .art-shield {
    top: 124px;
    left: 10%;
    width: 86px;
    height: 102px;
  }

  .art-check {
    right: 34%;
    top: 48px;
    width: 62px;
    height: 62px;
  }

  .art-chip {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 20px;
  }

  .business-hero-art {
    min-height: 340px;
    margin-bottom: -58px;
    transform: scale(0.82);
    transform-origin: center top;
  }

  .prototype-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .risk-check-list,
  .business-ticket-grid,
  .business-check-list,
  .business-material-grid,
  .business-deliverable-grid,
  .business-combo-grid,
  .hero-proof-row,
  .strength-proof-grid,
  .diagnosis-module-grid,
  .business-service-board,
  .deliverable-grid,
  .scenario-grid,
  .prototype-case-grid,
  .faq-card-grid,
  .scope-service-list,
  .feature-proof-grid,
  .assurance-board,
  .related-service-grid {
    grid-template-columns: 1fr;
  }

  .business-command-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .business-hero-artwork {
    min-height: 320px;
  }

  .business-hero-artwork img {
    width: min(430px, 104%);
    transform: translateX(0);
  }

  .business-float-tag {
    padding: 7px 10px;
    font-size: 12px;
  }

  .business-float-tag.tag-register {
    top: 8%;
    left: 2%;
  }

  .business-float-tag.tag-change {
    top: 17%;
    right: 0;
  }

  .business-float-tag.tag-cancel {
    right: 8%;
    bottom: 4%;
  }

  .business-route-tabs article {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px;
  }

  .business-route-tabs article:hover,
  .business-route-tabs article.is-active {
    transform: translateY(-2px);
  }

  .business-route-tabs img,
  .business-route-graphic {
    height: 170px;
  }

  .business-route-tabs button {
    justify-self: start;
  }

  .business-section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .business-counter-card {
    min-height: 0;
    background:
      linear-gradient(145deg, rgba(47, 51, 54, 0.92), rgba(58, 91, 78, 0.84)),
      var(--ink);
  }

  .business-deliverable-grid button,
  .business-combo-grid a,
  .business-material-grid article {
    min-height: 0;
  }

  .hero-proof-row {
    border: 1px solid rgba(232, 232, 232, 0.92);
    border-radius: 8px;
    overflow: hidden;
  }

  .hero-proof-row article {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 232, 232, 0.92);
  }

  .hero-proof-row article:last-child {
    border-bottom: 0;
  }

  .module-detail-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .module-detail-panel div {
    flex-wrap: wrap;
  }

  .feature-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .process-detail-card {
    min-height: 280px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 242, 0.86)),
      var(--white);
  }

  .business-process-layout .process-tabs,
  .compliance-process-layout .process-tabs {
    grid-template-rows: none;
    min-height: 0;
  }

  .business-process-card,
  .compliance-process-card {
    min-height: 0;
  }

  .business-process-photo,
  .compliance-process-card .process-detail-photo {
    min-height: 260px;
  }

  .deliverable-grid button,
  .scenario-grid button,
  .diagnosis-module-grid article,
  .feature-proof-grid article,
  .scope-service-list article,
  .faq-card-grid article,
  .faq-card-grid .faq-article-card,
  .strength-proof-grid article,
  .assurance-board article,
  .related-service-grid a {
    min-height: 0;
  }

  .faq-card-grid p {
    padding-left: 0;
  }

  .strength-system-card {
    min-height: 0;
    background:
      linear-gradient(145deg, rgba(47, 51, 54, 0.9), rgba(58, 91, 78, 0.82)),
      var(--ink);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero h1 {
    font-size: clamp(36px, 13vw, 48px);
  }

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

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

  .main-board {
    width: 100%;
    padding: 20px;
  }

  .risk-board {
    width: min(220px, 72vw);
  }

  .image-board {
    width: min(210px, 68vw);
  }

  .matrix-aside {
    padding: 24px 20px;
  }

  .matrix-cards a {
    justify-items: start;
    min-height: 132px;
    text-align: left;
  }

  .footer-phone > a:not(.footer-phone-btn) {
    font-size: 20px;
  }
}

.accounting-ops-main {
  background: #ffffff;
}

.accounting-ops-hero,
.accounting-service-section,
.accounting-check-section,
.accounting-loop-section,
.accounting-deliverable-section,
.accounting-package-section {
  padding: clamp(68px, 8vw, 108px) var(--site-page-gutter);
}

.accounting-ops-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 0.96fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  min-height: 680px;
  padding-top: 126px;
  background:
    radial-gradient(circle at 74% 20%, rgba(243, 112, 33, 0.12), transparent 34%),
    linear-gradient(120deg, #ffffff 0%, #fff8f2 55%, #fff1e6 100%);
}

.accounting-hero-copy > span,
.accounting-section-heading > span,
.accounting-service-detail > span,
.accounting-service-grid article > span,
.accounting-deliverable-grid span,
.accounting-package-grid span,
.accounting-step-detail > span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.accounting-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.9vw, 64px);
  line-height: 1.14;
}

.accounting-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.78;
}

.accounting-hero-copy .prototype-actions {
  margin-top: 32px;
}

.accounting-hero-board {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 237, 0.9)),
    url("assets/quick-accounting-scene.png") right bottom / 280px auto no-repeat;
  box-shadow: 0 28px 70px rgba(47, 51, 54, 0.12);
}

.accounting-hero-board::before {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.1);
}

.accounting-board-top {
  position: relative;
  z-index: 1;
  min-height: 210px;
  max-width: 330px;
}

.accounting-board-top span {
  color: var(--orange-dark);
  font-weight: 900;
}

.accounting-board-top strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
}

.accounting-board-top p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.7;
}

.accounting-board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.accounting-board-grid article,
.accounting-service-grid article,
.accounting-service-detail,
.accounting-check-list label,
.accounting-check-result,
.accounting-step-detail,
.accounting-deliverable-grid button,
.accounting-package-grid article {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(47, 51, 54, 0.06);
}

.accounting-board-grid article {
  min-height: 118px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.accounting-board-grid span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.accounting-board-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
}

.accounting-board-grid small {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.45;
}

.accounting-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.accounting-section-heading h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
}

.accounting-section-heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text);
}

.accounting-service-section {
  background: #ffffff;
}

.accounting-check-section,
.accounting-deliverable-section {
  background: #fff7ef;
}

.accounting-loop-section,
.accounting-package-section {
  background: #ffffff;
}

.accounting-package-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 112, 33, 0.12), transparent 34%),
    linear-gradient(180deg, #fff7ef 0%, #fff3e8 48%, #fffaf6 100%),
    #ffffff;
}

.accounting-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: stretch;
  gap: 22px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

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

.accounting-service-grid article {
  min-height: 238px;
  padding: 24px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.accounting-service-grid article:hover,
.accounting-service-grid article.is-active {
  border-color: rgba(243, 112, 33, 0.48);
  background: linear-gradient(145deg, #ffffff, #fff7ef);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(47, 51, 54, 0.1);
}

.accounting-service-grid h3,
.accounting-service-detail h3,
.accounting-step-detail h3,
.accounting-package-grid h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.accounting-service-grid p,
.accounting-service-detail p,
.accounting-step-detail p,
.accounting-package-grid p {
  margin: 0;
  color: var(--text);
  line-height: 1.68;
}

.accounting-service-grid button {
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.accounting-service-detail {
  position: sticky;
  top: 96px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 235, 0.92));
}

.accounting-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.accounting-service-detail em {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--orange-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.accounting-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 22px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

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

.accounting-check-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px;
  color: #4b5053;
  font-weight: 900;
  cursor: pointer;
}

.accounting-check-list label:has(input:checked) {
  border-color: rgba(243, 112, 33, 0.46);
  background: #fff3e8;
}

.accounting-check-list input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.accounting-check-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #fffaf6);
}

.accounting-check-result > strong {
  display: block;
  margin-top: 0;
  font-size: 44px;
  line-height: 1;
}

.accounting-check-result h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.accounting-check-result p {
  margin: 0 0 22px;
  color: var(--text);
  line-height: 1.68;
}

.accounting-check-result .btn {
  align-self: flex-start;
}

.accounting-loop-board,
.accounting-deliverable-grid,
.accounting-package-grid {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 14px;
}

.accounting-loop-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.accounting-loop-rail,
.accounting-step-detail {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.07);
}

.accounting-loop-rail {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #fff8f2),
    #ffffff;
}

.accounting-loop-rail > span,
.accounting-step-focus span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.accounting-loop-rail > p {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 232, 232, 0.86);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.accounting-loop-board {
  grid-template-columns: 1fr;
  max-width: none;
  margin: 18px 0;
  gap: 10px;
}

.accounting-loop-board button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.accounting-loop-board button small {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff3e8;
  color: var(--orange-dark);
  font-size: 12px;
  line-height: 1;
}

.accounting-loop-board button strong {
  min-width: 0;
  font-size: 18px;
  line-height: 1.35;
}

.accounting-loop-board button.is-active {
  border-color: rgba(243, 112, 33, 0.48);
  background: #fff3e8;
  color: var(--orange-dark);
  transform: translateX(4px);
}

.accounting-loop-board button.is-active small {
  background: var(--orange);
  color: #ffffff;
}

.accounting-step-detail {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(360px, 460px);
  align-items: center;
  gap: 28px;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 242, 0.92));
}

.accounting-step-copy {
  min-width: 0;
}

.accounting-step-copy h3 {
  margin-top: 0;
}

.accounting-step-focus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.accounting-step-focus div {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 8px;
  background: #fffaf6;
}

.accounting-step-focus strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.accounting-step-visual {
  display: grid;
  align-content: stretch;
  gap: 14px;
}

.accounting-step-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.12);
}

.accounting-step-deliverables {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 232, 232, 0.88);
}

.accounting-step-deliverables > div:first-child {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 148px;
  text-align: left;
}

.accounting-step-deliverables > div:first-child > strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.accounting-step-deliverables > div:first-child > p {
  margin-top: 8px;
}

.accounting-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accounting-step-deliverables .accounting-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin: 0;
}

.accounting-deliverable-grid button {
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.accounting-deliverable-grid button:hover {
  border-color: rgba(243, 112, 33, 0.46);
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(47, 51, 54, 0.1);
}

.accounting-deliverable-grid strong,
.accounting-package-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.accounting-deliverable-grid small {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.accounting-step-deliverables .accounting-deliverable-grid button {
  min-height: 148px;
  padding: 18px;
}

.accounting-step-deliverables .accounting-deliverable-grid strong {
  margin-top: 12px;
  font-size: 18px;
}

.accounting-step-deliverables .accounting-deliverable-grid small {
  margin-top: 8px;
}

.accounting-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accounting-package-grid article {
  min-height: 390px;
  padding: 28px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.accounting-package-grid article:nth-child(odd) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 239, 0.92));
}

.accounting-package-grid article:nth-child(even) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.94));
}

.accounting-package-grid article > * {
  position: relative;
  z-index: 1;
}

.accounting-package-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff3e8;
  font-size: 16px;
}

.accounting-package-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.accounting-package-grid li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  line-height: 1.55;
}

.accounting-package-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}

.accounting-package-grid article.is-featured {
  border-color: rgba(243, 112, 33, 0.52);
  background: linear-gradient(145deg, #ffffff, #fff3e8 62%, #fff8f2 100%);
  box-shadow: 0 24px 52px rgba(217, 92, 18, 0.14);
}

.accounting-package-grid article:hover {
  border-color: rgba(243, 112, 33, 0.58);
  background: linear-gradient(145deg, #ffffff, #fff5ec 58%, #fffaf6 100%);
  box-shadow: 0 28px 58px rgba(217, 92, 18, 0.16);
  transform: translateY(-6px);
}

.accounting-package-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--orange-dark);
  font-weight: 900;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.accounting-package-grid a::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.accounting-package-grid article:hover a {
  color: var(--orange);
  transform: translateX(2px);
}

.accounting-package-grid article:hover a::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1060px) {
  .accounting-ops-hero,
  .accounting-service-layout,
  .accounting-check-layout {
    grid-template-columns: 1fr;
  }

  .accounting-ops-hero {
    min-height: 0;
  }

  .accounting-hero-board {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .accounting-service-detail {
    position: static;
    min-height: 0;
  }

  .accounting-loop-layout {
    grid-template-columns: 1fr;
  }

  .accounting-loop-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .accounting-step-detail {
    grid-template-columns: 1fr;
  }

  .accounting-step-deliverables {
    grid-template-columns: 1fr;
  }

  .accounting-step-deliverables .accounting-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .accounting-ops-hero,
  .accounting-service-section,
  .accounting-check-section,
  .accounting-loop-section,
  .accounting-deliverable-section,
  .accounting-package-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .accounting-ops-hero {
    padding-top: 98px;
    padding-bottom: 58px;
  }

  .accounting-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .accounting-board-grid,
  .accounting-service-grid,
  .accounting-check-list,
  .accounting-loop-board,
  .accounting-deliverable-grid,
  .accounting-package-grid {
    grid-template-columns: 1fr;
  }

  .accounting-step-deliverables .accounting-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .accounting-step-focus {
    grid-template-columns: 1fr;
  }

  .accounting-hero-board {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 237, 0.92)),
      #ffffff;
  }

  .accounting-board-top {
    min-height: 0;
    margin-bottom: 18px;
  }

  .accounting-section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .accounting-service-grid article,
  .accounting-deliverable-grid button,
  .accounting-package-grid article {
    min-height: 0;
  }
}

.accounting-hero-artwork {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: visible;
  isolation: isolate;
}

.accounting-hero-artwork::before {
  display: none;
}

.accounting-hero-artwork img {
  display: block;
  width: min(760px, 126%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(217, 92, 18, 0.18));
  transform: translateX(1%);
}

.accounting-float-tag {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.1);
  backdrop-filter: blur(12px);
  pointer-events: none;
  white-space: nowrap;
}

.accounting-float-tag.tag-ticket {
  top: 18%;
  left: 2%;
}

.accounting-float-tag.tag-tax {
  top: 18%;
  right: 2%;
}

.accounting-float-tag.tag-report {
  right: 4%;
  bottom: 17%;
}

.accounting-service-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(0deg, transparent 0, transparent 43px, rgba(243, 112, 33, 0.05) 44px),
    #ffffff;
}

.accounting-service-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.accounting-service-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 18px 22px;
  border-color: rgba(218, 222, 224, 0.92);
  border-left: 4px solid rgba(243, 112, 33, 0.18);
  box-shadow: none;
}

.accounting-service-grid article:hover,
.accounting-service-grid article.is-active {
  border-color: rgba(232, 232, 232, 0.9);
  border-left-color: var(--orange);
  background: #fff9f3;
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.08);
}

.accounting-service-grid h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.accounting-service-grid p {
  font-size: 15px;
}

.accounting-service-grid button {
  margin-top: 0;
  white-space: nowrap;
}

.accounting-service-detail {
  border-color: rgba(243, 112, 33, 0.22);
  background:
    linear-gradient(145deg, rgba(47, 51, 54, 0.92), rgba(58, 91, 78, 0.84)),
    var(--ink);
  color: #ffffff;
}

.accounting-detail-photo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 20px 0 16px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.accounting-detail-block {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.accounting-detail-block strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
}

.accounting-detail-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accounting-detail-block li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.accounting-detail-block li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.accounting-service-detail h3 {
  margin-top: 0;
  color: #ffffff;
}

.accounting-service-detail p {
  color: rgba(255, 255, 255, 0.78);
}

.accounting-service-detail em {
  background: rgba(255, 255, 255, 0.12);
  color: #ffba82;
}

.accounting-check-layout {
  align-items: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.accounting-check-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accounting-check-list label {
  align-items: flex-start;
  min-height: 126px;
  padding: 16px;
  flex-direction: column;
  background: #ffffff;
  line-height: 1.45;
}

.accounting-loop-board {
  position: relative;
  grid-template-columns: 1fr;
}

.accounting-loop-board::before {
  display: none;
}

.accounting-loop-board button {
  position: relative;
  z-index: 1;
}

.accounting-loop-board button.is-active {
  background: #fff3e8;
}

.accounting-step-detail {
  border-color: rgba(243, 112, 33, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 243, 0.94));
}

.accounting-deliverable-grid button {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  background:
    linear-gradient(180deg, #ffffff, #fffaf6),
    #ffffff;
}

.accounting-deliverable-grid button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  width: 48px;
  height: 26px;
  border-radius: 0 0 10px 10px;
  background: #fff0e4;
}

.accounting-deliverable-grid button::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 92px;
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(243, 112, 33, 0.18) 0 32%, transparent 32% 40%, rgba(243, 112, 33, 0.12) 40% 72%, transparent 72%),
    rgba(243, 112, 33, 0.08);
}

.accounting-step-deliverables .accounting-deliverable-grid button::after {
  display: none;
}

.accounting-step-deliverables .accounting-deliverable-grid button::before {
  display: none;
}

.accounting-loop-rail,
.accounting-step-detail {
  border: 1px solid rgba(243, 112, 33, 0.22);
  box-shadow: 0 18px 42px rgba(47, 51, 54, 0.08);
}

.accounting-loop-board button,
.accounting-step-focus div,
.accounting-step-deliverables > div:first-child,
.accounting-step-deliverables .accounting-deliverable-grid button {
  border: 1px solid rgba(243, 112, 33, 0.28);
  box-shadow: 0 10px 24px rgba(217, 92, 18, 0.06);
}

.accounting-loop-board button {
  background: #ffffff;
}

.accounting-loop-board button.is-active {
  border-color: rgba(243, 112, 33, 0.72);
  box-shadow: 0 14px 28px rgba(217, 92, 18, 0.12);
}

.accounting-step-focus div,
.accounting-step-deliverables > div:first-child {
  background: #fffaf6;
}

.accounting-step-deliverables {
  border-top-color: rgba(243, 112, 33, 0.24);
}

.accounting-step-deliverables > div:first-child {
  padding: 18px;
  border-radius: 8px;
}

.accounting-step-deliverables .accounting-deliverable-grid button:hover {
  border-color: rgba(243, 112, 33, 0.62);
}

.accounting-package-grid article {
  position: relative;
  overflow: hidden;
  border-top: 4px solid rgba(243, 112, 33, 0.22);
}

.accounting-package-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.08);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.accounting-package-grid article.is-featured {
  border-top-color: var(--orange);
}

.accounting-package-grid article:hover::after {
  background: rgba(243, 112, 33, 0.14);
  transform: scale(1.18);
}

@media (max-width: 1060px) {
  .accounting-hero-artwork {
    min-height: 460px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }

  .accounting-hero-artwork img {
    width: min(760px, 118%);
    transform: translateX(0);
  }

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

  .accounting-loop-layout {
    grid-template-columns: 1fr;
  }

  .accounting-loop-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .accounting-step-detail {
    grid-template-columns: 1fr;
  }

  .accounting-step-deliverables {
    grid-template-columns: 1fr;
  }

  .accounting-step-deliverables .accounting-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .accounting-hero-artwork {
    min-height: 330px;
  }

  .accounting-hero-artwork img {
    width: min(540px, 118%);
    transform: none;
  }

  .accounting-float-tag {
    padding: 7px 10px;
    font-size: 12px;
  }

  .accounting-float-tag.tag-ticket {
    top: 15%;
    left: 2%;
  }

  .accounting-float-tag.tag-tax {
    top: 15%;
    right: 2%;
  }

  .accounting-float-tag.tag-report {
    right: 4%;
    bottom: 14%;
  }

  .accounting-service-grid article {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .accounting-service-grid button {
    grid-column: auto;
    justify-self: start;
  }

  .accounting-check-list {
    grid-template-columns: 1fr;
  }

  .accounting-loop-board {
    grid-template-columns: 1fr;
  }

  .accounting-loop-board::before {
    display: none;
  }
}

.license-permit-main {
  background: #ffffff;
}

.license-permit-hero,
.license-match-section,
.license-services-section,
.license-check-section,
.license-material-section,
.license-process-section,
.license-feature-section,
.license-faq-section,
.license-form-section {
  padding: clamp(68px, 8vw, 108px) var(--site-page-gutter);
}

.license-permit-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.95fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: 680px;
  padding-top: 126px;
  background: linear-gradient(120deg, #ffffff 0%, #fff8f2 56%, #fff1e6 100%);
}

.license-hero-copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.9vw, 64px);
  line-height: 1.14;
}

.license-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.78;
}

.license-hero-copy .prototype-actions {
  margin-top: 32px;
}

.license-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 36px;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
}

.license-hero-proof article {
  min-height: 88px;
  padding: 18px 20px;
}

.license-hero-proof article + article {
  border-left: 1px solid rgba(232, 232, 232, 0.9);
}

.license-hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.license-hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}

.license-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: visible;
  isolation: isolate;
}

.license-hero-art img {
  display: block;
  width: min(790px, 128%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(217, 92, 18, 0.18));
  transform: translateX(1%);
}

.license-float-tag {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.1);
  backdrop-filter: blur(12px);
}

.license-float-tag.tag-access {
  top: 16%;
  left: 4%;
}

.license-float-tag.tag-license {
  top: 20%;
  right: 3%;
}

.license-float-tag.tag-compliance {
  right: 5%;
  bottom: 16%;
}

.license-section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.license-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.18;
}

.license-section-heading p {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.license-match-section,
.license-faq-section {
  background: #ffffff;
}

.license-services-section,
.license-material-section,
.license-form-section {
  background: #fff7ef;
}

.license-check-section,
.license-process-section {
  background: #ffffff;
}

.license-feature-section {
  background: #fff7ef;
}

.license-match-layout,
.license-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.license-check-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.76fr);
  gap: clamp(20px, 2.8vw, 34px);
  max-width: min(1080px, var(--site-content-width));
}

.license-scenario-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: stretch;
}

.license-scenario-list button,
.license-process-board button {
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.license-scenario-list button {
  min-height: 76px;
  padding: 18px 22px;
  text-align: left;
}

.license-scenario-list button:hover,
.license-scenario-list button.is-active,
.license-process-board button:hover,
.license-process-board button.is-active {
  border-color: rgba(243, 112, 33, 0.42);
  background: #fff4ea;
  color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.08);
}

.license-match-result,
.license-check-result,
.license-step-detail {
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(47, 51, 54, 0.08);
}

.license-match-result {
  display: flex;
  min-height: 100%;
  padding: clamp(28px, 3vw, 38px);
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(47, 51, 54, 0.94), rgba(58, 91, 78, 0.84)),
    var(--ink);
  color: #ffffff;
}

.license-match-result h3,
.license-check-result h3,
.license-step-detail h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.25;
}

.license-match-result h3 {
  margin-top: 0;
}

.license-match-result p,
.license-match-result li,
.license-check-result p,
.license-step-detail p {
  color: inherit;
  line-height: 1.72;
}

.license-match-result p,
.license-match-result ul {
  opacity: 0.92;
}

.license-match-result ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.license-match-result .btn {
  align-self: flex-start;
  margin-top: auto;
}

.license-service-grid,
.license-material-grid,
.license-feature-grid,
.license-faq-grid {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 16px;
}

.license-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.license-service-grid article,
.license-material-grid article,
.license-feature-grid article,
.license-faq-grid article {
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.license-service-grid article {
  min-height: 278px;
  padding: 26px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.license-service-grid article:hover {
  border-color: rgba(243, 112, 33, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(47, 51, 54, 0.1);
}

.license-service-grid i {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff7ee, #ffd4ae);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 30px rgba(243, 112, 33, 0.12);
}

.license-service-grid i::before,
.license-service-grid i::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.license-service-grid i::before {
  inset: 17px 15px 14px;
  border-radius: 4px;
  opacity: 0.9;
}

.license-service-grid i::after {
  width: 22px;
  height: 4px;
  right: 12px;
  bottom: 13px;
  border-radius: 999px;
}

.license-service-grid h3,
.license-material-grid h3,
.license-feature-grid h3,
.license-faq-grid strong {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.license-service-grid p,
.license-material-grid p,
.license-feature-grid p,
.license-faq-grid p {
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.62;
}

.license-service-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--orange-dark);
  font-weight: 900;
}

.license-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.license-check-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 20px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.05);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.license-check-list label:has(input:checked) {
  border-color: rgba(243, 112, 33, 0.42);
  background: #fff7ef;
  box-shadow: 0 22px 46px rgba(243, 112, 33, 0.1);
}

.license-check-list input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.license-check-result {
  display: flex;
  position: sticky;
  top: 96px;
  align-self: stretch;
  min-height: 100%;
  padding: clamp(28px, 3vw, 38px);
  flex-direction: column;
  justify-content: center;
}

.license-check-result strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.1;
}

.license-check-result .risk-level-bar {
  height: 16px;
  margin: 24px 0 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef1ef;
}

.license-check-result .risk-level-bar i {
  display: block;
  width: 24%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.license-check-result .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.license-material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.license-material-grid article {
  min-height: 188px;
  padding: 28px;
}

.license-material-grid article::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--orange);
}

.license-process-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--site-content-width);
  margin: 0 auto 18px;
}

.license-process-board button {
  min-height: 72px;
  padding: 12px;
}

.license-step-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
  max-width: var(--site-content-width);
  min-height: 300px;
  margin: 0 auto;
  padding: clamp(20px, 2.6vw, 30px);
  overflow: hidden;
}

.license-step-copy {
  max-width: 520px;
}

.license-step-copy h3 {
  margin-top: 0;
}

.license-step-media {
  position: relative;
  min-height: 240px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff7ef;
}

.license-step-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

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

.license-feature-grid article {
  min-height: 190px;
  padding: 28px;
}

.license-feature-grid div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.license-feature-grid span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.license-faq-section {
  padding-right: var(--site-page-gutter);
  padding-left: var(--site-page-gutter);
}

.license-faq-grid {
  width: min(100%, var(--site-content-width));
  max-width: var(--site-content-width);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.license-faq-grid article {
  position: relative;
  display: none;
  min-height: 142px;
  padding: 24px 24px 24px 76px;
  border-color: rgba(218, 226, 235, 0.95);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(47, 51, 54, 0.05);
}

.license-faq-grid article::before {
  content: "Q";
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9854, var(--orange));
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(243, 112, 33, 0.22);
}

.license-faq-grid article.is-active {
  display: block;
}

.license-faq-grid strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.38;
}

.license-faq-grid p {
  margin-top: 12px;
  color: var(--text);
  line-height: 1.68;
}

.license-faq-grid article > a {
  display: block;
  color: inherit;
  text-decoration: none;
}



.license-faq-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.license-faq-pagination button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.license-faq-pagination button:hover,
.license-faq-pagination button.is-active {
  border-color: rgba(243, 112, 33, 0.42);
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(243, 112, 33, 0.2);
}

.license-form-section {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(340px, 520px);
  justify-content: center;
  gap: 24px;
  align-items: start;
  width: 100%;
}

.license-form-copy {
  align-self: center;
}

.license-form-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
}

.license-form-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.license-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.license-contact-form .wide,
.license-contact-form button {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .license-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .license-process-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .license-permit-hero,
  .license-match-layout,
  .license-check-layout,
  .license-form-section {
    grid-template-columns: 1fr;
  }

  .license-hero-art {
    min-height: 460px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .license-check-result {
    position: static;
  }

  .license-step-detail {
    grid-template-columns: 1fr;
  }

  .license-step-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .license-permit-hero,
  .license-match-section,
  .license-services-section,
  .license-check-section,
  .license-material-section,
  .license-process-section,
  .license-feature-section,
  .license-faq-section,
  .license-form-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .license-permit-hero {
    min-height: 0;
    padding-top: 98px;
    padding-bottom: 58px;
  }

  .license-hero-proof,
  .license-scenario-list,
  .license-check-list,
  .license-material-grid,
  .license-feature-grid,
  .license-faq-grid,
  .license-contact-form {
    grid-template-columns: 1fr;
  }

  .license-hero-proof article + article {
    border-top: 1px solid rgba(232, 232, 232, 0.9);
    border-left: 0;
  }

  .license-hero-art {
    min-height: 330px;
  }

  .license-hero-art img {
    width: min(560px, 120%);
    transform: none;
  }

  .license-float-tag {
    padding: 7px 10px;
    font-size: 12px;
  }

  .license-float-tag.tag-access {
    top: 12%;
    left: 2%;
  }

  .license-float-tag.tag-license {
    top: 12%;
    right: 2%;
  }

  .license-float-tag.tag-compliance {
    right: 3%;
    bottom: 12%;
  }

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

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

  .license-step-detail {
    padding: 18px;
  }

  .license-step-media,
  .license-step-media img {
    min-height: 210px;
  }
}

.corporate-main {
  background: #ffffff;
}

.corporate-hero,
.corporate-section,
.corporate-form-section {
  padding: clamp(68px, 8vw, 108px) var(--site-page-gutter);
}

.corporate-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.95fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: 680px;
  padding-top: 126px;
  background: linear-gradient(120deg, #ffffff 0%, #fff8f2 56%, #fff1e6 100%);
}

.corporate-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.9vw, 64px);
  line-height: 1.14;
}

.corporate-hero-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.78;
}

.corporate-hero-copy .prototype-actions {
  margin-top: 32px;
}

.corporate-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: visible;
  isolation: isolate;
}

.corporate-hero-art img {
  display: block;
  width: min(790px, 128%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(217, 92, 18, 0.18));
  transform: translateX(1%);
}

.corporate-float-tag {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.1);
  backdrop-filter: blur(12px);
}

.corporate-float-tag.tag-one {
  top: 16%;
  left: 5%;
}

.corporate-float-tag.tag-two {
  top: 18%;
  right: 4%;
}

.corporate-float-tag.tag-three {
  right: 5%;
  bottom: 16%;
}

.corporate-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.corporate-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.18;
}

.corporate-heading p {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.about-intro-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.about-intro-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 54px;
  text-align: center;
}

.about-intro-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.3vw, 54px);
  line-height: 1.18;
}

.about-intro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-intro-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #f7f9fb;
  box-shadow: 0 28px 58px rgba(47, 51, 54, 0.08);
}

.about-intro-visual img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 68% center;
}

.about-intro-card {
  position: relative;
  min-height: 382px;
  margin-left: -34px;
  padding: 50px 58px;
  background: #f8f8fa;
  box-shadow: 0 24px 56px rgba(47, 51, 54, 0.06);
}

.about-intro-card::after {
  content: "”";
  position: absolute;
  right: 52px;
  bottom: 28px;
  color: rgba(243, 112, 33, 0.13);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.about-intro-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.about-intro-card-head span {
  color: #1f4f7b;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.about-intro-card-head b {
  color: var(--orange-dark);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.about-intro-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.35;
}

.about-intro-card p {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}

.about-intro-card p + p {
  margin-top: 12px;
}

.about-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-intro-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.solution-package-section,
.featured-case-section,
.insight-article-section,
.about-belief-section,
.about-audience-section {
  background: #fff7ef;
}

.solution-stage-section,
.case-filter-section,
.insight-category-section,
.about-map-section,
.about-choice-section {
  background: #ffffff;
}

.solution-problem-section,
.case-problem-section,
.insight-template-section,
.insight-faq-section,
.about-flow-section {
  background: #ffffff;
}

.case-problem-section {
  background: #ffffff;
}

.solution-stage-layout,
.insight-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  gap: 24px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.solution-stage-tabs,
.solution-problem-picker,
.corporate-filters,
.insight-hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-stage-tabs {
  align-content: start;
}

.solution-stage-tabs button,
.solution-problem-picker button,
.corporate-filters button,
.insight-hot-tags button,
.insight-category-grid button {
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.solution-stage-tabs button {
  width: calc(50% - 6px);
  min-height: 92px;
  padding: 22px;
  text-align: left;
}

.solution-problem-picker,
.corporate-chip-row {
  justify-content: center;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.solution-problem-picker button,
.corporate-filters button,
.insight-hot-tags button,
.corporate-chip-row a {
  padding: 12px 18px;
}

.solution-stage-tabs button:hover,
.solution-stage-tabs button.is-active,
.solution-problem-picker button:hover,
.solution-problem-picker button.is-active,
.corporate-filters button:hover,
.corporate-filters button.is-active,
.insight-hot-tags button:hover,
.insight-hot-tags button.is-active,
.insight-category-grid button:hover,
.insight-category-grid button.is-active {
  border-color: rgba(243, 112, 33, 0.42);
  background: #fff4ea;
  color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(47, 51, 54, 0.08);
}

.solution-recommend-card,
.insight-featured {
  min-height: 390px;
  padding: 34px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(47, 51, 54, 0.94), rgba(58, 91, 78, 0.84)),
    var(--ink);
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(47, 51, 54, 0.08);
}

.solution-recommend-card span,
.insight-featured span,
.case-story-grid span,
.featured-case-grid span,
.solution-package-grid span,
.insight-list span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.solution-recommend-card h3,
.insight-featured h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.25;
}

.solution-recommend-card p,
.solution-recommend-card li,
.insight-featured p {
  color: inherit;
  line-height: 1.72;
  opacity: 0.92;
}

.solution-recommend-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.solution-package-grid,
.case-story-grid,
.featured-case-grid,
.insight-category-grid,
.insight-template-grid,
.insight-faq-grid,
.about-belief-grid,
.about-audience-grid,
.about-choice-grid {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 16px;
}

.solution-package-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.case-story-grid,
.insight-category-grid,
.about-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--site-content-width);
  gap: 18px;
  align-items: stretch;
}

.featured-case-grid,
.about-belief-grid,
.about-audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--site-content-width);
  gap: 18px;
}

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

.insight-faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-package-grid article,
.case-story-grid article,
.featured-case-grid article,
.insight-category-grid button,
.insight-list article,
.insight-template-grid article,
.insight-faq-grid article,
.about-belief-grid article,
.about-audience-grid article,
.about-choice-grid article,
.about-flow-line article {
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.solution-package-grid article,
.case-story-grid article,
.featured-case-grid article,
.insight-category-grid button,
.insight-list article,
.insight-template-grid article,
.insight-faq-grid article,
.about-belief-grid article,
.about-audience-grid article,
.about-choice-grid article {
  min-height: 176px;
  padding: 24px;
}

.solution-package-grid h3,
.case-story-grid h3,
.featured-case-grid h3,
.insight-category-grid h3,
.insight-list h3,
.insight-template-grid h3,
.about-belief-grid h3,
.about-audience-grid h3,
.about-choice-grid h3,
.about-flow-line h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.solution-package-grid p,
.case-story-grid p,
.featured-case-grid p,
.insight-category-grid p,
.insight-list p,
.insight-template-grid p,
.insight-faq-grid p,
.about-belief-grid p,
.about-audience-grid p,
.about-choice-grid p,
.about-flow-line p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.68;
}

.about-audience-grid p {
  min-height: calc(1.68em * 3);
}

.about-belief-grid h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-belief-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 102, 31, 0.11);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.about-belief-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-choice-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-choice-grid h3::before {
  width: 4px;
  height: 22px;
  flex: 0 0 4px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.about-audience-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 16px;
  font-weight: 900;
}

.about-audience-grid small {
  display: block;
  margin-top: 18px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.case-story-grid article {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.case-story-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 18px;
  line-height: 1.35;
}

.case-story-grid h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.case-story-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0 0 20px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 36px rgba(47, 51, 54, 0.08);
}

.case-story-grid p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.75;
}

.case-story-grid h3 + p {
  margin-top: 0;
}

.case-story-grid article:hover {
  border-color: rgba(243, 112, 33, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(47, 51, 54, 0.1);
}

.case-story-grid a,
.insight-featured a,
.corporate-chip-row a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 900;
}

.case-story-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
}

.case-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: var(--site-content-width);
  margin: 30px auto 0;
}

.case-pagination[hidden] {
  display: none;
}

.case-pagination button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 50%;
  background: #ffffff;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 51, 54, 0.06);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.case-pagination button:hover,
.case-pagination button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(243, 112, 33, 0.22);
}

.case-pagination button:hover {
  transform: translateY(-2px);
}

.featured-case-grid article {
  min-height: 210px;
  padding: 30px;
}

.featured-case-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 18px;
  line-height: 1.35;
}

.featured-case-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.featured-case-grid p {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.78;
}

.corporate-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.corporate-chip-row a {
  margin-top: 0;
  border: 1px solid rgba(243, 112, 33, 0.22);
  border-radius: 999px;
  background: #ffffff;
}

.case-problem-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.case-problem-board article {
  display: flex;
  min-height: 330px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.case-problem-board span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.case-problem-board h3 {
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.32;
}

.case-problem-board p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.case-problem-board div {
  margin-top: auto;
  padding-top: 22px;
}

.case-problem-board small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.case-problem-board strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
}

.case-problem-board a {
  width: fit-content;
  margin-top: 22px;
  color: var(--orange-dark);
  font-weight: 900;
}

.insight-search {
  display: flex;
  max-width: 620px;
  margin-top: 30px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(47, 51, 54, 0.08);
}

.insight-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.insight-search button {
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 900;
}

.insight-hot-tags {
  margin-top: 18px;
}

.insight-category-grid button {
  text-align: left;
}

.insight-list {
  display: grid;
  gap: 14px;
}

.insight-list article.is-hidden,
.insight-article-card.is-hidden,
.case-story-grid article.is-hidden {
  display: none;
}

.insight-cover-entry,
.insight-cover-list {
  display: grid;
  max-width: var(--site-content-width);
  margin: 0 auto;
  gap: 16px;
}

.insight-cover-entry {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.insight-cover-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-cover-entry a,
.insight-cover-list a,
.insight-template-grid a,
.insight-faq-grid a,
.insight-article-card,
.article-side-card,
.article-summary-card,
.article-misunderstanding-grid article {
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.insight-cover-entry a,
.insight-cover-list a,
.insight-template-grid a,
.insight-faq-grid a,
.insight-article-card {
  display: block;
  min-height: 170px;
  padding: 24px;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.insight-cover-entry a:hover,
.insight-cover-list a:hover,
.insight-template-grid a:hover,
.insight-faq-grid a:hover,
.insight-article-card:hover {
  border-color: rgba(243, 112, 33, 0.36);
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(47, 51, 54, 0.1);
}

.insight-cover-entry span,
.insight-cover-list span,
.insight-article-card span,
.insight-detail-tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.insight-cover-entry span,
.insight-detail-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e5;
}

.insight-cover-entry h3,
.insight-cover-list h3,
.insight-article-card h3,
.insight-template-grid a h3,
.insight-faq-grid a strong {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.insight-cover-entry p,
.insight-cover-list p,
.insight-article-card p,
.insight-template-grid a p,
.insight-faq-grid a p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.68;
}

.insight-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.insight-channel-grid a {
  display: flex;
  min-height: 260px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(243, 112, 33, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #fffaf6);
  color: inherit;
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.insight-channel-grid a:hover {
  border-color: rgba(243, 112, 33, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(47, 51, 54, 0.1);
}

.insight-channel-grid span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.insight-channel-grid h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.32;
}

.insight-channel-grid p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.72;
}

.insight-channel-grid small {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange-dark);
  font-weight: 900;
  line-height: 1.55;
}

.insight-company-section {
  background: #fff7ef;
}

.insight-company-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: var(--site-content-width);
  margin: -10px auto 24px;
}

.insight-company-tabs button {
  min-width: 118px;
  padding: 12px 18px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.insight-company-tabs button:hover,
.insight-company-tabs button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(243, 112, 33, 0.18);
  transform: translateY(-2px);
}

.insight-company-board {
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.insight-company-board article {
  display: none;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  gap: 22px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(217, 92, 18, 0.08);
}

.insight-company-board article.is-active {
  display: grid;
}

.insight-company-board article > div {
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(243, 112, 33, 0.18);
}

.insight-company-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 18px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.insight-company-board span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.insight-company-board h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
}

.insight-company-board p {
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.78;
}

.insight-company-board a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--orange-dark);
  font-weight: 900;
}

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

.insight-company-board li {
  padding: 15px 20px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #fffaf6);
}

.insight-company-board li strong,
.insight-company-board li small {
  display: block;
}

.insight-company-board li strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.insight-company-board li small {
  margin-top: 8px;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-cover-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  max-width: var(--site-content-width);
  margin: 0 auto;
  align-items: stretch;
}

.insight-sub-hero,
.insight-detail-hero {
  padding: 132px var(--site-page-gutter) 74px;
  background: linear-gradient(120deg, #ffffff 0%, #fff8f2 62%, #fff1e6 100%);
}

.insight-sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
}

.insight-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.insight-breadcrumb a {
  color: var(--orange-dark);
  font-weight: 900;
}

.insight-sub-hero h1,
.insight-detail-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.16;
}

.insight-sub-hero p,
.insight-detail-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.76;
}

.insight-search-compact {
  margin-top: 28px;
}

.insight-list-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.insight-list-summary strong {
  width: 100%;
  color: var(--ink);
  font-size: 22px;
}

.insight-list-summary span,
.insight-detail-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-weight: 900;
}

.insight-list-section,
.insight-detail-section {
  background: #ffffff;
}

.insight-list-layout,
.insight-detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  max-width: var(--site-content-width);
  margin: 0 auto;
  align-items: start;
}

.insight-detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.insight-filter-panel,
.insight-article-sidebar {
  position: sticky;
  top: 104px;
}

.insight-filter-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #fff7ef;
}

.insight-filter-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
}

.insight-filter-panel button {
  min-height: 42px;
  border: 1px solid rgba(243, 112, 33, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.insight-filter-panel button:hover,
.insight-filter-panel button.is-active {
  border-color: rgba(243, 112, 33, 0.42);
  background: var(--orange);
  color: #ffffff;
}

.insight-article-cards {
  display: grid;
  gap: 16px;
}

.insight-article-card.is-featured {
  border-color: rgba(243, 112, 33, 0.3);
  background: #fff7ef;
}

.insight-article-card small {
  display: block;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 900;
  line-height: 1.6;
}

.insight-detail-hero {
  text-align: center;
}

.insight-detail-hero .insight-breadcrumb,
.insight-detail-meta {
  justify-content: center;
}

.insight-detail-tag {
  margin-bottom: 20px;
}

.insight-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.insight-article-body,
.insight-article-sidebar {
  display: grid;
  gap: 18px;
}

.insight-article-body {
  min-width: 0;
}

.insight-article-body > section,
.article-summary-card {
  padding: 32px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.05);
}

.article-summary-card {
  background: #fff7ef;
}

.article-summary-card strong {
  color: var(--orange-dark);
  font-size: 18px;
}

.insight-article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.3;
}

.insight-article-body p,
.insight-article-body li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.82;
}

.insight-article-body ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-misunderstanding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.article-misunderstanding-grid article,
.article-side-card {
  padding: 22px;
}

.article-misunderstanding-grid h3,
.article-side-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.article-side-card {
  display: grid;
  gap: 12px;
}

.article-side-card a:not(.btn) {
  color: var(--orange-dark);
  font-weight: 900;
}

.article-side-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.article-side-card.warm {
  background: #fff7ef;
}

.insight-related-section {
  background: #fff7ef;
}

.article-detail-page {
  padding: 104px var(--site-page-gutter) 72px;
  background: #fff7ef;
}

.article-detail-shell {
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #8c96a5;
  font-size: 14px;
}

.article-breadcrumb a {
  color: #8c96a5;
}

.article-breadcrumb a:hover {
  color: var(--orange-dark);
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.article-main-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(47, 51, 54, 0.06);
}

.article-head {
  padding: clamp(34px, 5vw, 54px) clamp(28px, 5vw, 58px) 30px;
  border-bottom: 1px solid #f0f0f0;
}

.article-category {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.article-head h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.22;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: #9aa0a8;
  font-size: 14px;
}

.article-head p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.78;
}

.article-cover-image {
  display: block;
  width: calc(100% - clamp(56px, 10vw, 116px));
  height: clamp(220px, 32vw, 360px);
  margin: 34px auto 0;
  object-fit: cover;
}

.article-summary-box,
.article-main-card > section,
.article-bottom-cta {
  margin: 0 clamp(28px, 5vw, 58px);
}

.article-summary-box {
  margin-top: 32px;
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  background: #fff7ef;
}

.article-summary-box strong {
  color: var(--orange-dark);
  font-size: 18px;
}

.article-summary-box p {
  margin: 10px 0 0;
  color: var(--text);
  line-height: 1.76;
}

.article-main-card > section {
  padding: 38px 0;
  border-bottom: 1px solid #f0f0f0;
}

.article-main-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.32;
}

.article-main-card p,
.article-main-card li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.92;
}

.article-main-card p {
  margin: 0 0 16px;
}

.article-main-card ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-main-card blockquote {
  margin: 24px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  background: #fff7ef;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.article-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.article-point-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid #eeeeee;
  background: #fbfbfb;
}

.article-point-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.article-point-grid h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.article-point-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.article-bottom-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: clamp(34px, 5vw, 54px);
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ef, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(243, 112, 33, 0.12);
}

.article-bottom-cta strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.article-bottom-cta p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.article-detail-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.article-detail-aside section {
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(47, 51, 54, 0.06);
}

.article-detail-aside h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 20px;
}

.article-advisor-card {
  text-align: center;
}

.article-advisor-card img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 8px #fff0e5;
}

.article-advisor-card p {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.68;
}

.article-advisor-card button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.article-toc-card a,
.article-hot-card a,
.article-related-card a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  color: #59616b;
  line-height: 1.55;
}

.article-toc-card a:hover,
.article-hot-card a:hover,
.article-related-card a:hover {
  color: var(--orange-dark);
}

.article-hot-card a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-related-section {
  padding: clamp(62px, 8vw, 92px) var(--site-page-gutter);
  background: #fff7ef;
}

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

.article-recommend-grid a {
  min-height: 180px;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 18px 44px rgba(47, 51, 54, 0.06);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.article-recommend-grid a:hover {
  border-color: rgba(243, 112, 33, 0.36);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(47, 51, 54, 0.1);
}

.article-recommend-grid span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.article-recommend-grid h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.38;
}

.article-recommend-grid p {
  margin: 0;
  color: var(--text);
  line-height: 1.68;
}

.news-list-page {
  min-height: 100vh;
  padding: 104px var(--site-page-gutter) 72px;
  background: #fff7ef;
}

.news-list-shell {
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  color: #8c96a5;
  font-size: 15px;
  line-height: 1.5;
}

.news-breadcrumb a {
  color: #8c96a5;
}

.news-breadcrumb a:hover {
  color: var(--orange-dark);
}

.news-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  min-height: 58px;
  margin-bottom: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(47, 51, 54, 0.04);
}

.news-search-bar input {
  min-width: 0;
  border: 0;
  padding: 0 26px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.news-search-bar input::placeholder {
  color: #b8bec8;
}

.news-search-bar button {
  border: 0;
  background: var(--orange);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.news-content-board {
  padding: 34px 34px 28px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(47, 51, 54, 0.06);
}

.news-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
}

.news-feed-list {
  display: grid;
}

.news-feed-item.is-hidden {
  display: none;
}

.news-feed-item {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid #ededed;
  color: inherit;
}

.news-feed-item:first-child {
  padding-top: 20px;
}

.news-feed-item img {
  width: 230px;
  height: 128px;
  object-fit: cover;
  background: #f5f5f5;
}

.news-feed-item h1,
.news-feed-item h2 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.36;
}

.news-feed-item p {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: #7d828a;
  font-size: 15px;
  line-height: 1.78;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-feed-item small {
  display: flex;
  gap: 28px;
  margin-top: 22px;
  color: #a0a5ad;
  font-size: 14px;
  line-height: 1.4;
}

.news-feed-item small span,
.news-feed-item small time {
  position: relative;
}

.news-feed-item small time::before {
  content: "○";
  margin-right: 7px;
  color: #a0a5ad;
  font-size: 11px;
}

.news-feed-item:hover h1,
.news-feed-item:hover h2 {
  color: var(--orange-dark);
}

.news-side-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.news-side-panel section {
  padding: 22px;
  border: 1px solid #ededed;
  background: #ffffff;
}

.news-side-panel h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.news-side-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  color: #59616b;
  line-height: 1.55;
}

.news-side-panel a:hover {
  color: var(--orange-dark);
}

.news-service-card {
  background: #fff7ef;
}

.news-service-card p {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.72;
}

.news-service-card a {
  width: fit-content;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 900;
}

.news-service-card a:hover {
  color: #ffffff;
  background: var(--orange-dark);
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 30px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #e8e8e8;
  color: #7d828a;
  background: #ffffff;
}

.news-pagination a.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
}

.about-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-keywords span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-weight: 900;
}

.about-service-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.about-service-map a {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.about-service-map span {
  display: block;
  font-size: 22px;
  font-weight: 900;
}

.about-service-map .about-service-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.about-service-title-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-service-map small {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.about-flow-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.about-flow-line article {
  min-height: 150px;
  padding: 22px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-flow-line article:hover {
  border-color: rgba(243, 112, 33, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(47, 51, 54, 0.1);
}

.corporate-form-section {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(340px, 520px);
  justify-content: center;
  gap: 24px;
  align-items: center;
  width: 100%;
  background: #fff7ef;
}

.corporate-form-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
}

.corporate-form-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.corporate-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.corporate-contact-form .wide,
.corporate-contact-form button {
  grid-column: 1 / -1;
}

.contact-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(243, 112, 33, 0.14), transparent 32%),
    linear-gradient(120deg, #ffffff 0%, #fff8f2 56%, #fff1e6 100%);
}

.contact-hero-art {
  min-height: 520px;
}

.contact-hero-art img {
  width: min(720px, 122%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(217, 92, 18, 0.18));
}

.contact-method-grid,
.contact-scope-grid,
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--site-content-width);
  margin: 0 auto;
}

.contact-method-grid article,
.contact-scope-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(47, 51, 54, 0.06);
}

.contact-method-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-method-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.contact-method-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-grid h3,
.contact-scope-grid h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.contact-method-title h3 {
  margin: 0;
}

.contact-method-grid p,
.contact-scope-grid p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.7;
}

.contact-method-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--orange-dark);
  font-weight: 900;
}

.contact-method-section,
.contact-form-section,
.contact-faq-section {
  background: #ffffff;
}

.contact-form-section {
  align-items: center;
}

.contact-topic-section,
.contact-scope-section {
  background: #fff7ef;
}

.contact-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  max-width: var(--site-content-width);
  margin: 0 auto;
  align-items: stretch;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  height: 100%;
}

.contact-topic-grid button {
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(232, 232, 232, 0.96);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-topic-grid button:hover,
.contact-topic-grid button.is-active {
  border-color: rgba(243, 112, 33, 0.72);
  box-shadow: 0 20px 42px rgba(217, 92, 18, 0.12);
  transform: translateY(-2px);
}

.contact-topic-result {
  position: sticky;
  top: 110px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(243, 112, 33, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 14%, rgba(243, 112, 33, 0.13), transparent 36%),
    linear-gradient(145deg, #ffffff, #fff8f2);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(217, 92, 18, 0.1);
}

.contact-topic-result span {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--orange-dark);
  font-weight: 900;
}

.contact-topic-result h3 {
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.25;
}

.contact-topic-result p {
  margin: 18px 0 26px;
  color: var(--text);
  line-height: 1.75;
}

.contact-topic-result .btn {
  width: fit-content;
  margin-top: auto;
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(243, 112, 33, 0.18);
}

.contact-topic-result .btn:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: #ffffff;
}

.contact-scope-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-faq-slider {
  max-width: var(--site-content-width);
}

.contact-faq-slider .faq-pagination {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .solution-package-grid,
  .insight-template-grid,
  .about-flow-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-case-grid,
  .insight-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .corporate-hero,
  .solution-stage-layout,
  .insight-article-layout,
  .about-intro-layout,
  .corporate-form-section,
  .insight-sub-hero,
  .insight-cover-layout,
  .insight-list-layout,
  .insight-detail-layout,
  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .insight-filter-panel,
  .insight-article-sidebar,
  .article-detail-aside {
    position: static;
  }

  .about-intro-layout {
    max-width: 760px;
  }

  .about-intro-card {
    margin: -34px 24px 0;
  }

  .corporate-hero-art {
    min-height: 460px;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
  }

  .case-story-grid,
  .case-problem-board,
  .insight-category-grid,
  .insight-channel-grid,
  .insight-cover-entry,
  .insight-cover-list.compact,
  .article-misunderstanding-grid,
  .about-choice-grid,
  .about-audience-grid,
  .about-service-map,
  .contact-method-grid,
  .contact-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-topic-layout {
    grid-template-columns: 1fr;
  }

  .contact-topic-result {
    position: static;
  }

  .contact-form-section {
    gap: 28px;
  }

  .insight-company-board article {
    grid-template-columns: 1fr;
  }

  .insight-company-board article > div {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(243, 112, 33, 0.18);
  }
}

@media (max-width: 760px) {
  .corporate-hero,
  .corporate-section,
  .corporate-form-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .corporate-hero {
    min-height: 0;
    padding-top: 98px;
    padding-bottom: 58px;
  }

  .corporate-hero-art {
    min-height: 330px;
  }

  .corporate-hero-art img {
    width: min(560px, 120%);
    transform: none;
  }

  .corporate-float-tag {
    padding: 7px 10px;
    font-size: 12px;
  }

  .about-intro-heading {
    margin-bottom: 30px;
  }

  .about-intro-visual {
    min-height: 300px;
  }

  .about-intro-visual img {
    height: 300px;
  }

  .about-intro-card {
    margin: -22px 12px 0;
    padding: 32px 26px;
  }

  .about-intro-card-head span {
    font-size: 24px;
  }

  .about-intro-card h3 {
    font-size: 24px;
  }

  .solution-stage-tabs button,
  .solution-package-grid,
  .case-story-grid,
  .case-problem-board,
  .featured-case-grid,
  .insight-category-grid,
  .insight-channel-grid,
  .insight-cover-entry,
  .insight-cover-list,
  .insight-cover-list.compact,
  .insight-template-grid,
  .insight-faq-grid,
  .article-misunderstanding-grid,
  .about-belief-grid,
    .about-audience-grid,
    .about-choice-grid,
    .about-service-map,
    .about-flow-line,
    .corporate-contact-form,
    .contact-method-grid,
    .contact-scope-grid,
    .contact-faq-grid,
    .contact-topic-grid,
    .article-point-grid,
    .article-recommend-grid {
    grid-template-columns: 1fr;
  }

  .article-detail-page {
    padding: 92px 18px 48px;
  }

  .article-head {
    padding: 30px 22px 24px;
  }

  .article-cover-image {
    width: calc(100% - 44px);
    height: 210px;
    margin-top: 24px;
  }

  .article-summary-box,
  .article-main-card > section,
  .article-bottom-cta {
    margin-right: 22px;
    margin-left: 22px;
  }

  .article-main-card > section {
    padding: 30px 0;
  }

  .article-bottom-cta {
    display: grid;
    padding: 22px;
  }

  .article-bottom-cta .btn {
    width: 100%;
  }

  .contact-hero-art {
    min-height: 320px;
  }

  .contact-hero-art img {
    width: min(560px, 122%);
  }

  .solution-stage-tabs button {
    width: 100%;
  }

  .insight-search {
    display: grid;
  }

  .insight-search button {
    min-height: 44px;
  }

  .news-list-page {
    padding: 92px 18px 48px;
  }

  .news-search-bar {
    grid-template-columns: 1fr;
  }

  .news-search-bar button {
    min-height: 48px;
  }

  .news-content-board {
    padding: 24px 18px;
  }

  .news-board-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-feed-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-feed-item img {
    width: 100%;
    height: 180px;
  }

  .news-feed-item small {
    flex-wrap: wrap;
    gap: 12px;
  }

  .news-side-panel {
    position: static;
  }
}

.compliance-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: visible;
  isolation: isolate;
}

.compliance-hero-art::before {
  display: none;
}

.compliance-hero-art img {
  display: block;
  width: min(760px, 126%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(217, 92, 18, 0.18));
  transform: translateX(1%);
}

.compliance-float-tag {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 16px 34px rgba(47, 51, 54, 0.1);
  backdrop-filter: blur(12px);
}

.compliance-float-tag.tag-risk {
  top: 28%;
  left: 6%;
}

.compliance-float-tag.tag-review {
  top: 24%;
  right: 5%;
}

.compliance-float-tag.tag-plan {
  right: 7%;
  bottom: 19%;
}

@media (max-width: 1060px) {
  .compliance-hero-art {
    min-height: 460px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .compliance-hero-art {
    min-height: 320px;
  }

  .compliance-hero-art img {
    width: min(540px, 118%);
    transform: none;
  }

  .compliance-float-tag {
    padding: 7px 10px;
    font-size: 12px;
  }

  .compliance-float-tag.tag-risk {
    top: 24%;
    left: 4%;
  }

  .compliance-float-tag.tag-review {
    top: 18%;
    right: 4%;
  }

  .compliance-float-tag.tag-plan {
    right: 7%;
    bottom: 18%;
  }
}

.article-answer-box {
  border-color: rgba(50, 135, 103, 0.22);
  background: linear-gradient(135deg, #f6fbf8, #ffffff);
}

.article-info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  font-size: 15px;
}

.article-info-table th,
.article-info-table td {
  padding: 14px 16px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.article-info-table th {
  background: #fff7ef;
  color: var(--ink);
  font-weight: 900;
}

.article-info-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

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

.article-faq-list article {
  padding: 18px 20px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
}

.article-faq-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.article-faq-list p {
  margin: 10px 0 0;
}

@media (max-width: 760px) {
  .article-info-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


.article-seo-block,
.article-faq-block {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(232, 232, 232, 0.92);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.78));
}

.article-block-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-seo-block h2,
.article-faq-block h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.article-seo-block p,
.article-faq-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.article-quick-answer ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.article-quick-answer li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.72;
}

.article-quick-answer li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.article-info-table dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.article-info-table dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(232, 232, 232, 0.86);
}

.article-info-table dl > div:first-child {
  border-top: 0;
}

.article-info-table dt {
  color: var(--ink);
  font-weight: 900;
}

.article-info-table dd {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.article-faq-block {
  display: grid;
  gap: 14px;
}

.article-faq-block article {
  padding-top: 14px;
  border-top: 1px solid rgba(232, 232, 232, 0.86);
}

.article-faq-block article:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.article-faq-block h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .article-seo-block,
  .article-faq-block {
    padding: 18px;
  }

  .article-info-table dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 1060px) {
  .contact-form {
    justify-self: stretch;
    max-width: none;
  }
}


.prototype-contact-section {
  background: var(--orange-soft);
}

#business-form {
  background: var(--orange-soft);
}

.prototype-contact-section::before {
  display: block;
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 42px solid rgba(243, 112, 33, 0.12);
  border-radius: 50%;
}


.insight-topic-section {
  background: #fff7f1;
}

.insight-topic-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
  margin: 28px auto 26px;
}

.insight-topic-tabs button {
  border: 1px solid rgba(246, 97, 25, 0.22);
  background: #fff;
  color: #d94a0b;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.insight-topic-tabs button:hover,
.insight-topic-tabs button.is-active {
  background: #f66119;
  border-color: #f66119;
  color: #fff;
  box-shadow: 0 14px 30px rgba(246, 97, 25, 0.18);
}

.insight-topic-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.insight-topic-card {
  min-height: 320px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(246, 97, 25, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
  box-shadow: 0 18px 46px rgba(38, 44, 48, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.insight-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 97, 25, 0.38);
  box-shadow: 0 22px 52px rgba(38, 44, 48, 0.09);
}

.insight-topic-type {
  align-self: flex-start;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff0e7;
  color: #f66119;
  font-size: 14px;
  font-weight: 700;
}

.insight-topic-card h3 {
  margin: 26px 0 14px;
  font-size: 28px;
  line-height: 1.35;
}

.insight-topic-card p {
  margin: 0;
  color: #5f646a;
  font-size: 17px;
  line-height: 1.8;
}

.insight-topic-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 24px;
}

.insight-topic-tags span {
  color: #e45712;
  font-size: 14px;
  font-weight: 700;
}

.insight-topic-card a {
  margin-top: 18px;
  color: #f66119;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

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

  .insight-topic-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .insight-topic-tabs {
    justify-content: flex-start;
  }

  .insight-topic-tabs button {
    flex: 1 1 calc(50% - 8px);
    padding: 10px 12px;
  }

  .insight-topic-card {
    padding: 26px 22px;
  }

  .insight-topic-card h3 {
    font-size: 24px;
  }
}
